/*
========================================================================
   IECS DESIGN SYSTEM & CUSTOM STYLES (monday.com Inspired)
========================================================================
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Core monday.com brand colors */
  --brand-purple: #6161FF;
  --brand-purple-hover: #4B4BDE;
  --brand-dark: #181B34;
  --brand-light: #F0F3FF;
  --brand-white: #FFFFFF;
  --brand-gradient: linear-gradient(135deg, #6161FF 0%, #A25DDC 100%);

  /* Product-specific accents */
  --color-hrms: #0085FF;        /* Sky Blue */
  --color-crm: #00C875;         /* Green */
  --color-lms: #FF9900;         /* Orange */
  --color-analytics: #A25DDC;   /* Purple */
  --color-operations: #FF5E5B;  /* Coral */

  /* Board status cells */
  --status-done: #00C875;
  --status-working: #FFCB00;
  --status-stuck: #DF2F4A;
  --status-waiting: #579BFC;
  --status-empty: #C4C4C4;

  /* Default theme mapping (Light Mode) */
  --bg-primary: #FFFFFF;
  --bg-secondary: #F6F8FA;      /* Classic monday.com canvas gray */
  --bg-card: #FFFFFF;
  --text-primary: #181B34;
  --text-secondary: #676767;
  --text-muted: #979797;
  --border-color: #E0E4EC;
  --border-light: #F0F2F6;
  --shadow-sm: 0 2px 6px rgba(24, 27, 52, 0.04);
  --shadow-md: 0 8px 24px rgba(24, 27, 52, 0.06);
  --shadow-lg: 0 16px 40px rgba(24, 27, 52, 0.1);
  --shadow-hover: 0 24px 48px rgba(97, 97, 255, 0.15);

  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  --transition-normal: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: 0.15s ease-out;
}

[data-theme="dark"] {
  --bg-primary: #0C0E14;
  --bg-secondary: #131722;
  --bg-card: #1C2030;
  --text-primary: #F0F3FF;
  --text-secondary: #B4B7C5;
  --text-muted: #797E93;
  --border-color: #2E3349;
  --border-light: #222637;
  --shadow-sm: 0 2px 6px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.5);
  --shadow-hover: 0 24px 48px rgba(97, 97, 255, 0.25);
}

/* ------------------------------------------------------------------------
   1. RESET & GENERAL SETUP
   ------------------------------------------------------------------------ */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  transition: background-color var(--transition-normal), color var(--transition-normal);
  line-height: 1.5;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-primary);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
}

/* Premium Dark Blue Heading Gradients (Zoho / Slate Theme) */
h1, h2, h3,
.hero-heading,
.section-title,
.product-showcase-title,
.video-story-title,
.branding-main-title {
  background: linear-gradient(135deg, #0f172a 30%, #0f172a 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  color: transparent !important;
}

/* Dark theme bright sky-blue gradient overrides */
[data-theme="dark"] h1,
[data-theme="dark"] h2,
[data-theme="dark"] h3,
[data-theme="dark"] .hero-heading,
[data-theme="dark"] .section-title,
[data-theme="dark"] .product-showcase-title,
[data-theme="dark"] .video-story-title,
[data-theme="dark"] .branding-main-title {
  background: linear-gradient(135deg, #f8fafc 20%, #38bdf8 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  color: transparent !important;
}

/* Exclude Case Studies page headings from gradient text override */
.case-studies-page h1,
.case-studies-page h2,
.case-studies-page h3,
.case-studies-page h4,
.case-studies-page h5,
.case-studies-page h6 {
  background: none !important;
  -webkit-background-clip: initial !important;
  -webkit-text-fill-color: initial !important;
  background-clip: initial !important;
  color: var(--text-primary) !important;
}
.case-studies-page .case-banner-title {
  color: #ffffff !important;
}
[data-theme="dark"] .case-studies-page h1,
[data-theme="dark"] .case-studies-page h2,
[data-theme="dark"] .case-studies-page h3,
[data-theme="dark"] .case-studies-page h4,
[data-theme="dark"] .case-studies-page h5,
[data-theme="dark"] .case-studies-page h6 {
  color: #f8fafc !important;
}
[data-theme="dark"] .case-studies-page .case-banner-title {
  color: #ffffff !important;
}

p {
  color: var(--text-secondary);
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-secondary);
}
::-webkit-scrollbar-thumb {
  background: var(--border-color);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--text-muted);
}

/* Loader */
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-primary);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader-spinner {
  width: 50px;
  height: 50px;
  border: 4px solid var(--border-color);
  border-top-color: var(--brand-purple);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.loader-text {
  margin-top: 1.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--brand-purple);
  letter-spacing: 0.1em;
}

/* Theme Toggle Button */
.theme-toggle-btn {
  background: transparent;
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.theme-toggle-btn:hover {
  background: var(--bg-secondary);
  border-color: var(--text-muted);
}

/* Back to Top */
#back-to-top {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: var(--brand-purple);
  color: white;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-fast);
  z-index: 999;
  box-shadow: var(--shadow-md);
}

#back-to-top.show {
  opacity: 1;
  visibility: visible;
}

#back-to-top:hover {
  background: var(--brand-purple-hover);
  transform: translateY(-3px);
}

/* Promo Banner */
.header-banner {
  background: linear-gradient(90deg, var(--brand-purple), var(--color-hrms));
  color: white;
  z-index: 1001;
  position: relative;
  transition: all var(--transition-normal);
}

.banner-link {
  color: white;
  text-decoration: underline;
  font-weight: 600;
  transition: opacity var(--transition-fast);
}

.banner-link:hover {
  opacity: 0.9;
  color: white;
}

.banner-close-btn {
  background: transparent;
  border: none;
  color: white;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-close-btn:hover {
  opacity: 1;
}

body.has-banner header {
  top: 40px;
}

@media (max-width: 991px) {
  body.has-banner header {
    top: 60px; /* Adjust for multiline wrapping on tablet/mobile */
  }
}

@media (max-width: 575px) {
  body.has-banner header {
    top: 80px; /* Adjust for narrow viewports */
  }
}

body.has-banner header.scrolled {
  top: 0;
}

/* ------------------------------------------------------------------------
   2. HEADER & NAVIGATION
   ------------------------------------------------------------------------ */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  border-bottom: 1px solid var(--border-color);
  box-shadow: none;
  transition: background-color 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
              backdrop-filter 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
              border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-theme="dark"] header {
  border-bottom: 1px solid var(--border-color);
}

header.scrolled {
  background: rgba(255, 255, 255, 0.75) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-color);
  box-shadow: 0 8px 32px rgba(24, 27, 52, 0.03);
}

[data-theme="dark"] header.scrolled {
  background: rgba(12, 14, 20, 0.75) !important;
  border-bottom: 1px solid var(--border-color);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

/* Exclude breadcrumbs globally */
nav[aria-label="breadcrumb"] {
  display: none !important;
}

/* Push subpage top containers below sticky navbar */
.subpage-hero,
.case-toggle-container,
.case-banner-section {
  margin-top: 76px !important;
}

/* Anchor offsets to prevent sticky header coverage */
html {
  scroll-padding-top: 90px !important;
}
[id] {
  scroll-margin-top: 90px !important;
}

/* Active navigation item styles (brand purple) */
.navbar-nav .nav-link.active {
  color: var(--brand-purple) !important;
}
.navbar-nav .nav-link.active::before {
  display: none !important;
}
/* Dark theme active navigation (lavender/purple) */
[data-theme="dark"] .navbar-nav .nav-link.active {
  color: #c084fc !important;
}
[data-theme="dark"] .navbar-nav .nav-link.active::before {
  display: none !important;
}

.navbar {
  padding: 0.5rem 0 !important;
  transition: padding 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

header.scrolled .navbar {
  padding: 0.35rem 0 !important;
}

.navbar-brand {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Colorful monday-style logo mark */
.logo-box {
  display: flex;
  gap: 3px;
  align-items: flex-end;
  height: 24px;
}

.logo-bar {
  width: 6px;
  border-radius: 3px 3px 0 0;
}

.logo-bar-1 { height: 12px; background-color: var(--color-operations); }
.logo-bar-2 { height: 18px; background-color: var(--color-lms); }
.logo-bar-3 { height: 24px; background-color: var(--color-crm); }
.logo-bar-4 { height: 15px; background-color: var(--color-hrms); }
.logo-bar-5 { height: 21px; background-color: var(--color-analytics); }

.nav-link {
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text-secondary) !important;
  transition: color var(--transition-fast);
  padding: 0.65rem 1.15rem !important;
  position: relative;
}

/* Hover state style (corporate blue in light theme, sky blue in dark theme) */
.nav-link:hover,
.nav-item.dropdown:hover > .nav-link {
  color: #0056d2 !important;
}
[data-theme="dark"] .nav-link:hover,
[data-theme="dark"] .nav-item.dropdown:hover > .nav-link {
  color: #38bdf8 !important;
}

/* Underline indicators completely disabled */
.nav-link::before {
  display: none !important;
}
[data-theme="dark"] .nav-link:hover::before,
[data-theme="dark"] .nav-item.dropdown:hover > .nav-link::before {
  background-color: #38bdf8 !important;
}

/* Hide default bootstrap dropdown arrow */
.dropdown-toggle::after {
  display: none !important;
}

/* Mega Menu Trigger & Dropdowns */
.nav-item.dropdown:hover > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.dropdown-menu {
  display: block;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-lg);
  border-radius: 12px;
  padding: 1rem;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  min-width: 280px;
}

/* Mega Menu Styles */
.dropdown-mega {
  position: static !important;
}
.navbar-nav {
  position: static !important;
}

/* Link Hover Bridge: covers the gap directly below the link to prevent early menu closures without blocking adjacent menus */
.nav-link::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 20px;
  background: transparent;
  z-index: 10;
}

.dropdown-mega:hover .mega-menu,
.mega-menu.show-hover {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  transform: translate(-50%, 0) !important;
}

.mega-menu-grid-2 {
  grid-template-columns: repeat(2, 1fr) !important;
  max-width: 680px !important;
}

.mega-menu-grid-3 {
  grid-template-columns: repeat(3, 1fr) !important;
}

.mega-menu-column {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mega-menu-column h5 {
  font-size: 0.85rem;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  margin-bottom: 1.2rem;
  font-weight: 700;
}

.text-accent {
  color: var(--brand-purple) !important;
}

.logo-icon {
  width: 28px;
  height: 28px;
  background: var(--brand-gradient);
  color: white;
  font-weight: 800;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.text-gradient {
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}

.btn-premium {
  font-weight: 600 !important;
  font-size: 0.8rem !important;
  padding: 0.4rem 1.1rem !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all var(--transition-fast) !important;
}

.btn-premium-primary {
  background: var(--brand-purple) !important;
  color: white !important;
  border: 1px solid var(--brand-purple) !important;
  box-shadow: none !important;
}

.btn-premium-primary:hover {
  background: var(--brand-purple-hover) !important;
  border-color: var(--brand-purple-hover) !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 12px rgba(120, 75, 209, 0.15) !important;
}

.btn-whatsapp {
  background: #25D366 !important;
  color: white !important;
  border: 1px solid #25D366 !important;
  box-shadow: none !important;
  font-weight: 600 !important;
  font-size: 0.8rem !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all var(--transition-fast) !important;
}

.btn-whatsapp:hover {
  background: #128C7E !important;
  border-color: #128C7E !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.15) !important;
}

.glass-panel {
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(10px);
}

[data-theme="dark"] .glass-panel {
  background: rgba(12, 14, 20, 0.95) !important;
}

.mega-menu {
  display: grid;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  position: absolute;
  top: calc(100% - 2px) !important;
  left: 50% !important;
  width: 90% !important;
  max-width: 960px !important;
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-lg);
  border-radius: 16px;
  padding: 2rem;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  transform: translate(-50%, 15px) !important;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  z-index: 99;
}

.mega-menu-col h5 {
  font-size: 0.85rem;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  font-weight: 700;
}

.mega-menu-link {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.75rem;
  border-radius: 8px;
  transition: background-color var(--transition-fast);
}

.mega-menu-link:hover {
  background-color: rgba(97, 97, 255, 0.05) !important;
}

[data-theme="dark"] .mega-menu-link:hover {
  background-color: rgba(97, 97, 255, 0.12) !important;
}

.mega-menu-link i {
  font-size: 1.25rem;
  padding-top: 2px;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), color 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.mega-menu-link h6 {
  transition: color 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.mega-menu-link:hover h6 {
  color: var(--brand-purple) !important;
}

.mega-menu-link:hover i {
  transform: scale(1.15) translateY(-1px);
  color: var(--brand-purple) !important;
}

.mega-menu-link.hrms-link i { color: var(--color-hrms); }
.mega-menu-link.crm-link i { color: var(--color-crm); }
.mega-menu-link.lms-link i { color: var(--color-lms); }
.mega-menu-link.analytics-link i { color: var(--color-analytics); }

.mega-menu-link h6 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
  color: var(--text-primary);
}

.mega-menu-link p {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-bottom: 0;
}

/* Header Buttons */
.btn-mnd {
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.55rem 1.3rem;
  border-radius: 24px;
  transition: all var(--transition-fast);
  cursor: pointer;
}

.btn-mnd-outline {
  border: 1px solid var(--brand-purple);
  background: transparent;
  color: var(--brand-purple);
}

.btn-mnd-outline:hover {
  background: var(--brand-light);
  border-color: var(--brand-purple-hover);
  color: var(--brand-purple-hover);
}

[data-theme="dark"] .btn-mnd-outline:hover {
  background: rgba(97, 97, 255, 0.1);
}

.btn-mnd-primary {
  background: var(--brand-purple);
  color: white;
  border: none;
  box-shadow: 0 4px 12px rgba(97, 97, 255, 0.15);
}

.btn-mnd-primary:hover {
  background: var(--brand-purple-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(97, 97, 255, 0.25);
  color: white;
}

/* Hamburger button */
.navbar-toggler {
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  padding: 0 !important;
  background: transparent !important;
  z-index: 1100 !important;
}

@media (min-width: 992px) {
  .navbar-toggler {
    display: none !important;
  }
}

.hamburger-line {
  display: block;
  width: 22px;
  height: 2px;
  margin: 3px auto;
  background-color: var(--text-primary);
  transition: all var(--transition-fast);
}

/* Off-canvas mobile menu styling */
.offcanvas {
  background-color: var(--bg-primary) !important;
  color: var(--text-primary) !important;
  border-left: 1px solid var(--border-color) !important;
  z-index: 1050 !important;
}

.offcanvas-backdrop {
  z-index: 1040 !important;
}

.offcanvas-header {
  border-bottom: 1px solid var(--border-color) !important;
}

[data-theme="dark"] .offcanvas .btn-close {
  filter: invert(1) grayscale(1) brightness(2) !important;
}

.offcanvas .nav-link {
  color: var(--text-primary) !important;
  font-size: 1.05rem !important;
  padding: 0.75rem 1rem !important;
}

.offcanvas .dropdown-item {
  color: var(--text-primary) !important;
  padding: 0.6rem 1.2rem !important;
  font-size: 0.95rem;
}

.offcanvas .dropdown-item:hover {
  background-color: var(--border-color) !important;
  color: var(--brand-purple) !important;
}

/* ------------------------------------------------------------------------
   3. HERO SECTION (Classic monday.com Layout)
   ------------------------------------------------------------------------ */
.hero-section {
  padding: 8rem 0 5rem 0;
  background: radial-gradient(circle at 80% 20%, rgba(97, 97, 255, 0.05) 0%, transparent 40%),
              radial-gradient(circle at 10% 80%, rgba(0, 200, 117, 0.05) 0%, transparent 40%),
              var(--bg-primary);
  text-align: center;
}

.hero-heading {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  max-width: 900px;
  margin: 0 auto 1.5rem auto;
}

.hero-subtitle {
  font-size: 1.25rem;
  max-width: 750px;
  margin: 0 auto 3rem auto;
}

/* Grid Selector buttons */
.selector-heading {
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
}

.product-selector-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto 4rem auto;
  padding: 0 1rem;
}

.selector-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 1.25rem;
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.selector-card i {
  font-size: 1.5rem;
}

.selector-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  transform: scaleX(0);
  transition: transform var(--transition-fast);
}

/* Specific product styles on active */
.selector-card.hrms-card i { color: var(--color-hrms); }
.selector-card.hrms-card::after { background-color: var(--color-hrms); }
.selector-card.hrms-card.active {
  border-color: var(--color-hrms);
  box-shadow: 0 8px 24px rgba(0, 133, 255, 0.15);
}

.selector-card.crm-card i { color: var(--color-crm); }
.selector-card.crm-card::after { background-color: var(--color-crm); }
.selector-card.crm-card.active {
  border-color: var(--color-crm);
  box-shadow: 0 8px 24px rgba(0, 200, 117, 0.15);
}

.selector-card.lms-card i { color: var(--color-lms); }
.selector-card.lms-card::after { background-color: var(--color-lms); }
.selector-card.lms-card.active {
  border-color: var(--color-lms);
  box-shadow: 0 8px 24px rgba(255, 153, 0, 0.15);
}

.selector-card.analytics-card i { color: var(--color-analytics); }
.selector-card.analytics-card::after { background-color: var(--color-analytics); }
.selector-card.analytics-card.active {
  border-color: var(--color-analytics);
  box-shadow: 0 8px 24px rgba(162, 93, 220, 0.15);
}

.selector-card.active::after {
  transform: scaleX(1);
}

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

.hero-cta-btn {
  padding: 0.9rem 2.5rem;
  font-size: 1.05rem;
  border-radius: 30px;
}

.hero-cta-caption {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
}

/* ------------------------------------------------------------------------
   4. INTERACTIVE BOARD MOCKUP (High Fidelity Monday Clone)
   ------------------------------------------------------------------------ */
.board-container-wrapper {
  max-width: 1100px;
  margin: 2rem auto 5rem auto;
  padding: 0 1.5rem;
  perspective: 1000px;
}

.board-window {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  text-align: left;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.board-window:hover {
  box-shadow: 0 20px 50px rgba(97, 97, 255, 0.12);
}

/* Mockup Toolbar header */
.board-header {
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border-color);
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.board-title-section {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.board-icon {
  width: 24px;
  height: 24px;
  background-color: var(--brand-purple);
  border-radius: 6px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  transition: background-color var(--transition-fast);
}

.board-title {
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0;
}

.board-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.board-btn {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: all var(--transition-fast);
}

.board-btn:hover {
  background: var(--border-light);
  color: var(--text-primary);
}

.board-btn-add {
  background: var(--brand-purple);
  border-color: var(--brand-purple);
  color: white;
}

.board-btn-add:hover {
  background: var(--brand-purple-hover);
  border-color: var(--brand-purple-hover);
  color: white;
}

/* Mock Board Table */
.board-body-scroll {
  overflow-x: auto;
  width: 100%;
}

.board-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
  min-width: 800px;
}

/* Left Accent Line */
.board-table th, .board-table td {
  padding: 0.6rem 0.75rem;
  border-bottom: 1px solid var(--border-light);
  border-right: 1px solid var(--border-light);
  vertical-align: middle;
  position: relative;
}

.board-table th {
  background: var(--bg-secondary);
  font-weight: 500;
  color: var(--text-secondary);
  text-align: left;
  border-bottom: 2px solid var(--border-color);
}

.board-table tr {
  transition: background-color var(--transition-fast);
}

.board-table tbody tr:hover {
  background-color: var(--bg-secondary);
}

/* Left colored accent boundary */
.board-table tr td:first-child::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
}

.board-table.theme-hrms tr td:first-child::before { background-color: var(--color-hrms); }
.board-table.theme-crm tr td:first-child::before { background-color: var(--color-crm); }
.board-table.theme-lms tr td:first-child::before { background-color: var(--color-lms); }
.board-table.theme-analytics tr td:first-child::before { background-color: var(--color-analytics); }

.item-name-cell {
  font-weight: 500;
  color: var(--text-primary);
}

.item-input {
  background: transparent;
  border: none;
  outline: none;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-primary);
  width: 100%;
  font-weight: 500;
}

.item-input:focus {
  border-bottom: 1px solid var(--brand-purple);
}

/* Assignee Initials Circle */
.assignee-badge {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #3f51b5;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 600;
  margin: 0 auto;
}

/* Clickable Status Pills */
.status-pill {
  color: white;
  text-align: center;
  font-weight: 600;
  border-radius: 4px;
  padding: 0.4rem;
  font-size: 0.8rem;
  cursor: pointer;
  user-select: none;
  transition: opacity 0.15s ease;
  position: relative;
  text-transform: capitalize;
}

.status-pill:hover {
  opacity: 0.85;
}

.status-pill.done { background-color: var(--status-done); }
.status-pill.working { background-color: var(--status-working); color: var(--brand-dark); }
.status-pill.stuck { background-color: var(--status-stuck); }
.status-pill.waiting { background-color: var(--status-waiting); }
.status-pill.empty { background-color: var(--status-empty); color: var(--text-secondary); }

/* Custom priority status color styles */
.priority-pill {
  color: white;
  font-weight: 600;
  border-radius: 4px;
  padding: 0.4rem;
  text-align: center;
  font-size: 0.75rem;
  cursor: pointer;
}
.priority-pill.high { background-color: var(--color-operations); }
.priority-pill.medium { background-color: var(--color-analytics); }
.priority-pill.low { background-color: var(--color-hrms); }

/* Timeline Bar representation */
.timeline-cell-bar {
  background: var(--border-color);
  height: 20px;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  color: white;
  font-size: 0.7rem;
  text-align: center;
  line-height: 20px;
  font-weight: 600;
}

.timeline-progress {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  border-radius: 10px;
}

.theme-hrms .timeline-progress { background: var(--color-hrms); }
.theme-crm .timeline-progress { background: var(--color-crm); }
.theme-lms .timeline-progress { background: var(--color-lms); }
.theme-analytics .timeline-progress { background: var(--color-analytics); }

.timeline-text {
  position: relative;
  z-index: 2;
  mix-blend-mode: difference;
}

/* Inline row adder input */
.new-row-tr {
  background: var(--bg-primary);
}

.new-row-input-cell {
  padding-left: 1.5rem !important;
}

/* Status selection dropdown modal (for board clicking status) */
.status-dropdown {
  position: absolute;
  z-index: 1000;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-lg);
  border-radius: 8px;
  padding: 0.5rem;
  display: none;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  width: 220px;
}

.status-dropdown-item {
  padding: 0.4rem 0.5rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  color: white;
  text-align: center;
  cursor: pointer;
  text-transform: capitalize;
}

.status-dropdown-item.done { background-color: var(--status-done); }
.status-dropdown-item.working { background-color: var(--status-working); color: var(--brand-dark); }
.status-dropdown-item.stuck { background-color: var(--status-stuck); }
.status-dropdown-item.waiting { background-color: var(--status-waiting); }

/* ------------------------------------------------------------------------
   5. WORK WORKFLOW OS DETAILS ("Shape Workflows Your Way")
   ------------------------------------------------------------------------ */
.features-section {
  padding: 5rem 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.section-tag {
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  color: var(--brand-purple);
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
  display: block;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 0 2.5rem 0;
}

/* Custom FAQ Accordion */
.accordion-custom .accordion-item {
  transition: all var(--transition-fast) ease;
}
.accordion-custom .accordion-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md) !important;
}
.accordion-custom .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23784bd1' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M2 5l6 6 6-6'/%3e%3c/svg%3e") !important;
  background-size: 1rem;
  transition: transform var(--transition-fast) ease;
}
.accordion-custom .accordion-button:not(.collapsed)::after {
  transform: rotate(-180deg);
}
.accordion-custom .accordion-button:not(.collapsed) {
  color: var(--brand-purple) !important;
 background-color: #bae6fd00 !important;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: 0 1rem;
}

.feature-box {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-top: 4px solid var(--border-color);
  padding: 1.5rem 1.5rem;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal);
  text-align: left;
}

.feature-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(97, 97, 255, 0.08);
}

.feature-box.color-purple { border-top-color: #784bd1; }
.feature-box.color-blue { border-top-color: #0086c0; }
.feature-box.color-orange { border-top-color: #fd7e14; }
.feature-box.color-cyan { border-top-color: #00d2ff; }
.feature-box.color-green { border-top-color: #00c875; }
.feature-box.color-yellow { border-top-color: #e1b12c; }

.feature-box.color-purple:hover { border-color: #784bd1; }
.feature-box.color-blue:hover { border-color: #0086c0; }
.feature-box.color-orange:hover { border-color: #fd7e14; }
.feature-box.color-cyan:hover { border-color: #00d2ff; }
.feature-box.color-green:hover { border-color: #00c875; }
.feature-box.color-yellow:hover { border-color: #e1b12c; }

.feature-tag {
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 0.2rem 0.55rem;
  border-radius: 20px;
  display: inline-block;
  letter-spacing: 0.05em;
}

.tag-purple { background: rgba(120, 75, 209, 0.08); color: #784bd1; }
.tag-blue { background: rgba(0, 134, 192, 0.08); color: #0086c0; }
.tag-orange { background: rgba(253, 126, 20, 0.08); color: #fd7e14; }
.tag-cyan { background: rgba(0, 210, 255, 0.08); color: #00b5dd; }
.tag-green { background: rgba(0, 200, 117, 0.08); color: #00c875; }
.tag-yellow { background: rgba(225, 177, 44, 0.08); color: #e1b12c; }

.feature-icon-wrapper {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 1.25rem;
  transition: all var(--transition-fast);
}

.feature-box.color-purple .feature-icon-wrapper { background: rgba(120, 75, 209, 0.08); color: #784bd1; }
.feature-box.color-blue .feature-icon-wrapper { background: rgba(0, 134, 192, 0.08); color: #0086c0; }
.feature-box.color-orange .feature-icon-wrapper { background: rgba(253, 126, 20, 0.08); color: #fd7e14; }
.feature-box.color-cyan .feature-icon-wrapper { background: rgba(0, 210, 255, 0.08); color: #00d2ff; }
.feature-box.color-green .feature-icon-wrapper { background: rgba(0, 200, 117, 0.08); color: #00c875; }
.feature-box.color-yellow .feature-icon-wrapper { background: rgba(225, 177, 44, 0.08); color: #e1b12c; }

.feature-box.color-purple:hover .feature-icon-wrapper { background: #784bd1; color: #fff; }
.feature-box.color-blue:hover .feature-icon-wrapper { background: #0086c0; color: #fff; }
.feature-box.color-orange:hover .feature-icon-wrapper { background: #fd7e14; color: #fff; }
.feature-box.color-cyan:hover .feature-icon-wrapper { background: #00d2ff; color: #fff; }
.feature-box.color-green:hover .feature-icon-wrapper { background: #00c875; color: #fff; }
.feature-box.color-yellow:hover .feature-icon-wrapper { background: #e1b12c; color: #fff; }

.feature-box h4 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
  transition: color var(--transition-fast);
}

.feature-box.color-purple:hover h4 { color: #784bd1; }
.feature-box.color-blue:hover h4 { color: #0086c0; }
.feature-box.color-orange:hover h4 { color: #fd7e14; }
.feature-box.color-cyan:hover h4 { color: #00d2ff; }
.feature-box.color-green:hover h4 { color: #00c875; }
.feature-box.color-yellow:hover h4 { color: #e1b12c; }

.feature-box p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.45;
  margin-bottom: 0;
}

/* ------------------------------------------------------------------------
   4.5. INTERACTIVE PRODUCT TABS SHOWCASE (monday.com Inspired)
   ------------------------------------------------------------------------ */
.product-showcase-panel {
  display: none;
  animation: fadeIn 0.4s ease-in-out;
}

.product-showcase-panel.active {
  display: block;
}

/* ------------------------------------------------------------------------
   WORKSPACE CARD BOX LAYOUT (monday.com / Zoho Inspired)
   ------------------------------------------------------------------------ */
.workspace-card-box {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  max-width: 1200px;
  margin: 0 auto;
}

.workspace-window-header {
  background: var(--bg-primary);
  border-bottom: 1px solid var(--border-color);
  padding: 0.85rem 1.5rem 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.window-dots {
  display: flex;
  gap: 6px;
}

.window-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot-close { background: #ff5f56; }
.dot-minimize { background: #ffbd2e; }
.dot-maximize { background: #27c93f; }

.window-title {
  font-size: 0.75rem;
  color: var(--text-secondary);
  font-family: var(--font-primary);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.workspace-content {
  padding: 4rem;
}

.workspace-content .col-lg-7 {
  padding-right: 2rem;
}

.workspace-content .col-lg-5 {
  padding-left: 2rem;
}

.product-mockup-container {
  position: relative;
  width: 100%;
}

.product-mockup-frame {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 0.5rem;
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  width: 100%;
}

.border-hrms { border-top: 5px solid #784bd1; }
.border-crm { border-top: 5px solid #00c875; }
.border-lms { border-top: 5px solid #fd7e14; }
.border-analytics { border-top: 5px solid #00b5dd; }
.border-supply { border-top: 5px solid #ef4444; }

.product-mockup-frame:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.product-mockup-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
}

.product-floating-badge {
  position: absolute;
  bottom: -15px;
  right: -15px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 0.6rem 0.9rem;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-primary);
  z-index: 5;
  animation: floatBadge 3s ease-in-out infinite alternate;
}

[data-theme="dark"] .product-floating-badge {
  background: #171c26;
}

.product-floating-badge i {
  font-size: 1.15rem;
  flex-shrink: 0;
}

@keyframes floatBadge {
  0% { transform: translateY(0); }
  100% { transform: translateY(-6px); }
}

.product-label {
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 0.25rem 0.65rem;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}

.label-purple { background: rgba(120, 75, 209, 0.08); color: #784bd1; }
.label-green { background: rgba(0, 200, 117, 0.08); color: #00c875; }
.label-orange { background: rgba(253, 126, 20, 0.08); color: #fd7e14; }
.label-cyan { background: rgba(0, 210, 255, 0.08); color: #00b5dd; }

.product-showcase-title {
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.product-showcase-desc {
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.product-feature-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.product-feature-list li {
  font-size: 0.9rem;
  color: var(--text-primary);
  margin-bottom: 0.65rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.product-feature-list li i {
  font-size: 1.15rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.feature-item-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  display: block;
  margin-bottom: 0.15rem;
}

.feature-item-desc {
  font-size: 0.8rem;
  color: var(--text-secondary);
  display: block;
  line-height: 1.35;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 991px) {
  .workspace-content {
    padding: 2.5rem 1.5rem;
  }
  .workspace-content .col-lg-7,
  .workspace-content .col-lg-5 {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
}

/* ------------------------------------------------------------------------
   6. PRODUCTS SUITES SHOWCASE
   ------------------------------------------------------------------------ */
.product-showcase-section {
  padding: 7rem 0;
  background: var(--bg-primary);
}

.product-showcase-row {
  display: flex;
  align-items: center;
  gap: 4rem;
  margin-bottom: 7rem;
}

.product-showcase-row:nth-child(even) {
  flex-direction: row-reverse;
}

.product-showcase-row:last-child {
  margin-bottom: 0;
}

.product-showcase-content {
  flex: 1;
  text-align: left;
}

.product-showcase-media {
  flex: 1.2;
}

.product-tag {
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
  display: inline-block;
}

.product-tag.hrms-tag { color: var(--color-hrms); }
.product-tag.crm-tag { color: var(--color-crm); }
.product-tag.lms-tag { color: var(--color-lms); }
.product-tag.analytics-tag { color: var(--color-analytics); }

.product-showcase-content h3 {
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
}

.product-showcase-content p {
  font-size: 1.05rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.product-bullet-list {
  list-style: none;
  padding: 0;
  margin-bottom: 2.5rem;
}

.product-bullet-list li {
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-secondary);
}

.product-bullet-list li i {
  font-size: 1rem;
}

.theme-hrms i { color: var(--color-hrms); }
.theme-crm i { color: var(--color-crm); }
.theme-lms i { color: var(--color-lms); }
.theme-analytics i { color: var(--color-analytics); }

/* High polish mockup frames inside showcase */
.showcase-mockup-frame {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  overflow: hidden;
  position: relative;
  transition: transform var(--transition-normal);
}

.showcase-mockup-frame:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-lg);
}

.showcase-mockup-header {
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border-color);
  padding: 0.5rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.mockup-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.mockup-dot-red { background-color: var(--status-stuck); }
.mockup-dot-yellow { background-color: var(--status-working); }
.mockup-dot-green { background-color: var(--status-done); }

.showcase-mockup-img {
  width: 100%;
  display: block;
  object-fit: cover;
  max-height: 380px;
  background-color: var(--bg-secondary);
}

/* ------------------------------------------------------------------------
   7. CLIENT MARQUEE & SOCIAL PROOF
   ------------------------------------------------------------------------ */
.marquee-section {
  padding: 4rem 0;
  background: #ffffff;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  overflow: hidden;
}

.marquee-title {
  text-align: center;
  font-size: 1rem;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  margin-bottom: 2.5rem;
  font-weight: 700;
}

.marquee-container {
  width: 100%;
  overflow: hidden;
}

.marquee-container:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 6rem;
  width: max-content;
  animation: marquee-scroll 25s linear infinite;
}

.marquee-item {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.marquee-item img {
  height: 42px;
  width: auto;
  object-fit: contain;
  filter: grayscale(0%) opacity(1);
  transition: all var(--transition-fast);
}

.marquee-item:hover img {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.08);
}

.client-logo-svg {
  width: 26px;
  height: 26px;
  transition: all var(--transition-fast);
}

@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ------------------------------------------------------------------------
   8. TESTIMONIALS SLIDER
   ------------------------------------------------------------------------ */
.testimonials-section {
  padding: 7rem 0;
  background: var(--bg-primary);
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-quote {
  font-size: 1.05rem;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.testimonial-quote::before {
  content: '“';
  font-family: serif;
  font-size: 3rem;
  color: var(--brand-purple);
  opacity: 0.2;
  position: absolute;
  top: -1.5rem;
  left: -0.75rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  background-color: var(--bg-secondary);
}

.testimonial-name {
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 0.1rem;
  color: var(--text-primary);
}

.testimonial-role {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* ------------------------------------------------------------------------
   9. CTA & NEWSLETTER
   ------------------------------------------------------------------------ */
.cta-section {
  padding: 8rem 0;
  background: radial-gradient(circle at 50% 50%, rgba(97, 97, 255, 0.08) 0%, transparent 60%),
              var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  text-align: center;
}

.cta-title {
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.cta-subtitle {
  font-size: 1.25rem;
  max-width: 600px;
  margin: 0 auto 3rem auto;
}

.cta-form {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  gap: 0.5rem;
  padding: 0 1rem;
}

.cta-input {
  flex: 1;
  border: 1px solid var(--border-color);
  background: var(--bg-card);
  color: var(--text-primary);
  padding: 0.8rem 1.2rem;
  border-radius: 30px;
  outline: none;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: all var(--transition-fast);
}

.cta-input:focus {
  border-color: var(--brand-purple);
  box-shadow: 0 0 0 3px rgba(97, 97, 255, 0.15);
}

.cta-form .btn-mnd {
  border-radius: 30px;
  padding: 0.8rem 2rem;
}

/* ------------------------------------------------------------------------
   10. FOOTER
   ------------------------------------------------------------------------ */
footer {
  background: var(--bg-primary);
  border-top: 1px solid var(--border-light);
  padding: 5rem 0 3rem 0;
}

.footer-logo {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
}

.footer-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.footer-links-col h5 {
  font-size: 0.9rem;
  text-transform: uppercase;
  color: var(--text-primary);
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.footer-links-list {
  list-style: none;
  padding: 0;
}

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

.footer-links-list a {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.footer-links-list a:hover {
  color: var(--brand-purple);
}

.contact-info-list {
  list-style: none;
  padding: 0;
}

.contact-info-list li {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
}

.contact-info-list a {
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}

.contact-info-list a:hover {
  color: var(--brand-purple);
}

.contact-info-list i {
  color: var(--brand-purple);
}

.footer-bottom {
  border-top: 1px solid var(--border-light);
  margin-top: 4rem;
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.copyright-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  color: var(--text-secondary);
  font-size: 1.1rem;
  transition: color var(--transition-fast);
}

.social-link:hover {
  color: var(--brand-purple);
}

/* Cookie banner and popups */
#cookie-consent {
  position: fixed;
  bottom: 20px;
  left: 20px;
  max-width: 400px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-lg);
  border-radius: 12px;
  padding: 1.25rem;
  z-index: 10000;
  display: none;
  transition: all var(--transition-fast);
}

#cookie-consent.show {
  display: block;
}

/* Floating dashboard visual inside hero */
.hero-visual-container {
  position: relative;
  width: 100%;
  height: 520px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-dashboard-panel {
  width: 100%;
  max-width: 540px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 20px 50px rgba(24, 27, 52, 0.08);
  border-radius: 16px;
  padding: 1.5rem;
  font-size: 0.85rem;
  color: var(--text-primary);
  overflow: hidden;
  text-align: left;
  position: relative;
  transition: background-color var(--transition-normal), border-color var(--transition-normal);
  z-index: 5;
}

[data-theme="dark"] .hero-dashboard-panel {
  background: rgba(15, 22, 36, 0.7);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.dashboard-header {
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 0.75rem;
  margin-bottom: 1rem;
}

.dashboard-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}
.dot-red { background: #ff5f56; }
.dot-yellow { background: #ffbd2e; }
.dot-green { background: #27c93f; }

.dashboard-title {
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.dashboard-avatars {
  gap: -5px;
}

.avatar-circle {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--brand-purple);
  color: white;
  font-size: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  border: 1.5px solid var(--bg-card);
  margin-left: -6px;
  z-index: 1;
}
.avatar-circle.av-2 { background: var(--color-operations); z-index: 2; }
.avatar-circle.av-3 { background: var(--color-analytics); z-index: 3; }
.avatar-circle.av-more { background: var(--border-color); color: var(--text-secondary); z-index: 4; }

.dashboard-table-container {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.table-header-row {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.5rem 0.75rem;
  border-bottom: 1px solid var(--border-light);
}

.table-data-row {
  padding: 0.65rem 0.75rem;
  border-radius: 6px;
  transition: background var(--transition-fast);
}
.table-data-row:hover {
  background: var(--bg-secondary);
}

.col-name { flex: 1.5; font-weight: 500; }
.col-status { flex: 0.8; }
.col-progress { flex: 1; }

.badge-status {
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  display: inline-block;
}
.badge-status.status-working { background: rgba(0, 200, 117, 0.1); color: #00c875; }
.badge-status.status-done { background: rgba(97, 97, 255, 0.1); color: var(--brand-purple); }
.badge-status.status-stuck { background: rgba(226, 68, 92, 0.1); color: #e2445c; }
.badge-status.status-waiting { background: rgba(253, 171, 61, 0.1); color: #fdab3d; }

.progress-bar-bg {
  width: 100%;
  height: 6px;
  background: var(--border-light);
  border-radius: 3px;
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  border-radius: 3px;
  width: 0%; /* Animated by JS */
  transition: width 0.1s ease;
}
.fill-working { background: #00c875; }
.fill-done { background: var(--brand-purple); }
.fill-stuck { background: #e2445c; }
.fill-waiting { background: #fdab3d; }

.dashboard-widget {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 1rem;
  transition: background-color var(--transition-normal), border-color var(--transition-normal);
}

[data-theme="dark"] .dashboard-widget {
  background: rgba(18, 25, 41, 0.8);
  border-color: rgba(255, 255, 255, 0.05);
}

.widget-title {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.metric-value {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--brand-purple);
  line-height: 1;
}

.metric-trend {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.chart-svg-container {
  height: 55px;
}

.chart-svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.chart-line-path {
  stroke-dasharray: 400;
  stroke-dashoffset: 400; /* Animated by JS */
}

/* Floating overlay badges */
.floating-badge {
  position: absolute;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
  padding: 0.5rem 0.85rem;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  z-index: 10;
  transition: background-color var(--transition-normal), border-color var(--transition-normal);
}

.badge-ai-pulse {
  top: 10%;
  right: -2%;
}

.badge-database-sync {
  bottom: 8%;
  left: -2%;
}

.pulse-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #27c93f;
  box-shadow: 0 0 0 0 rgba(39, 201, 63, 0.7);
  animation: pulse-dot 1.5s infinite;
}

@keyframes pulse-dot {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(39, 201, 63, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 6px rgba(39, 201, 63, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(39, 201, 63, 0);
  }
}

.animate-spin-slow {
  animation: spin-slow 6s linear infinite;
}

@keyframes spin-slow {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Product Overview Section */
.product-overview-section {
  padding: 5rem 0;
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.browser-tabs-nav {
  display: flex;
  align-items: flex-end;
  gap: 2px;
}

.browser-tab {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-secondary);
  padding: 0.45rem 1.1rem;
  border-radius: 8px 8px 0 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  border: 1px solid transparent;
  border-bottom: none;
  background: transparent;
  transition: all 0.2s ease;
  user-select: none;
}

.browser-tab:hover {
  background: rgba(124, 58, 237, 0.04);
  color: var(--brand-purple);
}
[data-theme="dark"] .browser-tab:hover {
  background: rgba(56, 189, 248, 0.04);
  color: #38bdf8;
}

.browser-tab.active {
  background: var(--bg-card) !important;
  border-color: var(--border-color) !important;
  color: var(--text-primary) !important;
  position: relative;
  margin-bottom: -1px;
  z-index: 4;
}

.browser-tab i {
  font-size: 0.85rem;
}

/* Split layout mockup wrapper */
.split-mockup-wrapper {
  max-width: 1300px;
  margin: 2rem auto 0 auto;
  padding: 0 1rem;
}

/* AI Agent Panel */
.agent-panel-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  padding: 1.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.agent-panel-card:hover {
  box-shadow: 0 16px 36px rgba(24, 27, 52, 0.08);
}

.agent-avatar-wrapper {
  width: 48px;
  height: 48px;
  position: relative;
  flex-shrink: 0;
}

.agent-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border-color);
}

.agent-online-indicator {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 12px;
  height: 12px;
  background-color: var(--status-done);
  border: 2px solid var(--bg-card);
  border-radius: 50%;
}

.agent-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
}

.agent-status-text {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Chat bubble logs */
.agent-log-bubble {
  border-radius: 12px;
  padding: 0.75rem 1rem;
  font-size: 0.85rem;
  line-height: 1.4;
  max-width: 90%;
  text-align: left;
}

.agent-log-bubble.user-prompt {
  background: var(--bg-secondary);
  color: var(--text-primary);
  border-left: 3px solid var(--brand-purple);
  margin-right: auto;
}

/* Execution checklist box */
.agent-execution-box {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1.25rem;
  text-align: left;
}

.agent-step-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.agent-step-list li {
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all var(--transition-fast);
}

.agent-step-list li.step-completed {
  color: var(--text-secondary);
}

.agent-step-list li.step-completed i {
  color: var(--status-done);
}

.agent-step-list li.step-pending {
  color: var(--text-muted);
}

.agent-step-list li.step-pending i {
  color: var(--border-color);
}

.agent-step-list li.step-active {
  color: var(--brand-purple);
  font-weight: 600;
}

.agent-step-list li.step-active i {
  color: var(--brand-purple);
  animation: pulse-active 1.5s infinite alternate;
}

@keyframes pulse-active {
  0% { transform: scale(0.9); opacity: 0.7; }
  100% { transform: scale(1.1); opacity: 1; }
}

/* ------------------------------------------------------------------------
   11. MEDIA QUERIES (Responsiveness)
   ------------------------------------------------------------------------ */
@media (max-width: 991px) {
  .hero-visual-container {
    height: auto;
    margin-top: 3rem;
  }
  .features-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
  }
  .product-showcase-row {
    flex-direction: column !important;
    gap: 2.5rem;
  }
  .product-showcase-content {
    text-align: center;
  }
  .mega-menu {
    display: none !important;
  }
  
  .offcanvas .dropdown-menu {
    display: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    position: static !important;
    transform: none !important;
    box-shadow: none !important;
    border: none !important;
    background: transparent !important;
    padding: 0.5rem 1rem !important;
    transition: none !important;
  }
  
  .offcanvas .dropdown-menu.show {
    display: block !important;
  }
}

@media (max-width: 575px) {
  .hero-heading {
    font-size: 2.75rem !important;
  }
  .hero-visual-container {
    display: none; /* Hide cards on mobile layout to prioritize interactive board widget */
  }
  .cta-form {
    flex-direction: column;
    gap: 0.75rem;
  }
  .cta-form .btn-mnd {
    width: 100%;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
}

.spin {
  display: inline-block;
  animation: spin 1.5s linear infinite;
}

/* ------------------------------------------------------------------------
   12. CONTEXT-STYLE SECTIONS (Overlapping Cards Layout)
   ------------------------------------------------------------------------ */
.context-section {
  padding: 3.5rem 0;
  background-color: var(--bg-primary);
  border-bottom: 1px solid var(--border-light);
  overflow: hidden;
}

.context-section.bg-secondary-theme {
  background-color: var(--bg-secondary);
}

.context-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 4rem;
  margin-bottom: 2rem;
  text-align: left;
}

.context-title {
  flex: 1.2;
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.context-desc-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
}

.context-desc-col p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 0;
}

.context-desc-col .btn-mnd {
  border-radius: 20px;
  padding: 0.6rem 1.6rem;
  background-color: var(--text-primary);
  color: var(--bg-primary);
  border: none;
}

.context-desc-col .btn-mnd:hover {
  opacity: 0.9;
  color: var(--bg-primary);
}

/* Visual Overlapping Row */
.context-visual-row {
  position: relative;
  width: 100%;
  height: 380px;
  margin-top: 2rem;
}

.context-card {
  position: absolute;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  padding: 1.25rem;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.context-card:hover {
  transform: translateY(-8px) scale(1.02) !important;
  box-shadow: var(--shadow-lg);
  z-index: 10 !important;
}

/* Position Mappings - Card 1 (Left) */
.card-left {
  left: 5%;
  bottom: 5%;
  width: 260px;
  z-index: 2;
  animation: float-subtle-up 6s ease-in-out infinite alternate;
}

/* Position Mappings - Card 2 (Center) */
.card-center {
  left: 50%;
  transform: translateX(-50%);
  bottom: 0%;
  width: 290px;
  z-index: 1;
  animation: float-subtle-down 5s ease-in-out infinite alternate;
}

/* Position Mappings - Card 3 (Right) */
.card-right {
  right: 5%;
  top: 5%;
  width: 280px;
  z-index: 3;
  animation: float-subtle-up 7s ease-in-out infinite alternate;
}

/* Float Keyframes */
@keyframes float-subtle-up {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-15px); }
}

@keyframes float-subtle-down {
  0% { transform: translateX(-50%) translateY(0px); }
  100% { transform: translateX(-50%) translateY(15px); }
}

/* Inner elements styling */
.card-header-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.card-main-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.2rem;
}

/* Integrations icons */
.integration-circle-list {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.integration-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: var(--shadow-sm);
}

.icon-slack { background-color: #4A154B; color: white; }
.icon-gmail { background-color: #EA4335; color: white; }
.icon-zoom { background-color: #2D8CFF; color: white; }
.icon-whatsapp { background-color: #25D366; color: white; }

/* Conic gradient pie chart */
.chart-pie-conic {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: conic-gradient(var(--brand-purple) 60%, var(--status-done) 60% 85%, var(--status-working) 85%);
  box-shadow: var(--shadow-sm);
}

/* Vertical Bar chart Columns */
.chart-bars-list {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 50px;
}

.chart-bar-col {
  width: 12px;
  border-radius: 3px 3px 0 0;
  background-color: var(--color-hrms);
}
.bar-col-1 { height: 25px; }
.bar-col-2 { height: 45px; background-color: var(--brand-purple); }
.bar-col-3 { height: 35px; }
.bar-col-4 { height: 50px; background-color: var(--color-crm); }

/* Document Checklist */
.doc-checklist {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.doc-check-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.doc-check-item i {
  font-size: 0.95rem;
}
.doc-check-item i.bi-check-square-fill {
  color: var(--brand-purple);
}
.doc-check-item i.bi-square {
  color: var(--border-color);
}

/* Face outline watermark graphics at the bottom */
.outline-watermark-wrapper {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.08;
  pointer-events: none;
  z-index: 0;
}

.outline-watermark {
  width: 140px;
  height: 140px;
  stroke: var(--text-primary);
}

/* Responsive Overlapping Layouts */
@media (max-width: 991px) {
  .context-header-row {
    flex-direction: column;
    gap: 1.5rem;
  }
  .context-title {
    font-size: 1.75rem;
  }
  .context-visual-row {
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-top: 3rem;
  }
  .context-card {
    position: static !important;
    transform: none !important;
    animation: none !important;
    width: 100% !important;
    max-width: 360px;
  }
  .outline-watermark-wrapper {
    display: none;
  }
}

/* ------------------------------------------------------------------------
   13. AUTOMATION FLOWCHART DIAGRAM
   ------------------------------------------------------------------------ */
.automation-flowchart-wrapper {
  max-width: 680px;
  margin: 3rem auto 0 auto;
  position: relative;
}

.flowchart-node {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.flowchart-box {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 0.75rem 2rem;
  box-shadow: var(--shadow-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-primary);
  min-width: 280px;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.flowchart-box:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.flowchart-box.box-rainbow {
  border-bottom: 3px solid transparent;
  background-image: linear-gradient(var(--bg-card), var(--bg-card)), linear-gradient(to right, #ff4e50, #f9d423, #20e2d7, #f9d423);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  box-shadow: 0 10px 30px rgba(97, 97, 255, 0.06);
}

.flowchart-badge {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  margin-bottom: -15px;
  position: relative;
  z-index: 5;
  box-shadow: var(--shadow-sm);
}

.badge-green {
  background-color: var(--status-done);
}

.badge-blue {
  background-color: var(--brand-purple);
}

.flowchart-line-vertical {
  width: 2px;
  height: 28px;
  background-color: var(--border-color);
  margin: 0 auto;
}

.flowchart-split-container {
  width: 100%;
  position: relative;
}

.flowchart-line-horizontal-wrapper {
  width: 50%;
  margin: 0 auto;
  position: relative;
}

.flowchart-line-horizontal {
  height: 2px;
  background-color: var(--border-color);
  width: 100%;
}

.flowchart-branch-label {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 3px 12px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-secondary);
  display: inline-block;
  user-select: none;
  box-shadow: var(--shadow-sm);
}

.action-box {
  min-width: 260px;
}

@media (max-width: 575px) {
  .flowchart-box {
    min-width: 200px;
    font-size: 0.85rem;
    padding: 0.6rem 1rem;
  }
  .action-box {
    min-width: 160px;
  }
}

/* ------------------------------------------------------------------------
   14. SERVICES DETAILS GRID
   ------------------------------------------------------------------------ */
.services-details-section {
  background-color: var(--bg-primary);
  border-bottom: 1px solid var(--border-light);
}

.service-detail-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-top: 4px solid var(--border-color);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
  text-align: left;
}

.service-detail-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.service-detail-card.color-purple { border-top-color: #784bd1; }
.service-detail-card.color-blue { border-top-color: #0086c0; }
.service-detail-card.color-orange { border-top-color: #fd7e14; }
.service-detail-card.color-cyan { border-top-color: #00d2ff; }
.service-detail-card.color-green { border-top-color: #00c875; }

.service-detail-card.color-purple:hover { border-color: #784bd1; }
.service-detail-card.color-blue:hover { border-color: #0086c0; }
.service-detail-card.color-orange:hover { border-color: #fd7e14; }
.service-detail-card.color-cyan:hover { border-color: #00d2ff; }
.service-detail-card.color-green:hover { border-color: #00c875; }

.service-detail-card .service-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
  transition: all var(--transition-fast);
}

.service-detail-card.color-purple .service-icon { background: rgba(120, 75, 209, 0.08); color: #784bd1; }
.service-detail-card.color-blue .service-icon { background: rgba(0, 134, 192, 0.08); color: #0086c0; }
.service-detail-card.color-orange .service-icon { background: rgba(253, 126, 20, 0.08); color: #fd7e14; }
.service-detail-card.color-cyan .service-icon { background: rgba(0, 210, 255, 0.08); color: #00d2ff; }
.service-detail-card.color-green .service-icon { background: rgba(0, 200, 117, 0.08); color: #00c875; }

.service-detail-card.color-purple:hover .service-icon { background: #784bd1; color: #fff; }
.service-detail-card.color-blue:hover .service-icon { background: #0086c0; color: #fff; }
.service-detail-card.color-orange:hover .service-icon { background: #fd7e14; color: #fff; }
.service-detail-card.color-cyan:hover .service-icon { background: #00d2ff; color: #fff; }
.service-detail-card.color-green:hover .service-icon { background: #00c875; color: #fff; }

.service-detail-card h5 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  transition: color var(--transition-fast);
}

.service-detail-card.color-purple:hover h5 { color: #784bd1; }
.service-detail-card.color-blue:hover h5 { color: #0086c0; }
.service-detail-card.color-orange:hover h5 { color: #fd7e14; }
.service-detail-card.color-cyan:hover h5 { color: #00d2ff; }
.service-detail-card.color-green:hover h5 { color: #00c875; }

.service-detail-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 0;
}

/* ------------------------------------------------------------------------
   15. CASE STUDY HERO CARDS (Image Section)
   ------------------------------------------------------------------------ */
.case-study-hero-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  padding: 2.2rem;
  display: flex;
  flex-direction: column;
  height: 380px;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  text-align: left;
}

.case-study-hero-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.dark-theme-card {
  background: #000000;
  color: #ffffff;
}

.light-theme-card {
  background: #f4e8ff;
  color: var(--text-primary);
}

.card-quote-mark {
  font-size: 4.5rem;
  line-height: 1;
  color: var(--brand-purple);
  font-family: Georgia, serif;
  margin-top: -1.2rem;
  margin-bottom: 0.2rem;
}

.card-quote-text {
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 1rem;
  max-width: 55%;
  z-index: 2;
  position: relative;
}

.dark-theme-card .card-quote-text {
  color: #ffffff;
}

.card-quote-text strong {
  color: var(--brand-purple);
}

.card-quote-author {
  font-size: 0.85rem;
  color: #bbbbbb;
  margin-bottom: 1.5rem;
  z-index: 2;
  position: relative;
}

.card-tag {
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--brand-purple);
  margin-bottom: 1rem;
  z-index: 2;
  position: relative;
}

.card-stat {
  font-size: 3.8rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.2rem;
  color: var(--text-primary);
  z-index: 2;
  position: relative;
}

.card-stat-desc {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  max-width: 55%;
  z-index: 2;
  position: relative;
}

.card-read-link {
  font-weight: 600;
  color: var(--text-primary) !important;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  z-index: 2;
  position: relative;
}

.card-read-link:hover {
  color: var(--brand-purple) !important;
}

.card-logo-footer {
  margin-top: auto;
  z-index: 2;
  position: relative;
}

.company-logo-text {
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  color: #ffffff;
}

.card-hero-image {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 45%;
  object-fit: cover;
  z-index: 1;
  border-radius: 0 24px 24px 0;
}

@media (max-width: 991px) {
  .case-study-hero-card {
    height: auto;
    padding: 2.5rem;
  }
  .card-hero-image {
    position: static;
    width: 100%;
    height: 240px;
    margin-top: 2rem;
    border-radius: 12px;
  }
  .card-quote-text {
    font-size: 1.4rem;
    max-width: 100%;
  }
  .card-stat-desc {
    max-width: 100%;
  }
  .card-stat {
    font-size: 4rem;
  }
}

/* Slider Carousel Layout */
.case-study-slider-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  margin-top: 1.5rem;
}

.case-study-track {
  display: flex;
  gap: 0;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  padding: 0.5rem 0 1.5rem 0;
}

.case-study-slide {
  flex: 0 0 100%;
  min-width: 100%;
}

.btn-nav-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  background: var(--bg-card);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-sm);
}

.btn-nav-arrow:hover {
  background: var(--brand-purple);
  color: #ffffff;
  border-color: var(--brand-purple);
}

.btn-nav-arrow:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

@media (max-width: 991px) {
  .case-study-slide {
    flex: 0 0 100%;
    min-width: 100%;
  }
}
/* Services Details Slider Carousel */
.services-slider-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  margin-top: 1.5rem;
}

.services-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  padding: 0.5rem 0 1.5rem 0;
}

.service-slide {
  flex: 0 0 calc(33.333% - 1rem);
  min-width: calc(33.333% - 1rem);
}

@media (max-width: 991px) {
  .service-slide {
    flex: 0 0 calc(50% - 0.75rem);
    min-width: calc(50% - 0.75rem);
  }
}

@media (max-width: 575px) {
  .service-slide {
    flex: 0 0 100%;
    min-width: 100%;
  }
}

/* ------------------------------------------------------------------------
   16. INTERACTIVE SERVICES SECTION (GSAP 100vh Pinned)
   ------------------------------------------------------------------------ */
.interactive-services-section {
  position: relative;
  width: 100%;
  height: calc(100vh - 76px);
  background-color: #ffffff;
  background-image: linear-gradient(135deg, #ffffff 0%, #f5f9ff 100%);
  overflow: hidden;
  --ellipse-center-y: calc(50% + 95px);
}

/* Grid Pattern Background overlay */
.services-bg-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to right, rgba(37, 99, 235, 0.03) 1px, transparent 1px),
                    linear-gradient(to bottom, rgba(37, 99, 235, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  background-position: center center;
  pointer-events: none;
  z-index: 1;
}

/* Floating Blurred Glow Spheres */
.services-glow-sphere {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.5;
  pointer-events: none;
  z-index: 1;
}

.glow-sphere-left {
  width: 380px;
  height: 380px;
  background: rgba(37, 99, 235, 0.12);
  left: 10%;
  top: 15%;
}

.glow-sphere-right {
  width: 420px;
  height: 420px;
  background: rgba(139, 92, 246, 0.1);
  right: 12%;
  bottom: 12%;
}

/* Particles Container */
.services-particles-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

/* Layout Wrapper */
.interactive-services-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem;
  z-index: 3;
}

/* Scroll Header */
.services-scroll-header {
  position: absolute;
  top: 80px;
  left: 50%;
  transform: translate(-50%, 0);
  width: 90%;
  max-width: 600px;
  z-index: 15;
  pointer-events: none;
  text-align: center;
}

/* SVG connectors canvas */
.connectors-svg-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 4;
}

.connector-line {
  stroke: rgba(37, 99, 235, 0.22);
  stroke-width: 1.5;
  fill: none;
  stroke-dasharray: 8 4;
}

.logo-hub-center {
  position: absolute;
  top: var(--ellipse-center-y);
  left: 50%;
  transform: translate(-50%, -50%) scale(0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  opacity: 0;
  pointer-events: none;
}

.logo-hub-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background: var(--bg-card);
  padding: 0.9rem 1.8rem;
  border-radius: 50px;
  border: 1px solid var(--border-color);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  color: var(--text-primary);
}

.logo-hub-icon {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: var(--brand-gradient);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.15rem;
}

.logo-hub-text {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-primary);
}

.logo-hub-halo {
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.2) 0%, rgba(37, 99, 235, 0) 70%);
  filter: blur(12px);
  z-index: -1;
  animation: logo-hub-pulse 3s infinite ease-in-out;
}

@keyframes logo-hub-pulse {
  0% { transform: scale(0.9); opacity: 0.5; }
  50% { transform: scale(1.15); opacity: 0.8; }
  100% { transform: scale(0.9); opacity: 0.5; }
}

/* Card Wrapper handles absolute coordinates & GSAP reveals */
.card-wrapper {
  position: absolute;
  z-index: 8;
  opacity: 0;
  filter: blur(8px);
  transform: scale(0.8);
}

/* Glassmorphism Cards */
.service-glass-card {
  position: relative;
  width: 230px;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 16px;
  padding: 1rem 1.15rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.02);
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
  text-align: left;
  animation: card-float 5s infinite ease-in-out alternate;
}

@keyframes card-float {
  0% { transform: translateY(0); }
  100% { transform: translateY(-10px); }
}

.service-glass-card:hover {
  transform: translateY(-5px) !important;
  border-color: rgba(37, 99, 235, 0.45);
  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.08);
}

.glass-card-icon {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.service-glass-card h6 {
  font-size: 0.85rem;
  font-weight: 700;
  color: #1f2937;
  margin: 0 0 0.2rem 0;
  line-height: 1.2;
}

.service-glass-card p {
  font-size: 0.72rem;
  color: #6b7280;
  margin: 0;
  line-height: 1.35;
}

/* Glass Card Icon Color Variants */
.icon-blue { background: rgba(37, 99, 235, 0.07); color: #2563eb; }
.icon-green { background: rgba(16, 185, 129, 0.07); color: #10b981; }
.icon-purple { background: rgba(139, 92, 246, 0.07); color: #8b5cf6; }
.icon-orange { background: rgba(249, 115, 22, 0.07); color: #f97316; }
.icon-teal { background: rgba(20, 184, 166, 0.07); color: #14b8a6; }
.icon-pink { background: rgba(236, 72, 153, 0.07); color: #ec4899; }
.icon-sky { background: rgba(14, 165, 233, 0.07); color: #0ea5e9; }
.icon-violet { background: rgba(99, 102, 241, 0.07); color: #6366f1; }

/* 8 Card Positions (Ellipse around center) */
.card-pos-1 { left: calc(50% - 340px); top: calc(var(--ellipse-center-y) - 120px); } /* Top-Left */
.card-pos-2 { left: calc(50% - 130px); top: calc(var(--ellipse-center-y) - 170px); } /* Top */
.card-pos-3 { left: calc(50% + 80px);  top: calc(var(--ellipse-center-y) - 120px); } /* Top-Right */
.card-pos-4 { left: calc(50% + 160px);  top: calc(var(--ellipse-center-y) - 10px);  } /* Right */
.card-pos-5 { left: calc(50% + 80px);  top: calc(var(--ellipse-center-y) + 85px); } /* Bottom-Right */
.card-pos-6 { left: calc(50% - 130px); top: calc(var(--ellipse-center-y) + 115px); } /* Bottom */
.card-pos-7 { left: calc(50% - 340px); top: calc(var(--ellipse-center-y) + 85px); } /* Bottom-Left */
.card-pos-8 { left: calc(50% - 420px); top: calc(var(--ellipse-center-y) - 10px);  } /* Left */

/* Responsive Layout fallback for tablet/mobile */
@media (max-width: 991px) {
  .interactive-services-section {
    height: auto;
    padding: 5rem 0;
    overflow: visible;
  }
  .interactive-services-container {
    height: auto;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
  }
  .services-scroll-header {
    position: static;
    margin-bottom: 2rem;
    pointer-events: auto;
  }
  .logo-hub-center {
    position: static;
    transform: none !important;
    opacity: 1 !important;
    pointer-events: auto;
    margin-bottom: 2rem;
  }
  .logo-hub-halo {
    width: 140px;
    height: 140px;
  }
  .connectors-svg-canvas {
    display: none;
  }
  .card-wrapper {
    position: static !important;
    transform: none !important;
    opacity: 1 !important;
    filter: none !important;
    max-width: 320px;
    width: 100%;
    margin-bottom: 1rem;
  }
  .service-glass-card {
    animation: none !important;
    box-shadow: var(--shadow-sm);
    width: 100%;
  }
}

/* Lenis smooth scroll recommended styles */
html.lenis, html.lenis body {
  height: auto;
}

.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis-stopped {
  overflow: hidden;
}

.lenis-scrolling iframe {
  pointer-events: none;
}

/* Custom Button Utilities */
.hero-cta-btn {
  border-radius: 30px !important;
}

.hero-cta-btn i {
  font-size: 1.5rem;
  line-height: 1;
}

.contact-sales-btn {
  border-radius: 30px;
  font-weight: 600;
  padding: 0.65rem 1.8rem;
  border: 1.5px solid var(--text-primary);
  color: var(--text-primary);
  background: transparent;
  transition: all var(--transition-fast);
}

.contact-sales-btn:hover {
  background: var(--text-primary);
  color: var(--bg-primary) !important;
  border-color: var(--text-primary);
}

.footer-newsletter-input,
.footer-newsletter-btn {
  font-size: 0.85rem !important;
}

/* Technology Cards Grid styling */
.tech-stack-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.tech-stack-card:hover {
  transform: translateY(-5px);
  border-color: rgba(97, 97, 255, 0.3);
  box-shadow: 0 10px 30px rgba(97, 97, 255, 0.05);
}

.tech-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.tech-icon-box {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.tech-icon-blue {
  background: rgba(97, 97, 255, 0.1);
  color: var(--brand-purple);
}

.tech-icon-green {
  background: rgba(46, 204, 113, 0.1);
  color: #2ecc71;
}

.tech-icon-purple {
  background: rgba(155, 89, 182, 0.1);
  color: #9b59b6;
}

.tech-pill {
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  padding: 0.35rem 0.75rem;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: all var(--transition-fast);
}

[data-theme="dark"] .tech-pill {
  background: rgba(0, 0, 0, 0.2);
}

.tech-pill:hover {
  border-color: var(--brand-purple);
  background: var(--bg-primary);
}

.tech-pill i {
  font-size: 0.85rem;
}

/* Awards & Certifications Section styling */
.awards-section {
  background: radial-gradient(circle at 50% 50%, rgba(97, 97, 255, 0.04) 0%, transparent 60%),
              var(--bg-secondary);
  border-top: 1px solid var(--border-color);
}

.trust-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 2.5rem 2.2rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal);
}

.trust-card:hover {
  transform: translateY(-6px);
}

/* Color Coded Card Accents */
.tc-iso27001 { border-top: 4px solid var(--brand-purple) !important; }
.tc-iso9001 { border-top: 4px solid #00b5dd !important; }
.tc-mscert { border-top: 4px solid #f25022 !important; }
.tc-gptw { border-top: 4px solid #e31b23 !important; }
.tc-iaf { border-top: 4px solid #2b579a !important; }
.tc-ias { border-top: 4px solid #00a300 !important; }
.tc-hipaa { border-top: 4px solid #7e3878 !important; }

/* Individualized Hover Glow Shadows */
.tc-iso27001:hover {
  border-color: var(--brand-purple);
  box-shadow: 0 15px 40px rgba(120, 75, 209, 0.12);
}
.tc-iso9001:hover {
  border-color: #00b5dd;
  box-shadow: 0 15px 40px rgba(0, 181, 221, 0.12);
}
.tc-mscert:hover {
  border-color: #f25022;
  box-shadow: 0 15px 40px rgba(242, 80, 34, 0.12);
}
.tc-gptw:hover {
  border-color: #e31b23;
  box-shadow: 0 15px 40px rgba(227, 27, 35, 0.12);
}
.tc-iaf:hover {
  border-color: #2b579a;
  box-shadow: 0 15px 40px rgba(43, 87, 154, 0.12);
}
.tc-ias:hover {
  border-color: #00a300;
  box-shadow: 0 15px 40px rgba(0, 163, 0, 0.12);
}
.tc-hipaa:hover {
  border-color: #7e3878;
  box-shadow: 0 15px 40px rgba(126, 56, 120, 0.12);
}

.trust-card-title {
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.25;
  margin-bottom: 1.25rem;
  text-align: left;
}

.trust-card-tag {
  letter-spacing: 0.1em;
  font-size: 0.75rem;
}

.trust-stat-number {
  font-size: 4.8rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
}

.trust-card-link {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  border-bottom: 2px solid var(--text-primary);
  padding-bottom: 2px;
  display: inline-flex;
  align-items: center;
  transition: border-color var(--transition-fast), color var(--transition-fast);
}

.trust-card-link:hover {
  color: var(--brand-purple);
  border-bottom-color: var(--brand-purple);
}

.trust-logos-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.trust-logos-row img {
  height: 36px;
  width: auto;
  object-fit: contain;
  filter: grayscale(1) opacity(0.7);
  transition: filter var(--transition-normal);
}

.trust-card:hover .trust-logos-row img {
  filter: grayscale(0) opacity(1);
}

/* Responsive Heading Standardization */
@media (max-width: 991px) {
  .section-title,
  .context-title,
  .cta-title {
    font-size: 1.75rem !important;
  }
}

/* Certification Card Sprites */
.cert-sprite-logo {
  width: 60px;
  height: 45px;
  background-image: url('../assets/certifications/certifications.jpg');
  background-size: 120px 90px;
  background-repeat: no-repeat;
  margin: 0 auto;
}

.sprite-iaf {
  background-position: 0px 0px;
}

.sprite-ias {
  background-position: -60px 0px;
}

.sprite-iso27001 {
  background-position: 0px -45px;
}

.sprite-mscert {
  background-position: -60px -45px;
}

/* Hero Trust Badges & Microsoft Banner styles */
.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 0.45rem 0.85rem;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}

.hero-badge-pill:hover {
  transform: translateY(-2px);
  border-color: var(--brand-purple);
}

.badge-icon {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.7rem;
}

.icon-clutch {
  background: #111;
  color: #fff;
}

.icon-iso {
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
}

.badge-text-box {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.badge-title {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-primary);
}

.badge-subtitle {
  font-size: 0.62rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.ms-brand-icons i {
  font-size: 1.4rem;
  transition: all var(--transition-fast);
  cursor: pointer;
  color: var(--text-secondary);
}

.ms-brand-icons i:hover {
  transform: scale(1.2);
  color: var(--brand-purple) !important;
}

/* ------------------------------------------------------------------------
   7.5. VIDEO STORIES SECTION (Zoho Inspired)
   ------------------------------------------------------------------------ */
.video-stories-section {
  background: var(--bg-primary);
  border-top: 1px solid var(--border-color);
  padding: 5rem 0;
}

.video-stories-slider {
  width: 100%;
  overflow: hidden;
  border-radius: 20px;
}

.video-stories-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  width: 100%;
}

.video-story-slide {
  width: 100%;
  flex-shrink: 0;
  padding: 0 1px; /* prevents border clipping */
}

.video-story-card {
  background: #fbf9f4; /* Zoho warm cream color */
  border: 1px solid var(--border-color);
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  height: 320px; /* More compact desktop card height */
  width: 100%;
}

[data-theme="dark"] .video-story-card {
  background: #171c26; /* Dark theme card background */
}

.video-story-content {
  padding: 2.2rem 3rem; /* Scaled down padding */
  height: 100%;
}

.video-story-title {
  font-size: 1.6rem; /* Scaled down title font size */
  font-weight: 700;
  color: #1e293b;
  line-height: 1.35;
}

[data-theme="dark"] .video-story-title {
  color: #fff;
}

.btn-video-explore {
  font-size: 0.85rem; /* Scaled down explore button font size */
  font-weight: 800;
  color: #1e293b;
  border: 2px solid #e2e8f0;
  padding: 0.7rem 1.5rem; /* Scaled down button padding */
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  letter-spacing: 0.05em;
  background: #fff;
  transition: all var(--transition-normal);
}

[data-theme="dark"] .btn-video-explore {
  background: #0f1624;
  color: #fff;
  border-color: #334155;
}

.btn-video-explore:hover {
  border-color: var(--brand-purple);
  color: var(--brand-purple);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.video-story-media {
  overflow: hidden;
  height: 100%;
  background: #000;
}

.video-story-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 1;
  transition: transform var(--transition-slow);
}

.video-story-card:hover .video-story-image {
  transform: scale(1.04);
}

.video-story-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: #fff;
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  z-index: 10;
  transition: all var(--transition-fast);
}

[data-theme="dark"] .video-story-arrow {
  background: #171c26;
  color: #fff;
}

.video-story-arrow:hover {
  background: var(--brand-purple);
  color: #fff;
  border-color: var(--brand-purple);
  transform: translateY(-50%) scale(1.05);
}

.video-story-arrow.arrow-left {
  left: -24px;
}

.video-story-arrow.arrow-right {
  right: -24px;
}

@media (max-width: 767px) {
  .video-story-arrow.arrow-left { left: 5px; }
  .video-story-arrow.arrow-right { right: 5px; }
  
  .video-story-card {
    height: auto !important;
    min-height: 380px; /* More compact mobile card height */
  }
  
  .video-story-content {
    padding: 2rem 1.5rem;
    height: auto;
  }
  
  .video-story-media {
    height: 170px; /* More compact mobile image poster height */
    width: 100%;
  }

  .video-story-title {
    font-size: 1.35rem; /* Scaled down mobile title */
    margin-bottom: 1.2rem !important;
  }
  
  .btn-video-explore {
    padding: 0.65rem 1.3rem;
    font-size: 0.8rem;
  }

  /* General Heading Overrides for Mobile Responsiveness */
  .hero-heading {
    font-size: 2.5rem !important;
    line-height: 1.2 !important;
  }

  .section-title {
    font-size: 2rem !important;
    line-height: 1.25 !important;
  }

  .branding-main-title {
    font-size: 2.2rem !important;
  }
}

/* ------------------------------------------------------------------------
   8. NATIVE SCROLL ANIMATIONS (IntersectionObserver Failsafe)
   ------------------------------------------------------------------------ */
[data-aos] {
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

[data-aos="fade-up"] {
  transform: translateY(30px);
}

[data-aos="fade-down"] {
  transform: translateY(-30px);
}

[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

/* ------------------------------------------------------------------------
   VIDEO LIGHTBOX OVERLAY
   ------------------------------------------------------------------------ */
.video-lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(12px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding: 1.5rem;
}

.video-lightbox-overlay.active {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.video-lightbox-content-card {
  position: relative;
  width: 100%;
  max-width: 960px;
  height: auto;
  max-height: 90vh;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-2xl);
  display: flex;
  flex-direction: column;
  transform: scale(0.95);
  transition: transform 0.3s ease;
}

.video-lightbox-overlay.active .video-lightbox-content-card {
  transform: scale(1);
}

@media (min-width: 992px) {
  .video-lightbox-content-card {
    height: auto;
  }
}

.video-lightbox-close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  color: #ffffff;
  border: none;
  font-size: 1.5rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.video-lightbox-close:hover {
  background: var(--brand-purple);
  transform: scale(1.05);
}

/* Square Aspect-Ratio for Success Story Popups */
#lightbox-image,
#lightbox-video {
  width: 100% !important;
  height: 100% !important;
  aspect-ratio: 1 / 1 !important;
  object-fit: cover !important;
}

/* Branded Pill Badge for Success Story Modals */
#lightbox-badge {
  font-size: 0.72rem !important;
  text-transform: uppercase !important;
  letter-spacing: 0.08em !important;
  padding: 6px 14px !important;
  border-radius: 50px !important;
  font-weight: 700 !important;
  background-color: rgba(120, 75, 209, 0.07) !important;
  color: var(--brand-purple) !important;
  border: 1px solid rgba(120, 75, 209, 0.15) !important;
  display: inline-block !important;
  margin-bottom: 1.25rem !important;
}

[data-theme="dark"] #lightbox-badge {
  background-color: rgba(168, 85, 247, 0.12) !important;
  color: #c084fc !important;
  border-color: rgba(168, 85, 247, 0.22) !important;
}

.video-play-overlay {
  display: none !important;
}

.video-story-card:hover .video-play-overlay {
  background: rgba(0, 0, 0, 0.35);
}

.video-play-btn-small {
  width: 60px;
  height: 60px;
  background: #fff;
  color: var(--brand-purple);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  padding-left: 3px;
  transition: transform var(--transition-normal);
}

.video-story-card:hover .video-play-btn-small {
  transform: scale(1.1);
}

.cursor-pointer {
  cursor: pointer;
}

@media (max-width: 767px) {
  .video-lightbox-close {
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
  }
}

/* ------------------------------------------------------------------------
   MADE IN INDIA BRANDING SECTION (Light Version)
   ------------------------------------------------------------------------ */
.made-in-india-section {
  background: #f8fafc;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  overflow: hidden;
}

[data-theme="dark"] .made-in-india-section {
  background: #0f1624;
}

.branding-main-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: #0f172a; /* dark slate */
  line-height: 1.1;
  letter-spacing: -0.02em;
}

[data-theme="dark"] .branding-main-title {
  color: #ffffff;
}

.branding-divider {
  width: 80px;
  height: 4px;
  background-color: #00c875; /* green divider */
  border-radius: 2px;
}

.stat-num-large {
  font-size: 3rem;
  font-weight: 800;
  color: #0056D2; /* Zoho blue accent */
  line-height: 1;
  margin-bottom: 0.5rem;
}

[data-theme="dark"] .stat-num-large {
  color: #38bdf8; /* bright blue stats for dark mode */
}

.stat-lbl-small {
  font-size: 0.85rem;
  font-weight: 600;
  color: #64748b;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

[data-theme="dark"] .stat-lbl-small {
  color: #94a3b8;
}

.btn-more-about {
  font-size: 0.9rem;
  font-weight: 700;
  color: #0056d2;
  border: 2px solid #0056d2;
  padding: 0.85rem 2rem;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  letter-spacing: 0.05em;
  background: transparent;
  transition: all var(--transition-normal);
  position: relative;
  z-index: 2;
}

[data-theme="dark"] .btn-more-about {
  color: #38bdf8;
  border-color: #38bdf8;
}

.btn-more-about:hover {
  background: #0056d2;
  color: #ffffff;
  border-color: #0056d2;
}

[data-theme="dark"] .btn-more-about:hover {
  background: #38bdf8;
  color: #0f1624;
  border-color: #38bdf8;
}

.temple-watermark {
  position: absolute;
  bottom: -20px;
  right: -10px;
  pointer-events: none;
  z-index: 1;
  opacity: 0.85;
}

.temple-watermark svg {
  stroke: rgba(0, 86, 210, 0.05);
}

[data-theme="dark"] .temple-watermark svg {
  stroke: rgba(255, 255, 255, 0.08);
}

/* 5 column flex setting */
.col-md-2-4 {
  width: 20%;
}

/* Vertical dividers on desktop */
@media (min-width: 992px) {
  .border-left-divider {
    border-left: 1px solid rgba(15, 23, 42, 0.08);
  }
  [data-theme="dark"] .border-left-divider {
    border-left: 1px solid rgba(255, 255, 255, 0.1);
  }
}

@media (max-width: 991px) {
  .branding-main-title {
    font-size: 2.5rem;
  }
  .stat-num-large {
    font-size: 2.2rem;
  }
  .col-md-2-4 {
    width: 50%;
  }
  .border-left-divider {
    border-left: none;
  }
  .temple-watermark {
    width: 280px;
    height: auto;
    bottom: -10px;
    right: -10px;
  }
}

/* WhatsApp Submission Button Styles */
.btn-whatsapp-submit {
  border: 1px solid #25d366 !important;
  color: #25d366 !important;
  background: transparent;
  transition: all var(--transition-fast);
}

.btn-whatsapp-submit:hover {
  background: #25d366 !important;
  color: #ffffff !important;
  border-color: #25d366 !important;
}

/* Subpage UI Upgrades */
.subpage-hero {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%) !important;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border-color);
  margin-top: 76px;
}

.subpage-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 80% 20%, rgba(0, 86, 210, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

[data-theme="dark"] .subpage-hero {
  background: linear-gradient(135deg, #0f1624 0%, #17223b 100%) !important;
}

/* Media Page & Subpage Hero Cover Image Wrapper */
.media-cover-wrapper {
  width: 100%;
  height: 280px;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  margin: 0 auto;
}
.media-cover-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.media-cover-wrapper:hover .media-cover-image {
  transform: scale(1.03);
}
@media (max-width: 991px) {
  .media-cover-wrapper {
    max-width: 500px;
    height: 240px;
  }
}

.subpage-hero-tag {
  color: var(--brand-purple) !important;
  letter-spacing: 0.1em;
}

[data-theme="dark"] .subpage-hero-tag {
  color: #38bdf8 !important;
}

.breadcrumb-item a {
  color: #64748b;
  transition: color var(--transition-fast);
}

.breadcrumb-item a:hover {
  color: var(--brand-purple);
}

.breadcrumb-item.active {
  color: var(--brand-purple) !important;
  font-weight: 600;
}

/* Alternate Mockups & Stacking Layouts */
.subpage-row {
  padding: 5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.subpage-row:last-of-type {
  border-bottom: none;
}

.subpage-row-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

/* Glassmorphic Mockups on Subpages */
.subpage-mockup-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  position: relative;
  min-height: 320px;
}

.subpage-mockup-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.subpage-mockup-header {
  background: rgba(15, 23, 42, 0.03);
  border-bottom: 1px solid var(--border-color);
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

[data-theme="dark"] .subpage-mockup-header {
  background: rgba(255, 255, 255, 0.03);
}

.subpage-mockup-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.subpage-mockup-body {
  padding: 1.5rem;
}

/* Specific Mockup Styles */
.mock-dir-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(15, 23, 42, 0.04);
}

[data-theme="dark"] .mock-dir-item {
  border-bottom-color: rgba(255, 255, 255, 0.04);
}

.mock-dir-item:last-child {
  border-bottom: none;
}

/* Blog Master-Detail Layout Styles */
.blog-list-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1.25rem;
  cursor: pointer;
  transition: all var(--transition-normal);
  display: block;
  text-decoration: none !important;
  margin-bottom: 1rem;
}

.blog-list-item:hover {
  transform: translateX(4px);
  border-color: rgba(97, 97, 255, 0.3);
  box-shadow: var(--shadow-sm);
}

.blog-list-item.active {
  border-left: 4px solid var(--brand-purple) !important;
  background: rgba(97, 97, 255, 0.02);
  border-color: rgba(97, 97, 255, 0.2);
}

[data-theme="dark"] .blog-list-item.active {
  border-left-color: #38bdf8 !important;
  background: rgba(56, 189, 248, 0.02);
  border-color: rgba(56, 189, 248, 0.2);
}

/* App Store Download Badge Spacing */
.app-store-badge {
  padding: 0.4rem 0.8rem !important;
  font-size: 0.725rem !important;
}

/* Lightbox hover and image styles */
.cursor-pointer {
  cursor: pointer;
}

.hover-zoom {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
  transform: scale(1);
}

.lightbox-trigger:hover .hover-zoom {
  transform: scale(1.08);
}

.lightbox-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 10;
}

.lightbox-trigger:hover .lightbox-overlay {
  opacity: 1;
}

.lightbox-trigger {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

/* Lightbox gallery navigation arrows styling */
#lightbox-prev-btn, #lightbox-next-btn {
  color: rgba(255, 255, 255, 0.45) !important;
  transition: color 0.3s ease, transform 0.3s ease, opacity 0.3s ease !important;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

#lightbox-prev-btn:hover, #lightbox-next-btn:hover {
  color: #ffffff !important;
}

#lightbox-prev-btn:active, #lightbox-next-btn:active {
  transform: translateY(-50%) scale(0.9) !important;
}

/* Lightbox inside-image zoom details */
#lightboxImage {
  cursor: zoom-in;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  max-width: 100%;
}

#lightboxImage.zoomed {
  transform: scale(1.4);
  cursor: zoom-out;
}

/* ========================================================================
   TECHNOLOGY STACK & INDUSTRIES WE SERVE SECTIONS
   ======================================================================== */

.tech-grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.tech-grid-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.tech-grid-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: transparent;
  transition: background-color var(--transition-normal);
}

.tech-grid-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(120, 75, 209, 0.2);
}

.tech-grid-item.color-purple:hover::before { background: var(--brand-purple); }
.tech-grid-item.color-blue:hover::before { background: #3b82f6; }
.tech-grid-item.color-green:hover::before { background: #10b981; }
.tech-grid-item.color-red:hover::before { background: #ef4444; }
.tech-grid-item.color-orange:hover::before { background: #f97316; }
.tech-grid-item.color-teal:hover::before { background: #14b8a6; }
.tech-grid-item.color-cyan:hover::before { background: #06b6d4; }

.tech-item-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.5rem;
  transition: transform var(--transition-normal);
}

.tech-grid-item:hover .tech-item-icon {
  transform: scale(1.1) rotate(5deg);
}

.tech-item-icon.icon-purple { background: rgba(120, 75, 209, 0.08); color: var(--brand-purple); }
.tech-item-icon.icon-blue { background: rgba(59, 130, 246, 0.08); color: #3b82f6; }
.tech-item-icon.icon-green { background: rgba(16, 185, 129, 0.08); color: #10b981; }
.tech-item-icon.icon-red { background: rgba(239, 68, 68, 0.08); color: #ef4444; }
.tech-item-icon.icon-orange { background: rgba(249, 115, 22, 0.08); color: #f97316; }
.tech-item-icon.icon-teal { background: rgba(20, 184, 166, 0.08); color: #14b8a6; }
.tech-item-icon.icon-cyan { background: rgba(6, 182, 212, 0.08); color: #06b6d4; }

.tech-item-title {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.tech-item-details {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

/* Industries We Serve Section Styles */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.industry-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 1.75rem;
  transition: all var(--transition-normal);
  text-align: left;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.industry-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 181, 221, 0.25);
  box-shadow: 0 10px 30px -10px rgba(0, 181, 221, 0.12);
}

.industry-icon-wrapper {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.25rem;
  transition: transform var(--transition-normal);
}

.industry-card:hover .industry-icon-wrapper {
  transform: scale(1.1);
}

.industry-card.color-cyan .industry-icon-wrapper { background: rgba(0, 181, 221, 0.08); color: #00b5dd; }
.industry-card.color-blue .industry-icon-wrapper { background: rgba(59, 130, 246, 0.08); color: #3b82f6; }
.industry-card.color-green .industry-icon-wrapper { background: rgba(16, 185, 129, 0.08); color: #10b981; }
.industry-card.color-purple .industry-icon-wrapper { background: rgba(120, 75, 209, 0.08); color: var(--brand-purple); }
.industry-card.color-orange .industry-icon-wrapper { background: rgba(249, 115, 22, 0.08); color: #f97316; }
.industry-card.color-red .industry-icon-wrapper { background: rgba(239, 68, 68, 0.08); color: #ef4444; }
.industry-card.color-yellow .industry-icon-wrapper { background: rgba(234, 179, 8, 0.08); color: #eab308; }
.industry-card.color-pink .industry-icon-wrapper { background: rgba(236, 72, 153, 0.08); color: #ec4899; }
.industry-card.color-violet .industry-icon-wrapper { background: rgba(139, 92, 246, 0.08); color: #8b5cf6; }

.industry-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}

.industry-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.industry-feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: auto;
}

.industry-tag-pill {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 0.25rem 0.5rem;
  border-radius: 6px;
  font-size: 0.75rem;
  color: var(--text-secondary);
}

/* Technology Compact Tab UI */
.tech-tab-btn {
  background: transparent;
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  padding: 0.6rem 1.25rem;
  border-radius: 30px;
  font-size: 0.875rem;
  font-weight: 600;
  transition: all var(--transition-normal);
  cursor: pointer;
}

.tech-tab-btn:hover {
  background: rgba(120, 75, 209, 0.05);
  border-color: rgba(120, 75, 209, 0.3);
  color: var(--brand-purple);
}

.tech-tab-btn.active {
  background: var(--brand-purple);
  border-color: var(--brand-purple);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(120, 75, 209, 0.25);
}

.tech-tab-panel {
  display: none;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.tech-tab-panel.active {
  display: block !important;
  opacity: 1;
  transform: translateY(0);
}

/* Industry Infinite Marquee Slider styles */
.marquee-slider-wrapper {
  overflow: hidden;
  width: 100%;
  padding: 1.5rem 0;
  position: relative;
  mask-image: linear-gradient(to right, transparent, #000 12%, #000 88%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 12%, #000 88%, transparent);
}

.marquee-slider-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: marquee-scroll 32s linear infinite;
}

.marquee-slider-track:hover {
  animation-play-state: paused;
}

.marquee-card {
  flex-shrink: 0;
  width: 310px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 1.75rem;
  transition: all var(--transition-normal);
  text-align: left;
  display: flex;
  flex-direction: column;
}

.marquee-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 181, 221, 0.25);
  box-shadow: 0 10px 30px -10px rgba(0, 181, 221, 0.12);
}

.marquee-card .industry-icon-wrapper {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.25rem;
  transition: transform var(--transition-normal);
}

.marquee-card:hover .industry-icon-wrapper {
  transform: scale(1.1);
}

.marquee-card.color-cyan .industry-icon-wrapper { background: rgba(0, 181, 221, 0.08); color: #00b5dd; }
.marquee-card.color-blue .industry-icon-wrapper { background: rgba(59, 130, 246, 0.08); color: #3b82f6; }
.marquee-card.color-green .industry-icon-wrapper { background: rgba(16, 185, 129, 0.08); color: #10b981; }
.marquee-card.color-purple .industry-icon-wrapper { background: rgba(120, 75, 209, 0.08); color: var(--brand-purple); }
.marquee-card.color-orange .industry-icon-wrapper { background: rgba(249, 115, 22, 0.08); color: #f97316; }
.marquee-card.color-red .industry-icon-wrapper { background: rgba(239, 68, 68, 0.08); color: #ef4444; }
.marquee-card.color-yellow .industry-icon-wrapper { background: rgba(234, 179, 8, 0.08); color: #eab308; }
.marquee-card.color-pink .industry-icon-wrapper { background: rgba(236, 72, 153, 0.08); color: #ec4899; }
.marquee-card.color-violet .industry-icon-wrapper { background: rgba(139, 92, 246, 0.08); color: #8b5cf6; }

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-310px * 9 - 1.5rem * 9)); /* Exact width of 9 cards + their 9 gaps */
  }
}

/* Services Subpage Infography Path */
.infographic-container-section {
  background: var(--bg-card);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.infographic-wrapper {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 1.5rem;
  margin-top: 3rem;
  margin-bottom: 2rem;
  z-index: 2;
}

@media (max-width: 991.98px) {
  .infographic-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
  }
}

.infographic-step-card {
  position: relative;
  flex: 1;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 2rem 1.25rem 1.75rem 1.25rem;
  text-align: center;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

@media (max-width: 991.98px) {
  .infographic-step-card {
    width: 100%;
    max-width: 450px;
  }
}

.infographic-step-card:hover {
  transform: translateY(-8px);
  border-color: var(--brand-purple);
  box-shadow: 0 12px 30px -10px rgba(120, 75, 209, 0.15);
}

.infographic-step-num {
  position: absolute;
  top: -16px;
  background: var(--brand-purple);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.3rem 0.85rem;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(120, 75, 209, 0.25);
  font-family: var(--font-heading);
  letter-spacing: 0.05em;
}

.infographic-step-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-top: 0.5rem;
  margin-bottom: 1.25rem;
  transition: transform var(--transition-normal);
}

.infographic-step-card:hover .infographic-step-icon {
  transform: scale(1.1);
}

.infographic-step-card.color-cyan .infographic-step-icon { background: rgba(0, 181, 221, 0.08); color: #00b5dd; }
.infographic-step-card.color-blue .infographic-step-icon { background: rgba(59, 130, 246, 0.08); color: #3b82f6; }
.infographic-step-card.color-purple .infographic-step-icon { background: rgba(120, 75, 209, 0.08); color: var(--brand-purple); }
.infographic-step-card.color-green .infographic-step-icon { background: rgba(16, 185, 129, 0.08); color: #10b981; }
.infographic-step-card.color-orange .infographic-step-icon { background: rgba(249, 115, 22, 0.08); color: #f97316; }

.infographic-step-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.infographic-step-desc {
  font-size: 0.78rem;
  color: var(--text-secondary);
  margin-bottom: 0;
  line-height: 1.45;
}

/* Horizontal connecting line overlay */
.infographic-path-line {
  position: absolute;
  top: 55%;
  left: 6%;
  right: 6%;
  height: 2px;
  background: repeating-linear-gradient(to right, var(--border-color) 0px, var(--border-color) 8px, transparent 8px, transparent 16px);
  z-index: 1;
  transform: translateY(-50%);
}

@media (max-width: 991.98px) {
  .infographic-path-line {
    display: none;
  }
}

/* Subpage Mini-Infographics inside Mockups */
.mini-info-flow {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0.25rem;
}

.mini-info-step {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 0.65rem 0.85rem;
  transition: all var(--transition-normal);
  text-align: left;
}

.mini-info-step:hover {
  transform: translateX(4px);
  border-color: var(--brand-purple);
  box-shadow: 0 4px 12px rgba(120, 75, 209, 0.06);
}

.mini-info-icon-badge {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.mini-info-step.cyan .mini-info-icon-badge { background: rgba(0, 181, 221, 0.08); color: #00b5dd; }
.mini-info-step.blue .mini-info-icon-badge { background: rgba(59, 130, 246, 0.08); color: #3b82f6; }
.mini-info-step.purple .mini-info-icon-badge { background: rgba(120, 75, 209, 0.08); color: var(--brand-purple); }
.mini-info-step.green .mini-info-icon-badge { background: rgba(16, 185, 129, 0.08); color: #10b981; }
.mini-info-step.orange .mini-info-icon-badge { background: rgba(249, 115, 22, 0.08); color: #f97316; }

.mini-info-step-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.05rem;
}

.mini-info-step-desc {
  font-size: 0.7rem;
  color: var(--text-secondary);
  margin-bottom: 0;
  line-height: 1.3;
}

.mini-info-divider-arrow {
  text-align: center;
  color: var(--text-secondary);
  font-size: 0.75rem;
  margin: -0.35rem 0;
  opacity: 0.6;
}

/* Staggered Staggered reviews/testimonials */
.testimonial_iecs {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 2rem;
  margin-bottom: 2.5rem;
  transition: all var(--transition-normal);
  position: relative;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.testimonial_iecs:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px -10px rgba(120, 75, 209, 0.1);
}

.testimonial_iecs .description p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  font-style: italic;
}

.testimonial_iecs .text-end.fw-bold {
  color: var(--text-primary);
  font-size: 0.85rem;
  font-style: normal;
  margin-top: 1rem;
}

.testimonial_iecs.border-blue { border-left: 4px solid #3b82f6 !important; }
.testimonial_iecs.border-green { border-left: 4px solid #10b981 !important; }
.testimonial_iecs.border-orange { border-left: 4px solid #f97316 !important; }
.testimonial_iecs.border-light-blue { border-left: 4px solid #00b5dd !important; }

@media (max-width: 767.98px) {
  .testimonial_iecs {
    width: 100% !important;
  }
  .d-flex.justify-content-start[style*="margin-top"],
  .d-flex.justify-content-end[style*="margin-top"] {
    margin-top: 0 !important;
  }
}

/* ------------------------------------------------------------------------
   SERVICES TABBED & SIDEBAR VISUAL LAYOUT (VIKRA STYLE)
   ------------------------------------------------------------------------ */

/* Custom Sidebar Nav */
.custom-sidebar-nav .nav-link {
  color: var(--text-secondary);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.8rem 1.2rem;
  border-radius: 12px;
  background: transparent;
  border: 1px solid transparent;
  transition: all var(--transition-normal);
  text-align: left;
}

.custom-sidebar-nav .nav-link i {
  font-size: 1.1rem;
  color: var(--text-secondary);
  transition: color var(--transition-normal);
}

.custom-sidebar-nav .nav-link:hover {
  color: var(--brand-purple);
  background: rgba(120, 75, 209, 0.04);
}

.custom-sidebar-nav .nav-link.active {
  color: #ffffff !important;
  background: var(--brand-purple) !important;
  box-shadow: 0 4px 15px rgba(120, 75, 209, 0.2);
}

.custom-sidebar-nav .nav-link.active i {
  color: #ffffff !important;
}

/* Hide scrollbar on mobile horizontal navigation */
.scroll-x-nowrap::-webkit-scrollbar {
  display: none;
}
.scroll-x-nowrap {
  white-space: nowrap;
}

/* Services Visual Blocks themed colors */
.services-visual-block {
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
}
.services-visual-block.color-cyan {
  background: linear-gradient(135deg, #e0f2fe, #f0f9ff);
  border: 1px solid #bae6fd;
}
.services-visual-block.color-blue {
  background: linear-gradient(135deg, #dbeafe, #eff6ff);
  border: 1px solid #bfdbfe;
}
.services-visual-block.color-purple {
  background: linear-gradient(135deg, #f3e8ff, #faf5ff);
  border: 1px solid #e9d5ff;
}
.services-visual-block.color-green {
  background: linear-gradient(135deg, #d1fae5, #ecfdf5);
  border: 1px solid #a7f3d0;
}
.services-visual-block.color-orange {
  background: linear-gradient(135deg, #ffedd5, #fff7ed);
  border: 1px solid #fed7aa;
}

/* Theme adjustments for steps inside visual block cards */
.mini-info-step.light {
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
}
.mini-info-step.light .mini-info-icon-badge {
  background: rgba(255, 255, 255, 0.15) !important;
  color: #ffffff !important;
}
.mini-info-step.light .mini-info-step-title {
  color: #ffffff !important;
}
.mini-info-step.light .mini-info-step-desc {
  color: rgba(255, 255, 255, 0.8) !important;
}

/* Visual color-specific buttons */
.text-cyan { color: #0ea5e9 !important; }
.text-blue { color: #3b82f6 !important; }
.text-purple { color: #8b5cf6 !important; }
.text-green { color: #10b981 !important; }
.text-orange { color: #f97316 !important; }

/* Custom Chosen Multiselect Style Upgrades */
.chosen-container-multi .chosen-choices {
  border: 1px solid var(--border-color) !important;
  background: var(--bg-card) !important;
  border-radius: 12px !important;
  padding: 0.35rem 0.75rem !important;
  min-height: 42px !important;
  box-shadow: none !important;
  transition: border-color var(--transition-fast) !important;
}
.chosen-container-active .chosen-choices {
  border-color: var(--brand-purple) !important;
  box-shadow: 0 0 0 3px rgba(120, 75, 209, 0.15) !important;
}
.chosen-container-multi .chosen-choices li.search-choice {
  background: rgba(120, 75, 209, 0.08) !important;
  border: 1px solid rgba(120, 75, 209, 0.2) !important;
  color: var(--brand-purple) !important;
  border-radius: 20px !important;
  padding: 6px 20px 6px 10px !important;
  font-size: 0.85rem !important;
  font-weight: 600 !important;
  box-shadow: none !important;
}
.chosen-container-multi .chosen-choices li.search-choice .search-choice-close {
  top: 9px !important;
  right: 6px !important;
  transition: opacity var(--transition-fast) !important;
}
.chosen-container .chosen-drop {
  background: var(--bg-card) !important;
  border: 1px solid var(--border-color) !important;
  border-radius: 12px !important;
  box-shadow: var(--shadow-lg) !important;
  margin-top: 5px !important;
  z-index: 1050 !important;
}
.chosen-container .chosen-results li.highlighted {
  background: var(--brand-purple) !important;
  background-image: none !important;
  color: #ffffff !important;
}
.chosen-container .chosen-results li.group-result {
  font-weight: 700 !important;
  color: var(--text-secondary) !important;
  font-size: 0.75rem !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
}
.chosen-container-multi .chosen-choices li.search-field input[type="text"] {
  color: var(--text-primary) !important;
  font-family: var(--font-body) !important;
}

/* Fix HTML5 required attribute validation for Chosen hidden fields */
select[multiple].chosen-select,
#demoSelection,
#contactSelection {
  display: block !important;
  position: absolute !important;
  clip: rect(0,0,0,0) !important;
  height: 1px !important;
  width: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  border: 0 !important;
}

/* Compact Product Features Grid */
.product-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.feature-chip {
  background: rgba(120, 75, 209, 0.04);
  border: 1px solid rgba(120, 75, 209, 0.08);
  border-radius: 12px;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: all var(--transition-fast);
}
[data-theme="dark"] .feature-chip {
  background: rgba(120, 75, 209, 0.02);
  border-color: rgba(255, 255, 255, 0.05);
}
.feature-chip:hover {
  background: rgba(120, 75, 209, 0.08);
  border-color: var(--brand-purple);
  transform: translateY(-2px);
}
.feature-chip i {
  font-size: 1.25rem;
}
.feature-chip span {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
}

/* CSS-based Live Mini Dashboard Preview */
.mini-dashboard-preview {
  background: var(--bg-card);
  width: 100%;
  height: 320px;
  border-radius: 12px;
  display: flex;
  overflow: hidden;
  font-family: var(--font-body);
}
.mini-db-sidebar {
  width: 60px;
  background: rgba(15, 23, 42, 0.03);
  border-right: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem 0;
  gap: 1.5rem;
}
[data-theme="dark"] .mini-db-sidebar {
  background: rgba(255, 255, 255, 0.02);
}
.mini-db-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(15, 23, 42, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 0.9rem;
}
[data-theme="dark"] .mini-db-icon {
  background: rgba(255, 255, 255, 0.05);
}
.mini-db-icon.active {
  background: var(--brand-purple);
  color: #ffffff;
}
.mini-db-main {
  flex-grow: 1;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.mini-db-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 0.75rem;
}
.mini-db-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.mini-db-badge {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25rem 0.6rem;
  border-radius: 20px;
}
.mini-db-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  flex-grow: 1;
}
.mini-db-card {
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 0.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.mini-db-card-label {
  font-size: 0.7rem;
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.mini-db-card-val {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-primary);
}
.mini-db-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.mini-db-list-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  padding: 0.4rem 0.6rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 6px;
}

/* Visual Column Chart */
.mini-db-chart {
  display: flex;
  align-items: flex-end;
  justify-content: space-around;
  height: 60px;
  padding-top: 10px;
}
.mini-db-bar {
  width: 16px;
  background: var(--brand-purple);
  border-radius: 4px 4px 0 0;
  transition: height 0.5s ease;
}
.mini-db-bar.color-green { background: #10b981; }
.mini-db-bar.color-blue { background: #3b82f6; }
.mini-db-bar.color-orange { background: #f97316; }
.mini-db-bar.color-info { background: #0ea5e9; }

/* Careers API Cards & Details UI Styling */
.white-card {
  display: flex;
  flex-direction: column;
  align-items: start;
  padding: 2.2rem;
  border-radius: 16px;
  background: var(--bg-card);
  text-decoration: none;
  color: var(--text-primary);
  height: 100%;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  z-index: 2;
}

.white-card img {
  height: 38px;
  width: auto;
  object-fit: contain;
  margin-bottom: 1.25rem;
  filter: grayscale(1) opacity(0.85);
  transition: filter 0.3s ease;
}

.card:hover .white-card img {
  filter: grayscale(0) opacity(1);
}

.white-card .category {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text-primary) !important;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.btn-outline-orange {
  border: 1px solid var(--brand-purple) !important;
  color: var(--brand-purple) !important;
  background: transparent !important;
  font-weight: 600 !important;
  font-size: 0.8rem !important;
  padding: 0.45rem 1.25rem !important;
  border-radius: 8px !important;
  transition: all var(--transition-fast) !important;
  margin-top: auto;
}

.btn-outline-orange:hover {
  background: var(--brand-purple) !important;
  color: white !important;
  box-shadow: 0 4px 12px rgba(120, 75, 209, 0.15) !important;
  transform: translateY(-1px);
}

/* Orange border decorative wrapper rules */
.card {
  position: relative;
  border: 1px solid var(--border-color) !important;
  background: var(--bg-card) !important;
  border-radius: 16px !important;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(120, 75, 209, 0.25) !important;
}

.orange-border {
  position: absolute;
  background: var(--brand-gradient);
  z-index: 3;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card:hover .orange-border {
  opacity: 1;
}

.orange-top {
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
}

.orange-left {
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
}

/* Job Details Layout */
.jdheading {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2.2rem;
  color: var(--text-primary);
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.applybtn {
  display: inline-block;
  background: var(--brand-purple) !important;
  color: white !important;
  font-weight: 600 !important;
  font-size: 0.85rem !important;
  padding: 0.65rem 2rem !important;
  border-radius: 8px !important;
  text-decoration: none !important;
  cursor: pointer !important;
  transition: all var(--transition-fast) !important;
  border: 1px solid var(--brand-purple) !important;
  box-shadow: 0 4px 12px rgba(120, 75, 209, 0.15) !important;
}

.applybtn:hover {
  background: var(--brand-purple-hover) !important;
  border-color: var(--brand-purple-hover) !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 6px 18px rgba(120, 75, 209, 0.25) !important;
}

.jdcard {
  background: var(--bg-card) !important;
  border: 1px solid var(--border-color) !important;
  border-radius: 16px !important;
  color: var(--text-secondary) !important;
  padding: 2.5rem !important;
}

.jdcard h5 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
}

.jdcard p {
  font-size: 0.92rem;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.jdcard p i {
  color: var(--brand-purple);
}

/* ==========================================================================
   FULL-COVER TRANSPARENT CHARACTER HERO ILLUSTRATIONS & FLOATING NODES
   ========================================================================== */
.tech-illustration-wrapper {
  position: relative;
  width: 100%;
  max-width: 400px;
  height: 280px;
  margin: 0 auto;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.tech-hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: auto;
}

[data-theme="dark"] .tech-illustration-wrapper {
  background: transparent;
  border: none;
  box-shadow: none;
}

.hero-illustration-img {
  width: 100%;
  max-width: 320px;
  max-height: 280px;
  object-fit: contain;
  mix-blend-mode: multiply;
  z-index: 2;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

[data-theme="dark"] .hero-illustration-img {
  mix-blend-mode: screen;
  filter: invert(1) drop-shadow(0 10px 25px rgba(56, 189, 248, 0.15));
}

.tech-illustration-wrapper:hover .hero-illustration-img {
  transform: translateY(-6px) scale(1.03);
}

/* Floating feature widget nodes (Square-rounded style matching Zoho UI) */
.floating-feature-node {
  position: absolute;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--brand-purple);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  box-shadow: var(--shadow-sm);
  z-index: 3;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-theme="dark"] .floating-feature-node {
  background: #1e293b;
  border-color: rgba(56, 189, 248, 0.15);
  color: #38bdf8;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.floating-feature-node:hover {
  border-color: var(--brand-purple);
  color: white;
  background: var(--brand-purple);
  box-shadow: 0 0 12px rgba(124, 58, 237, 0.3);
  transform: translateY(-3px) scale(1.12);
}

[data-theme="dark"] .floating-feature-node:hover {
  border-color: #38bdf8;
  color: #0f172a;
  background: #38bdf8;
  box-shadow: 0 0 12px rgba(56, 189, 248, 0.35);
}

/* Positioning them cleanly around the large transparent illustration */
.fn-1 {
  top: 15px;
  left: -5px;
  animation: float-f1 4.5s infinite ease-in-out;
}
.fn-2 {
  top: 25px;
  right: -5px;
  animation: float-f2 5s infinite ease-in-out;
}
.fn-3 {
  bottom: 25px;
  left: -5px;
  animation: float-f3 4.8s infinite ease-in-out;
}
.fn-4 {
  bottom: 15px;
  right: -5px;
  animation: float-f4 5.2s infinite ease-in-out;
}

@keyframes float-f1 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
@keyframes float-f2 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes float-f3 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}
@keyframes float-f4 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(7px); }
}

.happy-face-badge {
  position: absolute;
  top: 5px;
  right: 15px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #eab308;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  z-index: 4;
  box-shadow: 0 3px 8px rgba(234, 179, 8, 0.4);
  animation: float-smiley 3.5s infinite ease-in-out;
}

@keyframes float-smiley {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-3px) scale(1.05); }
}



/* Interactive Hover Cards inside tabs (Light Mode corporate cards) */
.interactive-problem-card, .interactive-solution-card {
  background: #ffffff !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  border-radius: 16px;
  padding: 20px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  text-align: left;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03) !important;
}
.interactive-problem-card:hover {
  background: #fef2f2 !important; /* light red tint */
  border-color: rgba(239, 68, 68, 0.4) !important;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(239, 68, 68, 0.08) !important;
}
.interactive-solution-card:hover {
  background: #f0fdf4 !important; /* light green tint */
  border-color: rgba(34, 197, 94, 0.4) !important;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(34, 197, 94, 0.08) !important;
}

/* Icons styling */
.interactive-card-icon {
  font-size: 1.5rem;
  margin-bottom: 12px;
  display: inline-block;
}
.interactive-problem-card .interactive-card-icon {
  color: #ef4444 !important; /* corporate red */
}
.interactive-solution-card .interactive-card-icon {
  color: #22c55e !important; /* corporate green */
}

/* Force dark typography inside light visual blocks for high contrast (excluding interactive elements) */
.services-visual-block h4,
.services-visual-block h5,
.services-visual-block h6,
.services-visual-block p:not(.btn):not(.app-store-badge),
.services-visual-block span:not(.btn):not(.badge):not(.app-store-badge):not(a):not(button),
.services-visual-block strong:not(.btn),
.services-visual-block li {
  color: #1e293b !important;
}
.services-visual-block .text-white-50,
.services-visual-block p.text-white-50,
.services-visual-block span.text-white-50,
.services-visual-block p.text-white {
  color: #475569 !important; /* slate subtext */
}

/* Light visual block button outline theme overrides */
.services-visual-block.color-cyan .btn-outline-light {
  color: #0284c7 !important;
  border-color: #0284c7 !important;
}
.services-visual-block.color-cyan .btn-outline-light:hover {
  color: #ffffff !important;
  background-color: #0284c7 !important;
  border-color: #0284c7 !important;
}

.services-visual-block.color-blue .btn-outline-light {
  color: #1d4ed8 !important;
  border-color: #1d4ed8 !important;
}
.services-visual-block.color-blue .btn-outline-light:hover {
  color: #ffffff !important;
  background-color: #1d4ed8 !important;
  border-color: #1d4ed8 !important;
}

.services-visual-block.color-purple .btn-outline-light {
  color: #6d28d9 !important;
  border-color: #6d28d9 !important;
}
.services-visual-block.color-purple .btn-outline-light:hover {
  color: #ffffff !important;
  background-color: #6d28d9 !important;
  border-color: #6d28d9 !important;
}

/* Google Play Badge colors restoration */
.services-visual-block .app-store-badge span {
  color: #ffffff !important;
}
.services-visual-block .app-store-badge span.d-block {
  color: rgba(255, 255, 255, 0.7) !important;
}

/* Product list checkmark icons restoration for high visibility */
.services-visual-block.color-green .bi-check-circle-fill {
  color: #10b981 !important; /* Corporate emerald green */
}
.services-visual-block.color-orange .bi-check-circle-fill {
  color: #f97316 !important; /* Corporate orange */
}

/* Light mockup card container */
.services-visual-block .subpage-mockup-card {
  background: rgba(255, 255, 255, 0.7) !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  backdrop-filter: blur(10px);
  border-radius: 16px;
}

/* Scroll progress indicator */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--brand-purple);
  width: 0;
  z-index: 9999;
}

/* Services subpage hero subtext */
.hero-subtext {
  max-width: 600px;
}

/* Mobile top navigation panel */
.sticky-top-mobile-nav {
  position: sticky;
  top: 70px;
  z-index: 99;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border-color);
  padding: 0.5rem 0;
  margin-left: -1rem;
  margin-right: -1rem;
  padding-left: 1rem;
  padding-right: 1rem;
}

/* No-scrollbar horizontal nav utility */
.no-scrollbar {
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.no-scrollbar::-webkit-scrollbar {
  display: none;
}

/* Sticky top sidebar alignment */
.sticky-top-sidebar {
  position: sticky;
  top: 110px;
  z-index: 10;
}

/* Sidebar uppercase sub-heading */
.sidebar-heading {
  font-size: 0.75rem;
  letter-spacing: 1px;
}

/* Line height typography spacing helper */
.line-height-relaxed {
  line-height: 1.5;
}

/* Responsive vertical divider for services dual columns */
@media (min-width: 992px) {
  .border-end-lg {
    border-right: 1px solid rgba(0, 0, 0, 0.08) !important;
  }
}

/* Team CTA Section - Split 50/50 Layout (Monday.com Inspired) */
.team-cta-section-split {
  overflow: hidden;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}
.team-cta-split-left {
  background: #f0f9ff; /* Light corporate blue background */
  padding-top: 48px; /* Reduced by 40% (from 80px) */
  padding-bottom: 48px; /* Reduced by 40% (from 80px) */
  /* Calculate left padding dynamically based on container bounds to keep content aligned to page grid */
  padding-left: calc((100vw - 1320px) / 2 + 15px);
  padding-right: 80px;
}
/* Adjust dynamic padding for smaller Bootstrap container breakpoints */
@media (max-width: 1399.98px) {
  .team-cta-split-left {
    padding-left: calc((100vw - 1140px) / 2 + 15px);
  }
}
@media (max-width: 1199.98px) {
  .team-cta-split-left {
    padding-left: calc((100vw - 960px) / 2 + 15px);
  }
}
@media (max-width: 991.98px) {
  .team-cta-split-left {
    padding: 36px 30px; /* Reduced by 40% (from 60px) */
  }
}
.team-cta-split-right {
  min-height: 288px; /* Reduced by 40% (from 480px) */
}
.team-cta-split-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 991.98px) {
  .team-cta-split-right {
    min-height: 210px; /* Reduced by 40% (from 350px) */
  }
}

/* Distribution Infographic helper styles */
.border-orange-subtle {
  border-color: rgba(249, 115, 22, 0.2) !important;
}
.bg-orange {
  background-color: #f97316 !important;
}
.distribution-infographic p {
  line-height: 1.4 !important;
}


/* ==========================================================================
   EXTRACTED INLINE STYLES ELIMINATION (AUTOMATED)
   ========================================================================== */
.se-index-1 { position: fixed; top: 0; left: 0; height: 3px; background: var(--brand-purple); width: 0; z-index: 9999; }
.se-index-2 { font-size: 0.9rem; letter-spacing: 0.05em; color: var(--brand-purple); }
.se-index-3 { font-family: var(--font-heading); font-size: 3rem; font-weight: 800; line-height: 1.15; letter-spacing: -0.03em; margin-bottom: 1.5rem; }
.se-index-4 { font-size: 1rem; line-height: 1.3; margin-bottom: 1.4rem; max-width: 560px; }
.se-index-5 { max-width: 480px; }
.se-index-6 { color: #7952b3; }
.se-index-7 { padding-bottom: 0.45rem; }
.se-index-8 { font-size: 0.72rem; font-weight: 700; }
.se-index-9 { line-height: 1; }
.se-index-10 { padding: 0; }
.se-index-11 { color: #784bd1; }
.se-index-12 { font-size: 0.85rem; }
.se-index-13 { font-size: 0.85rem; }
.se-index-14 { padding: 0; }
.se-index-15 { color: #00c875; }
.se-index-16 { font-size: 0.85rem; }
.se-index-17 { font-size: 0.85rem; }
.se-index-18 { padding: 0; }
.se-index-19 { color: #fd7e14; }
.se-index-20 { font-size: 0.85rem; }
.se-index-21 { font-size: 0.85rem; }
.se-index-22 { padding: 0; }
.se-index-23 { color: #00b5dd; }
.se-index-24 { font-size: 0.85rem; }
.se-index-25 { font-size: 0.85rem; }
.se-index-26 { padding: 0; }
.se-index-27 { background: #ef4444; color: #fff; }
.se-index-28 { background: rgba(239, 68, 68, 0.1); color: #ef4444; }
.se-index-29 { font-size: 0.65rem; }
.se-index-30 { font-size: 0.65rem; }
.se-index-31 { color: #ef4444; }
.se-index-32 { background: rgba(239, 68, 68, 0.1); color: #ef4444; }
.se-index-33 { font-size: 0.85rem; }
.se-index-34 { font-size: 0.85rem; }
.se-index-35 { max-width: 600px; }
.se-index-36 { height: 28px; width: auto; object-fit: contain; }
.se-index-37 { animation-delay: 0s; }
.se-index-38 { animation-delay: 0.5s; }
.se-index-39 { animation-delay: 1.0s; }
.se-index-40 { animation-delay: 1.5s; }
.se-index-41 { animation-delay: 2.0s; }
.se-index-42 { animation-delay: 2.5s; }
.se-index-43 { animation-delay: 3.0s; }
.se-index-44 { animation-delay: 3.5s; }
.se-index-45 { z-index: 2; }
.se-index-46 { display: none; }
.se-index-47 { max-width: 650px; }
.se-index-48 { max-width: 650px; }
.se-index-49 { background: var(--bg-card); border: 1px solid var(--border-color) !important; }
.se-index-50 { width:64px; height:64px; font-size:2rem; border-radius:16px; }
.se-index-51 { background: rgba(59, 130, 246, 0.04); border: 1px solid var(--border-color); }
.se-index-52 { background: rgba(59, 130, 246, 0.04); border: 1px solid var(--border-color); }
.se-index-53 { background: rgba(59, 130, 246, 0.04); border: 1px solid var(--border-color); }
.se-index-54 { background: rgba(59, 130, 246, 0.04); border: 1px solid var(--border-color); }
.se-index-55 { background: rgba(59, 130, 246, 0.04); border: 1px solid var(--border-color); }
.se-index-56 { background: rgba(59, 130, 246, 0.04); border: 1px solid var(--border-color); }
.se-index-57 { background: var(--bg-card); border: 1px solid var(--border-color) !important; }
.se-index-58 { width:64px; height:64px; font-size:2rem; border-radius:16px; }
.se-index-59 { background: rgba(16, 185, 129, 0.04); border: 1px solid var(--border-color); }
.se-index-60 { background: rgba(16, 185, 129, 0.04); border: 1px solid var(--border-color); }
.se-index-61 { background: rgba(16, 185, 129, 0.04); border: 1px solid var(--border-color); }
.se-index-62 { background: rgba(16, 185, 129, 0.04); border: 1px solid var(--border-color); }
.se-index-63 { background: rgba(16, 185, 129, 0.04); border: 1px solid var(--border-color); }
.se-index-64 { background: var(--bg-card); border: 1px solid var(--border-color) !important; }
.se-index-65 { width:64px; height:64px; font-size:2rem; border-radius:16px; }
.se-index-66 { background: rgba(120, 75, 209, 0.04); border: 1px solid var(--border-color); }
.se-index-67 { background: rgba(120, 75, 209, 0.04); border: 1px solid var(--border-color); }
.se-index-68 { background: rgba(120, 75, 209, 0.04); border: 1px solid var(--border-color); }
.se-index-69 { background: rgba(120, 75, 209, 0.04); border: 1px solid var(--border-color); }
.se-index-70 { background: rgba(120, 75, 209, 0.04); border: 1px solid var(--border-color); }
.se-index-71 { background: var(--bg-card); border: 1px solid var(--border-color) !important; }
.se-index-72 { width:64px; height:64px; font-size:2rem; border-radius:16px; }
.se-index-73 { background: rgba(239, 68, 68, 0.04); border: 1px solid var(--border-color); }
.se-index-74 { background: rgba(239, 68, 68, 0.04); border: 1px solid var(--border-color); }
.se-index-75 { background: rgba(239, 68, 68, 0.04); border: 1px solid var(--border-color); }
.se-index-76 { background: rgba(239, 68, 68, 0.04); border: 1px solid var(--border-color); }
.se-index-77 { background: var(--bg-card); border: 1px solid var(--border-color) !important; }
.se-index-78 { width:64px; height:64px; font-size:2rem; border-radius:16px; }
.se-index-79 { background: rgba(249, 115, 22, 0.04); border: 1px solid var(--border-color); }
.se-index-80 { background: rgba(249, 115, 22, 0.04); border: 1px solid var(--border-color); }
.se-index-81 { background: rgba(249, 115, 22, 0.04); border: 1px solid var(--border-color); }
.se-index-82 { background: rgba(249, 115, 22, 0.04); border: 1px solid var(--border-color); }
.se-index-83 { background: var(--bg-card); border: 1px solid var(--border-color) !important; }
.se-index-84 { width:64px; height:64px; font-size:2rem; border-radius:16px; }
.se-index-85 { background: rgba(20, 184, 166, 0.04); border: 1px solid var(--border-color); }
.se-index-86 { background: rgba(20, 184, 166, 0.04); border: 1px solid var(--border-color); }
.se-index-87 { background: rgba(20, 184, 166, 0.04); border: 1px solid var(--border-color); }
.se-index-88 { background: rgba(20, 184, 166, 0.04); border: 1px solid var(--border-color); }
.se-index-89 { background: var(--bg-card); border: 1px solid var(--border-color) !important; }
.se-index-90 { width:64px; height:64px; font-size:2rem; border-radius:16px; }
.se-index-91 { background: rgba(6, 182, 212, 0.04); border: 1px solid var(--border-color); }
.se-index-92 { background: rgba(6, 182, 212, 0.04); border: 1px solid var(--border-color); }
.se-index-93 { background: rgba(6, 182, 212, 0.04); border: 1px solid var(--border-color); }
.se-index-94 { background: rgba(6, 182, 212, 0.04); border: 1px solid var(--border-color); }
.se-index-95 { max-width: 650px; }
.se-index-96 { display: none; }
.se-index-97 { background: #f0fdf4; }
.se-index-98 { color: #10b981; }
.se-index-99 { color: #064e3b; }
.se-index-100 { color: #047857; margin-bottom: 1rem; }
.se-index-101 { color: #10b981 !important; }
.se-index-102 { height: 35px; object-fit: contain; }
.se-index-103 { background: #eff6ff; }
.se-index-104 { color: #2563eb; }
.se-index-105 { color: #1d4ed8; }
.se-index-106 { color: #1e3a8a; }
.se-index-107 { color: #1d4ed8 !important; }
.se-index-108 { height: 24px; object-fit: contain; }
.se-index-109 { background: #fff5f5; }
.se-index-110 { color: #ef4444; }
.se-index-111 { color: #7f1d1d; }
.se-index-112 { color: #b91c1c; margin-bottom: 1rem; }
.se-index-113 { color: #ef4444 !important; }
.se-index-114 { height: 25px; object-fit: contain; }
.se-index-115 { max-width: 600px; }
.se-index-116 { letter-spacing: 0.1em; }
.se-index-117 { object-fit: contain; max-width: 80px; }
.se-index-118 { object-fit: contain; max-width: 110px; }
.se-index-119 { object-fit: contain; max-width: 80px; }
.se-index-120 { object-fit: contain; max-width: 80px; }
.se-index-121 { font-size: 1.15rem; }
.se-index-122 { background: var(--bg-card); border-top: 1px solid var(--border-color); }
.se-index-123 { max-width: 580px; }
.se-index-124 { background: var(--bg-card); border: 1px solid var(--border-color) !important; }
.se-index-125 { background: transparent; color: var(--text-primary); font-size: 1.05rem; box-shadow: none; }
.se-index-126 { font-size: 0.95rem; line-height: 1.6; }
.se-index-127 { background: var(--bg-card); border: 1px solid var(--border-color) !important; }
.se-index-128 { background: transparent; color: var(--text-primary); font-size: 1.05rem; box-shadow: none; }
.se-index-129 { font-size: 0.95rem; line-height: 1.6; }
.se-index-130 { background: var(--bg-card); border: 1px solid var(--border-color) !important; }
.se-index-131 { background: transparent; color: var(--text-primary); font-size: 1.05rem; box-shadow: none; }
.se-index-132 { font-size: 0.95rem; line-height: 1.6; }
.se-index-133 { background: var(--bg-card); border: 1px solid var(--border-color) !important; }
.se-index-134 { background: transparent; color: var(--text-primary); font-size: 1.05rem; box-shadow: none; }
.se-index-135 { font-size: 0.95rem; line-height: 1.6; }
.se-index-136 { background: var(--bg-card); border: 1px solid var(--border-color) !important; }
.se-index-137 { background: transparent; color: var(--text-primary); font-size: 1.05rem; box-shadow: none; }
.se-index-138 { font-size: 0.95rem; line-height: 1.6; }
.se-index-139 { min-height: 250px; }
.se-index-140 { object-fit: cover; }
.se-index-141 { object-fit: cover; }
.se-index-142 { background: var(--bg-card); color: var(--text-primary); }
.se-index-143 { line-height: 1.6; font-size: 0.88rem; }
.se-products-1 { position: fixed; top: 0; left: 0; height: 3px; background: var(--brand-purple); width: 0; z-index: 9999; }
.se-products-2 { max-width: 600px; }
.se-products-3 { position: sticky; top: 70px; z-index: 99; background: var(--bg-card); border-bottom: 1px solid var(--border-color); padding: 0.5rem 0; margin-left: -1rem; margin-right: -1rem; padding-left: 1rem; padding-right: 1rem; }
.se-products-4 { scrollbar-width: none; -ms-overflow-style: none; }
.se-products-5 { position: sticky; top: 110px; z-index: 10; }
.se-products-6 { font-size: 0.75rem; letter-spacing: 1px; }
.se-products-7 { font-size: 0.75rem; letter-spacing: 1px; }
.se-products-8 { line-height: 1.5; }
.se-products-9 { object-fit: contain; }
.se-products-10 { font-size: 0.8rem; }
.se-products-11 { font-size: 0.8rem; }
.se-products-12 { font-size: 0.65rem; border-color: rgba(255,255,255,0.15) !important; }
.se-products-13 { line-height: 1.1; }
.se-products-14 { font-size: 0.45rem; opacity: 0.7; }
.se-products-15 { color: #fff; }
.se-products-16 { max-height: 280px; object-fit: contain; background: rgba(255,255,255,0.1); backdrop-filter: blur(10px); padding: 8px; }
.se-products-17 { font-size: 0.75rem; letter-spacing: 1px; }
.se-products-18 { line-height: 1.5; }
.se-products-19 { object-fit: contain; }
.se-products-20 { font-size: 0.8rem; }
.se-products-21 { font-size: 0.8rem; }
.se-products-22 { max-height: 280px; object-fit: contain; background: rgba(255,255,255,0.1); backdrop-filter: blur(10px); padding: 8px; }
.se-products-23 { font-size: 0.75rem; letter-spacing: 1px; }
.se-products-24 { line-height: 1.5; }
.se-products-25 { object-fit: contain; }
.se-products-26 { font-size: 0.8rem; }
.se-products-27 { font-size: 0.8rem; }
.se-products-28 { max-height: 280px; object-fit: contain; background: rgba(255,255,255,0.1); backdrop-filter: blur(10px); padding: 8px; }
.se-products-29 { font-size: 0.75rem; letter-spacing: 1px; }
.se-products-30 { line-height: 1.5; }
.se-products-31 { max-height: 280px; object-fit: contain; background: rgba(255,255,255,0.1); backdrop-filter: blur(10px); padding: 8px; }
.se-products-32 { font-size: 0.75rem; letter-spacing: 1px; }
.se-products-33 { line-height: 1.5; }
.se-products-34 { object-fit: contain; }
.se-products-35 { background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(10px); border-color: rgba(0,0,0,0.08) !important; }
.se-products-36 { width: 24px; height: 24px; margin-left: -17px; box-shadow: 0 0 10px rgba(249, 115, 22, 0.4); }
.se-products-37 { font-size: 0.75rem; }
.se-products-38 { font-size: 0.65rem; }
.se-products-39 { font-size: 0.75rem; }
.se-products-40 { width: 24px; height: 24px; margin-left: -17px; box-shadow: 0 0 10px rgba(249, 115, 22, 0.4); }
.se-products-41 { font-size: 0.75rem; }
.se-products-42 { font-size: 0.65rem; }
.se-products-43 { font-size: 0.75rem; }
.se-products-44 { width: 24px; height: 24px; margin-left: -17px; box-shadow: 0 0 10px rgba(16, 185, 129, 0.4); }
.se-products-45 { font-size: 0.8rem; }
.se-products-46 { font-size: 0.65rem; }
.se-products-47 { font-size: 0.75rem; }
.se-products-48 { font-family: var(--font-heading); font-size: 2.5rem; letter-spacing: -0.02em; line-height: 1.1; }
.se-products-49 { font-size: 1.05rem; line-height: 1.6; max-width: 540px; }
.se-services-1 { font-size: 0.75rem; letter-spacing: 1px; }
.se-services-2 { font-size: 0.75rem; letter-spacing: 1px; }
.se-services-3 { font-size: 0.75rem; letter-spacing: 1px; }
.se-services-4 { font-size: 0.75rem; letter-spacing: 1px; }
.se-services-5 { font-family: var(--font-heading); font-size: 2.5rem; letter-spacing: -0.02em; line-height: 1.1; }
.se-services-6 { font-size: 1.05rem; line-height: 1.6; max-width: 540px; }
.se-careers-1 { position: fixed; top: 0; left: 0; height: 3px; background: var(--brand-purple); width: 0; z-index: 9999; }
.se-careers-2 { max-width: 600px; }
.se-careers-3 { background: var(--bg-card); border-color: var(--border-color) !important; box-shadow: var(--shadow-sm); transition: transform 0.3s; }
.se-careers-4 { background: rgba(120,75,209,0.1); color: var(--color-primary); }
.se-careers-5 { font-size: 1.05rem; }
.se-careers-6 { background: var(--bg-card); border-color: var(--border-color) !important; box-shadow: var(--shadow-sm); transition: transform 0.3s; }
.se-careers-7 { background: rgba(46,204,113,0.1); color: #2ecc71; }
.se-careers-8 { font-size: 1.05rem; }
.se-careers-9 { background: var(--bg-card); border-color: var(--border-color) !important; box-shadow: var(--shadow-sm); transition: transform 0.3s; }
.se-careers-10 { background: rgba(230,126,34,0.1); color: #e67e22; }
.se-careers-11 { font-size: 1.05rem; }
.se-careers-12 { max-width: 600px; }
.se-contact-1 { position: fixed; top: 0; left: 0; height: 3px; background: var(--brand-purple); width: 0; z-index: 9999; }
.se-contact-2 { max-width: 600px; }
.se-contact-3 { max-height: 280px; object-fit: contain; }
.se-contact-4 { background: var(--bg-card); border: 1px solid var(--border-color); box-shadow: var(--shadow-sm); }
.se-contact-5 { height:100px; }
.se-contact-6 { display:none; }
.se-contact-7 { display:none; }
.se-contact-8 { opacity: 0.08; }
.se-contact-9 { opacity: 0.08; }
.se-blog-1 { position: fixed; top: 0; left: 0; height: 3px; background: var(--brand-purple); width: 0; z-index: 9999; }
.se-blog-2 { max-width: 600px; }
.se-blog-3 { font-size: 2.5rem; line-height: 1.2; }
.se-blog-4 { height: 320px; background: linear-gradient(135deg, #a855f7 0%, #0056d2 100%); }
.se-blog-5 { line-height: 1.7; max-width: 720px; }
.se-blog-6 { font-size:0.75rem; }
.se-blog-7 { font-size:0.75rem; }
.se-blog-8 { font-size:0.75rem; }
.se-blog-9 { font-size:0.75rem; }
.se-blog-10 { font-size:0.75rem; }
.se-blog-11 { font-size:0.75rem; }
.se-case-studies-1 { margin-top: 76px; }
.se-case-studies-2 { top: 110px; z-index: 2; }
.se-case-studies-3 { width: 100%; object-fit: cover; max-height: 450px; }
.se-case-studies-4 { top: 110px; z-index: 2; }
.se-case-studies-5 { width: 100%; object-fit: cover; max-height: 450px; }
.se-case-studies-6 { top: 110px; z-index: 2; }
.se-case-studies-7 { width: 100%; object-fit: cover; max-height: 450px; }
.se-company-1 { position: fixed; top: 0; left: 0; height: 3px; background: var(--brand-purple); width: 0; z-index: 9999; }
.se-company-2 { max-width: 600px; }
.se-company-3 { background: var(--bg-card); border: 1px solid var(--border-color); box-shadow: var(--shadow-sm); }
.se-company-4 { border: 1px solid var(--border-color); }
.se-company-5 { border: 1px solid var(--border-color); }
.se-company-6 { background: var(--bg-card); border: 1px solid var(--border-color); box-shadow: var(--shadow-sm); }
.se-company-7 { font-size: 0.7rem; letter-spacing: 0.05em; }
.se-company-8 { font-size:0.65rem; letter-spacing:0.05em; }
.se-company-9 { font-size:0.85rem; }
.se-company-10 { font-size:0.75rem; }
.se-company-11 { background: var(--bg-card); border: 1px solid var(--border-color); box-shadow: var(--shadow-sm); }
.se-company-12 { font-size: 0.7rem; letter-spacing: 0.05em; }
.se-company-13 { width: 40px; height: 40px; }
.se-company-14 { font-size:0.95rem; }
.se-company-15 { width: 40px; height: 40px; }
.se-company-16 { font-size:0.95rem; }
.se-company-17 { width: 40px; height: 40px; }
.se-company-18 { font-size:0.95rem; }
.se-company-19 { max-width: 600px; }
.se-company-20 { max-width: 500px; }
.se-company-21 { max-width: 500px; }
.se-company-22 { max-width: 820px; }
.se-company-23 { bottom: -55px; }
.se-company-24 { background-color: var(--brand-purple); width: 10px; height: 10px; border-radius: 50%; border: none; opacity: 0.4; transition: opacity 0.2s; }
.se-company-25 { background-color: var(--brand-purple); width: 10px; height: 10px; border-radius: 50%; border: none; opacity: 0.4; transition: opacity 0.2s; }
.se-company-26 { background-color: var(--brand-purple); width: 10px; height: 10px; border-radius: 50%; border: none; opacity: 0.4; transition: opacity 0.2s; }
.se-company-27 { background-color: var(--brand-purple); width: 10px; height: 10px; border-radius: 50%; border: none; opacity: 0.4; transition: opacity 0.2s; }
.se-company-28 { background-color: var(--brand-purple); width: 10px; height: 10px; border-radius: 50%; border: none; opacity: 0.4; transition: opacity 0.2s; }
.se-company-29 { font-size: 6rem; top: -0.5rem; left: 1.5rem; opacity: 0.08; pointer-events: none; }
.se-company-30 { font-style: italic; line-height: 1.7; font-weight: 300; }
.se-company-31 { font-size: 6rem; top: -0.5rem; left: 1.5rem; opacity: 0.08; pointer-events: none; }
.se-company-32 { font-style: italic; line-height: 1.7; font-weight: 300; }
.se-company-33 { font-size:0.78rem; }
.se-company-34 { font-size: 6rem; top: -0.5rem; left: 1.5rem; opacity: 0.08; pointer-events: none; }
.se-company-35 { font-style: italic; line-height: 1.7; font-weight: 300; }
.se-company-36 { font-size:0.78rem; }
.se-company-37 { font-size: 6rem; top: -0.5rem; left: 1.5rem; opacity: 0.08; pointer-events: none; }
.se-company-38 { font-style: italic; line-height: 1.7; font-weight: 300; }
.se-company-39 { font-size: 6rem; top: -0.5rem; left: 1.5rem; opacity: 0.08; pointer-events: none; }
.se-company-40 { font-style: italic; line-height: 1.7; font-weight: 300; }
.se-company-41 { left: -90px; width: auto; opacity: 0.85; }
.se-company-42 { width: 46px; height: 46px; color: var(--brand-purple); transition: all 0.2s; }
.se-company-43 { right: -90px; width: auto; opacity: 0.85; }
.se-company-44 { width: 46px; height: 46px; color: var(--brand-purple); transition: all 0.2s; }
.se-company-45 { max-width: 680px; }
.se-company-46 { letter-spacing: 0.1em; }
.se-company-47 { object-fit: contain; max-width: 140px; }
.se-company-48 { font-size: 1.15rem; }
.se-company-49 { font-size:0.75rem; }
.se-company-50 { letter-spacing: 0.1em; }
.se-company-51 { object-fit: contain; max-width: 140px; }
.se-company-52 { font-size: 1.15rem; }
.se-company-53 { font-size:0.75rem; }
.se-company-54 { letter-spacing: 0.1em; }
.se-company-55 { object-fit: contain; max-width: 210px; }
.se-company-56 { font-size: 1.15rem; }
.se-company-57 { font-size:0.75rem; }
.se-company-58 { letter-spacing: 0.1em; }
.se-company-59 { object-fit: contain; max-width: 140px; }
.se-company-60 { font-size: 1.15rem; }
.se-company-61 { font-size:0.75rem; }
.se-company-62 { letter-spacing: 0.1em; }
.se-company-63 { object-fit: contain; max-width: 140px; }
.se-company-64 { font-size: 1.15rem; }
.se-company-65 { font-size:0.75rem; }
.se-company-66 { letter-spacing: 0.1em; }
.se-company-67 { height: 100px; }
.se-company-68 { font-size: 4rem; filter: drop-shadow(0 4px 10px rgba(120,75,209,0.15)); }
.se-company-69 { font-size: 1.15rem; }
.se-company-70 { font-size:0.75rem; }
.se-media-1 { position: fixed; top: 0; left: 0; height: 3px; background: var(--brand-purple); width: 0; z-index: 9999; }
.se-media-2 { max-width: 600px; }
.se-media-3 { display: none; }
.se-media-4 { background: var(--bg-card); border: 1px solid var(--border-color); }
.se-media-5 { width: 56px; height: 56px; border-radius: 50%; font-size: 1.25rem; background: linear-gradient(135deg, #784bd1 0%, #00b5dd 100%); }
.se-media-6 { font-family: var(--font-heading); font-size: 1.2rem; }
.se-media-7 { border-top-color: var(--border-color) !important; }
.se-media-8 { font-size: 1.05rem; }
.se-media-9 { font-size: 0.85rem; }
.se-media-10 { width: 34px; height: 34px; padding: 0; color: #1877f2; border-color: var(--border-color); }
.se-media-11 { width: 34px; height: 34px; padding: 0; color: #0a66c2; border-color: var(--border-color); }
.se-media-12 { width: 34px; height: 34px; padding: 0; color: #e1306c; border-color: var(--border-color); }
.se-media-13 { width: 34px; height: 34px; padding: 0; color: #ff0000; border-color: var(--border-color); }
.se-media-14 { background: var(--bg-card); border: 1px solid var(--border-color) !important; }
.se-media-15 { background: #fff; padding: 4px; }
.se-media-16 { font-size: 0.95rem; font-family: var(--font-heading); }
.se-media-17 { font-size: 0.8rem; }
.se-media-18 { border-top-color: var(--border-color) !important; }
.se-media-19 { background: var(--bg-card); border: 1px solid var(--border-color) !important; }
.se-media-20 { background: #fff; padding: 4px; }
.se-media-21 { font-size: 0.95rem; font-family: var(--font-heading); }
.se-media-22 { font-size: 0.8rem; }
.se-media-23 { border-top-color: var(--border-color) !important; }
.se-media-24 { background: #fff; padding: 4px; }
.se-media-25 { font-size: 0.95rem; font-family: var(--font-heading); }
.se-media-26 { font-size: 0.8rem; }
.se-media-27 { border-top-color: var(--border-color) !important; }
.se-media-28 { background: #fff; padding: 4px; }
.se-media-29 { font-size: 0.95rem; font-family: var(--font-heading); }
.se-media-30 { font-size: 0.8rem; }
.se-media-31 { border-top-color: var(--border-color) !important; }
.se-media-32 { background: var(--bg-card); border: 1px solid var(--border-color) !important; }
.se-media-33 { height: 340px; }
.se-media-34 { object-fit: cover; }
.se-media-35 { background: var(--bg-card); border: 1px solid var(--border-color) !important; }
.se-media-36 { border-bottom-color: var(--border-color) !important; }
.se-media-37 { height: 140px; }
.se-media-38 { object-fit: cover; }
.se-media-39 { background: rgba(15, 23, 42, 0.35); }
.se-media-40 { height: 140px; }
.se-media-41 { object-fit: cover; }
.se-media-42 { background: rgba(15, 23, 42, 0.35); }
.se-media-43 { height: 140px; }
.se-media-44 { object-fit: cover; }
.se-media-45 { background: rgba(15, 23, 42, 0.35); }
.se-media-46 { height: 140px; }
.se-media-47 { object-fit: cover; }
.se-media-48 { background: rgba(15, 23, 42, 0.35); }
.se-media-49 { height: 140px; }
.se-media-50 { object-fit: cover; }
.se-media-51 { background: rgba(15, 23, 42, 0.35); }
.se-media-52 { background: linear-gradient(135deg, rgba(120,75,209,0.05) 0%, rgba(0,181,221,0.05) 100%); border: 1px solid rgba(120,75,209,0.15) !important; }
.se-media-53 { top: 15px; right: 15px; }
.se-media-54 { font-size: 0.8rem; }
.se-media-55 { background: #fff; padding: 4px; }
.se-media-56 { font-size: 0.95rem; font-family: var(--font-heading); }
.se-media-57 { font-size: 0.8rem; }
.se-media-58 { border-top-color: var(--border-color) !important; }
.se-media-59 { background: #fff; padding: 4px; }
.se-media-60 { font-size: 0.95rem; font-family: var(--font-heading); }
.se-media-61 { pointer-events: none; }
.se-media-62 { width: 60px; height: 60px; z-index: 2; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.se-media-63 { font-size: 0.8rem; }
.se-media-64 { border-top-color: var(--border-color) !important; }
.se-media-65 { border-bottom-color: var(--border-color) !important; }
.se-media-66 { top: 100px; z-index: 10; }
.se-media-67 { background: var(--bg-card); border: 1px solid var(--border-color); }
.se-media-68 { font-size:0.85rem; }
.se-media-69 { font-size:0.85rem; }
.se-media-70 { font-size:0.85rem; }
.se-media-71 { background: var(--bg-card); border: 1px solid var(--border-color); }
.se-media-72 { background: rgba(15, 23, 42, 0.95); backdrop-filter: blur(10px); }
.se-media-73 { font-size: 2.5rem; z-index: 20; text-decoration: none; opacity: 0.6; }
.se-media-74 { font-size: 2.5rem; z-index: 20; text-decoration: none; opacity: 0.6; }
.se-media-75 { max-height: 75vh; object-fit: contain; }
.se-media-76 { max-height: 75vh; }
.se-privacy-policy-1 { position: fixed; top: 0; left: 0; height: 3px; background: var(--brand-purple); width: 0; z-index: 9999; }
.se-privacy-policy-2 { max-width: 600px; }
.se-privacy-policy-3 { top: 100px; z-index: 10; }
.se-privacy-policy-4 { letter-spacing: 0.05em; }
.se-privacy-policy-5 { font-size: 0.9rem; }
.se-privacy-policy-6 { background: var(--bg-card); }
.se-privacy-policy-7 { opacity: 0.08; }
.se-privacy-policy-8 { opacity: 0.08; }
.se-privacy-policy-9 { opacity: 0.08; }
.se-privacy-policy-10 { opacity: 0.08; }
.se-privacy-policy-11 { opacity: 0.08; }
.se-privacy-policy-12 { opacity: 0.08; }
.se-terms-of-service-1 { position: fixed; top: 0; left: 0; height: 3px; background: var(--brand-purple); width: 0; z-index: 9999; }
.se-terms-of-service-2 { max-width: 600px; }
.se-terms-of-service-3 { top: 100px; z-index: 10; }
.se-terms-of-service-4 { letter-spacing: 0.05em; }
.se-terms-of-service-5 { font-size: 0.9rem; }
.se-terms-of-service-6 { opacity: 0.08; }
.se-terms-of-service-7 { opacity: 0.08; }
.se-terms-of-service-8 { opacity: 0.08; }
.se-terms-of-service-9 { opacity: 0.08; }
.se-terms-of-service-10 { opacity: 0.08; }
.se-terms-of-service-11 { opacity: 0.08; }
.se-header-1 { height: 32px; width: auto; object-fit: contain; }
.se-header-2 { font-family: var(--font-heading); font-weight: 800; font-size: 1.4rem; letter-spacing: -0.02em; line-height: 1; }
.se-header-3 { font-size: 0.65rem; }
.se-header-4 { object-fit: contain; }
.se-header-5 { object-fit: contain; }
.se-header-6 { object-fit: contain; }
.se-header-7 { font-size: 0.65rem; }
.se-header-8 { font-size: 0.65rem; }
.se-header-9 { height: 24px; width: auto; object-fit: contain; }
.se-header-10 { font-size: 1.1rem; font-weight: 800; line-height: 1; }
.se-header-11 { font-size: 0.65rem; }
.se-header-12 { font-size: 0.65rem; letter-spacing: 0.05em; }
.se-header-13 { object-fit: contain; }
.se-header-14 { object-fit: contain; }
.se-header-15 { font-size: 0.65rem; letter-spacing: 0.05em; }
.se-header-16 { object-fit: contain; }
.se-header-17 { font-size: 0.65rem; letter-spacing: 0.05em; }
.se-header-18 { font-size: 0.65rem; }
.se-header-19 { font-size: 0.65rem; letter-spacing: 0.05em; }
.se-header-20 { font-size: 0.65rem; letter-spacing: 0.05em; }
.se-header-21 { font-size: 0.65rem; }
.se-header-22 { font-size: 0.65rem; letter-spacing: 0.05em; }
.se-header-23 { font-size: 0.65rem; letter-spacing: 0.05em; }
.se-header-24 { font-size: 0.65rem; letter-spacing: 0.05em; }
.se-header-25 { font-size: 0.65rem; letter-spacing: 0.05em; }
.se-footer-1 { height: 32px; width: auto; object-fit: contain; }
.se-footer-2 { font-size: 1.4rem; letter-spacing: -0.02em; line-height: 1; }
.se-footer-3 { color: var(--color-primary); }
.se-footer-4 { font-size: 0.9rem; }
.se-footer-5 { color: var(--color-primary); }
.se-footer-6 { font-size: 0.9rem; }
.se-footer-7 { color: var(--color-primary); }
.se-footer-8 { font-size: 0.9rem; }
.se-footer-9 { font-size: 0.9rem; }
.se-footer-10 { font-size: 0.9rem; }
.se-footer-11 { background: var(--bg-card); color: var(--text-primary); }
.se-footer-12 { height:100px; }
.se-footer-13 { display:none; }
.se-footer-14 { display:none; }
.se-footer-15 { background: var(--bg-card); color: var(--text-primary); }
.se-JobDetail-1 { position: fixed; top: 0; left: 0; height: 3px; background: var(--brand-purple); width: 0; z-index: 9999; }
.se-JobDetail-2 { max-width: 600px; }
.se-JobDetail-3 { background: var(--bg-primary); }

/* Testimonials Split Layout (1 by 1 show) */
.testimonials-split-container {
  width: 100%;
}

.testimonials-slider-viewport {
  width: 100%;
}

.testimonials-track {
  display: flex;
  gap: 0;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  padding: 0.5rem 0 1.5rem 0;
}

.testimonial-slide-single {
  flex: 0 0 100%;
  min-width: 100%;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--brand-purple);
}

.testimonial-quote {
  font-size: 3rem;
  color: var(--brand-purple);
  opacity: 0.15;
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  line-height: 1;
}

.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  font-style: italic;
  position: relative;
  z-index: 2;
  text-align: left;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
  color: #fff;
  box-shadow: 0 4px 10px rgba(120, 75, 209, 0.2);
}

.testimonial-meta {
  text-align: left;
}

.testimonial-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-primary);
  margin: 0 0 0.15rem 0;
}

.testimonial-role {
  font-size: 0.78rem;
  color: var(--text-secondary);
  display: block;
}

/* Dots Navigation */
.testimonials-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.testimonial-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border-color);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.testimonial-dot.active {
  background: var(--brand-purple);
  width: 24px;
  border-radius: 4px;
}

/* Testimonials nav arrows absolute positioning */
.testi-nav-arrow {
  z-index: 10;
}

@media (max-width: 767px) {
  .testi-nav-arrow {
    width: 36px;
    height: 36px;
    font-size: 0.85rem;
  }
}


