:root {
  --blue: #0061ff;
  --gold: #ffcc00;
  --soft-yellow: #fff1b7;
  --light-bg: #f8f9fa;
--navy: #0a2540;
  --blue-dark: #1e40af;
  --light-blue: #f6f9fc;
  --step-inactive: #e2e8f0;
  --bg-color: #fdf6e9;
  --path-color: #333;
  --text-muted: #0a0a0a;
  --text-dark: #1e293b;
  --text-color: #1d1d1f;
  --orbit-color: rgba(37, 99, 235, 0.1);
  --glass-border: rgba(255, 255, 255, 0.2);
  --monitor-frame: #1a1a1a;
  --text-slate: #475569;
  --card-bg: #FFFFFF;
  --card-shadow: 0 20px 40px -15px rgba(30, 58, 138, 0.08);
--card-shadow-hover: 0 40px 80px -20px rgba(37, 99, 235, 0.18);
  --transition-main: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  --tech-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --line-gray: #d1d5db;
  --anim-speed: 8s;
  --circle-size: 400px;
  --icon-size: 60px;
  --active-glow: #2ecc71;
  --gradient-primary: linear-gradient(135deg, #2563eb 0%, #10b981 100%);
  --gradient-primary-2: linear-gradient(135deg, #d0dfff 0%, #a0b910 100%);
  --gradient-accent: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --glass-white: rgba(255, 255, 255, 0.85);
  --blue-soft: #f0f6ff;
  --light-bg: #fffdf0;
  --text-dark: #0a0c10;
  --white: #ffffff;
  --transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  --card-shadow: 0 30px 60px -15px rgba(0, 97, 255, 0.12);
  --background: #f8faff;
  --card-glass: rgba(255, 255, 255, 0.9);
  --glass-bg: rgba(255, 255, 255, 0.9);
  --border-light: #f1f5f9;
  --bs-info: #4cc9f0;
  --track-color: #e2e8f0;
  --marketing-color: #ec4899;
  --isolation-border: #bae6fd;
  --support-color: #0ea5e9;
--accent-gray: #ffffce;
}






@import url("https://fonts.googleapis.com/css?family=Nunito:300,400,600,700,800,900|Poppins:300,400,500,600,700,800,900&display=swap");

body,
html {
  font-family: "Poppins", sans-serif;
  font-weight: normal;
  font-style: normal;
  overflow-x: hidden;
  color: var(--text-color);
  background-color: var(--card-bg);
  color: var(--text-dark);
  /* width: 100vw; */
}

* {
  box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
  color: #2b2b2b;
  line-height: 1.1;
  font-weight: 900;
}

.display-5 {
  font-family: "Poppins", sans-serif;
  color: #2b2b2b;
  line-height: 1.1;
  font-weight: bold;
  letter-spacing: -0.05em;
  font-size: clamp(2.5rem, 6vw, 2.8rem);
  /* text-transform:capitalize; */
}

.bg-nav-light {
  background-color: #F8F9FA;
  border-radius: 30px 0px 0px 30px;
}

footer a.text-muted:hover {
  color: var(--blue) !important;
  /* Changes to your brand color on hover */
  text-decoration: underline !important;
}

p {
  font-family: "Poppins", sans-serif;
  color: #707b8e;
  font-size: 1.1rem;
  margin-bottom: 15px;
  font-weight: 500;
}

.rounded-5 {
  border-radius: 30px !important;
}

/* Cite cleanup (Optional: making the small text cleaner) */
.text-muted {
  color: #2e2e2e !important;
  font-weight: 500;
  line-height: 1.4;
  font-size: 1.1rem;
}

.text-muted-1 {
  color: #2e2e2e !important;
  font-weight: 500;
  line-height: 1.3;
  font-size: 1.1rem;
}


.img {
  max-width: 100%;
  -webkit-transition: all .3s ease-out 0s;
  -moz-transition: all .3s ease-out 0s;
  -ms-transition: all .3s ease-out 0s;
  -o-transition: all .3s ease-out 0s;
  transition: all .3s ease-out 0s
}

.f-left {
  float: left
}

.f-right {
  float: right
}

.fix {
  overflow: hidden
}

.clear {
  clear: both
}

.white-bg {
  background: #ffffff
}

.gray-bg {
  background: #f5f5f5
}

.text-navy {
  color: var(--navy);
}

.text-gold {
  color: var(--gold);
}

.bg-navy {
  background-color: var(--navy);
}

/* --- Updated Top Banner/Hero --- */

/* 1. Animated Mesh Gradient Background */
.animated-mesh-bg {
  position: relative;
  padding: 100px 0;
  background-color: #ffffff;
  background-image:
    radial-gradient(at 0% 0%, rgba(0, 97, 255, 0.08) 0, transparent 50%),
    radial-gradient(at 50% 0%, rgba(255, 204, 0, 0.1) 0, transparent 50%),
    radial-gradient(at 100% 0%, rgba(0, 161, 255, 0.08) 0, transparent 50%);
  animation: meshMovement 15s ease infinite alternate;
  background-size: 200% 200%;
}

@keyframes meshMovement {
  0% {
    background-position: 0% 0%;
  }

  100% {
    background-position: 100% 100%;
  }
}

/* Base Nav Styles */
/* --- NAVBAR INITIAL STATE --- */
.main-nav {
  transition: all 0.4s ease-in-out;
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-dark) !important;
  background-image: linear-gradient(90deg, #fffcf4, rgb(255, 254, 246));
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.nav-link {
  color: var(--text-dark) !important;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 10px 0px !important;
  position: relative;
  transition: var(--transition);
}

/* --- HOVER ANIMATION (Underline) --- */
.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 5px;
  left: 15px;
  background-color: var(--blue);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: calc(100% - 30px);
}

/* --- ACTIVE LINK COLOR --- */
.nav-link.active {
  color: var(--blue) !important;
}

.nav-link.active::after {
  width: calc(100% - 30px);
  background-color: var(--blue);
}

/* --- SCROLLED STATE --- */
#navbar.scrolled {
  background-image: linear-gradient(90deg, var(--blue), rgb(139, 175, 241)) !important;
  padding: 10px 0;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Logo Sizing */
#logo-main {
  width: 100px;
  transition: width 0.4s ease-in-out;
}

#navbar.scrolled #logo-main {
  width: 100px;
  /* Shrinks the logo */
  content: url('../../assets/img/logo/SyneCommerce-logo-white.svg');
  /* Swaps the image file if needed */
}

#navbar.scrolled .nav-link {
  color: #ffffff !important;
}

#navbar.scrolled .nav-link::after {
  background-color: var(--gold);
}

#navbar.scrolled .nav-link.active {
  color: var(--gold) !important;
}

/* --- DROPDOWNS & MEGA MENU --- */
.dropdown-menu {
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-top: 4px solid gray;
  border-radius: 1.5rem;
  box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.15);
  padding: 1rem;
  background: rgb(255, 255, 255);
  backdrop-filter: blur(20px);
  animation: dropdownSlide 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  min-width: 230px;
}

/* Show on hover */
.dropdown-submenu:hover>.dropdown-menu {
  display: block;
  border-top: 4px solid var(--gold);
}

.dropdown:hover>.dropdown-menu {
  display: block;
  margin-top: 5px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- Desktop: Hover to show 2nd level --- */
@media (min-width: 992px) {
  .dropdown-submenu {
    position: relative;
  }

  /* Position the 2nd level menu to the right of the 1st level */
  .dropdown-submenu>.dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -5px;
    display: none;
    /* Hidden by default */
  }

  /* Show on hover */
  .dropdown-submenu:hover>.dropdown-menu {
    display: block;
    border-left: 4px solid var(--gold);
    border-top: 4px solid var(--white);
  }

  .dropdown:hover>.dropdown-menu {
    display: block;
    margin-top: 5px;
  }

  .dropdown-mega .dropdown-menu {
    width: 93%;
    left: 3% !important;
    padding: 0rem 1rem;
  }

  .dropdown-mega {
    position: static !important;
  }

}

.dropdown-item {
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.85rem !important;
  padding: 10px 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-left: 4px solid transparent;
  transition: all 0.3s ease;
 
  white-space: normal;      
  word-break: break-word;    
  overflow-wrap: anywhere;    
}
 
.header-text-new{
  margin-left: 25px;
}
 

.dropdown-item i {
  margin-right: 6px;
  color: #94a3b8;
}

.dropdown-item:hover {
  background: #f1f5f9;
  color: var(--blue);
  transform: translateX(5px);
}

.pulse-button {
  animation: pulse-yellow 2s infinite;
}

@keyframes pulse-yellow {
  0% {
    box-shadow: 0 0 0 0 rgba(251, 191, 36, 0.4);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(251, 191, 36, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(251, 191, 36, 0);
  }
}

/* --- BUTTONS (As per Image) --- */
.btn-contact {
  background-color: var(--gold);
  color: #000 !important;
  font-weight: 700;
  border-radius: 50px;
  padding: 12px 28px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-size: 0.8rem;
  border: none;
  transition: var(--transition);
}

.btn-contact:hover {
  background-color: var(--blue);
  color: #ffffff !important;
  box-shadow: 0 5px 15px rgba(255, 193, 7, 0.4);
}

.btn-started {
  border: 2px solid var(--blue);
  color: var(--blue) !important;
  font-weight: 600;
  border-radius: 50px;
  padding: 8px 20px;
  text-decoration: none;
  ;
  transition: var(--transition);
}

#navbar.scrolled .btn-started {
  border-color: #fff;
  color: #fff !important;
}

.btn-started:hover {
  background: #0061ff;
  color: #fff !important;
}

/* --- MOBILE TWEAKS --- */
@media (max-width: 991px) {
  .navbar-collapse {
    background: white;
    padding: 20px;
    border-radius: 15px;
    margin-top: 10px;
  }

  #navbar.scrolled .nav-link {
    color: #313131 !important;
  }

  #navbar.scrolled .btn-started {
    border-color: #4e84f7;
    color: #6d94ff !important;
  }

  .nav-link::after {
    display: none;
  }

  .btn-contact,
  .btn-started {
    width: 100%;
    margin-top: 10px;
    margin-left: 0 !important;
  }
}

/* 2. Typography & UI Accents */
.hero-title {
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.1;
  color: #333;
  font-weight: 800;
  letter-spacing: -0.05em;
  margin-bottom: 1.5rem;
}

.text-brand-blue {
  color: #0061ff;
  text-decoration: underline rgba(255, 204, 0, 0.5);
}

.btn-gold {
  background-color: var(--gold);
  color: var(--text-dark);
  border-radius: 100px;
  padding: 12px 28px;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
  border: none;
  transition: all 0.3s ease;
}

.btn-gold:hover {
  background-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(251, 191, 36, 0.2);
}

/* 3. Attractive Floating Badge */
.hero-image-wrapper {
  position: relative;
}

.hreo {
  border-radius: 230px 0px 200px 0px;
}

.floating-badge-ml {
  position: absolute;
  top: 40px;
  right: 5px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: 15px 25px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  font-weight: 700;
  animation: floatUpDown 4s ease-in-out infinite;
}

@keyframes floatUpDown {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

.floating-badge {
  position: absolute;
  bottom: 40px;
  left: -20px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: 15px 25px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  font-weight: 700;
  animation: floatUpDown 4s ease-in-out infinite;
}

@keyframes floatUpDown {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

.shadow-2xl {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.bg-navy {
  background-color: var(--navy);
}

.text-gold {
  color: var(--gold);
}

.hero {
  top: -40;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: 20% 100%;
  z-index: 1;
  background-image: url('../../assets/img/background/bg.png');
}

.hero-banner {
  padding: 80px 0;
  background: radial-gradient(circle at 0% 0%, #d9e6f5 0%, #dae7e9 50%);
  overflow: hidden;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  background: #eef4ff;
  color: var(--blue);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.choice-section {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../../assets/img/background/beautiful-abstract-pattern-on-white.png');
  background-attachment: fixed;
  /* Parallax attraction effect */
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.hero-title span,
.choice-section span,
.section-values span,
.infographic-section span,
.order-cycle span,
.order-n span,
.Trusted span,
.scroller-section span,
.support-section span {
  color: var(--blue);
  /* text-decoration: underline; */
}

.hero-text {
  font-size: 0.9rem;
  color: #425466;
  margin-bottom: 40px;
  max-width: 90%;
}

/* Image Side */
.hero-image-wrapper {
  position: relative;
}

.hero-main-img {
  width: 100%;
  border-radius: 30px;
  box-shadow: 0 50px 100px -20px rgba(50, 50, 93, 0.25);
}

.floating-card {
  position: absolute;
  top: 10%;
  right: -5%;
  background: white;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 15px;
  animation: float 4s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

/* Stats in Hero */
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 50px;
}

.stat-item h3 {
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 0;
}

.stat-item p {
  font-size: 0.9rem;
  color: #707070;
}

/* General UI */
.btn-brand {
  background: var(--blue);
  color: white;
  padding: 15px 35px;
  border-radius: 8px;
  font-weight: 700;
  border: none;
  transition: 0.3s;
}

.btn-brand:hover {
  background: #0056e0;
  transform: translateY(-2px);
  color: white;
}

.section-padding {
  padding: 100px 0;
}

@media (max-width: 991px) {
  .hero-title {
    font-size: 2.8rem;
  }

  .con-info .risk-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }

  .floating-card {
    right: 5%;
  }
}

.risk-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 576px) {
  .risk-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

.bg-navy {
  background-color: var(--navy);
  color: white;
}

.text-gold {
  color: var(--gold);
}

/* Feature Cards */
.value-card {
  border: none;
  transition: 0.4s;
  height: 100%;
  padding: 2rem;
  background: #fff;
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.icon-circle {
  width: 60px;
  height: 60px;
  background: var(--light-bg);
  border-radius: 50%;
  display: flex;
  align-items:
    center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--navy);
  font-size: 1.5rem;
}

/* Section Headings */
.section-title {
  font-weight: 700;
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 40px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background:
    var(--gold);
}

.text-center .section-title::after {
  left: 50%;
  transform: translateX(-50%);
}

/* Testimonial */
.testimonial-box {
  border-left: 5px solid var(--gold);
  padding: 30px;
  background: var(--light-bg);
  font-style: italic;
}

/* Animation specific tweak */
[data-aos] {
  pointer-events: none;
}

.aos-animate {
  pointer-events: auto;
}

/* 1. Sliding Underline Animation for Links */
.nav-link {
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--text-dark) !important;
  position: relative;
  margin: 0 12px;
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0%;
  display: none;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #0061ff;
  /* Match your brand blue */
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
  display: block;
  font-weight: 700;
  background-color: var(--gold);
}

.nav-link:hover {
  color: #0061ff !important;
}

/* 2. Brand Hover Animation */
.brand-animate {
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: inline-block;
}

.brand-animate:hover {
  transform: scale(1.05);
}

/* 3. Pulse Effect for the "Begin Your Free Year" CTA */
.pulse-button {
  box-shadow: 0 0 0 0 rgba(255, 204, 0, 0.7);
  animation: pulse 2s infinite;
  font-weight: 700;
}

@keyframes pulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(255, 204, 0, 0.7);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(255, 204, 0, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(255, 204, 0, 0);
  }
}

/* --- Global Components --- */
.section-padding {
  padding: 60px 0;
}

.bg-glass {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.btn-blue-main {
  background: var(--blue);
  color: white;
  border-radius: 100px;
  padding: 16px 45px;
  text-transform: uppercase;
  font-weight: 800;
  border: none;
  transition: var(--transition-main);
  box-shadow: 0 15px 30px -5px rgba(37, 99, 235, 0.3);
}

.btn-blue-main:hover {
  transform: translateY(-5px) scale(1.03);
  color: black;
  box-shadow: 0 25px 50px -10px rgba(37, 99, 235, 0.4);
  background: var(--gold);
}

.btn-yellow-pill {
  background: var(--gold);
  color: var(--text-dark);
  border-radius: 100px;
  padding: 16px 45px;
  text-transform: uppercase;
  font-weight: 900;
  border: none;
  transition: var(--transition-main);
  box-shadow: 0 10px 25px -5px rgba(251, 191, 36, 0.25);
}

.btn-yellow-pill:hover {
  transform: translateY(-5px) scale(1.03);
  background: var(--blue);
  color: white;
}

.section-tag {
  background: var(--gold-soft);
  color: #b47009;
  padding: 10px 24px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  border: 1px solid rgba(251, 191, 36, 0.3);
  margin-bottom: 30px;
  display: inline-block;
}

/* Mobile View */
@media (max-width: 768px) {
  .section-tag {
    margin-top: 20px;
  }
}

/* --- Advanced Animated Background --- */
.bg-master-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -5;
  pointer-events: none;
  overflow: hidden;
  background: #ffffff;
}

/* Moving Fluid Blobs */
.mesh-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.35;
  z-index: -4;
  animation: blobFloat 25s infinite alternate ease-in-out;
}

.blob-1 {
  width: 70vw;
  height: 70vw;
  background: var(--light-blue);
  top: -10%;
  left: -10%;
}

.blob-2 {
  width: 60vw;
  height: 60vw;
  background: var(--gold-soft);
  bottom: -10%;
  right: -5%;
  animation-delay: -7s;
}

.blob-3 {
  width: 50vw;
  height: 50vw;
  background: #e0f2fe;
  top: 40%;
  left: 30%;
  animation-delay: -15s;
}

@keyframes blobFloat {
  0% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(50px, -30px) scale(1.1);
  }

  66% {
    transform: translate(-30px, 50px) scale(0.9);
  }

  100% {
    transform: translate(0, 0) scale(1);
  }
}

/* Technical Grid Overlay */
.bg-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(37, 99, 235, 0.05) 1px, transparent 1px);
  background-size: 50px 50px;
  z-index: -3;
}

/* Grain Noise Overlay */
.bg-noise {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../../assets/img/background/noise.svg');
  opacity: 0.03;
  z-index: -2;
}

/* Interactive Mouse Spotlight */
.mouse-spotlight {
  position: absolute;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.04) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: -1;
  transition: opacity 0.3s ease;
}

/* --- Scroll Reveal System --- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: var(--transition-main);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* --- Hero: Split Banner --- */
.hero-split {
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 45px 0;
}

.hero-title span {
  color: var(--blue);
}

.hero-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 50px;
  max-width: 600px;
}

.hero-img-container {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
}

@media (max-width: 768px) {
  .hero-img-container {
    margin-top: 20px;
  }
}

.hero-img-container img {
  width: 100%;
  transition: transform 0.6s ease;
}

.hero-img-container:hover img {
  transform: scale(1.02);
}

/* --- Horizontal Lifecycle --- */
.lifecycle-container {
  max-width: 90%;
  margin: 0 auto;
  position: relative;
  padding: 40px 0;
  overflow-x: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.lifecycle-container::-webkit-scrollbar {
  display: none;
}

.lifecycle-track {
  position: absolute;
  top: 95px;
  left: 5%;
  width: 90%;
  height: 6px;
  background: #e2e8f0;
  z-index: 1;
  border-radius: 10px;
  overflow: hidden;
}

.lifecycle-progress {
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: var(--blue);
  transition: width 3s cubic-bezier(0.65, 0, 0.35, 1);
}

.reveal.active .lifecycle-progress {
  width: 100%;
}

.steps-flex {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 2;
  width: 100%;
  min-width: 1000px;
}

.step-item {
  width: 160px;
  text-align: center;
}

.step-circle {
  width: 100px;
  height: 100px;
  background: white;
  border: 3px solid #f1f5f9;
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 35px;
  font-size: 2rem;
  color: var(--blue);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.03);
  position: relative;
}

.step-circle::before {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 45px;
  border: 2px solid var(--gold);
  opacity: 0;
  transition: 0.3s;
}

.step-item:hover .step-circle {
  transform: translateY(-15px) rotate(10deg);
  border-color: var(--blue);
}

.step-item:hover .step-circle::before {
  opacity: 0.3;
  transform: scale(1.1);
}

.step-label {
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.step-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* --- Bento System Grid --- */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 30px;
}

.bento-card {
  background: white;
  border-radius: 3.5rem;
  padding: 20px;
  border: 1px solid #f1f5f9;
  transition: var(--transition-main);
  box-shadow: var(--card-shadow);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.bento-card:hover {
  transform: translateY(-15px);
  box-shadow: var(--card-shadow-hover);
  border-color: var(--blue);
}

.bento-icon-box {
  width: 70px;
  height: 70px;
  background: var(--light-blue);
  color: var(--blue);
  border-radius: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 35px;
  transition: 0.4s;
}

.bento-card:hover .bento-icon-box {
  background: var(--blue);
  color: white;
  transform: rotate(-8deg) scale(1.1);
}

/* --- Integration Hub Visual --- */
.hub-visual-box {
  background: white;
  border-radius: 6rem;
  padding: 10px 40px;
  text-align: center;
  position: relative;
  border: 1px solid #e2e8f0;
  box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.05);
}

.hub-center {
  width: 260px;
  height: 260px;
  background: rgb(216, 255, 250);
  border: 8px solid var(--blue);
  border-radius: 6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  position: relative;
  z-index: 10;
  box-shadow: 0 0 100px rgba(37, 99, 235, 0.2);
  animation: hubPulse 5s infinite;
  margin-top: 100px;
}

@keyframes hubPulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.04);
  }
}

.hub-sat {
  position: absolute;
  padding: 22px 40px;
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 100px;
  box-shadow: var(--card-shadow);
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: 0.4s;
  z-index: 5;
}

.hub-sat:hover {
  transform: scale(1.1) translateY(-5px);
  border-color: var(--gold);
  box-shadow: 0 25px 50px rgba(251, 191, 36, 0.15);
}

.sat-1 {
  top: 10%;
  left: 10%;
  background: #fff59c;
}

.sat-2 {
  top: 10%;
  right: 10%;
  background-color: #c1cfff;
}

.sat-3 {
  bottom: 10%;
  left: 10%;
  background: #a4f1e0;
}

.sat-4 {
  bottom: 10%;
  right: 10%;
  background: #ffdcbf;
}

/* --- Footer CTA --- */
.cta-banner {
  background: linear-gradient(135deg, var(--blue) 0%, #1e40af 100%);
  border-radius: 6rem;
  padding: 140px 60px;
  color: white;
  text-align: center;
  margin: 100px 0;
  position: relative;
  overflow: hidden;
}

@media (max-width: 576px) {
  .cta-banner {
    padding: 60px 20px;
    /* reduced padding */
    border-radius: 2rem;
    /* optional: better for mobile */
    margin: 20px !important;
  }

  .cta-banner h3 {
    font-size: 26px;
    /* adjust heading size */
    line-height: 1.4;
  }
}

.cta-banner h2 {
  color: white;
  font-size: clamp(2.5rem, 6vw, 3rem);
}

@media (max-width: 576px) {
  .heading-mob {
    font-size: 34px !important;
  }

  .operational-gen-mob {
    padding-left: 16px !important;
    padding-right: 16px !important;
    margin-top: 20px;
    margin-bottom: 20px;
  }
}

@media (max-width: 991px) {
  .hero-split {
    text-align: center;
    padding-top: 40px;
  }

  .hero-subtitle {
    margin: 0 auto 40px;
  }

  .bento-card {
    padding: 40px;
    /* border-radius: 2.5rem; */
  }

  .hub-sat {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    margin: 15px auto;
    width: fit-content;
  }

  .hub-visual-box {
    padding: 60px 20px;
    border-radius: 4rem;
  }

  .hub-center {
    width: 200px;
    height: 200px;
  }

  .lifecycle-track,
  .lifecycle-progress {
    display: none;
  }

  .steps-flex {
    flex-direction: column;
    align-items: center;
    gap: 60px;
    min-width: 100%;
  }

  .step-item {
    width: 100%;
    max-width: 350px;
  }

  .col-lg-8,
  .col-lg-4,
  .col-lg-6 {
    width: 100% !important;
  }
}

#footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #ffffff;
  border-top: 1px solid #ddd;
  padding: 15px;
  z-index: 1;
}

/* New Attractive Styling */
.path-card {
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 30px !important;
  background: #ffffff;
  z-index: 1;
}

.premium-card {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../../assets/img/background/yellow-white-abstract-gradient.png');
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.premium-card:hover {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    url('../../assets/img/background/bg-primium.png');
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.path-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 30px 60px rgba(0, 97, 255, 0.2) !important;
}

.icon-container {
  transition: transform 0.3s ease;
}

.path-card:hover .icon-container {
  transform: rotate(10deg) scale(1.1);
}

/* Glassmorphism Decorative Shapes */
.bg-shape {
  position: absolute;
  width: 150px;
  height: 150px;
  background: rgba(0, 97, 255, 0.05);
  border-radius: 50%;
  top: -50px;
  right: -50px;
  z-index: -1;
}

.bg-shape-white {
  position: absolute;
  width: 150px;
  height: 150px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  top: -50px;
  right: -50px;
  z-index: -1;
}

/* Button Animation */
.anim-btn {
  transition: all 0.3s ease;
  font-weight: 700;
}

.anim-btn:hover {
  letter-spacing: 1px;
  padding-right: 2.5rem !important;
}

.title-accent {
  width: 60px;
  height: 4px;
  background: #0061ff;
  border-radius: 10px;
  margin-top: 15px;
}

/* Card Design with Glassmorphism */
.value-card {
  border: none;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 97, 255, 0.05);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border-bottom: 4px solid transparent;
  padding: 15px;
}

/* Interactive Hover State */
.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 97, 255, 0.15);
  border-bottom: 4px solid #ffcc00;
  /* Yellow bottom accent */
}

/* 1. Lift the card and add shadow */
.value-card.active-highlight {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(10, 37, 64, 0.15);
  box-shadow: 0 20px 40px rgba(0, 97, 255, 0.15);
  border-bottom: 4px solid #ffcc00;
  border-top: 4px solid #ffffff;
}

/* 2. Change the Icon style when card is active */
.value-card.active-highlight .icon-box-value {
  color: #ffffff;
  transform: scale(1.1) rotate(5deg);
  /* Slight pop and tilt */
  background: #ffcc00;
  /* Switch to Yellow on hover */
  color: #0a2540;
  transform: rotateY(180deg);
}

.value-card.active-highlight .card-title-text {
  /* Switch to Yellow on hover */
  color: #0061ff;
}

.card-title-text {
  color: #0a3763;
  transition: color 0.3s ease;
}

.value-card:hover .card-title-text {
  color: #0061ff;
}

.infographic-divider {
  width: 80px;
  height: 5px;
  background: var(--gold);
  margin: 20px auto;
  border-radius: 10px;
}

/* Info Card Design */
.info-card {
  border-radius: 20px;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.info-card p {
  font-size: 1rem;
}

.info-card:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 35px rgba(0, 97, 255, 0.15) !important;
}

.x-small {
  font-size: 0.85rem;
}

/* Border Accents */
.border-left-blue {
  border-left: 5px solid var(--blue);
}

.border-left-yellow {
  border-left: 5px solid var(--gold);
}

.border-bottom-yellow {
  border-bottom: 5px solid var(--gold);
}

.border-right-blue {
  border-right: 5px solid var(--blue);
}

.border-right-yellow {
  border-right: 5px solid var(--gold);
}

.border-right-gold {
  border-right: 5px solid var(--gold);
}

.border-bottom-blue {
  border-bottom: 5px solid var(--blue);
}

/* Central Hub Animation */
.central-hub-wrap {
  position: relative;
  display: inline-block;
  padding: 50px;
}

.central-engine {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 5;
}

.fa-spin-slow {
  animation: fa-spin 10s infinite linear;
}

/* Pulse Rings */
.pulse-ring-outer,
.pulse-ring-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: var(--blue);
  z-index: 1;
}

.pulse-ring-outer {
  width: 100%;
  height: 100%;
  opacity: 0.2;
  animation: pulse-scale 3s infinite;
}

.pulse-ring-inner {
  width: 80%;
  height: 80%;
  opacity: 0.3;
  animation: pulse-scale 2s infinite;
}

@keyframes pulse-scale {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.3;
  }

  100% {
    transform: translate(-50%, -50%) scale(1.4);
    opacity: 0;
  }
}

.z-index-1 {
  z-index: 2;
}

.cycle-wrapper {
  position: relative;
  width: 100%;
  max-width: 900px;
  height: 350px;
  margin: 40px auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* SVG Path Styling */
.orbit-svg {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  transform: rotate(-90deg);
  /* Start animation from 12 o'clock */
}

.orbit-bg-path {
  fill: none;
  stroke: #d1d9e6;
  stroke-width: 2;
  stroke-dasharray: 8, 12;
}

.orbit-active-path {
  fill: none;
  stroke: #0061ff;
  /* Brand Blue */
  stroke-width: 3;
  stroke-dasharray: 2100;
  /* Approximate circumference of ellipse */
  stroke-dashoffset: 2100;
  animation: drawPath 20s linear infinite;
  stroke-linecap: round;
}

/* Clockwise Path Animation */
@keyframes drawPath {
  0% {
    stroke-dashoffset: 2100;
  }

  100% {
    stroke-dashoffset: 0;
  }
}

/* Node Highlights synced with Path */
.icon-box {
  width: 80px;
  height: 80px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 10;
  border: 3px solid transparent;
  animation: nodePulse 10s infinite;
  animation-delay: var(--d);
}

@keyframes nodePulse {

  0%,
  15% {
    border-color: #0061ff;
    transform: scale(1.3);
    color: var(--gold);
    box-shadow: 0 0 20px rgba(0, 97, 255, 0.4);
  }

  18%,
  100% {
    border-color: transparent;
    transform: scale(1);
  }
}

/* Layout Positioning */
.node {
  position: absolute;
  z-index: 10;
  width: 220px;
  text-align: left;
}

.node .label {
  font-size: 0.95rem;
  font-weight: 700;
  margin-top: 20px;
  text-align: left;
  color: #0a2540;
}

.n1 {
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
}

.n2 {
  top: 0%;
  right: 0px;
}

.n3 {
  bottom: -5%;
  right: 0px;
}

.n4 {
  bottom: -60px;
  left: 55%;
  transform: translateX(-50%);
}

.n5 {
  bottom: 0%;
  left: 80px;
}

.n6 {
  top: 10%;
  left: 60px;
}

.cycle-center {
  z-index: 5;
  background: #f8f9fa;
  padding: 20px;
  border-radius: 50%;
}

/* Section Container */
.testimonial-section-img {
  background-color: #0a2540;
  /* Fallback color */
}

/* Background Image Layer with Parallax Effect */
.testimonial-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../../assets/img/background/wavy-light-yellow.jpg');
  background-attachment: fixed;
  /* Parallax attraction effect */
  background-size: cover;
  background-position: center;
  filter: brightness(1) saturate(0.4);
  z-index: 1;
}

/* Blue Abstract Overlay */
.testimonial-abstract-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(91, 92, 94, 0.1) 0%, rgba(255, 255, 255, 0.2) 100%);
  z-index: 2;
}

/* Profile Initials Styling */
.profile-initials {
  font-size: 1.2rem;
  font-weight: 800;
  color: white;
}

.text-gold {
  color: #ffcc00;
}

.testimonial-wrapper {
  display: flex;
  padding: 40px 0;
}

.testimonial-track-modern {
  display: flex;
  width: max-content;
  animation: scrollCards 25s linear infinite;
}

.testimonial-track-modern:hover {
  animation-play-state: paused;
}

.testimonial-group {
  display: flex;
  gap: 2.5rem;
  padding-right: 2.5rem;
}

/* Card Styling */
.modern-card {
  width: 450px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 30px;
  padding: 50px 40px 40px;
  position: relative;
  text-align: left;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  transition: 0.4s;
}

.modern-card:hover {
  transform: translateY(-15px) scale(1.02);
  background: #ffffff;
}

/* Profile Icon Styling */
.profile-icon-wrap {
  position: absolute;
  top: -35px;
  left: 40px;
  width: 100px;
  height: 100px;
  background: var(--blue);
  color: white;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  box-shadow: 0 10px 20px rgba(155, 193, 255, 0.3);
  border: 8px solid #fdf6e9;
}

.verified-badge {
  position: absolute;
  bottom: -5px;
  right: -5px;
  background: #28a745;
  color: white;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  font-size: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
}

.quote-text {
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--text-navy);
}

.text-gold {
  color: var(--gold);
}

/* Infinite Animation */
@keyframes scrollCards {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .modern-card {
    width: 320px;
    padding: 40px 25px 30px;
  }

  .testimonial-track-modern {
    animation-duration: 15s;
  }

}

/* 1. Stacking Logic */
.scroll-stack {
  position: relative;
}

.stack-section {
  width: 100%;
  display: flex;
  align-items: center;
  position: relative;
}

/* Fixed Section 1 */
.sticky-top-section {
  position: sticky;
  top: 0;
  z-index: 1;
  min-height: 100vh;
}

/* Overlapping Section 2 */
.overlap-section {
  position: relative;
  z-index: 2;
  box-shadow: 0 -20px 50px rgba(0, 0, 0, 0.3);
  margin-top: -180px;
  padding-top: 180px;
  transform: translateY(140px);
  will-change: transform;
}

/* 2. Backgrounds & Theme */
.cloud-bg {
  background: linear-gradient(135deg, #fae396 0%, #c7f1e5 100%);
}

.ai-bg {
  background: linear-gradient(135deg, #cefff0 0%, #ffe48b 100%);
}

.text-gold {
  color: #ffcc00;
}

.btn-warning {
  background: #ffcc00;
  border: none;
  font-weight: 700;
}

/* 3. AI Grid Infographic [cite: 93] */
.ai-visual-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.ai-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  transition: 0.3s;
}

.ai-box:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-10px);
}

/* Reuse Cloud Hub Styles from previous section */
.cloud-hub-wrapper {
  position: relative;
  width: 350px;
  height: 350px;
  margin: 0 auto;
}

.central-hub {
  width: 120px;
  height: 120px;
  background: #232d3b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 10;
}

.hub-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(45, 109, 246, 0.3);
  border-radius: 50%;
  animation: hubRipple 3s infinite;
  z-index: -1;
}

.spoke-node {
  position: absolute;
  padding: 10px 20px;
  background: white;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.8rem;
  z-index: 15;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.s-top-left {
  top: 20px;
  left: 0;
}

.s-top-right {
  top: 20px;
  right: 0;
}

.s-bottom-left {
  bottom: 20px;
  left: 0;
}

.s-bottom-right {
  bottom: 20px;
  right: 0;
}

@keyframes hubRipple {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }

  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

.cloud-solution-section {
  min-height: 600px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #fae8ac 0%, #ffffff 50%, #e6fff2 100%);
  position: relative;
}

.text-primary-blue {
  color: #2d6df6;
}

.btn-primary-blue {
  background: #2d6df6;
  border: none;
  color: white;
  transition: 0.3s;
}

.btn-primary-blue:hover {
  background: #1a52cc;
  transform: scale(1.05);
}

.cloud-title {
  font-size: 3.2rem;
  line-height: 1.2;
  letter-spacing: -1px;
}

.cloud-description {
  font-size: 1.15rem;
  color: #5a6b7d;
  max-width: 500px;
}

/* 2. Hub & Spoke Layout */
.cloud-hub-wrapper {
  position: relative;
  width: 400px;
  height: 400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.central-hub {
  width: 140px;
  height: 140px;
  background: #232d3b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 10;
}

.hub-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--blue);
  border-radius: 50%;
  animation: hubRipple 3s infinite;
  z-index: -1;
}

@keyframes hubRipple {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }

  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

/* 3. Spoke Nodes (Glassmorphism) */
.spoke-node {
  position: absolute;
  padding: 12px 25px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(5px);
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.85rem;
  color: #333;
  z-index: 15;
  animation: floatNode 4s infinite ease-in-out;
}

.s-top-left {
  top: 50px;
  left: 20px;
  animation-delay: 0s;
}

.s-top-right {
  top: 50px;
  right: 20px;
  animation-delay: 1s;
}

.s-bottom-left {
  bottom: 50px;
  left: 20px;
  animation-delay: 2s;
}

.s-bottom-right {
  bottom: 50px;
  right: 20px;
  animation-delay: 1.5s;
}

@keyframes floatNode {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* 4. Connecting Lines Animation */
.connecting-lines {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 5;
}

.draw-line {
  stroke: #d1d9e6;
  stroke-width: 2;
  stroke-dasharray: 8, 8;
  stroke-dashoffset: 100;
  animation: flowDashed 10s linear infinite;
}

@keyframes flowDashed {
  to {
    stroke-dashoffset: 0;
  }
}

@media (max-width: 991px) {
  .cloud-title {
    font-size: 2.5rem;
  }

  .cloud-hub-wrapper {
    transform: scale(0.8);
  }
}

.value-proposition-section {
  position: relative;
  background-color: #ffffff;
  background-image: url('../../assets/img/background/wavy-light-yellow.jpg');
  background-size: cover;
  background-attachment: fixed;
}

.accent-bar {
  width: 80px;
  height: 5px;
  background: #ffcc00;
  border-radius: 10px;
}

/* Glassmorphism Cards */
.glass-card {
  background: rgba(255, 255, 255, 0.7) !important;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.5) !important;
  border-radius: 25px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.glass-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 97, 255, 0.1) !important;
}

/* Center Infographic Styles */
.innovation-hub {
  position: relative;
}

.orbit-container {
  width: 180px;
  height: 180px;
  margin: 0 auto;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.center-core {
  width: 80px;
  height: 80px;
  background: #0061ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  z-index: 5;
  animation: pulseCore 3s infinite;
}

.orbit-path-dashed {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 2px dashed rgba(0, 97, 255, 0.2);
  border-radius: 50%;
  animation: rotateOrbit 20s linear infinite;
}

/* Pulse Animations */
.icon-pulse-blue,
.icon-pulse-yellow {
  width: 60px;
  height: 60px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-size: 1.5rem;
}

.icon-pulse-blue {
  background: #eef4ff;
  color: #0061ff;
  box-shadow: 0 0 0 0 rgba(0, 97, 255, 0.4);
  animation: pulseBlue 2s infinite;
}

.icon-pulse-yellow {
  background: #fff9e6;
  color: #ffcc00;
  box-shadow: 0 0 0 0 rgba(255, 204, 0, 0.4);
  animation:
    pulseYellow 2s infinite;
}

@keyframes pulseCore {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes rotateOrbit {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes pulseBlue {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 97, 255, 0.4);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(0, 97, 255,
        0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(0, 97, 255, 0);
  }
}

@keyframes pulseYellow {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 204, 0, 0.4);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(255, 204,
        0, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 204, 0, 0);
  }
}

/* Satellite Decorations */
.satellite {
  position: absolute;
  width: 30px;
  height: 30px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: #0061ff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.sat-1 {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.sat-2 {
  bottom: 10%;
  right: 0;
}

.sat-3 {
  bottom: 10%;
  left: 0;
}

/* --- Infographic Styling --- */

/* Section Background with subtle abstract shapes */
.section-values {
  /* background-color: #f6fddc; */
  background-image: linear-gradient(to right, rgb(232, 242, 253), rgb(255, 255, 214));
  position: relative;
}

/* Decorative Background Blob (CSS Shape) */
.bg-decoration {
  position: absolute;
  width: 300px;
  height: 300px;
  background: linear-gradient(45deg, rgba(10, 37, 64, 0.05), rgba(255, 204, 0, 0.05));
  border-radius: 50%;
  z-index: 0;
  filter: blur(40px);
}

.blob-1 {
  top: -50px;
  left: -50px;
}

.blob-2 {
  bottom: -50px;
  right: -50px;
}

/* Card Styling to look like Infographic Tiles */
.value-card {
  border: none;
  padding: 0px;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  /* Bouncy transition */
  margin-top: 10px;
  /* Space for the floating icon */
  position: relative;
  z-index: 1;
  overflow: visible;
  /* Allow icon to float outside */
  border-top: 4px solid #d1ddff;
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(10, 37, 64, 0.15);
}

/* The "Infographic" Icon - Floating Effect */
.icon-box-value {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #498ed3 0%, #0c64bd 100%);
  color: #ffcc00;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin: -40px auto 20px auto;
  /* Pulls icon up halfway out of card */
  box-shadow: 0 8px 20px rgba(10, 37, 64, 0.2);
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease;
}

/* Add a ring around the icon on hover */
.value-card:hover .icon-box-value {
  transform: scale(1.1) rotate(5deg);
}

/* Typography Enhancements */
.card-title-text {
  color: #0a2540;
  font-weight: 700;
  padding: 10px 10px 0px 10px;
}

.section-title span {
  color: #0a2540;
  position: relative;
  display: inline-block;
}

/* Underline effect for the main title */
.section-title span::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 8px;
  background: rgba(255, 204, 0, 0.4);
  bottom: 5px;
  left: 0;
  z-index: -1;
  transform: skewX(-10deg);
}

/* --- SECTION 6: INFINITE SCROLLER --- */
.scroller-section {
  background: #ffffff;
  padding: 80px 0;
  overflow: hidden;
}

.marquee-wrapper {
  position: relative;
  width: 100vw;
  max-width: 100%;
  height: auto;
  overflow-x: hidden;
  margin-bottom: 30px;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  /* Fade edges */
}

.marquee-content {
  display: flex;
  gap: 20px;
  width: max-content;
  /* Animation applied via inline classes for direction */
}

.scroll-left {
  animation: scrollLeft 35s linear infinite;
}

.scroll-right {
  animation: scrollRight 35s linear infinite;
}

/* Pause on hover for readability */
.marquee-wrapper:hover .marquee-content {
  animation-play-state: paused;
}

@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }

  /* Assumes content is duplicated */
}

@keyframes scrollRight {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0);
  }
}

.feature-ticker-card {
  background: #e6f4ff;
  border: 1px solid #eef0f2;
  border-radius: 12px;
  padding: 20px;
  width: 300px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.feature-ticker-card:hover {
  transform: scale(1.02);
  border-color: var(--gold);
}

.feature-icon-small {
  color: var(--blue);
  font-size: 1.6rem;
  margin-bottom: 10px;
}

/* --- SECTION 7: SUPPORT ANIMATION --- */
.support-section {
  background-image: linear-gradient(180deg, rgb(241, 255, 217), rgb(245, 239, 162));
  color: white;
  position: relative;
  overflow: hidden;
}

/* Radar/Pulse Animation Background */
.radar-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  z-index: 0;
}

.rc-1 {
  width: 300px;
  height: 300px;
  animation: pulseRadar 4s infinite;
}

.rc-2 {
  width: 500px;
  height: 500px;
  animation: pulseRadar 4s infinite 1s;
}

.rc-3 {
  width: 700px;
  height: 700px;
  animation: pulseRadar 4s infinite 2s;
}

@keyframes pulseRadar {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0;
  }

  50% {
    opacity: 0.3;
  }

  100% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0;
  }
}

.support-content {
  position: relative;
  z-index: 2;
}

/* --- SECTION 8: INNOVATION / AI --- */
.innovation-section {
  background: #f4f6f8;
  position: relative;
}

.ai-card {
  background: white;
  border-radius: 15px;
  padding: 30px;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* Futuristic Hover Effect */
.ai-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--tech-gradient);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
}

.ai-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(118, 75, 162, 0.15);
}

.ai-card:hover::before {
  transform: scaleX(1);
}

.ai-badge {
  background: rgba(118, 75, 162, 0.1);
  color: #764ba2;
  font-size: 0.75rem;
  padding: 5px 10px;
  border-radius: 20px;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 15px;
}

/* --- SECTION 9: CTA --- */
.cta-section {
  /* position: absolute; */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../../assets/img/background/cta.jpg');
  background-attachment: fixed;
  /* Parallax attraction effect */
  background-size: cover;
  background-position: center;
  /* filter: brightness(1) saturate(0.3); */
  z-index: 1;
}

.btn-glow {
  background: var(--blue);
  color: var(--light-bg);
  font-weight: 800;
  padding: 15px 30px;
  border-radius: 50px;
  position: relative;
  font-size: 0.8rem;
  overflow: hidden;
  transition: all 0.3s;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
}

.btn-glow:hover::after {
  transform: rotate(45deg) translateX(50%);
}

.btn-glow:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(255, 204, 0, 0.6);
  color: black;
  background-color: var(--gold);
}

.pricing-section {
  background-color: #fffdf5;
}

/* Cream background from your image */

/* Customizing the Bootstrap Toggle to look like your image */
.custom-switch .form-check-input {
  width: 3.5rem;
  height: 1.75rem;
  cursor: pointer;
}

.custom-switch .form-check-input:checked {
  background-color: var(--blue);
  /* Light gray from your image */
  border-color: #dee2e6;
}

.custom-switch .form-check-input:focus {
  box-shadow: none;
}

.container-cycle {
  position: relative;
  width: 500px;
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* --- SVG CIRCLE LAYER --- */
.container-cycle .svg-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
  /* Start at 12 o'clock */
  pointer-events: none;
}

.container-cycle circle {
  fill: none;
  stroke-width: 4;
  cx: 250;
  cy: 250;
  r: 200;
}

.container-cycle .track {
  stroke: var(--line-gray);
  stroke-dasharray: 10, 10;
}

.container-cycle .progress {
  stroke: var(--blue);
  stroke-linecap: round;
  stroke-dasharray: 10, 10;
  /* 2 * PI * 200 */
  stroke-dashoffset: 1256;
  /* Hidden by default */
  filter: drop-shadow(0 0 px rgba(37, 99, 235, 0.5));
}

/* Class used to enable animation duration */
.container-cycle .animating {
  stroke-dasharray: 1000;
  /* total path length */
  stroke-dashoffset: 1000;
  /* start hidden */
  animation: draw 6s linear infinite;
}

@keyframes draw {
  from {
    stroke-dashoffset: 1000;
  }

  to {
    stroke-dashoffset: 0;
  }
}

/* --- ICONS / NODES --- */
.node {
  position: absolute;
  width: 70px;
  height: 70px;
  /* background: var(--card-bg); */
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  z-index: 2;
  opacity: 0.1;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  /* border: 3px solid transparent; */
  color: #94A3B8;
  font-size: 24px;
}

.node .label {
  position: absolute;
  width: 120px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  opacity: 0.1;
  transition: opacity 0.4s;
  pointer-events: none;
}

/* --- ACTIVE STATE --- */
.node.active {
  transform: scale(1.2);
  opacity: 1;
  border-color: var(--active-glow);
  color: var(--blue);
  box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.3);
}

.node.active+.label {
  opacity: 1;
  font-weight: 700;
}

/* --- CENTER ROTATING EARTH --- */
.center-earth {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 360px;
  /* Sized to fit nicely inside the track */
  height: 360px;
  border-radius: 50%;
  /* Ensures the image itself is circular */
  z-index: 0;
  background-image: url('media.mp4');
  background-size: cover;
  box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.2), 0 10px 30px rgba(0, 0, 0, 0.1);
  /* Animation parameters */
  animation: rotate-earth 60s linear infinite;
}

/* --- POSITIONING --- */
/* Node 1: Top (0 deg) */
.pos-1 {
  top: 15px;
  left: 215px;
}

.lbl-1 {
  top: -35px;
  left: 190px;
}

/* Node 2: Top Right (60 deg) */
.pos-2 {
  top: 97px;
  left: 368px;
}

.lbl-2 {
  top: 140px;
  left: 450px;
  text-align: left;
}

/* Node 3: Bottom Right (120 deg) */
.pos-3 {
  top: 277px;
  left: 398px;
}

.lbl-3 {
  top: 340px;
  left: 440px;
  text-align: left;
}

/* Node 4: Bottom (180 deg) */
.pos-4 {
  top: 415px;
  left: 215px;
}

.lbl-4 {
  top: 478px;
  left: 190px;
}

/* Node 5: Bottom Left (240 deg) */
.pos-5 {
  top: 277px;
  left: 30px;
}

.lbl-5 {
  top: 330px;
  left: -80px;
  text-align: right;
}

/* Node 6: Top Left (300 deg) */
.pos-6 {
  top: 97px;
  left: 42px;
}

.lbl-6 {
  top: 150px;
  left: -70px;
  text-align: right;
}

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 768px) {
  body {
    overflow-y: auto;
    height: auto;
    padding: 0px 0;
  }

  .container {
    width: 100%;
    height: auto;
    flex-direction: column;
    box-sizing: border-box;
  }

  .svg-layer {
    display: none;
  }

}

/* --- SECTION BACKGROUND --- */
.stream-section {
  padding: 80px 0;
  position: relative;
  padding: 80px 0;
  background-image:
    url('data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/2wCEAAkGBwgICAcHCAgHBwcHBwoHBwcHBw8ICQcKIBEiIhUREx8YHSggGBolGxMTITEhJSkrLi4uFx8zODMsNygtLisBCgoKDQ0NDg0NDysZFRk3KystKystLSsrLSsrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrK//AABEIAL4BCgMBIgACEQEDEQH/xAAXAAEBAQEAAAAAAAAAAAAAAAAAAQIH/8QAFhABAQEAAAAAAAAAAAAAAAAAABEB/8QAFgEBAQEAAAAAAAAAAAAAAAAAAAEC/8QAFREBAQAAAAAAAAAAAAAAAAAAABH/2gAMAwEAAhEDEQA/AO2AMtAAgAAAAAAAAAAAAAAAKIqIAAKAoAAAAIogiKAoCoAAAAAAAAAAAAAAAAAAIoKgCAqKoAAAAAAIogAKgKAgoCCoAKgAqAAACgIKgAAAAIKIoAoAAAAAAAAoAiKAAAAAAAAAAAAAAAAAqCoIAAAAAAAAACgAKAIAAAAAAAAAAAAACgAAAIKggAAAAAAAAAAACgAAAAAAACAKICioAKgCoACgAAAgoIKggAAAAAKAAoAgAAAAAAAACCqgogAAAAAAAACAqAAAAAAAAAKCKiKIKKIAAAAIACgAgAAAACAKIKKAACILRAVUEBRAFEABBBqlQUWlQApQApUUFogCiAKIAqAAAAtQBaIAqAACAqAlBUCipRCgIqKogItEAUQBRFAAWioAACipQSgAgAKABQBCiiCAAAAAioKCKiioKiiAKItAEUAKAACAAFKgCiAqiARRAFEAUQCKgBAAIIIirSpigoigAgKIoFBAUKgLSs6A0BVQAACgAAoAgAAAgKgAAgKgiD//2Q==');
  background-attachment: fixed;
  /* Parallax attraction effect */
  background-size: cover;
  background-position: center;
}

/* --- SCROLL CONTAINER --- */
.scroll-container {
  display: flex;
  gap: 40px;
  overflow-x: auto;
  padding: 60px 50px;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  position: relative;
  z-index: 2;
  /* Hide scrollbar visually but keep functionality */
  scrollbar-width: none;
}

.scroll-container::-webkit-scrollbar {
  display: none;
}

/* --- CARD STYLING --- */
.stream-card {
  flex: 0 0 320px;
  scroll-snap-align: center;
  background-image: url('../../assets/img/background/abstarct-blue.jpg');
  background-size: cover;
  background-position: center;

  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 24px;
  padding: 30px;
  position: relative;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: 1;
  transform: scale(0.9);
  box-shadow: var(--shadow-soft);
  cursor: pointer;
}

/* The Active/Center Card State */
.stream-card.active {
  opacity: 1;
  transform: scale(1.2);
  border-color: var(--blue);
  box-shadow: var(--shadow-active);
  z-index: 10;
}

/* --- CARD STYLING --- */
.stream-card-order {
  flex: 0 0 320px;
  scroll-snap-align: center;
  background-image: url('../../assets/img/background/abstract-light-blue-wave.jpg');
  background-size: cover;
  background-position: center;

  /* border: 1px solid rgba(0, 0, 0, 0.05); */
  border-radius: 24px;
  padding: 30px;
  position: relative;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: 1;
  transform: scale(0.9);
  box-shadow: var(--shadow-soft);
  cursor: pointer;
}

/* The Active/Center Card State */
.stream-card-order.active {
  opacity: 1;
  transform: scale(1.3);
  /* border-color: var(--blue); */
  box-shadow: var(--shadow-active);
  z-index: 10;
}

/* Icon Styling */
.icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: #cce6ff;
  /* Very light blue */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--blue);
  margin-bottom: 20px;
  transition: 0.3s;
}

.stream-card.active .icon-wrapper {
  background: var(--gold);
  color: #2e2e2e;
  box-shadow: 0 10px 20px rgba(99, 102, 241, 0.3);
}

.badge-pill {
  display: inline-block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
  background: var(--blue);
  padding: 6px 12px;
  border-radius: 20px;
}

h4 {
  color: var(--text-dark);
}

p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* --- SPACERS --- */
.spacer {
  flex: 0 0 50vw;
  width: 50vw;
  max-width: calc(50% - 160px);
}

@media(max-width: 768px) {
  .stream-card {
    flex: 0 0 85vw;
  }

  .spacer {
    display: none;
  }

  .scroll-container {
    padding: 40px 20px;
    gap: 15px;
  }

  .stream-card.active {
    transform: scale(1);
  }
}

/* Progress Bar for AutoScroll Indication */
.progress-indicator {
  width: 200px;
  height: 4px;
  background: #e5e7eb;
  margin: 0 auto;
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}

.progress-bar-fill {
  height: 100%;
  background: var(--blue);
  width: 0%;
  transition: width 0.3s;
}

.order-cycle {
  background-color: var(--light-blue);
}

.cycle-new-section {
  margin: 0;
  padding: 0;
  background-color: var(--light-blue);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  /* min-height: 100vh; */
}

/* --- CONTAINER: The Magic Fix --- */
/* This forces the box to always stay a 2:1 rectangle.
The SVG and the HTML nodes now share the exact same coordinate space. */
.cycle-container {
  position: relative;
  width: 100%;
  max-width: 1000px;
  aspect-ratio: 2 / 1;
  margin: auto;
}

/* --- CENTER TEXT --- */
.cycle-container .center-text-crcl {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 0;
  width: 60%;
}

.cycle-container .center-text-crcl .script {
  color: var(--blue);
  font-size: 1.5rem;
  margin-bottom: 5px;
  font-weight: 700;
  display: block;
}

.cycle-container .center-text-crcl h2 {
  font-size: 2vw;
  /* Responsive font size */
  margin: 0;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-color);
}

/* --- SVG LAYER --- */
.cycle-container .svg-layer-circle {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

/* The Line Styles */
.cycle-container .path-bg {
  fill: none;
  stroke: var(--line-gray);
  stroke-width: 2;
}

.cycle-container .path-active {
  fill: none;
  stroke: var(--text-color);
  /* Dark line as per image, or use blue */
  stroke-width: 3;
  stroke-linecap: round;
  /* Animation setup */
  stroke-dasharray: 2000;
  /* Long enough to cover path */
  stroke-dashoffset: 2000;
  /* Hidden start */
  transition: stroke-dashoffset var(--anim-speed) linear;
}

/* --- NODES (Icons) --- */
.node-circle {
  position: absolute;
  width: 9vw;
  /* Responsive width */
  height: 9vw;
  /* Responsive height */

  opacity: 0;
  background: #fff;
  border-radius: 50%;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  z-index: 2;

  /* Centering the div on its coordinate */
  transform: translate(-50%, -50%) scale(0.8);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  /* opacity: 0.9; */
  font-size: 1.5vw;
  color: #555;
}

@media (max-width: 768px) {

  .node-circle {
    width: 65px;
    /* bigger circle */
    height: 65px;
    padding: 4px;
    font-size: 4px !important;
    line-height: normal;
  }

  .node-circle i {
    font-size: 14px;
    /* bigger icon */
  }
}

/* Node Labels */
.node-circle .label {
  width: 180px;
  text-align: center;
  font-size: clamp(12px, 1vw, 16px);
  font-weight: 600;
  color: #555;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

/* --- ACTIVE STATE --- */
.node-circle.active {
  transform: translate(-50%, -50%) scale(1.2);
  /* Pop effect */
  opacity: 1;
  color: var(--text-color);
  background: #effff7;
  box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.05);
}

/* Specific Colors for Active Icons */
.node-circle:nth-child(1).active {
  background: #2F4F4F;
  color: white;
}

/* Dark Green/Slate */
.node-circle:nth-child(2).active {
  background: #ffb3a7;
  color: #404ed4;
}

/* Pink */
.node-circle:nth-child(3).active {
  background: #d1fae5;
  color: #065f46;
}

/* Mint */
.node-circle:nth-child(4).active {
  background: #fee2e2;
  color: #991b1b;
}

/* Reddish */
.node-circle:nth-child(5).active {
  background: #dbeafe;
  color: #1e40af;
}

/* Blueish */
.node-circle:nth-child(6).active {
  background: #f3f4f6;
  color: #ef4444;
}

/* Grey with Red Heart */

.node-circle.active .label {
  opacity: 1;
  color: rgb(0, 0, 0);
}

/* --- POSITIONING (Based on 2:1 Aspect Ratio) --- */
/* Container is 100% x 100% relative coordinate system */

/* 1. Online Order (Top Left-ish) */
.pos-circle-1 {
  top: 13%;
  left: 35%;
}

/* 2. Payments (Top Right-ish) */
.pos-circle-2 {
  top: 13%;
  left: 65%;
}

/* 3. Inventory (Right Edge) */
.pos-circle-3 {
  top: 50%;
  left: 88%;
}

.pos-circle-3 .label {
  top: 30% !important;
  left: -80% !important;
}

/* 4. Shipped (Bottom Right-ish) */
.pos-circle-4 {
  top: 87%;
  left: 65%;
}

/* 5. Delivered (Bottom Left-ish) */
.pos-circle-5 {
  top: 87%;
  left: 35%;
}

/* 6. Happy Customer (Left Edge) */
.pos-circle-6 {
  top: 50%;
  left: 12%;
}

/* --- EXPANDABLE CONTENT STYLES --- */
#hiddenContent {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.6s ease-out, opacity 0.4s ease-in;
}

#hiddenContent.expanded {
  max-height: 600px;
  /* Large enough to fit content */
  opacity: 1;
  margin-top: 20px;
}

/* --- EXPANDABLE CONTENT STYLES --- */
#hiddenContent1 {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.6s ease-out, opacity 0.4s ease-in;
}

#hiddenContent1.expanded {
  max-height: 700px;
  /* Large enough to fit content */
  opacity: 1;
  margin-top: 20px;
}

.cycle-container-main {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  /* background: linear-gradient(135deg, #e0f2fe 0%, #ffffff 100%); */
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 95vh;
  margin: 0;
  overflow: hidden;
}

/* Tablet + Mobile fix */
@media (max-width: 1024px) {
  .cycle-container-main {
    min-height: auto;
    padding: 40px 0;
  }

  .cycle-container-header .label,
  .cycle-container-header .label1 {
    font-size: 20px !important;
  }
}

/* Main Container */
.cycle-container-header {
  position: relative;
  width: var(--circle-size);
  height: var(--circle-size);
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Central Globe (Simulated) */
.cycle-container-header .globe-center {
  width: 350px;
  height: 350px;
  /* background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0) 0%, rgba(0,123,255,0.1) 70%, rgba(0,123,255,0.2)
100%); */
  border-radius: 50%;
  position: relative;
  z-index: 1;
  /* box-shadow: 0 0 30px rgba(0,0,0,0.5); */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* decorative grid for globe */
.cycle-container-header .globe-grid {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 20px 20px;
  border-radius: 50%;
  opacity: 0.5;
}

/* The SVG Ring for the progress line */
.cycle-container-header .ring-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
  /* Start from top */
  z-index: 0;
  pointer-events: none;
}

.cycle-container-header .track {
  fill: none;
  stroke: #9c9c9c;
  stroke-width: 4;
  stroke-dasharray: 10, 10;
  /* Dashed look */
}

.cycle-container-header .progress {
  fill: none;
  stroke: var(--blue);
  stroke-width: 6;
  stroke-linecap: round;
  stroke-dasharray: 1256;
  /* Circumference of circle approx */
  stroke-dashoffset: 1256;
  /* Start empty */
  transition: stroke-dashoffset 0.5s ease;
}

/* The Steps (Icons) */
.cycle-container-header .step-item {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: var(--icon-size);
  height: var(--icon-size);
  /* Positioning logic handled in CSS vars below */
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(var(--angle)) translate(calc(var(--circle-size) / 2)) rotate(calc(var(--angle) * -1));
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 2;
}

.cycle-container-header .icon-box {
  width: 60px;
  height: 60px;
  background: white;
  border-radius: 12px;
  display: flex;
  opacity: 0;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border: 2px solid transparent;
  transition: all 0.3s;
}

.cycle-container-header .label {
  position: absolute;
  top: -38px;
  opacity: 0;
  font-size: 14px;
  font-weight: 700;
  color: #64748b;
  white-space: nowrap;
  transition: color 0.3s;
}

.cycle-container-header .label1 {
  position: absolute;
  top: 60px;
  opacity: 0;
  font-size: 14px;
  font-weight: 700;
  color: #64748b;
  white-space: nowrap;
  transition: color 0.3s;
}

/* Active State Styling */
.cycle-container-header .step-item.active .icon-box {
  background: var(--bg-color);
  color: white;
  opacity: 1;
  transform: scale(1.2);
  box-shadow: 0 0 15px rgba(59, 130, 246, 0.5);
  border-color: white;
}

.cycle-container-header .step-item.active .label {
  color: var(--blue);
  opacity: 1;
}

.cycle-container-header .step-item.active .label1 {
  color: var(--blue);
  opacity: 1;
}

.video-circle {
  width: 100%;
  height: 100%;
  border-radius: 60%;
  overflow: hidden;
}

/* MOBILE OPTIMIZATION */
@media (max-width: 768px) {

  .cycle-container-main {
    min-height: auto;
    /* remove large vertical space */
    padding: 10px 0;
  }

  .cycle-container-header {
    margin: 0 !important;
    padding: 0 !important;
    transform: scale(0.80);
    /* shrink whole circle */
  }

  .cycle-container-header .icon-box {
    width: 55px;
    height: 55px;
  }

  .cycle-container-header .label,
  .cycle-container-header .label1 {
    font-size: 20px;
  }

  .video-circle video {
    width: 90% !important;
    height: auto;
  }

}

.video-circle video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* fills circle nicely */
}

/* Keyframes to rotate while keeping centered */
@keyframes rotate-earth {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(0deg);
  }
}

/* Hero Section */
.hero-section {
  /* background: linear-gradient(180deg, #eef5fa 0%, #ffffff 100%); */
  padding: 60px 0 20px 0;
  text-align: center;
  min-height: 800px;
  /* Prevent jump when switching tabs */
}

.hero-subtitle {
  color: #666;
  margin-bottom: 40px;
}

/* Sub Nav Under Hero */
.sub-nav {
  border-bottom: 1px solid #ddd;
  margin-bottom: 50px;
}

.sub-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.sub-nav li {
  padding: 10px 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: #555;
  cursor: pointer;
  position: relative;
  transition: color 0.3s;
}

.sub-nav li:hover {
  color: #33aadd;
}

/* Active Tab Styling */
.sub-nav li.active {
  color: #33aadd;
}

.sub-nav li.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #33aadd;
  animation: expandWidth 0.3s ease-out;
}

@keyframes expandWidth {
  from {
    width: 0;
    left: 50%;
  }

  to {
    width: 100%;
    left: 0;
  }
}

/* Dynamic Mesh Background */
.mesh-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1000px;
  background-image:
    radial-gradient(at 0% 0%, hsla(220, 90%, 90%, 1) 0, transparent 50%),
    radial-gradient(at 50% 0%, hsla(150, 90%, 92%, 1) 0, transparent 50%),
    radial-gradient(at 100% 0%, hsla(45, 90%, 90%, 1) 0, transparent 50%);
  z-index: -1;
  filter: blur(60px);
}

/* Feature Cards */
.card-feature {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 25px;
  height: 100%;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  background: white;
}

.card-feature:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.card-icon {
  font-size: 1.5rem;
  position: absolute;
  top: 25px;
  right: 25px;
}

.btn-card {
  width: 100%;
  color: white;
  font-weight: 600;
  border-radius: 20px;
  padding: 8px 0;
}

/* Card Variants */
.card-marketing {
  border-top: 4px solid var(--color-marketing);
}

.text-marketing {
  color: var(--color-marketing);
}

.btn-marketing {
  background-color: var(--color-marketing);
}

.card-sales {
  border-top: 4px solid var(--color-sales);
}

.text-sales {
  color: var(--color-sales);
}

.btn-sales {
  background-color: var(--color-sales);
}

.card-conv {
  border-top: 4px solid var(--color-conv);
}

.text-conv {
  color: var(--color-conv);
}

.btn-conv {
  background-color: var(--color-conv);
}

.card-data {
  border-top: 4px solid var(--color-data);
}

.text-data {
  color: var(--color-data);
}

.btn-data {
  background-color: var(--color-data);
}

.card-msg {
  border-top: 4px solid var(--color-msg);
}

.text-msg {
  color: var(--color-msg);
}

.btn-msg {
  background-color: var(--color-msg);
}

/* Other Sections */
.zigzag-section {
  padding: 80px 0;
  background-color: #f9f9f9;
}

.zigzag-section:nth-of-type(even) {
  background-color: #fff;
}

.placeholder-box {
  background-color: #cccccc;
  width: 100%;
  height: 300px;
  border-radius: 4px;
}

.three-col-section {
  padding: 80px 0;
  background-color: #f9f9f9;
}

.feature-box-small {
  background-color: #ccc;
  height: 180px;
  width: 100%;
  margin-bottom: 20px;
}

.next-page-link {
  text-align: center;
  padding: 40px 0;
  font-size: 0.8rem;
  color: #ccc;
  letter-spacing: 1px;
}

.next-page-link a {
  display: inline-block;
  font-size: 1.2rem;
  font-weight: bold;
  color: #33aadd;
  text-decoration: none;
  margin-top: 5px;
}

/* Dynamic Mesh Background */
.mesh-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1000px;
  background-image:
    radial-gradient(at 0% 0%, hsla(220, 90%, 90%, 1) 0, transparent 50%),
    radial-gradient(at 50% 0%, hsla(150, 90%, 92%, 1) 0, transparent 50%),
    radial-gradient(at 100% 0%, hsla(45, 90%, 90%, 1) 0, transparent 50%);
  z-index: -1;
  filter: blur(60px);
}

.btn-demo {
  background: var(--navy);
  color: white;
  font-weight: 700;
  border-radius: 12px;
  padding: 10px 24px;
  border: none;
  transition: all 0.3s;
}

.btn-demo:hover {
  transform: translateY(-2px);
  background: var(--blue);
  color: white;
}


/* Email Sign-up Bar */
.cta-box {
  max-width: 600px;
  margin: 40px auto;
  position: relative;
  background: white;
  padding: 8px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
  border: 1px solid #e2e8f0;
}

.cta-box input {
  width: 100%;
  border: none;
  padding: 15px 160px 15px 25px;
  font-weight: 500;
  border-radius: 16px;
  outline: none;
}

.btn-cta-submit {
  position: absolute;
  right: 8px;
  top: 8px;
  bottom: 8px;
  background: var(--gradient-accent);
  color: var(--navy);
  border: none;
  border-radius: 14px;
  padding: 0 25px;
  font-weight: 800;
  font-size: 0.9rem;
  transition: transform 0.2s;
}

.btn-cta-submit:hover {
  transform: scale(1.02);
}

/* Billing Toggle */
.toggle-wrapper {
  background: #f1f5f9;
  padding: 3px;
  border-radius: 100px;
  display: inline-flex;
  gap: 2px;
  margin-top: 10px;
}

.toggle-item {
  padding: 10px 28px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
}

.toggle-item.active {
  background: white;
  color: var(--blue);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

/* Pricing Cards */
.pricing-card {
  background: white;
  border-radius: 40px;
  padding: 50px 35px;
  border: 1px solid #e2e8f0;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-15px);
  border-color: var(--active-glow);
  box-shadow: 2px 40px 80px rgba(16, 185, 129, 0.08);
}

.pricing-card.featured {
  border: 2px solid var(--blue);
  background: linear-gradient(to bottom, #ffffff, #f0f7ff);
}

.badge-popular {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--active-glow);
  color: white;
  padding: 6px 20px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1px;
}

.price-value {
  font-size: 3.2rem;
  font-weight: 800;
  margin: 20px 0 10px;
  letter-spacing: -2px;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 15px 0;
  flex-grow: 1;
}

.feature-list li {
  font-size: 0.95rem;
  margin-bottom: 6px;
  color: #475569;
  display: flex;
  align-items: center;
}

.feature-list li i {
  color: var(--active-glow);
  margin-right: 12px;
  font-size: 1.1rem;
}

.btn-card-action {
  border-radius: 16px;
  padding: 16px;
  font-weight: 800;
  width: 100%;
  text-transform: uppercase;
  font-size: 0.85rem;
  transition: all 0.3s;
}

.btn-card-blue {
  background: var(--blue);
  color: white;
  border: none;
}

.btn-card-blue:hover {
  opacity: 0.9;
  transform: scale(1.02);
}

.btn-card-outline {
  border: 2px solid #e2e8f0;
  background: transparent;
}

.btn-card-outline:hover {
  border-color: var(--blue);
  color: var(--blue);
}

/* Icon Grid */
.icon-card {
  background: white;
  border-radius: 35px;
  padding: 40px;
  border: 1px solid #f1f3f5;
  transition: 0.3s;
}

.icon-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.03);
}

.icon-box {
  width: 65px;
  height: 65px;
  background: #f0fdf4;
  color: var(--active-glow);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 25px;
  border: 1px solid #dcfce7;
}

/* Comparison Table */
.table-container {
  background: white;
  border-radius: 40px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.04);
}

.table thead th {
  padding: 35px 25px;
  border-bottom: 2px solid #f1f5f9;
  background: #fafafa;
}

.table td {
  padding: 25px;
  border-bottom: 1px solid #f1f5f9;
  vertical-align: middle;
}

.table .category-header {
  background: #f8fafc;
  font-weight: 800;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: #94a3b8;
}

.icon-check {
  color: var(--active-glow);
  font-size: 1.4rem;
}

@media (max-width: 991px) {
  .hero-title {
    font-size: 3.5rem;
  }

  .pricing-card {
    margin-bottom: 40px;
  }
}

/* --- VERTICAL SCROLL JOURNEY --- */
.journey-section {
  padding: 10px 0;
}

.journey-wrapper {
  display: flex;
  gap: 30px;
  position: relative;
}

.journey-text-col {
  flex: 1.2;
  padding-bottom: 100px;
}

.journey-visual-col {
  flex: 2;
  position: sticky;
  top: 100px;
  height: 450px;
  display: flex;
  align-items: center;
}

.journey-card {
  min-height: 450px;
  padding: 20px 30px;
  border-radius: 3.5rem;
  margin-bottom: 80px;
  border: 2px solid transparent;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  transition: var(--transition-main);
  opacity: 0.4;
  transform: scale(0.95);
}

.journey-card.active {
  opacity: 1;
  transform: scale(1);
  background: white;
  border-color: var(--gold);
  box-shadow: var(--card-shadow);
}

.step-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}

.step-number {
  width: 55px;
  height: 55px;
  background: var(--blue);
  color: white;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.4rem;
  box-shadow: 0 10px 20px rgba(0, 97, 255, 0.2);
}

.active .step-number {
  background: var(--gold);
  color: var(--brand-accent);
}

.step-icon {
  font-size: 1.8rem;
  color: var(--blue);
  transition: 0.4s;
}

.active .step-icon {
  color: var(--gold);
  transform: scale(1.2);
}

.visual-frame {
  width: 100%;
  height: 100%;
  border-radius: 1rem;
  overflow: hidden;
  background-image: linear-gradient(180deg, rgb(242, 252, 151), rgb(131, 179, 252));
  padding: 15px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 40px 100px -20px rgba(0, 97, 255, 0.15);
  position: relative;
}

.visual-image {
  position: absolute;
  inset: 15px;
  width: calc(100% - 30px);
  height: calc(100% - 30px);
  object-fit: 100%;
  border-radius: 1rem;
  opacity: 0;
  transition: opacity 0.8s ease, transform 1s ease;
  transform: scale(1.08);
}

.visual-image.visible {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

@media (max-width: 991px) {
  .journey-wrapper {
    flex-direction: column;
  }

  .journey-visual-col {
    position: relative;
    top: 0;
    height: 350px;
    order: -1;
    margin-bottom: 40px;
    display: block;
  }

  .journey-card {
    min-height: auto;
    padding: 40px 25px;
    opacity: 1;
    transform: scale(1);
  }
}

/* --- Section 7: Ceiling --- */
.ceiling-item {
  padding: 30px;
  background: rgb(248, 254, 255);
  border-radius: 2.5rem;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-left: 8px solid var(--blue);
  box-shadow: var(--card-shadow);
  margin-bottom: 20px;
  transition: 0.4s;
  display: flex;
  align-items: center;
  gap: 20px;
}

.ceiling-item:hover {
  transform: scale(1.03) translateX(15px);
  border-left-color: var(--gold);
}

.ceiling-item i {
  color: var(--blue);
  font-size: 1.4rem;
}

/* --- Section 8: Ideal For --- */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}

.bento-card {
  background: white;
  border-radius: 3rem;
  padding: 45px;
  border: 1px solid #f1f5f9;
  transition: var(--transition-main);
  box-shadow: var(--card-shadow);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.bento-card:hover {
  transform: translateY(-10px);
  border-color: var(--blue);
  box-shadow: 0 30px 60px rgba(0, 97,
      255, 0.1);
}

.bento-icon {
  width: 60px;
  height: 60px;
  background: var(--light-blue);
  color: var(--blue);
  border-radius: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 25px;
}

/* --- Card Style: Floating Badge & Blue/Yellow Integration --- */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 35px;
  padding-top: 50px;
}

.team-card {
  background: #ffffff;
  border-radius: 2.5rem;
  padding: 65px 45px 45px;
  border: 1px solid #e2e8f0;
  position: relative;
  transition: var(--transition-main);
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.05);
}

/* The "Breakout" Icon Badge */
.badge-icon {
  position: absolute;
  top: -25px;
  left: 45px;
  width: 75px;
  height: 75px;
  background: var(--gold);
  border: 2px solid white;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--blue);
  box-shadow: 0 15px 30px rgba(255, 204, 0, 0.3);
  transition: var(--transition-main);
  z-index: 2;
}

/* Hover Interaction */
.team-card:hover {
  transform: translateY(-12px);
  border-color: var(--blue);
  box-shadow: 0 40px 80px -20px rgba(12, 94, 133, 0.15);
}

/* Yellow Accent Bar on Hover */
.team-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
  border-radius: 2.5rem 2.5rem 0 0;
}

.team-card:hover::before {
  transform: scaleX(1);
}

.team-card:hover .badge-icon {
  background: var(--blue);
  color: var(--gold);
  transform: rotate(-10deg) translateY(-8px);
  box-shadow: 0 20px 40px rgba(12, 94, 133, 0.4);
}

/* Corner Glow */
.team-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle at bottom right, rgba(255, 204, 0, 0.15), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.team-card:hover::after {
  opacity: 1;
}

.card-title {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 18px;
  color: #0f172a;
  display: flex;
  align-items: center;
  gap: 12px;
}

.card-desc {
  color: var(--text-slate);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 0;
  font-weight: 400;
}

/* Spans for Layout */
.span-4 {
  grid-column: span 4;
}

.span-6 {
  grid-column: span 6;
}

@media (max-width: 991px) {
  .bento-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
  }

  .section-title {
    font-size: 2.5rem;
  }

  .team-card {
    padding: 50px 30px 30px;
    border-radius: 2rem;
  }

  .badge-icon {
    left: 30px;
    width: 65px;
    height: 65px;
    font-size: 1.6rem;
  }
}

.sync-container {
  position: relative;
  padding: 2rem 0;
}

/* The Central Glow Effect */
.order-hub {
  background-image: linear-gradient(to left, rgb(212, 249, 255), rgb(255, 245, 191));
  color: white;
  border-radius: 20px;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 30px rgba(13, 110, 253, 0.3);

}

/* Radial Sync Lines (Desktop Only) */
@media (min-width: 992px) {
  .sync-line-right {
    position: absolute;
    top: 50%;
    left: 100%;
    width: 50px;
    height: 2px;
    background: linear-gradient(to right, #0d6efd, transparent);
    z-index: 1;
  }

  .sync-line-left {
    position: absolute;
    top: 50%;
    right: 100%;
    width: 50px;
    height: 2px;
    background: linear-gradient(to left, #0d6efd, transparent);
    z-index: 1;
  }
}

.feature-card {
  transition: transform 0.3s ease;
  border: 1px solid #f0f0f0;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: #0d6efd;
}

.pulse-dot {
  height: 10px;
  width: 10px;
  background-color: #0d6efd;
  border-radius: 50%;
  display: inline-block;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(13, 110, 253, 0.7);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(13, 110, 253, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(13, 110, 253, 0);
  }
}

/* Advanced Card Design */
.featurep .feature-card {
  background: var(--card-bg);
  border-radius: 30px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  padding: 0;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  height: 100%;
  position: relative;
  box-shadow: 0 30px 60px rgba(0, 97, 255, 0.15);
  border-color: rgb(206, 206, 206)070;
}

.featurep .feature-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 30px 60px rgba(0, 97, 255, 0.15);
  border-color: var(--blue);
}

/* Image & Icon Overlay */
.featurep .card-img-wrapper {
  position: relative;
  height: 260px;
  border-bottom: 6px solid;
  border-image-slice: 1;
  border-image-source: linear-gradient(to right, #2057ee, #ffc400);
  overflow: hidden;
  padding-top: 20px;
}

.featurep .card-img-wrapper:hover {
  position: relative;
  border-bottom: 6px solid;
  border-image-slice: 1;
  border-image-source: linear-gradient(to right, #ffc400, #2057ee);
  overflow: hidden;
}

.featurep .card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;

}

.featurep .icon-circle {
  position: absolute;
  bottom: -10px;
  right: 30px;
  width: 70px;
  height: 70px;
  background: var(--blue);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  border: 6px solid #f0f4f8;
  transition: 0.4s;
  z-index: 2;
}

.featurep .feature-card:hover .icon-circle {
  background: var(--gold);
  color: var(--dark);
  transform: rotate(360deg);
}

.featurep .card-content {
  padding: 25px 30px 25px;
  /* background-image: linear-gradient(to top, #eefcff, #fcfcfc); */
}

.featurep .card-content a:hover {
  text-decoration: underline;
  color: #fdc200;
}

/* Modern Button */
.featurep .btn-expand {
  background: var(--blue);
  color: white;
  padding: 18px 45px;
  border-radius: 100px;
  font-weight: 700;
  border: none;
  position: relative;
  overflow: hidden;
  transition: 0.4s;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.featurep .btn-expand:hover {
  background: var(--gold);
  color: white;
  transform: scale(1.05);
}

/* Read More Interaction */
.featurep .read-more-btn {
  text-decoration: none;
  color: var(--blue);
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  transition: 0.3s;
}

.featurep .read-more-btn i {
  font-size: 12px;
  margin-left: 5px;
  transition: 0.3s;
}

.featurep .read-more-btn:hover i {
  transform: translateX(5px);
}

.featurep .collapse-container {
  margin-top: 30px;
}

/* Card Hover Animations */
.infographic-card {
  background-image: url(../../assets/img/background/absract-bg-1.jpg);
  background-size: cover;
  background-position: center;
  padding: 3rem 2rem;
  border-radius: 30px;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
}

.infographic-card:hover {
  transform: translateY(-20px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 97, 255, 0.15);
  border-color: var(--gold);
}

.infographic-card.active {
  background: var(--blue);
  color: white;
}

/* Icon Pulse Animation */
.icon-wrap {
  width: 80px;
  height: 80px;
  background: rgba(0, 97, 255, 0.1);
  color: var(--blue);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-size: 2rem;
  transition: 0.4s;
}

.infographic-card:hover .icon-wrap {
  animation: pulse-yellow 1.5s infinite;
  background: var(--gold);
  color: #000;
}

@keyframes pulse-yellow {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 204, 0, 0.4);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(255, 204, 0, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 204, 0, 0);
  }
}

.bg-blue-deep {
  background-image: url(../../assets/img/background/yellow-bg.jpeg);
  background-size: cover;
  background-position: center;
}

.brand-tag {
  display: inline-block;
  padding: 5px 15px;
  background: rgba(255, 204, 0, 1);
  border: 1px solid var(--gold);
  color: var(--gold);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
}

/* Infographic Flow Styling */
.infographic-flow {
  position: relative;
  padding-left: 20px;
}

/* The Connector Line */
.infographic-flow::before {
  content: '';
  position: absolute;
  left: 45px;
  top: 20px;
  bottom: 20px;
  width: 2px;
  background: rgba(255, 204, 0, 1);
  z-index: 0;
}

.flow-item {
  display: flex;
  align-items: center;
  background: rgba(250, 252, 135, 0.5);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 20px;
  margin-bottom: 25px;
  position: relative;
  border-color: var(--gold);
  z-index: 1;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
}

.flow-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: scale(1.03) translateX(10px);
  border-color: var(--gold);
}

.flow-icon {
  min-width: 50px;
  height: 50px;
  background: var(--gold);
  color: #000;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-right: 20px;
  box-shadow: 0 5px 15px rgba(255, 204, 0, 0.3);
}

.bg-glass {
  background: rgba(255, 255, 255, 0.2);
  border: 1px dashed rgba(255, 204, 0, 0.5);
}

.text-yellow {
  color: var(--gold);
}

/* Animation Hook */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-section {
  background: #0a0a0a;
}

/* Sticky Column */
.sticky-header {
  height: 100vh;
  position: sticky;
  display: none;
  top: 0;
  background-image: url(../../assets/img/background/absract-bg-1.jpg);
  background-size: cover;
  background-position: center;
  z-index: 10;
}

/* Scroll Content */
.scroll-content {
  background-image: url(../../assets/img/background/absract-bg-1.jpg);
  /* background-image:
url('https://img.freepik.com/free-vector/soft-yellow-watercolor-simple-texture-background-vector_1055-11888.jpg?semt=ais_wordcount_boost&w=740&q=80');
*/
  background-size: cover;
  background-position: center;
  padding: 0 2rem;
}

.feature-snap-card {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  scroll-snap-align: center;
  perspective: 1000px;
}

/* Dashboard Infographic Grid */
.control-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 50px;
}

.control-tile {
  background: white;
  border: 1px solid rgba(15, 23, 42, 0.05);
  border-radius: 24px;
  padding: 2rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.control-tile:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
  border-color: var(--gold);
}

.icon-container-home {
  width: 44px;
  height: 44px;
  /* background: var(--light-blue); */
  color: #2563eb;
  border-radius: 14px;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  transition: 0.3s;
}

.icon-container {
  width: 54px;
  height: 54px;
  background: var(--light-blue);
  color: #2563eb;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  transition: 0.3s;
}

.control-tile:hover .icon-container {
  background: var(--gold);
  color: var(--navy);
}

.highlight-gold {
  color: #b45309;
  font-weight: 700;
}

.glass-info {
  /* background-image:
url('https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTqLbO0d1qzZGVNEsiSu4QBWKLalaqbk5FwPg&s'); */
  background-size: cover;
  background-position: center;
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 3rem;
  border-radius: 30px;
  width: 100%;
  max-width: 600px;
  transform: rotateY(-10deg) scale(0.9);
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Active Class added via JS */
.glass-info.reveal {
  transform: rotateY(0) scale(1);
  opacity: 1;
  border-left: 5px solid var(--gold);
}

.icon-box {
  width: 70px;
  height: 70px;
  background: var(--gold);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #000;
  margin-bottom: 2rem;
}

.glass-info h3 {
  color: #414141;
  font-weight: 700;
}

.glass-info p {
  color: rgba(31, 31, 31, 0.7);
  font-size: 1rem;
}

.highlight-yellow {
  background: linear-gradient(120deg, var(--gold) 0%, #fcd34d 100%);
  -webkit-text-fill-color: transparent;
}

/* Challenge Cards Layout */
.challenge-stack {
  position: relative;
  padding-left: 20px;
}

.challenge-card {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 24px;
  padding: 2rem;
  margin-bottom: 1.5rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  opacity: 0;
  transform: translateX(50px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

@media (max-width: 768px) {

  .challenge-card {
    padding: 1.5rem;
  }

  .challenge-card .badge {
    white-space: normal;
    /* allow text to wrap */
    word-break: break-word;
    /* prevent overflow */
    display: inline-block;
    font-size: 12px;
  }

  .challenge-card p {
    font-size: 14px;
    line-height: 1.4;
  }

  .challenge-card .icon-box {
    min-width: 40px;
    /* prevents icon from shrinking */
  }

}

.challenge-card.reveal {
  opacity: 1;
  transform: translateX(0);
}

.challenge-card:hover {
  transform: scale(1.03);
  border-color: var(--blue);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.icon-box {
  width: 50px;
  height: 50px;
  background: var(--light-blue);
  color: var(--blue);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.2rem;
}

.status-dot {
  height: 8px;
  width: 8px;
  background-color: #caa500;
  border-radius: 50%;
  display: inline-block;
  margin-right: 8px;
  box-shadow: 0 0 8px #efb944;
}

.bg-danger {
  background-color: #fff897 !important;
}

/* Solutions Badge */
.solution-tag {
  background: #ecf3ff;
  color: var(--blue);
  padding: 8px 16px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Hero Header */
.arch-header {
  padding: 80px 0;
  background: radial-gradient(circle at top right, rgba(37, 99, 235, 0.05), transparent);
}

.section-tag {
  color: var(--blue);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
  margin-bottom: 1rem;
  display: inline-block;
  background-color: #fff5d4;
}

.sticky-box {
  position: sticky;
  top: 100px;
}

.display-title {
  font-weight: 800;
  font-size: clamp(2.5rem, 3.5vw, 4.4rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

/* Interactive Blueprint Card */
.blueprint-card {
  background: white;
  border-radius: 40px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  padding: 4rem;
  box-shadow: 0 40px 100px -20px rgba(15, 23, 42, 0.05);
  transition: all 0.4s ease;
}

.blueprint-card:hover {
  border-color: var(--brand-gold);
}

/* Pillar Items */
.pillar-item {
  padding: 2rem;
  border-radius: 24px;
  background: var(--light-bg);
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid transparent;
}

.pillar-item:hover {
  background: white;
  border-color: var(--blue);
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.icon-square {
  width: 50px;
  height: 50px;
  color: var(--navy);
  background: var(--brand-gold);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

/* Scale Quote Bar */
.scale-bar {
  background: linear-gradient(to left, rgb(186, 233, 255), rgb(197, 239, 252));
  color: var(--navy);
  border-radius: 100px;
  padding: 20px 40px;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  font-size: 1rem;
  margin-top: 50px;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.header-badge {
  background: var(--light-blue);
  color: #2563eb;
  font-weight: 800;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 8px 20px;
  border-radius: 50px;
  display: inline-block;
}

/* Dashboard Infographic Grid */
.control-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 50px;
}

.control-tile {
  background: white;
  border: 1px solid rgba(15, 23, 42, 0.05);
  border-radius: 24px;
  padding: 2rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.control-tile:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
  border-color: var(--gold);
}

.icon-container {
  width: 54px;
  height: 54px;
  background: var(--light-blue);
  color: #2563eb;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  transition: 0.3s;
}

.control-tile:hover .icon-container {
  background: var(--gold);
  color: var(--navy);
}

.tile-img {
  width: 100%;
  height: 160px;
  background: #f1f5f9;
  border-radius: 16px;
  padding: 5px;
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid #e2e8f0;
}

.highlight-gold {
  color: #b45309;
  font-weight: 700;
}

/* Section 5: Ecosystem */
.ecosystem-container {
  position: relative;
  padding: 100px 0;
}

.node-card {
  background: #fff;
  border-radius: 24px;
  padding: 30px;
  transition: all 0.4s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  height: 100%;
  text-align: center;
}

.node-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: var(--blue);
}



.node-card:hover .icon-box {
  background: var(--blue);
  color: #fff;
}

/* Section 6: Scalability Infinity */
.scale-section {
  color: #424242;
  padding: 120px 0;
  border-radius: 60px;
  position: relative;
}

.scale-list li {
  margin-bottom: 20px;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
}

.scale-list i {
  color: var(--gold);
  font-size: 1.5rem;
  margin-right: 15px;
}

/* CTA Button */
.btn-register {
  background: var(--gold);
  color: var(--navy);
  padding: 20px 50px;
  border-radius: 100px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s;
  box-shadow: 0 10px 20px rgba(251, 191, 36, 0.3);
}

.btn-register:hover {
  transform: scale(1.05);
  background: #fff;
  color: var(--navy);
}

/* Horizontal Infographic Track */
.infographic-track-new {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  margin-top: 50px;
}

@media (max-width: 576px) {
  .infographic-track-new {
    display: block;
  }
}

/* Connecting Line */
.infographic-track-new ::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 5%;
  right: 5%;
  height: 2px;
  background: repeating-linear-gradient(to right, var(--blue) 0, var(--blue) 10px, transparent 10px,
      transparent 20px);
  z-index: 1;
}

.infographic-track-new .segment-node {
  flex: 1;
  text-align: center;
  padding: 0 15px;
  position: relative;
  z-index: 2;
}

/* Indicator Circle */
.infographic-track-new .node-circle-bn {
  width: 80px;
  height: 80px;
  background: var(--blue);
  border: 6px solid var(--gold);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  margin: 0 auto 20px;
  transition: all 0.4s ease;
  box-shadow: 0 10px 20px rgba(37, 99, 235, 0.1);
}

.infographic-track-new .segment-node:hover .node-circle-bn {
  background: var(--gold);
  color: black;
  border: 6px solid var(--blue);
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 15px 30px rgba(37, 99, 235, 0.2);
}

.infographic-track-new .node-title {
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--blue);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;

  min-height: 45px;
}

.infographic-track-new .node-desc {
  font-size: 1.3rem;
  color: #64748b;
  line-height: 1.5;
}

.infographic-track-new .section-tag {
  background: var(--light-bg);
  color: var(--blue);
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.stack-container {
  background-image: linear-gradient(to right, #000000, #000000);
  position: relative;
}

/* The Sticky Logic */
.stack-panel {
  height: 100vh;
  width: 100%;
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-inner {
  width: 95%;
  max-width: 1400px;
  height: 80vh;
  border-radius: 40px;
  box-shadow: 0 -20px 50px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  padding: 60px;
  display: flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Color Stacking Levels */
.panel-1 {
  z-index: 1;
}

.panel-2 {
  z-index: 2;
}

.panel-3 {
  z-index: 3;
}

.panel-4 {
  z-index: 4;
}

.panel-5 {
  z-index: 5;
}

.panel-6 {
  z-index: 6;
}

.panel-7 {
  z-index: 7;
}

.panel-1 .card-inner {
  background: #ffffff;
  color: var(--navy);
}

.panel-2 .card-inner {
  background: #f1f5f9;
  color: var(--navy);
}

.panel-3 .card-inner {
  background: #ffffff;
  color: var(--navy);
}

.panel-4 .card-inner {
  background: #fffbeb;
  color: var(--navy);
}

.panel-5 .card-inner {
  background: #ffffff;
  color: var(--navy);
}

.panel-6 .card-inner {
  background: #f1f5f9;
  color: var(--navy);
}

.panel-7 .card-inner {
  background: #ffffff;
  color: var(--navy);
}

.icon-circle {
  width: 60px;
  height: 60px;
  background: rgba(37, 99, 235, 0.1);
  color: var(--blue);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 25px;
}

.btn-cta {
  background: var(--gold);
  color: var(--navy);
  padding: 18px 45px;
  border-radius: 50px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s ease;
  box-shadow: 0 10px 20px rgba(251, 191, 36, 0.2);
}

.btn-cta:hover {
  transform: scale(1.05);
  background: var(--blue);
  color: white;
}

@media (max-width: 992px) {
  .card-inner {
    height: auto;
    padding: 40px 20px;
    flex-direction: column;
  }

  .stack-panel {
    position: relative;
    height: auto;
    top: 0;
    margin-bottom: 20px;
  }
}

/* Section 7: Audience Segmentation Cards */
.audience-card {
  background: white;
  padding: 20px;
  border-radius: 25px;
  border-bottom: 6px solid var(--gold);
  border-top: 6px solid white;
  height: 100%;
  transition: 0.3s;
}

.audience-card:hover {
  transform: translateY(-10px);
  background: var(--light-blue);
  border-top: 6px solid var(--gold);
  border-bottom: 6px solid white;
}

.cta-primary {
  background: var(--gold);
  color: var(--navy-deep);
  padding: 20px 60px;
  border-radius: 50px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 15px 35px rgba(251, 191, 36, 0.3);
  transition: 0.3s;
}

.cta-primary:hover {
  background: white;
  transform: scale(1.05);
  color: var(--navy-deep);
}

@media (max-width: 992px) {
  .hub-container {
    grid-template-columns: 1fr;
  }

  .central-core {
    transform: none;
    border-radius: 25px;
  }

  .core-inner {
    transform: none;
  }
}

/* Wearhouse Management Container */

/* Orbit Container */
.wearmang .orbit-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 600px;
  max-width: 1000px;
  margin: 0 auto;
}

/* Rotating Ring */
.wearmang .orbit-ring {
  position: absolute;
  width: 300px;
  height: 300px;
  border: 6px dashed var(--blue);
  border-radius: 50%;
  animation: rotateOrbit 20s linear infinite;
  opacity: 0.3;
}

@keyframes rotateOrbit {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* Central Anchor - Stays Fixed */
.wearmang .central-hub {
  position: relative;
  z-index: 10;
  width: 200px;
  height: 200px;
  background: white;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border: 8px solid #fff;
  padding: 20px;
}

/* Fixed Peripheral Nodes */
.wearmang .node-box {
  position: absolute;
  width: 340px;
  background: white;
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  z-index: 15;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.wearmang .node-box:hover {
  transform: translateY(-10px);
  border-color: var(--blue);
  box-shadow: 0 15px 30px rgba(37, 99, 235, 0.15);
}

/* Coordinates for Nodes */
.wearmang .top-left {
  top: 10%;
  left: -5%;
}

.wearmang .top-right {
  top: 10%;
  right: -5%;
}

.wearmang .bottom-left {
  bottom: 10%;
  left: -5%;
}

.wearmang .bottom-right {
  bottom: 10%;
  right: -5%;
}

.wearmang .icon-sq {
  width: 45px;
  height: 45px;
  background: white;
  color: var(--blue);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.wearmang .badge-clean {
  background: var(--navy);
  color: white;
  padding: 10px 25px;
  border-radius: 50px;
  font-weight: 600;
  display: inline-block;
  margin-top: 50px;
}

@media (max-width: 991px) {
  .wearmang .orbit-wrapper {
    height: auto;
    flex-direction: column;
    gap: 20px;
    padding-bottom: 40px;
  }

  .wearmang .orbit-ring {
    display: none;
  }

  .wearmang .node-box,
  .central-hub {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    max-width: 400px;
  }
}

/* --- Section 2: Complexity (The Warning) --- */
.complexity-section {
  padding: 10px 0;
}

.warning-box {
  border-left: 5px solid var(--blue);
  padding: 2rem;
  background: #e4f0ff;
  border-radius: 0 20px 20px 0;
}

@media (max-width: 576px) {
  .warning-box {
    padding: 0.1rem !important;
  }

  .mob-hide {
    display: none !important;
  }
}

/* Horizontal Stepper Styling */
.stepper-wrapper {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-bottom: 3rem;
}

/* The Connecting Line */
.stepper-wrapper::before {
  content: "";
  position: absolute;
  top: 55px;
  left: 0;
  right: 0;
  height: 6px;
  background: gray;
  z-index: 1;
}

.step-item {
  position: relative;
  z-index: 2;
  text-align: center;
  flex: 1;
}

.step-circle {
  width: 100px;
  height: 100px;
  background: var(--gold);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-size: 3.25rem;
  transition: all 0.3s ease;
  border: 5px solid var(--blue);
  box-shadow: 0 4px 10px rgba(37, 99, 235, 0.1);
}

.step-item:hover .step-circle {
  border: 5px solid var(--gold);
  background: var(--blue);
  color: white;
  transform: scale(1.1);
}

.step-desc {
  font-size: 1rem;
  color: #64748b;
  padding: 0 10px;
  line-height: 1.4;
}

.flow-footer {
  background: white;
  padding: 20px 40px;
  border-radius: 50px;
  display: inline-block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px dashed var(--blue);
}

.card-bt:hover {
  border: 1px solid var(--blue);
}

/* Header & Toggle */
.header-section {
  padding: 60px 0 40px;
  text-align: center;
}

.pricing-toggle,
.toggle-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin: 20px 0;
}

.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 32px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #dee2e6;
  transition: .4s;
  border-radius: 34px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 24px;
  width: 24px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

input:checked+.slider {
  background-color: var(--blue);
}

input:checked+.slider:before {
  transform: translateX(28px);
}

/* Pricing Cards */
.pricing-cards .pricing-card {
  background-color: #fffef2;
  border: none;
  border: 1px solid rgba(0, 0, 0, 0.09);
  border-radius: 0 0 20px 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  position: relative;
  padding: 40px 10px 10px;
  height: 100%;
  transition: all 0.3s ease;
}

.pricing-cards .pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 45px rgba(0, 97, 255, 0.1);
}

.pricing-cards .flag-header {
  position: absolute;
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  font-size: 0.8rem;
  padding: 25px 2px;
  text-align: center;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 50% 88%, 0% 100%);
  z-index: 5;
}

.pricing-cards .flag-blue {
  background: var(--blue);
  color: white;
}

.pricing-cards .flag-gold {
  background: var(--gold);
  color: #000;
}

.pricing-cards .flag-success {
  background: var(--active-glow);
  color: white;
}

.pricing-cards .price-val {
  font-size: 2.3rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0;
}

.pricing-cards .price-sub {
  color: #6c757d;
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.pricing-cards .feature-list {
  list-style: none;
  padding: 0;
  margin-bottom: 10px;
  text-align: left;
}

.pricing-cards .feature-item {
  padding: 10px 10px;
  border-bottom: 1px solid #e4e9f3;
  display: flex;
  align-items: flex-start;
  gap: 1px;
  font-size: 0.95rem;
  font-weight: 600;
}

.gold-icon {
  color: var(--gold) !important;
  font-size: 1rem;
}

.blue-icon {
  color: var(--blue) !important;
}

.pricing-cards .btn-syne {
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  font-weight: 700;
  text-transform: uppercase;
  transition: 0.3s;
  font-size: 0.9rem;
}

.pricing-cards .btn-blue {
  background: var(--blue);
  color: white;
  border: none;
}

.pricing-cards .btn-blue:hover {
  background: var(--gold);
  color: #000;
  box-shadow: 0 8px 20px rgba(0, 97, 255, 0.3);
}

.pricing-cards .btn-gold {
  background: var(--gold);
  color: #000;
  border: none;
}

.pricing-cards .btn-gold:hover {
  background: var(--blue);
  color: white;
}

.pricing-cards .btn-success {
  background: var(--active-glow);
  color: white;
  border: none;
}

.pricing-cards .btn-success:hover {
  background: #12b42f;
  color: white;
}

/* Comparison Table */
.compare-section {
  background: white;
  border-radius: 24px;
  padding: 50px;
  margin-top: 80px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
}

.check-icon {
  color: #00c853;
  font-weight: bold;
  font-size: 1.2rem;
}

.cross-icon {
  color: #ff5252;
  font-weight: bold;
  font-size: 1.2rem;
}

.compare-container {
  margin-top: 80px;
  background: white;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 97, 255, 0.1);
}

/* Table Header Styling */
.compare-container .table thead th {
  background-color: var(--navy);
  color: white;
  padding: 25px 20px;
  font-weight: 700;
  border: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.8rem;
}

.compare-container .highlight-col {
  background-color: rgba(0, 97, 255, 0.2) !important;
  border-left: 1px solid rgba(0, 97, 255, 0.1);
  border-right: 1px solid rgba(0, 97, 255, 0.1);
}

.compare-container .text-syne {
  color: var(--blue);
  font-weight: 800;
}

/* Row Styling */
.compare-container .table tbody td {
  padding: 12px;
  vertical-align: middle;
  border-bottom: 1px solid #f1f4f8;
  font-size: 0.9rem;
}

.compare-container .feature-title {
  font-weight: 600;
  color: #2d3436;
}

/* Icons */
.compare-container .bi-check-circle-fill {
  color: #00c853;
  font-size: 1.2rem;
}

.compare-container .bi-x-circle-fill {
  color: #ff5252;
  font-size: 1.2rem;
}

.compare-container .badge-warning-custom {
  background: #fff9db;
  color: #f08c00;
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
}

.compare-container .badge-warning-custom-1 {
  background: #fee9d6;
  color: #ff0000;
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
}

.compare-container .cta-footer {
  background: #f8faff;
  padding: 30px;
  border-top: 1px solid #eee;
}

/* Hero Section with Mesh Gradient */
.hero-premium {
  background:
    radial-gradient(circle at 90% 10%, rgba(0, 98, 255, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 10% 90%, rgba(0, 98, 255, 0.05) 0%, transparent 40%);
  padding: 140px 0 100px;
}

/* High-End Card Styling */
.modern-card-1 {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  padding: 16px 26px 0px 26px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
}

.modern-card-1:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
  border-color: var(--blue);
}

/* Floating Animation for Icons */
.floating-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--blue), #00d2ff);
  color: white;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 24px;
  box-shadow: 0 10px 20px rgba(0, 98, 255, 0.2);
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0px);
  }
}

/* Tech Stack Visual */
.tech-stack-container {
  border-radius: 32px;
  padding: 50px;
  color: black;
}

.stack-layer {
  border: 1px dashed rgba(0, 0, 25, 0.2);
  padding: 20px;
  border-radius: 16px;
  margin-bottom: 15px;
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  transition: background 0.3s;
}

.stack-layer:hover {
  background: rgba(0, 98, 255, 0.2);
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.tag-pill {
  background: rgba(0, 98, 255, 0.1);
  color: var(--blue);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  display: inline-block;
}

/* --- Infographic Container --- */
.info-container {
  padding: 80px 0;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.risk-item {
  padding: 25px;
  background: #ecf7ff;
  border-radius: 20px;
  border: 1px solid #eef2f6;
  transition: all 0.3s ease;
  position: relative;
}

.risk-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20%;
  height: 60%;
  width: 4px;
  background: var(--blue);
  border-radius: 0 4px 4px 0;
  transition: background 0.3s;
}

.risk-item:hover::before {
  background: var(--gold);
}

.risk-number {
  font-weight: 800;
  font-size: 0.9rem;
  color: #94a3b8;
  margin-bottom: 10px;
  display: block;
}

/* --- The Central Message (The Hook) --- */
.hook-box {
  background: #0f172a;
  color: white;
  border-radius: 30px;
  padding: 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.2);
}

.hook-box::after {
  content: 'OWNERSHIP';
  position: absolute;
  font-size: 8rem;
  font-weight: 900;
  opacity: 0.03;
  bottom: -20px;
  right: -20px;
  pointer-events: none;
}

.highlight-text {
  color: #3b82f6;
  font-weight: 800;
  position: relative;
  display: inline-block;
}

.highlight-text::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 8px;
  background: rgba(59, 130, 246, 0.2);
  z-index: -1;
}

.demo-section {
  padding: 100px 0;
}

/* --- Realistic Monitor Mockup --- */
.monitor-wrapper {
  position: relative;
  margin: 0 auto 40px;
  max-width: 500px;
  transition: transform 0.5s cubic-bezier(0.2, 1, 0.3, 1);
}

.monitor-wrapper:hover {
  transform: translateY(-15px);
}

/* The Screen Frame */
.screen-frame {
  background: var(--monitor-frame);
  padding: 12px;
  border-radius: 12px 12px 0 0;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
  position: relative;
  overflow: hidden;
}

/* Glass Reflection Effect */
.screen-frame::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

/* .navbar-toggler-icon {
background-image: url('../img/toggle-logo.png');
background-size: cover;
} */

.screen-content {
  width: 100%;
  aspect-ratio: 16 / 10;
  background-size: cover;
  background-position: top center;
  border-radius: 4px;
}

/* Monitor Stand */
.monitor-stand {
  width: 80px;
  height: 40px;
  background: #e2e8f0;
  margin: 0 auto;
  position: relative;
}

.monitor-base {
  width: 160px;
  height: 8px;
  background: #cbd5e1;
  margin: 0 auto;
  border-radius: 4px 4px 0 0;
}

/* --- Typography & Buttons --- */
.demo-title {
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 25px;
  text-align: center;
}

.btn-view {
  background: var(--blue);
  color: white;
  border: none;
  padding: 12px 40px;
  border-radius: 100px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 0.85rem;
  transition: all 0.3s ease;
  display: block;
  margin: 0 auto;
  box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2);
}

.btn-view:hover {
  background: #1d4ed8;
  transform: scale(1.05);
  box-shadow: 0 15px 30px rgba(37, 99, 235, 0.3);
  color: white;
}

/* The Logic Classes */
.enterprise-only {
  display: block;
}

/* When SaaS is active (checkbox not checked), hide enterprise cards */
body:not(.enterprise-active) .enterprise-only {
  display: none;

}

.enterprise-active .enterprise-onlyb {
  display: none;
}

/* Adjust grid when only one card is visible */
body:not(.enterprise-active) .pricing-grid {
  grid-template-columns: 1fr;
  max-width: 100%;
}

/* Ensure the wrapper centers the content */
.admin-features-wrapper {
  text-align: left;
  max-width: 550px;
  margin: 0 auto;
  min-height: 280px;
  /* Keeps columns even regardless of item count */
}

/* Tag Styling */
.feat-tag {
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #444;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
  height: 100%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.feat-tag i {
  color: #0d6efd;
  margin-right: 10px;
  font-size: 1.1rem;
}

.feat-tag:hover {
  background: #0d6efd;
  color: #fff !important;
  transform: translateY(-3px);
  box-shadow: 0 4px 8px rgba(13, 110, 253, 0.2);
}

.feat-tag:hover i {
  color: #fff;
}

/* Maintain Image Aspect Ratio */
.screen-content {
  transition: transform 0.4s ease;
  object-fit: cover;
  border-radius: 12px;
}

.screen-content:hover {
  transform: scale(1.02);
}

.demo-title {
  font-weight: 800;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  font-size: 1.5rem;
}

/* --- SECTION 2: COMPLEXITY INFOGRAPHIC --- */
.con-promo .complexity-visual {
  position: relative;
  width: 100%;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.con-promo .complexity-orb {
  width: 150px;
  height: 150px;
  background: white;
  border: 8px solid var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  box-shadow: 0 0 50px rgba(0, 97, 255, 0.2);
  animation: pulseOrb 4s infinite alternate;
}

@keyframes pulseOrb {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.08);
  }
}

.con-promo .branch-node {
  position: absolute;
  width: 60px;
  height: 60px;
  background: white;
  border: 2px solid #f1f5f9;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--text-muted);
  transition: 0.3s;
}

.con-promo .branch-node:hover {
  border-color: var(--gold);
  color: var(--blue);
  transform: scale(1.2);
}

.con-promo .node-1 {
  top: 10%;
  left: 20%;
  animation: floatNode 5s infinite alternate;
}

.con-promo .node-2 {
  top: 15%;
  right: 15%;
  animation: floatNode 6s infinite alternate-reverse;
}

.con-promo .node-3 {
  bottom: 20%;
  left: 15%;
  animation: floatNode 7s infinite alternate;
}

.con-promo .node-4 {
  bottom: 10%;
  right: 25%;
  animation: floatNode 8s infinite alternate-reverse;
}

@keyframes floatNode {
  from {
    transform: translate(0, 0);
  }

  to {
    transform: translate(15px, -15px);
  }
}

/* --- INFOGRAPHIC: Section 3 Challenges --- */
.con-info .risk-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.con-info .risk-node {
  background: white;
  border-radius: 2rem;
  padding: 25px;
  border: 1px solid #e9eff5;
  position: relative;
  font-size: 1rem;
  transition: var(--transition);
}

.con-info .risk-node:hover {
  border-color: var(--gold);
  transform: translateY(-10px);
}

.con-info .risk-node i {
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 15px;
}

/* --- INFOGRAPHIC: Section 5 Logic Pipeline --- */
.con-info-pipeline .pipeline-container {
  position: relative;
  padding: 20px 0;
}

.con-info-pipeline .pipeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #c0c0c0;
  transform: translateX(-50%);
}

.con-info-pipeline .pipeline-progress {
  position: absolute;
  left: 50%;
  top: 0;
  width: 4px;
  height: 0%;
  background: linear-gradient(to bottom, var(--blue), var(--gold));
  transform: translateX(-50%);
  transition: height 2s ease;
}

.con-info-pipeline .active .pipeline-progress {
  height: 100%;
}

.con-info-pipeline .pipeline-step {
  position: relative;
  margin-bottom: 0px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.con-info-pipeline .pipeline-step:nth-child(even) {
  flex-direction: row-reverse;
}

.con-info-pipeline .step-content {
  width: 45%;
  background: white;
  padding: 30px;
  border-radius: 2rem;
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(0, 97, 255, 0.05);
  transition: var(--transition);
}

.con-info-pipeline .pipeline-step:hover .step-content {
  border-color: var(--blue);
  transform: scale(1.05);
}

.con-info-pipeline .step-node-point {
  width: 70px;
  height: 70px;
  background: rgb(239, 246, 255);
  border: 4px solid var(--blue);
  border-radius: 50%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
}

/* --- INFOGRAPHIC: Section 8 Comparison --- */
.compare-box {
  display: flex;
  gap: 40px;
  margin-top: 50px;
}

.compare-card {
  flex: 1;
  padding: 50px;
  border-radius: 3rem;
  position: relative;
  overflow: hidden;
  border: 1px solid #f1f5f9;
}

.card-workaround {
  background: #f8fafc;
}

.card-core {
  border: 3px solid var(--blue);
  box-shadow: var(--card-shadow);
}

.compare-label {
  font-size: 1rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 6px 15px;
  border-radius: 8px;
  display: inline-block;
  margin-bottom: 25px;
}

.hover-top {
  transition: transform 0.3s ease;
}

.hover-top:hover {
  transform: translateY(-10px);
}

.bg-soft-primary {
  background-color: #e7f1ff;
}

.bg-soft-success {
  background-color: #e1f7ec;
}

.bg-soft-info {
  background-color: #e0f7fa;
}

.npg .fw-black {
  font-weight: 900;
}

.npg .tracking-widest {
  letter-spacing: 0.2em;
}

.npg .text-gradient-gold {
  background: linear-gradient(45deg, #ffd700, #ff8c00);
  -webkit-text-fill-color: transparent;
}

.npg .card {
  transition: all 0.3s ease;
}

.npg .card:hover {
  transform: scale(1.02);
}

/* --- Contact Form Architecture --- */
.contact-section {
  padding: 50px 0;
}

.form-glass-card {
  background: var(--blue-soft);
  backdrop-filter: blur(20px);
  border-radius: 4rem;
  padding: 40px 60px;
  border: 1px solid rgba(0, 97, 255, 0.05);
  box-shadow: var(--card-shadow);
  position: relative;
  overflow: hidden;
  border: 1px solid #e6e6e6;
}

.form-glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 8px;
  background: linear-gradient(90deg, var(--blue), var(--gold));
}

.form-label {
  font-weight: 800;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-dark);
  margin-bottom: 12px;
  padding-left: 5px;
}

.form-control {
  background: var(--white);
  border: 2px solid #e6e6e6;
  border-radius: 18px;
  padding: 20px 25px;
  font-size: 1rem;
  font-weight: 500;
  transition: var(--transition);
}

.form-control:focus {
  background: white;
  border-color: var(--blue);
  box-shadow: 0 15px 35px rgba(0, 97, 255, 0.08);
  outline: none;
}

.btn-submit {
  background: var(--blue);
  color: white;
  border: none;
  border-radius: 100px;
  padding: 16px 60px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.9rem;
  transition: var(--transition);
  box-shadow: 0 2px 4px rgba(0, 97, 255, 0.25);
  width: 100%;
}

.btn-submit:hover {
  transform: translateY(-8px) scale(1.02);
  background: var(--gold);
  color: black;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

/* --- Quick Info Cards --- */
.info-node {
  background: #f8fafc;
  border-radius: 3rem;
  padding: 45px;
  border: 1px solid #dbe6f0;
  height: 100%;
  transition: var(--transition);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.info-node:hover {
  border-color: var(--blue);
  transform: translateY(-10px);
}

.node-icon {
  width: 60px;
  height: 60px;
  background: var(--soft-yellow);
  color: black;
  ;
  border-radius: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 25px;
  transition: 0.3s;
}

.info-node:hover .node-icon {
  background: var(--blue);
  color: white;
}

@media (max-width: 991px) {
  .form-glass-card {
    padding: 50px 30px;
    border-radius: 3rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }
}

/* Glassmorphism & Hover Effects */
.accordion-item {
  border: 1px solid rgba(0, 97, 255, 0.1);
  transition: all 0.3s ease;
  overflow: hidden;
  background: #f8f8f8;
}

.accordion-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 20px rgba(0, 97, 255, 0.1) !important;
}

.accordion-button {
  transition: background 0.3s ease;
}

.accordion-button:not(.collapsed) {
  background: #f2faff;
  font-weight: 700;
}

/* Custom Icon Animation */
.accordion-button::after {
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Sidebar "Ask" Card Enhancement */
.ask-card {
  background: rgb(253, 255, 234);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  border-top: 5px solid var(--blue);
}

/* Floating Animation for the Question Mark */
.floating {
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-15px);
  }

  100% {
    transform: translateY(0px);
  }
}






.blog-card {
  transition: all 0.3s ease;
  border-radius: 15px !important;
  overflow: hidden;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 97, 255, 0.15) !important;
}

.blog-card img {
  transition: transform 0.5s ease;
}

.blog-card:hover img {
  transform: scale(1.05);
}

.bg-soft-yellow {
  background-color: var(--soft-yellow);
}

.object-fit-cover {
  object-fit: cover;
}

/* Custom button style to match your Blue/Gold theme */
.btn-outline-primary {
  border-color: var(--blue);
  color: var(--blue);
}

.btn-outline-primary:hover {
  background-color: var(--blue);
  border-color: var(--blue);
}

.challenge-list .d-flex {
  transition: transform 0.2s ease;
}

.challenge-list .d-flex:hover {
  transform: translateX(10px);
}

/* Full page centering */
.payment-page-body {
  background-color: #f8f9fa;
  margin: 0;
  padding: 200px 0 200px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
  /* Adjusts for header/footer presence */
}

.status-card {
  background: #ffffff;
  border-radius: 25px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  padding: 40px 40px 40px 40px;
  position: relative;
  max-width: 500px;
  width: 90%;
  text-align: center;
  border: 1px solid #eee;
}

.bg-success-custom {
  background: #28a745;
  box-shadow: 0 10px 20px rgba(40, 167, 69, 0.2);
}

.bg-danger-custom {
  background: #dc3545;
  box-shadow: 0 10px 20px rgba(220, 53, 69, 0.2);
}

.status-title {
  font-weight: 800;
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.text-success-custom {
  color: #28a745;
}

.text-danger-custom {
  color: #dc3545;
}

.status-divider {
  height: 2px;
  width: 50px;
  background: #e0e0e0;
  margin: 20px auto;
}

/* Button Styling */
.btn-round {
  border-radius: 50px;
  padding: 12px 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-outline-custom {
  border: 2px solid #28a745;
  color: #28a745;
  background: transparent;
}

.btn-outline-custom:hover {
  background: #28a745;
  color: #fff;
}

.btn-solid-success {
  background: #28a745;
  color: #fff;
  border: 2px solid #28a745;
}

.btn-solid-danger {
  background: #dc3545;
  color: #fff;
  border: 2px solid #dc3545;
}

.btn-solid-danger:hover {

  color: #ffffff !important;

}


.btn-solid-success:hover,
.btn-solid-danger:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}


.ls-widest {
  letter-spacing: 0.2rem;
}






/* Hero Styling */
.hero-title {
  font-weight: 800;
  letter-spacing: -1px;
}


/* Glassmorphic Pricing Container */
.glass-container {
  background: var(--card-glass);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 40px;
  box-shadow: 0 40px 100px rgba(0, 31, 63, 0.05);
}

/* Billing Toggle UI */
.billing-toggle-wrap {
  background: #f1f5f9;
  padding: 6px 20px;
  border-radius: 100px;
}

.form-check-input {
  width: 3.2em !important;
  height: 1.6em !important;
  cursor: pointer;
  border-color: #cbd5e1 !important;
}

.form-check-input:checked {
  background-color: var(--blue) !important;
  border-color: var(--blue) !important;
}

/* Bento Metric Tiles */
.bento-tile {
  background: #ffffff;
  border-radius: 28px;
  padding: 25px;
  border: 1px solid #f1f5f9;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.bento-tile:hover {
  transform: translateY(-10px);
  border-color: var(--blue);
  box-shadow: 0 20px 40px rgba(0, 97, 255, 0.08);
}

.icon-circle {
  width: 68px;
  height: 68px;
  border-radius: 14px;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  margin: 0 auto 15px;
}

/* Fee Infographics */
.fee-card {
  background: #fff;
  border-radius: 30px;
  padding: 40px;
  border: 1px solid #f1f5f9;
  transition: 0.3s;
}

.fee-card:hover {
  background: #fcfdfe;
}

.fee-number {
  font-size: 5rem;
  font-weight: 800;
  line-height: 1;
}

/* Capability Items */
.cap-item {
  background: #fff;
  border-radius: 16px;
  padding: 12px 20px;
  margin-bottom: 10px;
  border: 1px solid #f1f5f9;
  transition: 0.3s;
  font-size: 0.95rem;
}

.cap-item:hover {
  border-color: var(--blue);
  background: #f8fbff;
}

.cap-item i {
  color: #10b981;
  margin-right: 12px;
}

/* Neon CTA */
.btn-launch {
  background: var(--blue);
  color: white;
  font-weight: 700;
  padding: 20px;
  border-radius: 20px;
  border: none;
  box-shadow: 0 10px 30px rgba(0, 97, 255, 0.2);
  transition: 0.4s;
  letter-spacing: 0.5px;
}

.btn-launch:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 97, 255, 0.3);
  color: white;
}







.page-header {
  padding: 60px 5% 40px;
  background: #fff;
  border-bottom: 1px solid var(--border-light);
}

/* The Dashboard Container */
.dashboard-wrapper {
  display: flex;
  min-height: 100px;
  background: #fff;
  border-bottom: 1px solid var(--border-light);
}

/* Left Pane: Pricing & Toggles */
.pane-pricing {
  flex: 0 0 40%;
  padding: 30px 5%;
  background-color: #ffffdd;
  border-right: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  justify-content: top;
}

/* Right Pane: Achievement Grid */


/* Price Typography */
.price-hero {
  font-size: 6rem;
  font-weight: 800;
  line-height: 0.8;
  letter-spacing: -4px;
  color: var(--blue);
}

/* Interactive Toggle */
.billing-pill {
  background: var(--border-light);
  padding: 8px 24px;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  margin-bottom: 30px;
}

.form-check-input {
  width: 3.5em !important;
  height: 1.8em !important;
  cursor: pointer;
}

/* Feature Tiles */
.feature-tile {
  background: #f4fdff;
  border: 1px solid var(--border-light);
  border-radius: 24px;
  margin: 10px 10px 10px 10px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border-left: 5px solid var(--blue);
}

.feature-tile:hover {
  transform: translateY(-10px);
  border-color: var(--blue);
  box-shadow: 0 20px 40px rgba(0, 97, 255, 0.05);
}

.tile-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: #d9ebff;
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 10px 0px;

}

/* Expanded Features Accordion */
.accordion-section {
  padding: 80px 5%;
  background: #fff;
}

.cap-item {
  display: flex;
  align-items: center;
  padding: 15px;
  background: #f8fbff;
  border-radius: 12px;
  font-weight: 600;
  transition: 0.2s;
}

.cap-item:hover {
  background: #e8f1ff;
  color: var(--blue);
}

.cap-item i {
  color: #10b981;
  margin-right: 12px;
}

/* CTA Bar */
.cta-footer {
  padding: 40px 5%;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 992px) {
  .dashboard-wrapper {
    flex-direction: column;
  }

  .pane-pricing,
  .pane-features {
    flex: 0 0 100%;
    border-right: none;
  }

  .pane-features {
    grid-template-columns: 1fr;
  }

  .cta-footer {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
}


/* terms and conditions css start here*/
#termsprivacy_add {
  margin: 40px 0 40px 0;
}

.services-portion-consulting p {
  color: #12141d;
  font-weight: 500;
  font-size: 16px;
  line-height: 30px;
  margin-bottom: 13px;
}

.services-portion-consulting .list-style-add .list-style-heading {
  font-size: 27px;
  font-weight: 800;
  color: #434343;
}

@media screen and (max-width: 767px) {
  .services-portion-consulting .list-style-add .list-style-heading {
    font-size: 20px;
  }
}

.services-portion-consulting .list-style-add ul,
.services-portion-consulting .list-style-add li {
  color: #12141d;
  margin-top: 13px;
  font-weight: 500;
  font-size: 16px;
}

@media screen and (max-width: 767px) {

  .services-portion-consulting .list-style-add ul,
  .services-portion-consulting .list-style-add li {
    font-size: 16px;
  }
}

.services-portion-consulting .getin-touch-text {
  font-size: 22px;
  font-weight: 600;
}

.different-design .terms-privacy-policy-box {
  padding: 30px 30px 30px 30px !important;
  position: relative;
  background: linear-gradient(90deg,
      rgba(47, 176, 140, 0.08) 0,
      rgba(234, 27, 61, 0) 67.68%);
}

@media screen and (max-width: 1224px) {
  .different-design .terms-privacy-policy-box {
    padding: 35px 18px 35px 18px !important;
  }
}

.different-design .terms-privacy-policy-box .svg-ics {
  position: absolute;
  background: #2fb08c;
  padding: 9px;
  border-radius: 10px;
  margin: 0 0px 0 -70px;
}

@media screen and (max-width: 1224px) {
  .different-design .terms-privacy-policy-box .svg-ics {
    right: 0;
  }
}

.different-design .terms-privacy-policy-box .list-style-add {
  position: relative;
  padding-left: 15px;
  margin: 6px 0 4px 0;
}

.different-design .terms-privacy-policy-box .list-style-add .consulting-only-heading {
  font-weight: 800;
  font-size: 27px;
}

.different-design .terms-privacy-policy-box .list-style-add .consulting-only-heading:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  display: inline-block;
  transform: rotate(45deg);
  height: 18px;
  width: 8px;
  border-bottom: 3px solid #2fb08c;
  border-right: 3px solid #2fb08c;
  margin: 6px 0px 0 -4px;
}

.different-design .terms-privacy-policy-box .list-style-add .same-heading-cls {
  font-weight: 800;
  font-size: 19px;
}

.different-design .terms-privacy-policy-box .list-style-add .same-heading-cls:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  display: inline-block;
  transform: rotate(45deg);
  height: 14px;
  width: 6px;
  border-bottom: 3px solid #2fb08c;
  border-right: 3px solid #2fb08c;
  margin: 8px 0px 0 -2px;
}

.new-phase-second-design .terms-privacy-policy-box {
  padding: 15px 15px 15px 28px !important;
}

.new-phase-second-design .terms-privacy-policy-box h2 {
  font-size: 19px !important;
  line-height: 18px;
  margin-bottom: 8px;
}

.new-phase-second-design .terms-privacy-policy-box .list-style-add {
  margin: 0px 0 4px 0;
}

.new-phase-second-design .terms-privacy-policy-box .list-style-add li {
  margin-top: 7px;
  font-size: 15px;
}

.new-phase-second-design .terms-privacy-policy-box .list-style-add li:before {
  content: "";
  height: 13px;
  width: 6px;
  margin: 5px 0px 0 -17px;
}

.new-phase-second-design .terms-privacy-policy-box .list-style-add .same-heading-cls {
  font-size: 16px;
  margin-bottom: 5px;
}

@media screen and (max-width: 1224px) {
  .new-phase-second-design .terms-privacy-policy-box .list-style-add .same-heading-cls {
    padding-right: 37px;
  }
}

.new-phase-second-design .terms-privacy-policy-box .customer-logo img {
  height: fit-content;
  margin-top: 20px;
  margin-bottom: 10px;
  width: 60%;
}

.terms-privacy-policy-box {
  background: #fff;
  box-shadow: 0px 0px 77px rgba(0, 0, 0, 0.06);
  border-radius: 13px;
  padding: 30px;
  margin-bottom: 20px;
}

@media screen and (max-width: 1224px) {
  .terms-privacy-policy-box {
    margin-top: 13px;
  }
}

.terms-privacy-policy-box:hover {
  -webkit-transform: translateZ(0) translateY(0);
  -moz-transform: translateZ(0) translateY(0);
  -ms-transform: translateZ(0) translateY(0);
  -o-transform: translateZ(0) translateY(0);
  transform: translateZ(0) translateY(0);
  -webkit-box-shadow: 0 0 30px 0 rgba(101, 105, 167, 0.4);
  box-shadow: 0 0 30px 0 rgba(101, 105, 167, 0.4);
}

.terms-privacy-policy-box h2 {
  font-weight: 700;
  font-size: 38px;
  color: #153c3c;
}

@media screen and (max-width: 1224px) {
  .terms-privacy-policy-box h2 {
    font-size: 18px;
    margin-right: 0px !important;
  }
}

.terms-privacy-policy-box p,
.terms-privacy-policy-box h3 {
  font-size: 16px;
  color: #12141d;
  line-height: 28px;
  font-weight: 500;
}

@media screen and (max-width: 767px) {

  .terms-privacy-policy-box p,
  .terms-privacy-policy-box h3 {
    font-size: 16px !important;
    line-height: 25px !important;
    padding-right: 0px;
  }
}

.terms-privacy-policy-box .user-listing h3,
.terms-privacy-policy-box .user-listing h4,
.terms-privacy-policy-box .user-listing h5 {
  font-size: 30px;
  font-weight: 800;
}

.terms-privacy-policy-box .user-listing ul li {
  color: #12141d;
  line-height: 35px;
  font-weight: 500;
}

.product-text {
  color: #434343 !important;
  font-weight: 800;
  margin-bottom: 18px;
  font-size: 27px !important;
  line-height: 46px;
  letter-spacing: inherit !important;
}

@media only screen and (max-width: 767px) {
  .product-text {
    font-size: 22px !important;
    line-height: 30px;
  }
}

.services-portion-consulting p {
  color: #12141d;
  font-weight: 500;
  font-size: 16px;
  line-height: 30px;
  margin-bottom: 13px;
}

.services-portion-consulting .list-style-add .list-style-heading {
  font-size: 27px;
  font-weight: 800;
  color: #434343;
}

@media screen and (max-width: 767px) {
  .services-portion-consulting .list-style-add .list-style-heading {
    font-size: 20px;
  }
}

.services-portion-consulting .list-style-add ul,
.services-portion-consulting .list-style-add li {
  color: #12141d;
  margin-top: 13px;
  font-weight: 500;
  font-size: 16px;
}

@media screen and (max-width: 767px) {

  .services-portion-consulting .list-style-add ul,
  .services-portion-consulting .list-style-add li {
    font-size: 16px;
  }
}

.services-portion-consulting .getin-touch-text {
  font-size: 22px;
  font-weight: 600;
}

.services-portion-consulting p {
  color: #12141d;
  font-weight: 500;
  font-size: 16px;
  line-height: 30px;
  margin-bottom: 13px;
}

.services-portion-consulting .list-style-add .list-style-heading {
  font-size: 27px;
  font-weight: 800;
  color: #434343;
}

@media screen and (max-width: 767px) {
  .services-portion-consulting .list-style-add .list-style-heading {
    font-size: 20px;
  }
}

.services-portion-consulting .list-style-add ul,
.services-portion-consulting .list-style-add li {
  color: #12141d;
  margin-top: 13px;
  font-weight: 500;
  font-size: 16px;
}

@media screen and (max-width: 767px) {

  .services-portion-consulting .list-style-add ul,
  .services-portion-consulting .list-style-add li {
    font-size: 16px;
  }
}

.services-portion-consulting .getin-touch-text {
  font-size: 22px;
  font-weight: 600;
}

.same-all-line-theme:after {
  content: "";
  width: 140px;
  background: var(--blue);
  height: 4px;
  display: block;
  margin: 3px auto 0 auto;
  margin-left: inherit;
}

.services-portion-consulting .list-style-add .list-style-heading {
  font-size: 27px;
  font-weight: 800;
  color: #434343;
}

@media screen and (max-width: 767px) {
  .services-portion-consulting .list-style-add .list-style-heading {
    font-size: 20px;
  }
}

.services-portion-consulting .list-style-add ul,
.services-portion-consulting .list-style-add li {
  color: #12141d;
  margin-top: 13px;
  font-weight: 500;
  font-size: 16px;
}

@media screen and (max-width: 767px) {

  .services-portion-consulting .list-style-add ul,
  .services-portion-consulting .list-style-add li {
    font-size: 16px;
  }
}

.list-style-add ul {
  list-style: none;
}

.list-style-add ul li {
  position: relative;
}

.list-style-add ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  display: inline-block;
  transform: rotate(45deg);
  height: 14px;
  width: 6px;
  border-bottom: 3px solid #2fb08c;
  border-right: 3px solid #2fb08c;
  margin: 5px 0px 0 -17px;
}

.blue-color-code {
  border: 2px solid #2fb08c;
}

.blue-color-code .list-style-add ul li:before {
  border-bottom: 3px solid #2fb08c;
  border-right: 3px solid #2fb08c;
}

.blue-color-code .box-height {
  border: 5px solid #2fb08c;
}

.purple-color-code {
  border: 2px solid #27c24c;
}

.purple-color-code .list-style-add ul li:before {
  border-bottom: 3px solid #27c24c;
  border-right: 3px solid #27c24c;
}

.different-design .terms-privacy-policy-box .list-style-add {
  position: relative;
  padding-left: 15px;
  margin: 6px 0 4px 0;
}

.different-design .terms-privacy-policy-box .list-style-add .consulting-only-heading {
  font-weight: 800;
  font-size: 27px;
}

.different-design .terms-privacy-policy-box .list-style-add .consulting-only-heading:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  display: inline-block;
  transform: rotate(45deg);
  height: 18px;
  width: 8px;
  border-bottom: 3px solid #2fb08c;
  border-right: 3px solid #2fb08c;
  margin: 6px 0px 0 -4px;
}

.different-design .terms-privacy-policy-box .list-style-add .same-heading-cls {
  font-weight: 800;
  font-size: 19px;
}

.different-design .terms-privacy-policy-box .list-style-add .same-heading-cls:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  display: inline-block;
  transform: rotate(45deg);
  height: 14px;
  width: 6px;
  border-bottom: 3px solid #2fb08c;
  border-right: 3px solid #2fb08c;
  margin: 8px 0px 0 -2px;
}

.new-phase-second-design .terms-privacy-policy-box .list-style-add {
  margin: 0px 0 4px 0;
}

.new-phase-second-design .terms-privacy-policy-box .list-style-add li {
  margin-top: 7px;
  font-size: 15px;
}

.new-phase-second-design .terms-privacy-policy-box .list-style-add li:before {
  content: "";
  height: 13px;
  width: 6px;
  margin: 5px 0px 0 -17px;
}

.new-phase-second-design .terms-privacy-policy-box .list-style-add .same-heading-cls {
  font-size: 16px;
  margin-bottom: 5px;
}

@media screen and (max-width: 1224px) {
  .new-phase-second-design .terms-privacy-policy-box .list-style-add .same-heading-cls {
    padding-right: 37px;
  }
}


.transition-hover {
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.transition-hover:hover {
  transform: translateY(-5px);
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, .075) !important;
  border-color: rgba(0, 86, 179, 0.1);
}

.icon-circle {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 86, 179, 0.1);
  color: var(--blue);
  border-radius: 12px;
}

/* Integration Banner */
.integration-banner {
  border-radius: 2.5rem;
  padding: 45px;
  margin-top: 50px;
  position: relative;
  overflow: hidden;
  border-left: 8px solid #0080ff;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.integration-banner h5 {
  color: var(--accent);
  margin-bottom: 20px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.integration-status-list {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 15px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.status-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.3px;
}

.status-item::before {
  content: '';
  width: 10px;
  height: 10px;
  background: #000000;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 12px #ffcc00;
  flex-shrink: 0;
}






/* --- Handover Bridge Infographic (LIGHT THEME) --- */
.handover-bridge-container {
  background: #f0f6ff;
  border-radius: 2rem;
  padding: 20px 60px 60px 60px;
  position: relative;
  overflow: hidden;
  margin-bottom: 40px;
  border: 1px solid rgba(0, 97, 255, 0.1);
  box-shadow: 0 20px 50px rgba(0, 97, 255, 0.05);
}

.handover-bridge-container::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 50%, rgba(255, 204, 0, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

.bridge-track {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 5;
}

.bridge-node {
  width: 100px;
  height: 100px;
  background: white;
  border-radius: 2.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  color: var(--blue);
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 97, 255, 0.1);
  transition: var(--transition);
  border: 2px solid white;
}

.bridge-node.active {
  background: var(--gold);
  color: var(--text-dark);
  border-color: var(--gold);
  box-shadow: 0 15px 40px rgba(255, 204, 0, 0.3);
}

.bridge-line {
  flex-grow: 1;
  height: 4px;
  background: rgba(0, 97, 255, 0.1);
  margin: 0 30px;
  position: relative;
  border-radius: 10px;
}

.data-particle {
  position: absolute;
  top: 50%;
  left: 0;
  width: 12px;
  height: 12px;
  background: var(--blue);
  border-radius: 50%;
  transform: translateY(-50%);
  box-shadow: 0 0 15px rgba(0, 97, 255, 0.3);
  animation: moveData 3s infinite linear;
}

@keyframes moveData {
  0% {
    left: 0;
    opacity: 0;
  }

  20% {
    opacity: 1;
  }

  80% {
    opacity: 1;
  }

  100% {
    left: 100%;
    opacity: 0;
  }
}

.node-label {
  position: absolute;
  top: 120px;
  white-space: nowrap;
  color: var(--text-dark);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  text-align: center;
}

/* --- Bento Detail Grid --- */
.handover-bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}

.bento-item {
  background: white;
  border-radius: 2.5rem;
  padding: 40px;
  border: 1px solid #f1f5f9;
  transition: var(--transition);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  height: 100%;
}

.bento-item:hover {
  border-color: var(--blue);
  transform: translateY(-10px);
  box-shadow: var(--card-shadow);
}

.bento-icon {
  width: 55px;
  height: 55px;
  background: var(--blue);
  color: white;
  border-radius: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 25px;
  transition: 0.3s;
}

.bento-item:hover .bento-icon {
  background: var(--gold);
  color: black;
  transform: rotate(-5deg);
}

/* Conditional Logic Box (Keep Yellow as per request) */
.status-alert-box {
  grid-column: span 12;
  background: var(--light-bg);
  border: 2px solid var(--gold);
  border-radius: 2rem;
  padding: 35px 45px;
  display: flex;
  align-items: center;
  gap: 30px;
  position: relative;
  overflow: hidden;
}

.status-alert-box::before {
  content: '\f05a';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  right: -20px;
  top: -20px;
  font-size: 10rem;
  color: var(--gold);
  opacity: 0.05;
}

@media (max-width: 991px) {
  .handover-bridge-container {
    padding: 80px 30px;
    border-radius: 3rem;
  }

  .bridge-line {
    margin: 0 15px;
  }

  .node-label {
    font-size: 0.65rem;
    top: 110px;
  }

  .status-alert-box {
    flex-direction: column;
    text-align: center;
    padding: 30px;
  }
}



.ft .infographic-container {
  background: linear-gradient(135deg, #f8f9ff 0%, #e0e7ff 100%);
  border-radius: 2rem;
  overflow: hidden;
}

.ft .step-number {
  width: 35px;
  height: 35px;
  line-height: 35px;
  background: var(--blue);
  color: white;
  border-radius: 50%;
  display: inline-block;
  text-align: center;
  font-weight: bold;
  margin-right: 15px;
  box-shadow: 0 4px 10px rgba(67, 97, 238, 0.3);
}

.ft .feature-card {
  background: white;
  border: none;
  border-radius: 1.25rem;
  transition: all 0.3s ease;
}

.ft .feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}

.ft .lifecycle-line {
  border-left: 2px dashed #0080c0;
  margin-left: 1.1rem;
  padding-left: 2rem;
}



.newt .infographic-card {
  background: #ffffff;
  border-radius: 1.5rem;
  border: none;
  overflow: hidden;
}

/* Responsive Stepper Logic */
.newt .stepper-container {
  position: relative;
  display: flex;
  flex-direction: column;
  /* Default for mobile */
  gap: 2rem;
}

/* The Connector Line */
.newt .stepper-container::before {
  content: '';
  position: absolute;
  background: var(--track-color);
  z-index: 0;
}

/* Mobile Line (Vertical) */
@media (max-width: 767.98px) {
  .newt .stepper-container::before {
    left: 27px;
    top: 0;
    width: 4px;
    height: 100%;
  }

  .newt .step-item {
    display: flex;
    align-items: flex-start;
    text-align: left !important;
  }

  .newt .step-info {
    padding-left: 1.5rem;
    padding-top: 0.5rem;
  }
}

/* Desktop Line (Horizontal) */
@media (min-width: 768px) {
  .newt .stepper-container {
    flex-direction: row;
    justify-content: space-between;
  }

  .newt .stepper-container::before {
    top: 27px;
    left: 0;
    width: 100%;
    height: 4px;
  }

  .newt .step-item {
    flex: 1;
    text-align: center;
  }
}

/* Step Circle Styling */
.newt .step-circle {
  width: 54px;
  height: 54px;
  background: #fff;
  border: 4px solid var(--track-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
  font-weight: 800;
  color: #64748b;
}

.newt .step-item:hover .step-circle {
  border-color: #6366f1;
  background: var(--primary-gradient);
  color: white;
  transform: translateY(-5px);
  box-shadow: 0 10px 15px -3px rgba(99, 102, 241, 0.3);
}

.newt .execution-pill {
  background: #f1f5f9;
  color: #475569;
  transition: all 0.3s ease;
}

.newt .execution-pill:hover {
  background: #e2e8f0;
}



body {
  background-color: #f5f5f7;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: #1d1d1f;
}

.main-container {
  background: radial-gradient(circle at 0% 0%, rgba(0, 122, 255, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 100% 100%, rgba(88, 86, 214, 0.05) 0%, transparent 40%);
  border-radius: 40px;
  padding: 2rem 2rem;
}

.main-container-notification{
    background: radial-gradient(circle at 0% 0%, rgba(0, 122, 255, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 100% 100%, rgba(88, 86, 214, 0.05) 0%, transparent 40%);
  border-radius: 40px;
  padding: 2rem 2rem;
    background: white;
  border-radius: 48px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.05);
  margin: 40px auto;
}
/* Modern Bento Card */
.bento-card {
  background: #ffffd2;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 28px;
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  overflow: hidden;
}

.bento-card:hover {
  transform: scale(1.02);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.06);
}

/* Dashboard Preview Element */
.ui-mockup {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #ffffd2;
  padding: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
}

.pill-success {
  background: #e3f9eb;
  color: #1a7f37;
}

/* Typography */
.display-title {
  font-weight: 700;
  letter-spacing: -0.02em;
  background: linear-gradient(180deg, #1d1d1f 0%, #434345 100%);
  -webkit-text-fill-color: transparent;
}

.text-blue {
  color: var(--primary-glow);
}

.list-item-modern {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  gap: 15px;
}

.glassmd .feature-pill:hover {
  transform: scale(1.03) translateX(5px);
  border-color: var(--accent-glow);
  box-shadow: 0 10px 20px rgba(59, 130, 246, 0.1);
}

.glassmd .icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  color: #2563eb;
}

/* The "Live" Terminal Box */
.glassmd .status-terminal {
  background: #0080ff;
  border-radius: 18px;
  color: #94a3b8;
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.85rem;
  padding: 20px;
  border-bottom: 4px solid #334155;
}

.glassmd .text-gradient {
  background: linear-gradient(to right, #2563eb, #7c3aed);
  -webkit-text-fill-color: transparent;
}

.glassmd .dot {
  height: 8px;
  width: 8px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 5px;
}




body {
  background-color: #f8fafc;
  font-family: 'Inter', system-ui, sans-serif;
  overflow-x: hidden;
}

/* Central Hub Styling */
.hub-card {
  background: white;
  border-radius: 40px;
  padding: 3rem;
  border: 1px solid rgba(79, 70, 229, 0.1);
  box-shadow: 0 25px 50px -12px rgba(79, 70, 229, 0.1);
  position: relative;
  z-index: 2;
}

/* Spoke Node Styling */
.spoke-node {
  background: var(--white);
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
  border: 1px solid #edf2f7;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.spoke-node:hover {
  transform: scale(1.05);
  border-color: var(--blue);
  box-shadow: 0 20px 25px -5px rgba(79, 70, 229, 0.1);
}

/* Connecting Line Decoration (Desktop Only) */
@media (min-width: 992px) {

  .connector-left::after,
  .connector-right::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--blue), transparent);
    z-index: 1;
  }

  .connector-left::after {
    right: -40px;
  }

  .connector-right::after {
    left: -40px;
    transform: rotate(180deg);
  }
}

.icon-accent {
  width: 40px;
  height: 40px;
  background: #eef2ff;
  color: var(--blue);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-bottom: 1rem;
}




/* The Blueprint Track */
.blueprint-container {
  position: relative;
  padding-left: 3rem;
  border-left: 2px dashed #3f587a;
}

.blueprint-step {
  position: relative;
  margin-bottom: 2.5rem;
}

/* Pulsing Node */
.blueprint-node {
  position: absolute;
  left: -3.7rem;
  top: 0;
  width: 20px;
  height: 20px;
  background: white;
  border: 4px solid var(--seo-accent);
  border-radius: 50%;
  z-index: 2;
}

.seo-card {
  background: var(--glass-card);
  backdrop-filter: blur(10px);
  border: 1px solid #f1f5f9;
  border-radius: 20px;
  padding: 1.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.seo-card:hover {
  transform: translateX(10px);
  background: white;
  border-color: var(--seo-accent);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05);
}



.architecture-tag {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--seo-accent);
  font-weight: 700;
  margin-bottom: 0.5rem;
  display: block;
}

.main-display {
  border-radius: 40px;
  background: white;
  padding: 4rem;
  border: 1px solid #f1f5f9;
  box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.03);
}




.infographic-card-2 {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 40px;
  padding: 2rem 2rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.03);
}

/* The Movement Path (Vertical line) */
.movement-path {
  position: relative;
}

.movement-path::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, transparent, #e2e8f0 15%, #e2e8f0 85%, transparent);
  transform: translateX(-50%);
  z-index: 0;
}

/* Step Bubbles */
.infographic-card-2 .step-node {
  position: relative;
  z-index: 1;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.infographic-card-2 .step-content {
  background: #ffffff;
  padding: 2rem;
  border-radius: 24px;
  border: 1px solid #f1f5f9;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
  width: 100%;
  max-width: 400px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.infographic-card-2 .step-content:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 25px -5px rgba(99, 102, 241, 0.5);
  border-color: #6366f1;
}

.infographic-card-2 .step-number {
  width: 50px;
  height: 50px;
  background: var(--primary-gradient);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  margin-bottom: 1.5rem;
  box-shadow: 0 10px 20px rgba(99, 102, 241, 0.3);
}

/* Staggered Layout for Desktop */
@media (min-width: 992px) {
  .infographic-card-2 .step-node:nth-child(odd) {
    justify-content: flex-start;
    padding-left: 10%;
  }

  .infographic-card-2 .step-node:nth-child(even) {
    justify-content: flex-end;
    padding-right: 10%;
  }

  .infographic-card-2 .step-node:nth-child(odd) .step-content {
    transform: translateX(-20px);
  }

  .infographic-card-2 .step-node:nth-child(even) .step-content {
    transform: translateX(20px);
  }
}

/* Shared Status Hub */
.infographic-card-2 .hub-banner {
  border-radius: 30px;
  padding: 3rem;
  color: white;
  position: relative;
  overflow: hidden;
}

.infographic-card-2 .hub-banner::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 150px;
  height: 150px;
  background: var(--primary-gradient);
  filter: blur(80px);
  opacity: 0.4;
}

.infographic-card-2 .team-badge {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 100px;
  font-size: 0.85rem;
  backdrop-filter: blur(4px);
}

.infographic-card-2 .text-gradient {
  background: var(--primary-gradient);
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}





.con-promo .infographic-wrapper {
  background: white;
  border-radius: 50px;
  padding: 5rem 2rem;
  border: 1px solid #e2e8f0;
  overflow: hidden;
}

/* Circular Orbit Logic */
.con-promo .orbit-container {
  position: relative;
  width: 100%;
  height: 600px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* The Hub (Center) */
.con-promo .hub-center {
  width: 220px;
  height: 220px;
  background: var(--blue);
  color: white;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 10;
  box-shadow: 0 0 40px rgba(99, 102, 241, 0.4);
  padding: 20px;
}

/* Satellite Nodes (The Steps) */
.con-promo .step-node {
  position: absolute;
  width: 200px;
  background: white;
  padding: 1.25rem;
  border-radius: 20px;
  border: 1px solid #f1f5f9;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  z-index: 5;
}

.con-promo .step-node:hover {
  transform: scale(1.1) !important;
  border-color: var(--blue);
  box-shadow: 0 15px 35px rgba(99, 102, 241, 0.15);
}

.con-promo .step-icon {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  display: block;
}

/* Node Positioning (Desktop) */
@media (min-width: 992px) {
  .con-promo .orbit-ring {
    position: absolute;
    width: 500px;
    height: 500px;
    border: 2px dashed var(--orbit-border);
    border-radius: 50%;
    z-index: 1;
  }

  /* Position nodes in a circle */
  .con-promo .node-1 {
    transform: translate(0, -150px);
  }

  /* Top */
  .con-promo .node-2 {
    transform: translate(240px, -80px);
  }

  /* Top Right */
  .con-promo .node-3 {
    transform: translate(150px, 180px);
  }

  /* Bottom Right */
  .con-promo .node-4 {
    transform: translate(-150px, 180px);
  }

  /* Bottom Left */
  .con-promo .node-5 {
    transform: translate(-240px, -80px);
  }

  /* Top Left */
}

/* Responsive Mobile Layout */
@media (max-width: 991.98px) {
  .con-promo .orbit-container {
    height: auto;
    flex-direction: column;
    gap: 1.5rem;
  }

  .con-promo .orbit-ring {
    display: none;
  }

  .con-promo .hub-center {
    width: 100%;
    border-radius: 25px;
    height: auto;
    margin-bottom: 2rem;
  }

  .con-promo .step-node {
    position: relative;
    width: 100%;
    transform: none !important;
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: left;
  }

  .con-promo .step-icon {
    margin-bottom: 0;
  }
}

.con-promo .gradient-text {
  background: linear-gradient(135deg, #1e293b 0%, #6366f1 100%);
  -webkit-text-fill-color: transparent;
}




.mnt {
  background: white;
  border-radius: 40px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
}

/* central Processing Hub */
.mnt .processing-hub {
  background: #f1f5f9;
  border-radius: 24px;
  padding: 2rem;
  position: relative;
  border: 2px dashed #cbd5e1;
}

/* Flow Arrows */
.mnt .flow-indicator {
  font-size: 1.8rem;
  color: #400080;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 30px;
}

/* Department Cards */
.mnt .dept-card {
  background: white;
  border-radius: 20px;
  padding: 1.25rem;
  border-top: 5px solid #dee2e6;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.mnt .dept-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.mnt .marketing-border {
  border-top-color: var(--marketing-color);
}

.mnt .support-border {
  border-top-color: var(--support-color);
}

.mnt .ops-border {
  border-top-color: var(--gold);
}

.mnt .system-pill {
  background: var(--blue);
  color: white;
  padding: 0.5rem 1.25rem;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.85rem;
  display: inline-block;
}

.mnt .check-item {
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}



body {
  background-color: #f1f5f9;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: #1e293b;
}

.main-container {
  background: white;
  border-radius: 48px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.05);
}

/* Sidebar Highlight */
.control-panel {
  background: linear-gradient(135deg, #f8fafc 0%, #eff6ff 100%);
  padding: 3rem;
  height: 100%;
  border-right: 1px solid #e2e8f0;
}

/* Feature Badge Styling */
.notify-badge {
  background: var(--glass-card);
  border: 1px solid #f1f5f9;
  border-radius: 20px;
  padding: 1.25rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  gap: 1rem;
  height: 100%;
}

.notify-badge:hover {
  transform: translateY(-5px);
  border-color: var(--bs-info);
  box-shadow: 0 10px 20px rgba(99, 102, 241, 0.1);
}

.icon-hex {
  width: 42px;
  height: 42px;
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.status-pill {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 100px;
  background: #dcfce7;
  color: #166534;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.connector-dot {
  width: 8px;
  height: 8px;
  background: var(--bs-info);
  border-radius: 50%;
  display: inline-block;
  margin-right: 8px;
  box-shadow: 0 0 8px var(--bs-info);
}




.main-infographic {
  border-radius: 48px;
  padding: 4rem 2rem;
  position: relative;
  overflow: hidden;
}

/* Section Header Styling */
.main-infographic .section-header {
  max-width: 800px;
  margin: 0 auto 4rem auto;
  text-align: center;
}

/* The Isolation Layer Stack */
.main-infographic .isolation-stack {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.main-infographic .layer-card {
  background: var(--border-light);
  border: 2px solid var(--isolation-border);
  border-radius: 24px;
  padding: 2rem;
  position: relative;
  transition: all 0.3s ease;
}

.main-infographic .layer-card:hover {
  transform: translateY(-5px);
  background: white;
  box-shadow: 0 20px 25px -5px rgba(2, 132, 199, 0.1);
}

/* Layer Labels */
.main-infographic .layer-tag {
  position: absolute;
  top: -12px;
  left: 30px;
  background: var(--blue);
  color: white;
  padding: 2px 14px;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 1px;
}

.main-infographic .icon-hex {
  width: 48px;
  height: 48px;
  background: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  font-size: 1.25rem;
}

/* Default Protection Banner */
.main-infographic .auto-shield {
  background: #ffffcc;
  color: white;
  border-radius: 30px;
  padding: 2.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.main-infographic .pulse-dot {
  height: 10px;
  width: 10px;
  background-color: #22c55e;
  border-radius: 50%;
  display: inline-block;
  margin-right: 10px;
  box-shadow: 0 0 0 rgba(34, 197, 94, 0.4);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0px rgba(34, 197, 94, 0.4);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(34, 197, 94, 0);
  }

  100% {
    box-shadow: 0 0 0 0px rgba(34, 197, 94, 0);
  }
}

.track-card .icon-badge {
  width: 44px;
  height: 44px;
  background: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  font-size: 1.2rem;
}




.performance-box {
  border-radius: 40px;
  padding: 2rem;
  overflow: hidden;
  position: relative;
}

/* Decorative Performance Line */
.speed-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--secure-indigo), transparent);
  opacity: 0.3;
}

/* Dual Track Cards */
.track-card {
  background: var(--accent-gray);
  border-radius: 24px;
  padding: 1rem;
  height: 100%;
  border: 1px solid transparent;
  transition: all 0.3s ease;
}

.track-card:hover {
  background: white;
  border-color: var(--secure-indigo);
  box-shadow: 0 20px 40px rgba(79, 70, 229, 0.08);
  transform: translateY(-5px);
}

.icon-badge {
  width: 44px;
  height: 44px;
  background: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  font-size: 1.2rem;
}

.role-tag {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--secure-indigo);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
  display: block;
}

/* Data Shield Box */
.shield-footer {
  background: #0080ff;
  border-radius: 20px;
  padding: 1.5rem;
  color: white;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.indicator-light {
  width: 10px;
  height: 10px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 10px #22c55e;
}



.transformation-box {
  background: white;
  border-radius: 50px;
  padding: 4rem 2rem;
  border: 1px solid #e2e8f0;
  box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}
@media (max-width: 767px) {
  .transformation-box {
    padding-left: 12px;
    padding-right: 12px;
  }
}
/* The Animated Flow Line */
.transformation-box .flow-line {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80%;
  height: 2px;
  background: linear-gradient(90deg, #e2e8f0, var(--blue), #e2e8f0);
  transform: translate(-50%, -50%);
  z-index: 0;
  opacity: 0.3;
}

/* Evolution Cards */
.evolution-card {
  border-radius: 30px;
  padding: 3rem 2rem;
  position: relative;
  background-color: #f1f5f9;
  z-index: 1;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid #f1f5f9;
  text-align: center;
}

.transformation-box .old-way {
  /* filter: grayscale(1); */
  opacity: 0.9;
}

.transformation-box .new-way {
  border-color: var(--blue);
  box-shadow: 0 20px 40px rgba(99, 102, 241, 0.15);
}

.transformation-box .icon-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-size: 1.5rem;
  background: #f1f5f9;
  color: #64748b;
}

.transformation-box .new-way .icon-circle {
  background: var(--blue);
  color: white;
  box-shadow: 0 0 20px rgba(99, 102, 241, 0.4);
}

/* The Arrow Switch */
.transformation-box .switch-icon {
  width: 50px;
  height: 50px;
  background: var(--text-dark);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1.5rem auto;
  position: relative;
  z-index: 2;
}
/* Sidebar Navigation Styling */
.sidebar-item {
    border-radius: 10px;

    margin-bottom: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    display: flex;
    align-items: center;
    width: 100%;
    background-color: #fff;
    color: #444;
    text-align: left; /* IMPORTANT */

}

.sidebar-item.active {
    background-color: #2b6df1 !important;
    color: #fff !important;
}
.sidebar-profile{
  border-right: 1px solid lightgray;
}
/* Sidebar Navigation Styling */
.sidebar-item {
    border-radius: 10px;
    margin-bottom: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Aligns content to the left */
    width: 100%;
    background-color: #fff;
    color: #444;
    text-align: left;
    padding: 10px 15px 10px 0px; /* Top, Right, Bottom, Left (0 sets it to start) */
}

.icon-box-my-ac {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #f0f4f8;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px; /* Space between icon and text */
    margin-left: 5px;      /* Ensure no margin on the left */
    color: #2b6df1;
    flex-shrink: 0;
}

/* Optional: If you want a tiny bit of breathing room, use padding-left: 5px instead of 0 */
.sidebar-item.active .icon-box {
    background-color: rgba(255, 255, 255, 0.15);
    color: #fff;
}

/* Content Card Styling */
.info-card {
    border: 1px solid #dee2e6;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
}

.card-header-custom {
    background-color: #f8f9fa;
    padding: 18px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
    cursor: pointer;
}

.card-header-custom h6 {
    color: #666;
    font-size: 0.85rem;
    letter-spacing: 0.8px;
}

/* Form Styling */
.form-label {
    margin-bottom: 8px;
    color: #555;
}

.form-control, .form-select {
    padding: 12px;
    border-color: #e9ecef;
    border-radius: 8px;
    font-size: 0.95rem;
}

.form-control:focus, .form-select:focus {
    border-color: #2b6df1;
    box-shadow: 0 0 0 0.2rem rgba(43, 109, 241, 0.1);
}

.input-group-text {
    border-color: #e9ecef;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .sidebar-item {
        padding: 12px;
    }
}

.accordion-button {
  padding-right: 120px; 
}

.accordion-button::after {
  position: absolute;
  right: 15px;
}
/* ---------------- MOBILE SIDEBAR FIX ---------------- */
@media (max-width: 768px) {

    /* Remove right border */
    .sidebar-profile {
        border-right: none;
    }

    /* Make tabs horizontal */
    .nav-pills {
        flex-direction: row !important;
        justify-content: space-between;
        gap: 10px;
    }

    /* Each item equal width */
    .sidebar-item {
        flex: 1;
        justify-content: center;
        padding: 12px;
    }

   

    /* Center icon */
    .icon-box {
        margin: 0;
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    /* Make active look good */
    .sidebar-item.active {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    /* Remove top profile text spacing */
    .sidebar-profile .text-center {
        margin-bottom: 10px;
    }
}






.table-responsive {
    overflow-x: auto;
}

/* Prevent table breaking */
.subscription-table {
    min-width: 900px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid lightgray;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* Table Head */
.subscription-table thead {
    background-color: #f8f9fa;
}

.subscription-table th {
   
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: #666;
    padding: 1px;
    white-space: nowrap;
}
.account-table-head th{
  padding: 5px 5px 5px 15px !important;
  margin: 0 !important;
  font-size: 14px !important;
  font-weight: 600;
}

/* Table Body */
.subscription-table td {
    padding: 14px;
    font-size: 0.9rem;
    color: #444;
    border-top: 1px solid #f1f1f1;
    text-wrap-mode: nowrap;
}

/* Row hover */
.subscription-table tbody tr:hover {
    background-color: #f9fbff;
    transition: 0.2s;
}


.pagination {
    justify-content: center;
}

.pagination .page-link {
    border-radius: 8px;
    margin: 0 4px;
    color: #2b6df1;
    border: 1px solid #e0e0e0;
    padding: 6px 12px;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.pagination .page-link:hover {
    background-color: #eef4ff;
}

.pagination .page-item.active .page-link {
    background-color: #2b6df1;
    color: #fff;
    border-color: #2b6df1;
}

.pagination .page-item.disabled .page-link {
    opacity: 0.5;
    pointer-events: none;
}

/* ---------------- MOBILE ---------------- */
@media (max-width: 768px) {
    .subscription-table th,
    .subscription-table td {
        padding: 10px;
        font-size: 0.8rem;
    }
}
.subscription-table thead th {

    font-size: 0.7rem;
}



.user-avatar-circle {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: #2b6df1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    transition: 0.3s;
    cursor: pointer;
}


.profile-dropdown-wrapper.nav-item.dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.profile-dropdown-menu.dropdown-menu {
    position: absolute;
    top: 80%;
    right: 0;
    left: auto;
    min-width: 200px;
    border: none;
    border-radius: 12px;
    padding: 10px 0;
    margin-top: 10px !important;
    z-index: 1050;
}




.profile-link-item.dropdown-item {
    padding: 10px 20px !important;
    font-size: 0.8rem !important;
    letter-spacing: 0.5px !important;
    color: #333 !important;
    display: flex !important;
    align-items: center !important;
    font-weight: 700 !important; 
    text-transform: uppercase !important;
}

.profile-link-item.dropdown-item i {
    font-size: 1.1rem;
    color: #6c757d;
}

.profile-link-item.dropdown-item:hover {
    background-color: #f8faff !important;
    color: #2b6df1 !important;
}

.profile-link-item.dropdown-item:hover i {
    color: #2b6df1;
}

@media (max-width: 991px) {
    .profile-dropdown-menu.dropdown-menu {
        position: static;
        width: 100%;
        box-shadow: none;
        border: 1px solid #eee;
        margin-top: 5px !important;
    }
}
.responsive-max-width {
  max-width: 70%;
  width: 100%;
  border-radius: 30px;
}

@media (max-width: 600px) {
  .responsive-max-width {
    max-width: 100%;
  }
}