/* DESIGN SYSTEM LOGIC - CRISP WHITE & SOFT SLATE GREY */
:root {
  --bg-pure-white: #ffffff;
  --bg-slate-tint: #f8fafc;
  --bg-card-surface: #ffffff;

  --text-charcoal: #0f172a;
  --text-muted-gray: #475569;
  --border-clean: #e2e8f0;

  /* Product Colors */
  --color-sms-primary: #2563eb;
  --color-sms-hover: #1d4ed8;
  --color-hrms-primary: #4f46e5;
  --color-hrms-hover: #4338ca;

  --font-header-suite: "Plus Jakarta Sans", sans-serif;
  --font-body-suite: "Inter", sans-serif;
}

/* =================================
   CUSTOM THEME SCROLLBAR
================================= */

/* Chrome, Edge, Safari */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: #f3f6fa;
  border-radius: 20px;
}

::-webkit-scrollbar-thumb {
  background: var(--color-sms-primary);
  border-radius: 20px;
  transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-sms-hover);
}

/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--color-sms-primary) #f3f6fa;
}

.mega-menu-overlay::-webkit-scrollbar {
  width: 4px;
}

.mega-menu-overlay::-webkit-scrollbar-track {
  background: transparent;
}

.mega-menu-overlay::-webkit-scrollbar-thumb {
  background: rgba(37, 99, 235, 0.5);
  border-radius: 999px;
}

.mega-menu-overlay::-webkit-scrollbar-thumb:hover {
  background: var(--color-sms-primary);
}

/* STRUCTURAL RESETS */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg-slate-tint);
  color: var(--text-muted-gray);
  font-family: var(--font-body-suite);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.section-container {
  max-width: 1200px;
  width: 90%;
  margin: 40px auto;
  padding: 40px 0;
}
.section-container.border-bottom-only {
  padding: 40px 0;
  border-bottom: 1px solid var(--border-clean);
}

/* TYPOGRAPHY LAYOUTS */
h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-header-suite);
  color: var(--text-charcoal);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.section-center-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px auto;
}

.section-center-head h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.section-center-head p {
  font-size: 1.05rem;
  color: var(--text-muted-gray);
  line-height: 1.6;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-sms-primary);
  margin-bottom: 12px;
}

/* NAVBAR STRUCTURING */
.enterprise-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-clean);
  z-index: 1000;
}

.nav-container {
  /* max-width: 1200px; */
  width: 100%;
  margin: 0 auto;
  padding: 0 10px;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.logo-icon-box {
  width: 38px;
  height: 38px;
  background: var(--color-sms-primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
}

.logo-text {
  display: flex;
  flex-direction: column;
  padding: 0px 20px;
}

.logo-text img{
    width: 200px;
}

.corp-title {
  font-family: var(--font-header-suite);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--text-charcoal);
  line-height: 1;
}

.corp-sub {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--text-muted-gray);
  margin-top: 2px;
}

.nav-links-system {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 8px;
}

.nav-item-link {
  color: var(--text-charcoal);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 28px 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s ease;
}

.nav-item-link:hover {
  color: var(--color-sms-primary);
}

.nav-chevron {
  font-size: 0.7rem;
  color: var(--text-muted-gray);
  transition: transform 0.2s ease;
}

.mega-trigger:hover .nav-chevron {
  transform: rotate(180deg);
}

.nav-action-button {
  background: var(--color-sms-primary);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 10px 22px;
  border-radius: 6px;
  margin-left: 12px;
  transition: background 0.2s ease;
}

.nav-action-button:hover {
  background: var(--color-sms-hover);
}

/* HOVER MEGA MENU OVERLAYS */
.mega-trigger {
  position: static;
}

.mega-menu-overlay {
  position: absolute;
  top: 80px;
  left: 0;
  width: 100%;
  background: var(--bg-pure-white);
  border-bottom: 1px solid var(--border-clean);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.08);

  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);

  /* ✅ ADD THESE */
  max-height: calc(100vh - 80px);
  overflow-y: auto;
  overflow-x: hidden;

  scrollbar-width: thin;
  scrollbar-color: var(--color-sms-primary) #f3f6fa;
}

.mega-trigger:hover .mega-menu-overlay {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mega-menu-layout {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 10px;
  display: grid;
  grid-template-columns: 4.5fr 7.5fr;
  padding: 40px 0;
  gap: 50px;

  /* ✅ prevent overflow */
  max-height: calc(100vh - 80px);
  overflow: hidden;
}

.mega-section-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted-gray);
  margin-bottom: 20px;
}

.mega-left-products {
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-right: 1px solid var(--border-clean);
  padding-right: 40px;
}

.mega-product-tab {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px;
  border-radius: 8px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.2s ease;
}

.mega-product-tab:hover,
.mega-product-tab.active {
  background: var(--bg-slate-tint);
  border-color: var(--border-clean);
}

.tab-icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.tab-icon.sms-blue {
  background: rgba(37, 99, 235, 0.08);
  color: var(--color-sms-primary);
}
.tab-icon.hrms-indigo {
  background: rgba(79, 70, 229, 0.08);
  color: var(--color-hrms-primary);
}

.tab-details h4 {
  font-size: 0.95rem;
  margin-bottom: 2px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.badge-soon {
  background: rgba(79, 70, 229, 0.1);
  color: var(--color-hrms-primary);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
}

.tab-details p {
  font-size: 0.8rem;
  color: var(--text-muted-gray);
}
.mega-feature-pane {
  display: none;
}
.mega-feature-pane.active {
  display: block;
  animation: paneReveal 0.25s ease forwards;
}

@keyframes paneReveal {
  from {
    opacity: 0;
    transform: translateX(4px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.pane-grid-structure {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.pane-feature-card h5 {
  font-size: 0.95rem;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pane-feature-card h5 i {
  color: var(--color-sms-primary);
  font-size: 0.9rem;
}
.pane-feature-card p {
  font-size: 0.85rem;
  color: var(--text-muted-gray);
  line-height: 1.5;
}

/* ================================
   ABOUT US MEGA MENU ENHANCEMENT
================================ */

/* RIGHT SIDE WRAPPER (keeps consistency) */
.mega-right-features {
  position: relative;

  max-height: calc(100vh - 80px);
  overflow-y: auto;
  padding-right: 10px;
}

/* ================================
   IMPACT GRID CARDS
================================ */
.impact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.impact-card {
  background: var(--bg-slate-tint);
  border: 1px solid var(--border-clean);
  border-radius: 10px;
  padding: 18px 14px;
  text-align: center;
  transition: all 0.25s ease;
  cursor: default;
}

.impact-card i {
  font-size: 1.3rem;
  color: var(--color-sms-primary);
  margin-bottom: 8px;
}

.impact-card h3 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 4px;
  color: var(--text-charcoal);
}

.impact-card p {
  font-size: 0.78rem;
  color: var(--text-muted-gray);
}

.impact-card:hover {
  transform: translateY(-4px);
  background: #fff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* ================================
   LEADERSHIP GRID (UPDATED - PROFILE STYLE)
================================ */
.leadership-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  padding: 40px;
}

/* BIG PROFILE CARD */
.leader-card {
  background: #fff;
  border: 1px solid var(--border-clean);
  border-radius: 14px;
  padding: 22px 18px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;

  /* makes card feel premium */
  min-height: 240px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* PROFILE IMAGE */
.leader-card img {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--color-sms-primary);
  margin-bottom: 14px;
  transition: all 0.3s ease;
}

/* NAME */
.leader-card h4 {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 6px;
  color: var(--text-charcoal);
}

/* DESIGNATION */
.leader-card p {
  font-size: 0.82rem;
  color: var(--text-muted-gray);
  font-weight: 500;
  letter-spacing: 0.3px;
}

/* HOVER EFFECT */
.leader-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
  border-color: rgba(37, 99, 235, 0.25);
}

.leader-card:hover img {
  transform: scale(1.05);
  border-color: var(--color-sms-hover);
}

/* ================================
   BUSINESS ECOSYSTEM CARDS
================================ */
.ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.eco-card {
  background: var(--bg-slate-tint);
  border: 1px solid var(--border-clean);
  border-radius: 12px;
  padding: 22px 16px;
  text-align: center;
  transition: all 0.25s ease;
  cursor: default;
}

.eco-card i {
  font-size: 1.6rem;
  color: var(--color-sms-primary);
  margin-bottom: 10px;
}

.eco-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-charcoal);
}

.eco-card:hover {
  background: #fff;
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

/* ================================
   WIDE FEATURE CARD (used in overview/vision)
================================ */
.pane-feature-card.wide {
  grid-column: span 2;
  background: #fff;
  border: 1px solid var(--border-clean);
  padding: 18px;
  border-radius: 10px;
}

/* ================================
   RESPONSIVE DESIGN
================================ */
@media (max-width: 1200px) {
  .impact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .leadership-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .ecosystem-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .impact-grid,
  .leadership-grid,
  .ecosystem-grid {
    grid-template-columns: 1fr;
  }

  .pane-feature-card.wide {
    grid-column: span 1;
  }
}

/* ========================================
   MOBILE MEGA MENU FIX
======================================== */

@media (max-width: 992px) {
  .mega-menu-overlay {
    position: relative;
    top: 0;
    width: 100%;
    max-height: none;
    overflow: visible;
    box-shadow: none;
    border: none;
    background: transparent;
  }

  .mega-menu-layout {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-height: none;
    overflow: visible;
    padding: 20px 0;
  }

  /* LEFT NAV */
  .mega-left-products {
    border-right: none;
    padding-right: 0;
    border-bottom: 1px solid var(--border-clean);
    padding-bottom: 16px;
  }

  /* RIGHT CONTENT */
  .mega-right-features {
    max-height: none;
    overflow: visible;
    padding-right: 0;
  }

  /* FEATURE GRIDS */
  .pane-grid-structure {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .pane-feature-card.wide {
    grid-column: span 1;
  }

  /* IMPACT */
  .impact-grid {
    grid-template-columns: 1fr;
  }

  /* LEADERSHIP */
  .leadership-grid {
    grid-template-columns: 1fr;
    padding: 0;
  }

  .leader-card {
    min-height: auto;
    padding: 20px;
  }

  /* PRODUCT TABS */
  .mega-product-tab {
    padding: 16px;
  }

  .tab-details h4 {
    font-size: 0.95rem;
  }

  .tab-details p {
    font-size: 0.8rem;
  }
}

/* HERO CANVAS */
.flagship-hero {
  background: linear-gradient(180deg, var(--bg-pure-white) 0%, #eff6ff 100%);
  padding-top: 100px;
  padding-bottom: 60px;
}

.hero-container-box {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 6fr 6fr;
  gap: 20px;
  align-items: center;
}

.hero-announcement {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--border-clean);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-charcoal);
  margin-bottom: 24px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: #10b981;
  border-radius: 50%;
  display: inline-block;
}

.hero-text-content h1 {
  font-size: 3.25rem;
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-description {
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--text-muted-gray);
  margin-bottom: 24px;
}

.hero-tagline-block {
  background: rgba(255, 255, 255, 0.6);
  border-left: 3px solid var(--color-sms-primary);
  padding: 10px 16px;
  border-radius: 0 8px 8px 0;
  margin-bottom: 35px;
}

.quote-tag {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-sms-primary);
}
.tagline-phrase {
  font-size: 1rem;
  font-weight: 600;
  font-style: italic;
  color: var(--text-charcoal);
}
.hero-cta-tray {
  display: flex;
  gap: 14px;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.cta-button.primary-blue {
  background: var(--color-sms-primary);
  color: #fff;
}
.cta-button.primary-blue:hover {
  background: var(--color-sms-hover);
  transform: translateY(-1px);
}
.cta-button.primary-indigo {
  background: var(--color-hrms-primary);
  color: #fff;
}
.cta-button.primary-indigo:hover {
  background: var(--color-hrms-hover);
}
.cta-button.secondary-light-border {
  background: #fff;
  color: var(--text-charcoal);
  border: 1px solid var(--border-clean);
}
.cta-button.secondary-light-border:hover {
  background: var(--bg-slate-tint);
}

/* VISUAL SCREEN MOCK */
.dashboard-canvas-window {
  background: var(--bg-pure-white);
  border: 1px solid var(--border-clean);
  border-radius: 12px;
  height: 380px;
  box-shadow: 0 40px 70px -15px rgba(15, 23, 42, 0.08);
  overflow: hidden;
}

.window-header-row {
  height: 40px;
  background: #f1f5f9;
  border-bottom: 1px solid var(--border-clean);
  display: flex;
  align-items: center;
  padding: 0 16px;
  gap: 6px;
}

.w-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.w-dot.close {
  background-color: #ef4444;
}
.w-dot.minimize {
  background-color: #f59e0b;
}
.w-dot.expand {
  background-color: #10b981;
}

.window-mock-url {
  margin: 0 auto;
  font-size: 0.75rem;
  color: var(--text-muted-gray);
  background: var(--bg-pure-white);
  padding: 2px 30px;
  border-radius: 4px;
  border: 1px solid var(--border-clean);
}

.window-body-display {
  display: flex;
  height: calc(100% - 40px);
}
.mock-sidebar {
  width: 60px;
  background: #f8fafc;
  border-right: 1px solid var(--border-clean);
  padding: 16px 8px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mock-sidebar .line {
  height: 6px;
  background: #e2e8f0;
  border-radius: 4px;
}
.mock-sidebar .line.header-line {
  height: 12px;
  background: #cbd5e1;
  margin-bottom: 8px;
}
.mock-sidebar .line.active {
  background: var(--color-sms-primary);
}

.mock-workspace {
  flex: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.mock-metrics-row {
  display: flex;
  gap: 14px;
}
.metric-block-box {
  flex: 1;
  height: 50px;
  background: #f1f5f9;
  border-radius: 6px;
}
.mock-graph-large {
  flex: 1;
  background: linear-gradient(180deg, #eff6ff 0%, var(--bg-pure-white) 100%);
  border: 1px solid #dbeafe;
  border-radius: 8px;
}

/* REGIONAL SHOWCASE BAR */
.trust-showcase-bar {
  background: var(--bg-pure-white);
}
.trust-label {
  display: block;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #94a3b8;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}
.trust-logos-flex {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  opacity: 0.7;
}
.trust-logo-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--text-charcoal);
  font-size: 1.1rem;
}
.trust-logo-item i {
  color: var(--color-sms-primary);
}

/* VALUE CARDS SYSTEM */
.value-prop-section {
  background-color: var(--bg-pure-white);
}
.value-prop-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
}

.value-prop-card {
  background: var(--bg-slate-tint);
  border: 1px solid var(--border-clean);
  border-radius: 10px;
  padding: 40px;
}

.v-card-icon {
  width: 48px;
  height: 48px;
  background: #e0f2fe;
  color: var(--color-sms-primary);
  font-size: 1.3rem;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.value-prop-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}
.value-prop-card p {
  font-size: 0.95rem;
  line-height: 1.6;
}

/* INTERACTIVE ROI CALCULATOR ENGINE */
.roi-calculator-section {
  background: var(--bg-slate-tint);
  border-top: 1px solid var(--border-clean);
}
.roi-grid-layout {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 60px;
  align-items: center;
}
.roi-p-sub {
  font-size: 1.05rem;
  line-height: 1.6;
  margin-top: 14px;
  margin-bottom: 35px;
}

.slider-control-box {
  background: var(--bg-pure-white);
  padding: 30px;
  border-radius: 12px;
  border: 1px solid var(--border-clean);
}
.slider-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  color: var(--text-charcoal);
  margin-bottom: 16px;
  font-size: 0.95rem;
}
#sliderValueDisplay {
  color: var(--color-sms-primary);
  background: rgba(37, 99, 235, 0.08);
  padding: 4px 12px;
  border-radius: 4px;
}

.premium-range-slider {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  height: 6px;
  border-radius: 4px;
  background: var(--border-clean);
  outline: none;
}
.premium-range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--color-sms-primary);
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(37, 99, 235, 0.3);
}

.roi-outputs-pane {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.roi-stat-card {
  background: var(--bg-pure-white);
  border: 1px solid var(--border-clean);
  padding: 30px;
  border-radius: 10px;
}
.roi-stat-card.border-left-accent {
  border-left: 4px solid var(--color-hrms-primary);
}
.roi-stat-card.solid-blue-bg {
  grid-column: span 2;
  background: var(--color-sms-primary);
  color: rgba(255, 255, 255, 0.85);
  border: none;
}
.roi-stat-card.solid-blue-bg h3,
.roi-stat-card.solid-blue-bg .roi-stat-label {
  color: #fff;
}

.roi-stat-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted-gray);
}
.roi-stat-figure {
  font-size: 2.25rem;
  color: var(--text-charcoal);
  margin: 8px 0;
  font-weight: 800;
}
.roi-stat-desc {
  font-size: 0.85rem;
  line-height: 1.5;
}

/* WHO WE SERVE SWITCHER */
.who-we-serve-section {
  background: var(--bg-pure-white);
  border-top: 1px solid var(--border-clean);
}
.serve-interactive-container {
  display: grid;
  grid-template-columns: 4.5fr 7.5fr;
  gap: 40px;
}

.serve-tabs-column {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.serve-tab {
  background: var(--bg-slate-tint);
  border: 1px solid var(--border-clean);
  padding: 24px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.25s ease;
}
.serve-tab h4 {
  font-size: 1.1rem;
  margin-bottom: 4px;
  color: var(--text-charcoal);
}
.serve-tab p {
  font-size: 0.85rem;
  color: var(--text-muted-gray);
}
.serve-tab.active {
  border-left: 4px solid var(--color-sms-primary);
  background: #fff;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.04);
}

.serve-display-panel {
  background: var(--bg-slate-tint);
  border: 1px solid var(--border-clean);
  border-radius: 12px;
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.serve-content-pane {
  display: none;
}
.serve-content-pane.active {
  display: block;
  animation: paneReveal 0.3s ease-out;
}

.serve-content-pane h3 {
  font-size: 1.75rem;
  margin-bottom: 16px;
  color: var(--text-charcoal);
}
.serve-content-pane p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 24px;
}
.serve-points-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.serve-points-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-charcoal);
}
.serve-points-list i {
  color: #10b981;
}

/* DEEP DIVE FEATURES GRID */
.sms-deep-dive-section {
  border-top: 1px solid var(--border-clean);
  background-color: var(--bg-pure-white);
}
.sms-modules-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
}

.module-feature-card {
  background: var(--bg-slate-tint);
  border: 1px solid var(--border-clean);
  padding: 35px;
  border-radius: 12px;
  transition: box-shadow 0.3s ease;
}
.module-feature-card:hover {
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.05);
}
.m-icon-box {
  color: var(--color-sms-primary);
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.module-feature-card h4 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}
.module-feature-card p {
  font-size: 0.9rem;
  line-height: 1.6;
}

/* SECURITY ARCHITECTURE GRID */
.cloud-security-section {
  background: var(--bg-slate-tint);
  border-top: 1px solid var(--border-clean);
}
.security-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
}

.security-minimal-card {
  background: var(--bg-pure-white);
  border: 1px solid var(--border-clean);
  padding: 40px;
  border-radius: 12px;
}
.sec-icon-circle {
  width: 44px;
  height: 44px;
  background: rgba(37, 99, 235, 0.06);
  color: var(--color-sms-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  margin-bottom: 20px;
}
.security-minimal-card h4 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}
.security-minimal-card p {
  font-size: 0.9rem;
  line-height: 1.6;
}

/* DEVICE SHIFT COMPATIBILITY */
.device-showcase-section {
  background: var(--bg-pure-white);
  border-top: 1px solid var(--border-clean);
  border-bottom: 1px solid var(--border-clean);
}
.device-flex-layout {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 60px;
  align-items: center;
}
.device-text-block h2 {
  font-size: 2.25rem;
  margin-bottom: 16px;
}
.device-text-block p {
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 30px;
}
.device-badge-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.dev-badge {
  background: var(--bg-slate-tint);
  border: 1px solid var(--border-clean);
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-charcoal);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.dev-badge i {
  color: var(--color-sms-primary);
}

.mini-phone-frame {
  width: 220px;
  height: 380px;
  border: 8px solid var(--text-charcoal);
  border-radius: 24px;
  background: #fff;
  margin: 0 auto;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}
.phone-app-header {
  background: var(--color-sms-primary);
  color: #fff;
  padding: 12px;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 700;
}
.phone-screen-content {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.phone-bar {
  padding: 10px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  text-align: center;
}
.phone-bar.alert {
  background: #fee2e2;
  color: #ef4444;
}
.phone-bar.success {
  background: #d1fae5;
  color: #10b981;
}

/* SOLID IMPLEMENTATION TIMELINE V-STRUCTURE */
.transition-timeline-section {
  background: var(--bg-pure-white);
}
.timeline-v-structure {
  max-width: 850px;
  margin: 0 auto;
  position: relative;
  padding-left: 40px;
}
.timeline-v-structure::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 15px;
  width: 2px;
  height: calc(100% - 40px);
  background: var(--border-clean);
}

.timeline-block-item {
  position: relative;
  margin-bottom: 40px;
}
.timeline-indicator-dot {
  position: absolute;
  top: 4px;
  left: -40px;
  width: 32px;
  height: 32px;
  background: var(--bg-pure-white);
  border: 2px solid var(--color-sms-primary);
  color: var(--color-sms-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  z-index: 5;
}

.timeline-info-bubble {
  background: var(--bg-slate-tint);
  border: 1px solid var(--border-clean);
  padding: 30px;
  border-radius: 12px;
}
.time-stamp-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--color-sms-primary);
  background: rgba(37, 99, 235, 0.06);
  padding: 4px 10px;
  border-radius: 4px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.timeline-info-bubble h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}
.timeline-info-bubble p {
  font-size: 0.95rem;
  line-height: 1.6;
}

/* =========================
   HRMS PRE-LAUNCH (MODERN)
========================= */

.hrms-hero-content h1{
 font-size:2.5rem;
line-height:1.1;
font-weight:800;   
}
.hrms-prelaunch-section {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  border-top: 1px solid var(--border-clean);
  padding: 20px 0;
}

/* MAIN GLASS CARD */
.hrms-glass-showcase {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(167, 139, 250, 0.25);
  border-radius: 18px;
  padding: 60px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
  box-shadow: 0 20px 60px rgba(17, 24, 39, 0.08);
  position: relative;
  overflow: hidden;
}

/* SOFT GLOW BACKGROUND EFFECT */
.hrms-glass-showcase::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, #a78bfa 0%, transparent 70%);
  opacity: 0.25;
}

/* LABEL */
.launch-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(90deg, #ede9fe, #ddd6fe);
  color: #5b21b6;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 999px;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
  box-shadow: 0 4px 10px rgba(109, 40, 217, 0.08);
}

/* TITLE */
.hrms-info-side h2 {
  font-size: 2.6rem;
  font-weight: 800;
  color: #4f46e5;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

/* TAGLINE */
.hrms-tagline {
  font-size: 1rem;
  font-style: italic;
  color: #6b7280;
  margin-bottom: 18px;
  border-left: 3px solid #a78bfa;
  padding-left: 12px;
}

/* PARAGRAPH */
.hrms-info-side p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #374151;
  margin-bottom: 26px;
}

/* BULLETS */
.hrms-spec-bullets {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 30px;
}

.hrms-spec-bullets span {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #1f2937;
  padding: 10px 12px;
  background: #f5f3ff;
  border: 1px solid #e9d5ff;
  border-radius: 10px;
  transition: 0.25s ease;
}

.hrms-spec-bullets span:hover {
  transform: translateX(4px);
  background: #ede9fe;
}

/* ICON COLOR */
.hrms-spec-bullets i {
  color: #7c3aed;
}

/* RIGHT CARD (BLUEPRINT) */
.hrms-blueprint-card {
  background: linear-gradient(135deg, #ffffff, #f5f3ff);
  border: 1px solid #ddd6fe;
  height: 280px;
  border-radius: 16px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 0 1px rgba(167, 139, 250, 0.15);
  overflow: hidden;
}

/* SUBTLE GRID EFFECT */
.hrms-blueprint-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(#e9d5ff 1px, transparent 1px);
  background-size: 18px 18px;
  opacity: 0.3;
}

/* ROCKET ICON */
.blueprint-rocket-icon {
  font-size: 4.5rem;
  color: #8b5cf6;
  opacity: 0.18;
  z-index: 2;
  transition: 0.3s ease;
}

.hrms-blueprint-card:hover .blueprint-rocket-icon {
  transform: scale(1.08) rotate(-8deg);
  opacity: 0.28;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .hrms-glass-showcase {
    grid-template-columns: 1fr;
    padding: 40px;
  }

  .hrms-info-side h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 600px) {
  .hrms-glass-showcase {
    padding: 28px;
  }

  .hrms-info-side h2 {
    font-size: 1.8rem;
  }
}

/* =========================
   BLUEPRINT PLACEHOLDER LINES
========================= */

.hrms-blueprint-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* container for fake UI lines */
.hrms-blueprint-card .bp-row-line {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  height: 10px;
  border-radius: 6px;
  background: linear-gradient(90deg, #e9d5ff, #c4b5fd);
  opacity: 0.7;
}

/* TITLE LINE */
.hrms-blueprint-card .bp-row-line.title {
  width: 60%;
  top: 25%;
  height: 12px;
}

/* BODY BLOCK */
.hrms-blueprint-card .bp-row-line.body-block {
  width: 75%;
  top: 45%;
  height: 10px;
  opacity: 0.5;
}

/* ACCENT BLOCK */
.hrms-blueprint-card .bp-row-line.accent-block {
  width: 50%;
  top: 65%;
  height: 10px;
  opacity: 0.4;
}

/* ROCKET ICON (kept centered above lines) */
.blueprint-rocket-icon {
  position: relative;
  z-index: 2;
}

/* THE PORTFOLIO LISTING SYSTEM */
.portfolio-section {
  background: var(--bg-pure-white);
  border-top: 1px solid var(--border-clean);
}
.portfolio-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.portfolio-mini-card {
  background: var(--bg-slate-tint);
  border: 1px solid var(--border-clean);
  border-radius: 8px;
  padding: 30px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.p-mini-icon {
  font-size: 1.4rem;
  color: var(--text-muted-gray);
  background: #fff;
  width: 44px;
  height: 44px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid var(--border-clean);
}
.portfolio-mini-card h3 {
  font-size: 1.1rem;
  margin-bottom: 6px;
}
.portfolio-mini-card p {
  font-size: 0.85rem;
  line-height: 1.5;
}
.portfolio-footer-note {
  text-align: center;
  margin-top: 40px;
  font-size: 0.95rem;
}
.portfolio-footer-note a {
  color: var(--color-sms-primary);
  font-weight: 600;
  text-decoration: none;
}

/* EXECUTIVE BLOCKS GRID */
.leadership-desk-section {
  background: var(--bg-slate-tint);
  border-top: 1px solid var(--border-clean);
}
.leadership-layout-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.executive-desk-card {
  background: var(--bg-pure-white);
  border: 1px solid var(--border-clean);
  padding: 45px;
  border-radius: 12px;
  position: relative;
}
.quote-accent-icon {
  font-size: 2.5rem;
  color: rgba(0, 0, 0, 0.03);
  position: absolute;
  top: 20px;
  left: 30px;
}
.executive-speech {
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.65;
  color: var(--text-charcoal);
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}
.executive-profile-footer {
  display: flex;
  align-items: center;
  gap: 14px;
}
.avatar-placeholder {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}
.avatar-placeholder.blue-avatar {
  background: #dbeafe;
  color: var(--color-sms-primary);
}
.avatar-placeholder.indigo-avatar {
  background: #e0e7ff;
  color: var(--color-hrms-primary);
}
.profile-meta h4 {
  font-size: 0.95rem;
}
.profile-meta p {
  font-size: 0.8rem;
  color: var(--text-muted-gray);
}

/* ACCORDION FAQ ENGINE */
.faq-accordion-section {
  background: var(--bg-pure-white);
  border-top: 1px solid var(--border-clean);
}
.faq-wrapper-box {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-item {
  background: var(--bg-slate-tint);
  border: 1px solid var(--border-clean);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.2s ease;
}

.faq-question {
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.faq-question h4 {
  font-size: 1.1rem;
  color: var(--text-charcoal);
  padding-right: 20px;
}
.faq-toggle-icon {
  font-size: 1rem;
  color: var(--text-muted-gray);
  transition: transform 0.2s ease;
}

.faq-answer {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.25s cubic-bezier(0, 1, 0, 1),
    padding 0.2s ease;
}
.faq-answer p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-muted-gray);
  padding-bottom: 24px;
}

.faq-item.open .faq-answer {
  max-height: 1000px;
  padding-top: 4px;
  transition:
    max-height 0.4s ease-in-out,
    padding 0.2s ease;
}
.faq-item.open .faq-toggle-icon {
  transform: rotate(45deg);
  color: var(--color-sms-primary);
}
.faq-item.open {
  border-color: #cbd5e1;
  background: #fff;
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.03);
}

/* FOOTER ARCHITECTURE */
.enterprise-footer {
  background: var(--bg-pure-white);
  border-top: 1px solid var(--border-clean);
}
.footer-grid-container {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
  padding: 80px 0;
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 70px;
}
.footer-brand-column h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}
.footer-brand-column h3 span {
  font-weight: 400;
  font-size: 1rem;
  color: var(--text-muted-gray);
}
.footer-brand-column p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 440px;
}

.footer-social-box {
  display: flex;
  gap: 10px;
}
.footer-social-box a {
  width: 38px;
  height: 38px;
  background: var(--bg-slate-tint);
  border: 1px solid var(--border-clean);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-charcoal);
  text-decoration: none;
  transition: background 0.2s;
}
.footer-social-box a:hover {
  background: #e2e8f0;
}

.footer-contact-column h4 {
  font-size: 1rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted-gray);
}
.footer-contact-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-contact-links li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--text-charcoal);
}
.footer-contact-links i {
  color: var(--color-sms-primary);
  margin-top: 4px;
}
.footer-legal-bar {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
  padding: 30px 0;
  border-top: 1px solid var(--border-clean);
  text-align: center;
  font-size: 0.85rem;
}

/* RESPONSIVE RESPONSIVENESS MEDIA HANDLERS */
.mobile-menu-trigger {
  display: none;
  background: none;
  border: none;
  font-size: 1.4rem;
  color: var(--text-charcoal);
  cursor: pointer;
}
@media (max-width: 1024px) {

  /* =========================
     MOBILE MENU BUTTON
  ========================= */

  .mobile-menu-trigger {
    display: block;
    font-size: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-charcoal);
  }

  /* =========================
     MOBILE NAV DRAWER
  ========================= */

  .nav-links-system {
    position: fixed;
    top: 80px;
    right: -100%;
    width: 100%;
    max-width: 420px;
    height: calc(100vh - 80px);

    background: #ffffff;

    flex-direction: column;
    align-items: flex-start;

    padding: 20px;
    gap: 10px;

    overflow-y: auto;

    transition: right 0.3s ease;

    box-shadow: -10px 0 30px rgba(0,0,0,0.08);

    z-index: 999;
  }

  .nav-links-system.active {
    right: 0;
  }

  .nav-item-link {
    width: 100%;
    padding: 14px 10px;
    font-size: 1rem;
  }

  .nav-action-button {
    width: 100%;
    text-align: center;
    margin-left: 0;
    padding: 12px;
  }

  /* =========================
     MOBILE MEGA MENU
  ========================= */

  .mega-menu-overlay {

    position: static;

    width: 100%;

    background: #ffffff;

    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;

    display: none;

    box-shadow: none;
    border: none;

    padding-top: 12px;
  }

  .mega-trigger.mega-open .mega-menu-overlay {
    display: block;
  }

  .mega-menu-layout {

    display: flex;
    flex-direction: column;

    gap: 20px;

    padding: 0;

    max-height: none;
    overflow: visible;
  }

  /* LEFT PANEL */

  .mega-left-products {

    border-right: none;

    border-bottom: 1px solid var(--border-clean);

    padding-right: 0;
    padding-bottom: 16px;

    gap: 12px;
  }

  /* PRODUCT TABS */

  .mega-product-tab {

    padding: 16px;

    background: #ffffff;

    border: 1px solid #e2e8f0;

    border-radius: 10px;
  }

  .mega-product-tab.active {

    background: #eff6ff;

    border-color: var(--color-sms-primary);
  }

  /* RIGHT PANEL */

  .mega-right-features {

    background: #ffffff;

    border: 1px solid #e2e8f0;

    border-radius: 12px;

    padding: 16px;

    max-height: none;
    overflow: visible;
  }

  /* FIX TRANSPARENT ISSUE */

  .mega-feature-pane {
    display: none;
    background: #ffffff;
  }

  .mega-feature-pane.active {
    display: block;
  }

  /* FEATURE GRIDS */

  .pane-grid-structure {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .pane-feature-card.wide {
    grid-column: span 1;
  }

  /* ABOUT US */

  .leadership-grid {
    grid-template-columns: 1fr;
    padding: 0;
  }

  .impact-grid {
    grid-template-columns: 1fr;
  }

  .leader-card {
    min-height: auto;
  }

  /* FEATURE CARDS */

  .pane-feature-card {
    padding: 10px 0;
  }

  /* CHEVRON ROTATION */

  .mega-trigger.mega-open .nav-chevron {
    transform: rotate(180deg);
  }

}

@media (max-width: 1024px) {
  .hero-container-box,
  .value-prop-grid,
  .sms-modules-grid,
  .hrms-glass-showcase,
  .portfolio-cards-grid,
  .leadership-layout-grid,
  .footer-grid-container,
  .serve-interactive-container,
  .device-flex-layout,
  .roi-grid-layout,
  .roi-outputs-pane,
  .security-features-grid {
    grid-template-columns: 1fr !important;
    display: flex;
    flex-direction: column;
  }
  .hero-text-content {
    text-align: center;
  }
  .hero-cta-tray {
    justify-content: center;
  }
  .hero-tagline-block {
    border-left: none;
    border-top: 3px solid var(--color-sms-primary);
    border-radius: 8px;
  }
  .hero-text-content h1 {
    font-size: 2.25rem;
  }
  .serve-tabs-column {
    order: 1;
  }
  .serve-display-panel {
    order: 2;
    padding: 30px 20px;
  }
  .roi-stat-card.solid-blue-bg {
    grid-column: auto;
  }
}

/*  New code*/
/* Badge Styles */
.badge-new {
  background-color: #10b981;
  color: white;
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 4px;
}
.badge-soon {
  background-color: #f59e0b;
  color: white;
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 4px;
}

/* Color Themes for Brand Customization Icons */
.erp-emerald {
  background-color: #e6f4ea;
  color: #10b981;
}
.lms-amber {
  background-color: #fef3c7;
  color: #d97706;
}

/* =========================
   PLATFORM CARD - MODERN SaaS STYLE
========================= */

.platform-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 30px;
}

/* tablet */
@media (max-width: 992px) {
  .platform-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* mobile */
@media (max-width: 600px) {
  .platform-grid {
    grid-template-columns: 1fr;
  }
}

.platform-card {
  background: #ffffff;
  padding: 26px;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}

/* hover lift */
.platform-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.12);
  border-color: #c7d2fe;
}

/* subtle top glow line */
.platform-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 3px;
  width: 100%;
  background: linear-gradient(90deg, #2563eb, #60a5fa);
  opacity: 0;
  transition: 0.3s ease;
}

.platform-card:hover::before {
  opacity: 1;
}

/* ICON WRAPPER */
.platform-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #eff6ff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: #2563eb;
  font-size: 18px;
}

/* TITLE */
.platform-card h4 {
  font-size: 1.05rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 8px;
}

/* DESCRIPTION */
.platform-card p {
  font-size: 0.92rem;
  color: #475569;
  line-height: 1.5;
}

.comparison-section {
  background: #f8fafc;
}

.comparison-table {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.comparison-table .row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 10px;
  padding: 16px 20px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  align-items: center;
  transition: 0.2s ease;
}

.comparison-table .row.header {
  background: #0f172a;
  color: #fff;
  font-weight: 600;
  border: none;
}

/* Hover */
.comparison-table .row:not(.header):hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

/* TABLET */
@media (max-width: 900px) {
  .comparison-table .row {
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    font-size: 0.9rem;
  }
}

/* MOBILE → STACK MODE */
@media (max-width: 768px) {
  .comparison-table .row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .comparison-table .row.header {
    display: none;
  }

  .comparison-table .row div {
    padding: 4px 0;
  }
}

.testimonials-section {
  background: #f8fafc;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* Tablet */
@media (max-width: 992px) {
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 600px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
}

.testimonial-card {
  background: #fff;
  padding: 24px;
  border-radius: 14px;
  border: 1px solid #e5e7eb;
  transition: 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.cta-banner-section {
  background: #f8fafc;
}

.cta-box {
  background: var(--color-sms-primary);
  color: white;
  padding: 60px 40px;
  border-radius: 16px;
  text-align: center;
}

.cta-box h2 {
  color: whitesmoke;
}

.cta-buttons {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.cta-primary,
.cta-secondary {
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
}

/* BUTTON COLORS */
.cta-primary {
  background: #fff;
  color: var(--color-sms-primary);
}

.cta-secondary {
  border: 1px solid #fff;
  color: #fff;
}

/* MOBILE */
@media (max-width: 600px) {
  .cta-box {
    padding: 40px 20px;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .cta-buttons a {
    width: 100%;
  }
}

.footer-social-box a[aria-label="WhatsApp"]:hover {
  background: #25d366;
  border-color: #25d366;
}

.footer-social-box a[aria-label="LinkedIn"]:hover {
  background: #0a66c2;
  border-color: #0a66c2;
}

.footer-social-box a[aria-label="YouTube"]:hover {
  background: #ff0000;
  border-color: #ff0000;
}

.footer-social-box a[aria-label="Facebook"]:hover {
  background: #1877f2;
  border-color: #1877f2;
}

.footer-social-box a[aria-label="Twitter / X"]:hover {
  background: #111111;
  border-color: #111111;
  color: #ffffff;
}



/* ==================================================
SCHOOL MANAGEMENT SYSTEM PRODUCT PAGE
Premium SaaS Design
================================================== */

/* ==================================================
HERO SECTION
================================================== */

.sms-product-hero{
position: relative;
overflow: hidden;
padding: 70px 0 100px;

 
background:
radial-gradient(
    circle at top right,
    rgba(37,99,235,.12),
    transparent 40%
),
radial-gradient(
    circle at bottom left,
    rgba(37,99,235,.08),
    transparent 35%
),
#ffffff;
 

}

.sms-hero-grid{
display:grid;
grid-template-columns:1.1fr .9fr;
gap:80px;
align-items:center;
}

.product-label{
display:inline-flex;
align-items:center;
gap:8px;

 
background:#dbeafe;
color:#2563eb;

padding:10px 18px;

border-radius:999px;

font-size:.85rem;
font-weight:700;

margin-bottom:25px;
 

}

.sms-hero-content h1{
font-size:2.5rem;
line-height:1.1;
font-weight:800;

 
margin-bottom:25px;

color:#0f172a;
 

}

.sms-hero-content p{
font-size:1.15rem;
line-height:1.8;
color:#475569;

 
margin-bottom:35px;
 

}

.hero-feature-list{
display:flex;
flex-wrap:wrap;
gap:15px;

 
margin-bottom:35px;
 

}

.hero-feature-list span{
display:flex;
align-items:center;
gap:10px;

 
background:#fff;

padding:12px 18px;

border:1px solid #e2e8f0;
border-radius:999px;

font-size:.95rem;
font-weight:600;
 

}

.hero-feature-list i{
color:#10b981;
}

.hero-buttons{
display:flex;
gap:15px;
flex-wrap:wrap;
}

/* ==================================================
DASHBOARD PREVIEW
================================================== */

.preview-window{

 
background:#fff;

border-radius:24px;

overflow:hidden;

box-shadow:
0 30px 80px rgba(15,23,42,.12);
 

}

.preview-header{

 
height:60px;

background:#f8fafc;

border-bottom:1px solid #e2e8f0;
 

}

.preview-body{
padding:30px;
}

.stat-card{

 
height:90px;

background:#f1f5f9;

border-radius:14px;

margin-bottom:18px;
 

}

.graph-card{

 
height:260px;

border-radius:16px;

background:
linear-gradient(
    180deg,
    #dbeafe 0%,
    #ffffff 100%
);
 

}

/* ==================================================
COMMON SECTION
================================================== */

.sms-overview,
.role-based-section,
.sms-final-cta{
padding:80px 0;
}

.sms-modules-section{
padding:80px 0;
background:#f8fafc;
}

/* ==================================================
OVERVIEW SECTION
================================================== */

.overview-grid{

 
display:grid;

grid-template-columns:
repeat(4,1fr);

gap:25px;
 

}

.overview-card{

 
background:#fff;

padding:35px;

border:1px solid #e5e7eb;

border-radius:18px;

transition:.35s ease;
 

}

.overview-card:hover{

 
transform:translateY(-8px);

box-shadow:
0 20px 40px rgba(15,23,42,.08);
 

}

.overview-card i{

 
font-size:1.8rem;

color:#2563eb;

margin-bottom:20px;
 

}

.overview-card h3{

 
margin-bottom:12px;

color:#0f172a;
 

}

.overview-card p{
color:#64748b;
line-height:1.7;
}

/* ==================================================
MODULES SECTION
================================================== */

.sms-modules-grid{

 
display:grid;

grid-template-columns:
repeat(4,1fr);

gap:22px;
 

}

.module-card{

 
position:relative;

overflow:hidden;

background:#fff;

padding:30px;

border-radius:18px;

border:1px solid #e5e7eb;

transition:.35s ease;
 

}

.module-card::before{

 
content:"";

position:absolute;

top:0;
left:0;

width:100%;
height:4px;

background:#2563eb;

transform:scaleX(0);

transition:.35s ease;
 

}

.module-card:hover{

 
transform:translateY(-8px);

box-shadow:
0 20px 40px rgba(15,23,42,.08);
 

}

.module-card:hover::before{
transform:scaleX(1);
}

.module-card i{

 
font-size:1.8rem;

color:#2563eb;

margin-bottom:18px;
 

}

.module-card h4{

 
font-size:1.05rem;

font-weight:700;

color:#0f172a;
 

}

/* ==================================================
ROLE BASED SECTION
================================================== */

.role-grid{

 
display:grid;

grid-template-columns:
repeat(5,1fr);

gap:22px;
 

}

.role-card{

 
background:#fff;

border:1px solid #e5e7eb;

border-radius:18px;

text-align:center;

padding:35px 25px;

transition:.35s ease;
 

}

.role-card:hover{

 
transform:translateY(-8px);

box-shadow:
0 20px 40px rgba(15,23,42,.08);
 

}

.role-card i{

 
font-size:2.2rem;

color:#2563eb;

margin-bottom:18px;
 

}

.role-card h3{

 
margin-bottom:12px;

color:#0f172a;
 

}

.role-card p{

 
color:#64748b;

line-height:1.7;
 

}

/* ==================================================
CTA SECTION
================================================== */

.sms-final-cta{
background:#fff;
}

.cta-panel{

 
text-align:center;

padding:90px 60px;

border-radius:28px;

background:
linear-gradient(
    135deg,
    #2563eb,
    #1d4ed8
);

box-shadow:
0 30px 80px rgba(37,99,235,.25);
 

}

.cta-panel h2{

 
color:#fff;

font-size:3rem;

line-height:1.2;

margin-bottom:20px;
 

}

.cta-panel p{

 
color:rgba(255,255,255,.9);

max-width:700px;

margin:0 auto 35px;

line-height:1.8;
 

}

/* ==================================================
LARGE TABLET
================================================== */

@media(max-width:1200px){

 
.sms-hero-content h1{
    font-size:3.2rem;
}

.overview-grid{
    grid-template-columns:repeat(2,1fr);
}

.sms-modules-grid{
    grid-template-columns:repeat(3,1fr);
}

.role-grid{
    grid-template-columns:repeat(3,1fr);
}
 

}

/* ==================================================
TABLET
================================================== */

@media(max-width:992px){

 
.sms-product-hero{
    padding:80px 0 80px;
}

.sms-hero-grid{

    grid-template-columns:1fr;

    gap:50px;
}

.sms-dashboard-preview{
    order:-1;
}

.sms-hero-content{
    text-align:center;
}

.hero-feature-list{
    justify-content:center;
}

.hero-buttons{
    justify-content:center;
}

.sms-hero-content h1{
    font-size:2.8rem;
}

.overview-grid{
    grid-template-columns:repeat(2,1fr);
}

.sms-modules-grid{
    grid-template-columns:repeat(2,1fr);
}

.role-grid{
    grid-template-columns:repeat(2,1fr);
}

.cta-panel h2{
    font-size:2.5rem;
}
 

}

/* ==================================================
MOBILE
================================================== */

@media(max-width:768px){

 
.sms-product-hero{
    padding:90px 0 70px;
}

.sms-hero-content h1{
    font-size:2.2rem;
}

.sms-hero-content p{
    font-size:1rem;
}

.overview-grid,
.sms-modules-grid,
.role-grid{
    grid-template-columns:1fr;
}

.hero-buttons{
    flex-direction:column;
}

.hero-buttons a{
    width:100%;
}

.overview-card,
.module-card,
.role-card{
    padding:25px;
}

.cta-panel{

    padding:60px 25px;
}

.cta-panel h2{

    font-size:2rem;
}
 

}

/* ==================================================
SMALL MOBILE
================================================== */

@media(max-width:480px){

 
.sms-hero-content h1{
    font-size:1.9rem;
}

.product-label{
    font-size:.75rem;
}

.hero-feature-list{
    flex-direction:column;
}

.hero-feature-list span{
    justify-content:center;
}

.cta-panel h2{
    font-size:1.7rem;
}
 

}

























/* HRMS Page code*/

/* ==========================================
   HRMS PRODUCT PAGE
========================================== */

.hrms-product-hero{
    position:relative;
    overflow:hidden;

    padding:80px 0 0;

    background:
    radial-gradient(
        circle at top right,
        rgba(99,102,241,.12),
        transparent 40%
    ),
    radial-gradient(
        circle at bottom left,
        rgba(99,102,241,.08),
        transparent 35%
    ),
    #ffffff;
}

/* ==========================================
   HERO
========================================== */

.hrms-hero-grid{
    display:grid;
    grid-template-columns:1.1fr .9fr;
    gap:80px;
    align-items:center;
}

.hrms-preview-card{

    background:#fff;

    border:1px solid #e5e7eb;

    border-radius:24px;

    padding:60px;

    text-align:center;

    box-shadow:
    0 30px 60px rgba(15,23,42,.08);

    transition:.35s ease;
}

.hrms-preview-card:hover{

    transform:translateY(-8px);

    box-shadow:
    0 40px 80px rgba(15,23,42,.12);
}

.launch-badge{

    display:inline-block;

    background:#eef2ff;

    color:#4f46e5;

    padding:10px 18px;

    border-radius:999px;

    font-size:.85rem;
    font-weight:700;

    margin-bottom:25px;
}

.hrms-preview-card h3{

    color:#64748b;

    margin-bottom:10px;
}

.hrms-preview-card h2{

    font-size:3rem;

    font-weight:800;

    color:#4f46e5;

    margin:15px 0;
}

.hrms-preview-card p{

    color:#64748b;

    line-height:1.8;
}

/* ==========================================
   PRODUCT VISION
========================================== */

.hrms-vision-section{
    padding:80px 0;
}

.vision-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:25px;
}

.vision-card{

    background:#fff;

    border:1px solid #e5e7eb;

    border-radius:18px;

    padding:35px;

    transition:.35s ease;
}

.vision-card:hover{

    transform:translateY(-8px);

    box-shadow:
    0 20px 40px rgba(15,23,42,.08);
}

.vision-card i{

    font-size:2rem;

    color:#4f46e5;

    margin-bottom:20px;
}

.vision-card h3{

    margin-bottom:12px;

    color:#0f172a;
}

.vision-card p{

    color:#64748b;

    line-height:1.7;
}

/* ==========================================
   UPCOMING FEATURES
========================================== */

.upcoming-features{

    padding:80px 0;

    background:#f8fafc;
}

.feature-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:20px;
}

.feature-card{

    background:#fff;

    border:1px solid #e5e7eb;

    border-radius:18px;

    padding:25px;

    font-weight:600;

    transition:.35s ease;
}

.feature-card:hover{

    transform:translateY(-6px);

    border-color:#c7d2fe;

    box-shadow:
    0 20px 40px rgba(15,23,42,.06);
}

/* ==========================================
   ROADMAP
========================================== */

.hrms-roadmap{
    padding:80px 0;
}

.roadmap-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:25px;
}

.roadmap-card{

    background:#fff;

    border:1px solid #e5e7eb;

    border-radius:18px;

    padding:35px;

    transition:.35s ease;
}

.roadmap-card:hover{

    transform:translateY(-8px);

    box-shadow:
    0 20px 40px rgba(15,23,42,.08);
}

.roadmap-phase{

    display:inline-block;

    background:#eef2ff;

    color:#4f46e5;

    padding:8px 14px;

    border-radius:999px;

    font-size:.85rem;
    font-weight:700;

    margin-bottom:20px;
}

.roadmap-card h3{

    margin-bottom:12px;

    color:#0f172a;
}

.roadmap-card p{

    color:#64748b;

    line-height:1.7;
}

/* ==========================================
   EARLY ACCESS CTA
========================================== */

.hrms-early-access{
    padding:80px 0;
}

.early-access-panel{

    background:
    linear-gradient(
        135deg,
        #4f46e5,
        #4338ca
    );

    color:#fff;

    text-align:center;

    border-radius:28px;

    padding:90px 60px;

    box-shadow:
    0 30px 80px rgba(79,70,229,.25);
}

.waitlist-badge{

    display:inline-block;

    background:rgba(255,255,255,.15);

    padding:10px 18px;

    border-radius:999px;

    font-size:.85rem;
    font-weight:700;

    margin-bottom:25px;
}

.early-access-panel h2{

    color:#fff;

    font-size:3rem;

    line-height:1.2;

    margin-bottom:20px;
}

.early-access-panel p{

    max-width:700px;

    margin:0 auto 35px;

    color:rgba(255,255,255,.9);

    line-height:1.8;
}

/* ==========================================
   LARGE TABLET
========================================== */

@media(max-width:1200px){

    .hrms-hero-grid{
        gap:60px;
    }

    .vision-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .feature-grid{
        grid-template-columns:repeat(3,1fr);
    }

    .roadmap-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

/* ==========================================
   TABLET
========================================== */

@media(max-width:992px){

    .hrms-product-hero{
        padding:80px 0 80px;
    }

    .hrms-hero-grid{

        grid-template-columns:1fr;

        gap:50px;
    }

    .hrms-preview-card{

        order:-1;
    }

    .vision-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .feature-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .roadmap-grid{
        grid-template-columns:1fr;
    }

    .early-access-panel h2{
        font-size:2.5rem;
    }

}

/* ==========================================
   MOBILE
========================================== */

@media(max-width:768px){

    .hrms-product-hero{
        padding:90px 0 70px;
    }

    .vision-grid,
    .feature-grid{
        grid-template-columns:1fr;
    }

    .hrms-preview-card{

        padding:40px 25px;
    }

    .hrms-preview-card h2{
        font-size:2.2rem;
    }

    .vision-card,
    .feature-card,
    .roadmap-card{
        padding:25px;
    }

    .early-access-panel{

        padding:60px 25px;
    }

    .early-access-panel h2{

        font-size:2rem;
    }
}

/* ==========================================
   SMALL MOBILE
========================================== */

@media(max-width:480px){

    .hrms-preview-card h2{
        font-size:1.8rem;
    }

    .launch-badge{
        font-size:.75rem;
    }

    .early-access-panel h2{
        font-size:1.7rem;
    }

    .waitlist-badge{
        font-size:.75rem;
    }
}

.menu-link-cards{
    text-decoration: none;
}

.know-more-menus{
    margin: 10px 0px;
    background: var(--color-sms-primary);
    color: #fff;
    padding: 10px;
    border-radius: 9px;
    font-size: 11px;
    text-decoration: none;
}
.know-more-menus:hover{
    opacity: 0.7;
}




/*  ABOUT US PAGE Code*//* =====================================
   ABOUT HERO SECTION
===================================== */


.about-hero-section {

    background:
    linear-gradient(
        180deg,
        #f8fafc 0%,
        #ffffff 100%
    );

    padding:100px 0;

    border-top:1px solid var(--border-clean);

}



.about-container {

    width:90%;

    max-width:1200px;

    margin:auto;

}



.about-hero-grid {


    display:grid;

    grid-template-columns:

    1.15fr 0.85fr;

    gap:70px;

    align-items:center;


}




/* LABEL */


.about-label {


    display:inline-flex;

    padding:7px 16px;

    border-radius:50px;

    background:

    linear-gradient(
        90deg,
        #ede9fe,
        #ddd6fe
    );


    color:#5b21b6;

    font-size:0.75rem;

    font-weight:700;

    letter-spacing:.08em;

    margin-bottom:20px;


}




/* HEADING */


.about-hero-content h1 {


    font-size:3.1rem;

    line-height:1.15;

    font-weight:800;

    letter-spacing:-0.03em;

    color:#111827;

    margin-bottom:15px;


}



.about-tagline {


    font-size:1.15rem;

    font-weight:600;

    color:#4f46e5;

    margin-bottom:20px;


}



.about-hero-content p {


    font-size:1.05rem;

    line-height:1.8;

    color:#4b5563;

}



/* FEATURES */


.about-highlight-list {


    display:flex;

    flex-direction:column;

    gap:14px;

    margin:30px 0;


}



.about-highlight-list span {


    display:flex;

    align-items:center;

    gap:12px;

    background:#ffffff;

    border:1px solid #e5e7eb;

    padding:12px 15px;

    border-radius:12px;

    font-weight:600;

    color:#1f2937;

    transition:.3s ease;


}



.about-highlight-list span:hover {


    transform:translateX(5px);

    background:#f5f3ff;

    border-color:#ddd6fe;


}



.about-highlight-list i {


    color:#7c3aed;

}





/* BUTTONS */


.about-hero-buttons {


    display:flex;

    gap:15px;

}



.about-primary-btn {


    background:#4f46e5;

    color:white;

    padding:13px 28px;

    border-radius:10px;

    font-weight:600;

    text-decoration:none;

    transition:.3s;


}



.about-primary-btn:hover {


    background:#4338ca;

    transform:translateY(-2px);

}



.about-secondary-btn {


    border:1px solid #c7d2fe;

    color:#4338ca;

    padding:13px 28px;

    border-radius:10px;

    font-weight:600;

    text-decoration:none;

    background:white;


}



/* RIGHT CARD */


.about-hero-card {


    position:relative;

    background:

    linear-gradient(
        135deg,
        #ffffff,
        #f5f3ff
    );


    border-radius:22px;

    padding:45px 35px;

    border:1px solid #ddd6fe;

    box-shadow:

    0 25px 60px rgba(17,24,39,.08);

    overflow:hidden;


}



.about-glow-circle {


    position:absolute;

    width:230px;

    height:230px;

    right:-80px;

    top:-80px;

    background:

    radial-gradient(
        circle,
        #a78bfa,
        transparent 70%
    );

    opacity:.25;


}



.about-card-content {


    position:relative;

    z-index:2;

    text-align:center;


}



.about-card-content i {


    font-size:4rem;

    color:#7c3aed;

    opacity:.85;

    margin-bottom:20px;


}



.about-card-content h3 {


    font-size:2rem;

    color:#4f46e5;

}



.about-card-content p {


    color:#6b7280;

    line-height:1.7;

}





/* SMALL STATS */


.about-card-points {


    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:15px;

    margin-top:35px;


}



.about-card-points div {


    background:white;

    border-radius:12px;

    padding:15px 8px;

    border:1px solid #e5e7eb;


}



.about-card-points strong {


    display:block;

    color:#4f46e5;

    font-size:1.4rem;


}



.about-card-points span {


    font-size:.75rem;

    color:#6b7280;


}



/* RESPONSIVE */


@media(max-width:992px){


.about-hero-grid{

grid-template-columns:1fr;

}


.about-hero-content h1{

font-size:2.4rem;

}


}



@media(max-width:600px){


.about-hero-section{

padding:50px 0;

}


.about-hero-content h1{

font-size:2rem;

}



.about-hero-buttons{

flex-direction:column;

}



.about-card-points{

grid-template-columns:1fr;

}



}


/* =====================================
   COMPANY ABOUT SECTION
===================================== */


.company-about-section {


    padding:30px 0;

    background:#ffffff;


}




.company-about-container {


    width:90%;

    max-width:1200px;

    margin:auto;


}




.company-about-grid {


    display:grid;

    grid-template-columns:1.15fr .85fr;

    gap:60px;

    align-items:center;


}




/* LEFT CONTENT */


.company-about-label {


    display:inline-block;

    background:

    linear-gradient(
        90deg,
        #ede9fe,
        #ddd6fe
    );


    color:#5b21b6;

    padding:7px 16px;

    border-radius:50px;

    font-size:.75rem;

    font-weight:700;

    letter-spacing:.08em;

    margin-bottom:18px;


}




.company-about-content h2 {


    font-size:2.6rem;

    line-height:1.2;

    font-weight:800;

    color:#111827;

    margin-bottom:25px;


}




.company-about-content p {


    color:#4b5563;

    font-size:1.02rem;

    line-height:1.8;

    margin-bottom:18px;


}






/* RIGHT CARD */


.company-present-card {


    position:relative;

    background:

    linear-gradient(
        135deg,
        #ffffff,
        #f5f3ff
    );


    border:1px solid #ddd6fe;

    border-radius:22px;

    padding:40px;

    overflow:hidden;

    box-shadow:

    0 20px 55px rgba(17,24,39,.08);


}



.present-card-glow {


    position:absolute;

    width:250px;

    height:250px;

    right:-100px;

    top:-100px;


    background:

    radial-gradient(
        circle,
        #a78bfa,
        transparent 70%
    );


    opacity:.3;


}



.present-inner {


    position:relative;

    z-index:2;


}




.present-badge {


    display:inline-block;

    background:#ede9fe;

    color:#6d28d9;

    padding:6px 14px;

    border-radius:50px;

    font-size:.72rem;

    font-weight:700;

    margin-bottom:20px;


}





.present-inner h3 {


    color:#4f46e5;

    font-size:2rem;

    line-height:1.3;

    margin-bottom:15px;


}





.present-inner p {


    color:#4b5563;

    line-height:1.7;

    margin-bottom:30px;


}





/* FEATURE BOX */


.present-feature-box {


    display:grid;

    grid-template-columns:1fr 1fr;

    gap:15px;


}





.present-feature-box div {


    background:white;

    border:1px solid #e5e7eb;

    padding:15px;

    border-radius:12px;

    display:flex;

    align-items:center;

    gap:12px;

    transition:.3s;


}




.present-feature-box div:hover {


    transform:translateY(-4px);

    border-color:#c4b5fd;

    box-shadow:0 10px 25px rgba(124,58,237,.08);


}




.present-feature-box i {


    color:#7c3aed;

    font-size:1.2rem;


}




.present-feature-box span {


    font-size:.9rem;

    font-weight:600;

    color:#374151;


}






/* RESPONSIVE */


@media(max-width:992px){


.company-about-grid{


grid-template-columns:1fr;


}


.company-about-content h2{


font-size:2.2rem;


}


}




@media(max-width:600px){


.company-about-section{


padding:60px 0;


}


.company-about-content h2{


font-size:1.8rem;


}



.company-present-card{


padding:28px;


}



.present-feature-box{


grid-template-columns:1fr;


}


}



/* =====================================
   COMPANY GROWTH STATISTICS
===================================== */


.growth-stats-section {


    padding:90px 0;


    background:

    linear-gradient(
        180deg,
        #f8fafc,
        #ffffff
    );


}




.growth-stats-container {


    width:90%;

    max-width:1200px;

    margin:auto;


}




/* HEADER */


.growth-stats-header {


    text-align:center;

    max-width:750px;

    margin:0 auto 50px;


}



.growth-stats-label {


    display:inline-block;


    padding:7px 16px;


    background:

    linear-gradient(
        90deg,
        #ede9fe,
        #ddd6fe
    );


    color:#5b21b6;


    font-size:.75rem;


    font-weight:700;


    letter-spacing:.08em;


    border-radius:50px;


    margin-bottom:18px;


}




.growth-stats-header h2 {


    font-size:2.5rem;


    color:#111827;


    font-weight:800;


    margin-bottom:15px;


}




.growth-stats-header p {


    color:#6b7280;


    font-size:1.05rem;


    line-height:1.7;


}







/* GRID */


.growth-stats-grid {


    display:grid;


    grid-template-columns:

    repeat(4,1fr);


    gap:25px;


}





/* CARD */


.growth-stat-card {


    background:white;


    border:1px solid #e5e7eb;


    border-radius:20px;


    padding:35px 25px;


    text-align:center;


    transition:.35s ease;


    box-shadow:

    0 15px 40px rgba(17,24,39,.05);


}




.growth-stat-card:hover {


    transform:translateY(-8px);


    border-color:#c4b5fd;


    box-shadow:

    0 25px 55px rgba(124,58,237,.12);


}






/* ICON */


.growth-icon-box {


    width:65px;


    height:65px;


    margin:0 auto 20px;


    display:flex;


    align-items:center;


    justify-content:center;


    border-radius:16px;


    background:

    linear-gradient(
        135deg,
        #ede9fe,
        #ddd6fe
    );


}




.growth-icon-box i {


    font-size:1.7rem;


    color:#7c3aed;


}






/* NUMBER */


.growth-stat-card h3 {


    font-size:2.4rem;


    font-weight:800;


    color:#4f46e5;


    margin-bottom:8px;


}





.growth-stat-card p {


    color:#4b5563;


    font-size:.95rem;


    font-weight:600;


}







/* RESPONSIVE */


@media(max-width:992px){


.growth-stats-grid{


grid-template-columns:

repeat(2,1fr);


}


}





@media(max-width:600px){


.growth-stats-section{


padding:60px 0;


}



.growth-stats-header h2{


font-size:1.9rem;


}



.growth-stats-grid{


grid-template-columns:1fr;


}



}



/* =====================================
   COMPANY HISTORY TIMELINE
===================================== */


.company-timeline-section {


    padding:50px 0;


    background:

    linear-gradient(
        180deg,
        #ffffff,
        #f8fafc
    );


}



.company-timeline-container {


    width:90%;

    max-width:1100px;

    margin:auto;


}




/* HEADER */


.company-timeline-header {


    text-align:center;

    max-width:750px;

    margin:0 auto 70px;


}



.timeline-label {


    display:inline-block;

    padding:7px 16px;

    background:

    linear-gradient(
        90deg,
        #ede9fe,
        #ddd6fe
    );


    color:#5b21b6;

    border-radius:50px;

    font-size:.75rem;

    font-weight:700;

    letter-spacing:.08em;

    margin-bottom:18px;


}



.company-timeline-header h2 {


    font-size:2.6rem;

    color:#111827;

    font-weight:800;

    line-height:1.25;

    margin-bottom:15px;


}



.company-timeline-header p {


    color:#6b7280;

    line-height:1.7;


}




/* TIMELINE */


.company-timeline-wrapper {


    position:relative;


}




.company-timeline-wrapper::before {


    content:"";

    position:absolute;


    left:50%;

    transform:translateX(-50%);


    top:0;

    width:3px;

    height:100%;


    background:

    linear-gradient(
        #c4b5fd,
        #ddd6fe
    );


}





/* ITEM */


.timeline-item {


    width:50%;

    position:relative;

    padding:25px 45px;


}



.timeline-item:nth-child(odd){

    left:0;

    text-align:right;

}


.timeline-item:nth-child(even){

    left:50%;

    text-align:left;

}




/* DOT */


.timeline-dot {


    position:absolute;

    top:45px;


    width:18px;

    height:18px;


    background:#7c3aed;


    border-radius:50%;


    border:4px solid white;


    box-shadow:

    0 0 0 5px #ddd6fe;


}



.timeline-item:nth-child(odd)
.timeline-dot{


    right:-9px;


}



.timeline-item:nth-child(even)
.timeline-dot{


    left:-9px;


}





/* CARD */


.timeline-card {


    background:white;


    border:1px solid #e5e7eb;


    border-radius:18px;


    padding:30px;


    box-shadow:


    0 15px 40px rgba(17,24,39,.06);


    transition:.3s;


}



.timeline-card:hover{


    transform:translateY(-6px);


    border-color:#c4b5fd;


    box-shadow:


    0 25px 50px rgba(124,58,237,.12);


}





.timeline-year {


    display:inline-block;


    padding:5px 13px;


    background:#f5f3ff;


    color:#6d28d9;


    border-radius:50px;


    font-size:.75rem;


    font-weight:700;


    margin-bottom:15px;


}





.timeline-card h3 {


    color:#4f46e5;


    font-size:1.35rem;


    margin-bottom:12px;


}



.timeline-card p {


    color:#4b5563;


    line-height:1.7;


    font-size:.95rem;


}






/* RESPONSIVE */


@media(max-width:768px){


.company-timeline-wrapper::before{


left:15px;


}



.timeline-item,


.timeline-item:nth-child(even),


.timeline-item:nth-child(odd){


width:100%;


left:0;


text-align:left;


padding-left:50px;


padding-right:0;


}



.timeline-item:nth-child(odd)
.timeline-dot,


.timeline-item:nth-child(even)
.timeline-dot{


left:6px;


right:auto;


}



.company-timeline-header h2{


font-size:2rem;


}



}




/* =====================================
   CHAIRMAN LEADERSHIP SECTION
===================================== */


.leadership-chairman-section {


    padding:50px 0;


    background:

    linear-gradient(
        180deg,
        #f8fafc,
        #ffffff
    );


}



.leadership-container {


    width:90%;

    max-width:1200px;

    margin:auto;


}




/* HEADER */


.leadership-header {


    text-align:center;

    max-width:750px;

    margin:0 auto 60px;


}



.leadership-label {


    display:inline-block;


    padding:7px 16px;


    background:

    linear-gradient(
        90deg,
        #ede9fe,
        #ddd6fe
    );


    color:#5b21b6;


    border-radius:50px;


    font-size:.75rem;


    font-weight:700;


    letter-spacing:.08em;


    margin-bottom:18px;


}



.leadership-header h2 {


    font-size:2.6rem;


    color:#111827;


    font-weight:800;


    margin-bottom:15px;


}



.leadership-header p {


    color:#6b7280;


    line-height:1.7;


}





/* MAIN CARD */


.chairman-zigzag-card {


    display:grid;


    grid-template-columns:.85fr 1.15fr;


    gap:60px;


    align-items:center;


    background:white;


    border:1px solid #e5e7eb;


    border-radius:25px;


    padding:50px;


    box-shadow:


    0 20px 60px rgba(17,24,39,.08);


}




/* IMAGE SIDE */


.chairman-image-side {


    text-align:center;


}



.chairman-image-wrapper {


    width:320px;


    height:320px;


    margin:auto;


    border-radius:50%;


    padding:10px;


    background:


    linear-gradient(
        135deg,
        #8b5cf6,
        #c4b5fd
    );


}



.chairman-image-wrapper img {


    width:100%;


    height:100%;


    object-fit:cover;


    border-radius:50%;


    border:8px solid white;


}




.chairman-name-card {


    margin-top:25px;


}



.chairman-name-card h3 {


    color:#4f46e5;


    font-size:1.3rem;


    margin-bottom:8px;


}



.chairman-name-card p {


    color:#6b7280;


    font-weight:600;


}





/* MESSAGE SIDE */


.chairman-message-side {


    padding-left:10px;


}



.message-tag {


    display:inline-block;


    padding:6px 14px;


    border-radius:50px;


    background:#f5f3ff;


    color:#6d28d9;


    font-size:.75rem;


    font-weight:700;


    margin-bottom:20px;


}




.chairman-message-side h2 {


    font-size:2.2rem;


    line-height:1.3;


    color:#4f46e5;


    margin-bottom:20px;


}



.chairman-message-side p {


    color:#4b5563;


    line-height:1.8;


    margin-bottom:18px;


}






/* RESPONSIVE */


@media(max-width:992px){


.chairman-zigzag-card{


grid-template-columns:1fr;


padding:35px;


}



.chairman-image-wrapper{


width:260px;

height:260px;


}



.chairman-message-side{


padding-left:0;


}


}





@media(max-width:600px){


.leadership-chairman-section{


padding:60px 0;


}



.leadership-header h2{


font-size:2rem;


}



.chairman-zigzag-card{


padding:25px;


}



.chairman-image-wrapper{


width:220px;

height:220px;


}



.chairman-message-side h2{


font-size:1.7rem;


}


}



/* =====================================
   MANAGING DIRECTOR SECTION
===================================== */


.leadership-md-section {


    padding:50px 0;


    background:#ffffff;


}



.leadership-md-container {


    width:90%;

    max-width:1200px;

    margin:auto;


}



/* MAIN CARD */


.md-zigzag-card {


    display:grid;


    grid-template-columns:1.15fr .85fr;


    gap:60px;


    align-items:center;


    background:

    linear-gradient(
        135deg,
        #ffffff,
        #f8fafc
    );


    border:1px solid #e5e7eb;


    border-radius:25px;


    padding:50px;


    box-shadow:


    0 20px 60px rgba(17,24,39,.08);


}





/* MESSAGE SIDE */


.md-message-side {


    order:1;


}



.md-message-tag {


    display:inline-block;


    padding:6px 14px;


    background:#f5f3ff;


    color:#6d28d9;


    border-radius:50px;


    font-size:.75rem;


    font-weight:700;


    margin-bottom:20px;


}





.md-message-side h2 {


    font-size:2.2rem;


    color:#4f46e5;


    line-height:1.3;


    margin-bottom:20px;


}



.md-message-side p {


    color:#4b5563;


    font-size:1rem;


    line-height:1.8;


    margin-bottom:18px;


}





/* IMAGE SIDE */


.md-image-side {


    order:2;


    text-align:center;


}





.md-image-wrapper {


    width:320px;


    height:320px;


    margin:auto;


    border-radius:50%;


    padding:10px;


    background:


    linear-gradient(
        135deg,
        #4f46e5,
        #a78bfa
    );


}




.md-image-wrapper img {


    width:100%;


    height:100%;


    object-fit:cover;


    border-radius:50%;


    border:8px solid white;


}





.md-name-card {


    margin-top:25px;


}




.md-name-card h3 {


    font-size:1.3rem;


    color:#4f46e5;


    margin-bottom:8px;


}




.md-name-card p {


    color:#6b7280;


    font-weight:600;


}






/* HOVER EFFECT */


.md-zigzag-card:hover {


    box-shadow:


    0 30px 70px rgba(79,70,229,.12);


}






/* RESPONSIVE */


@media(max-width:992px){



.md-zigzag-card{


grid-template-columns:1fr;


padding:35px;


}



.md-message-side{


order:2;


}



.md-image-side{


order:1;


}



.md-image-wrapper{


width:260px;

height:260px;


}


}




@media(max-width:600px){


.leadership-md-section{


padding:60px 0;


}



.md-zigzag-card{


padding:25px;


}



.md-image-wrapper{


width:220px;

height:220px;


}



.md-message-side h2{


font-size:1.7rem;


}



}


/* =====================================
   COMPANY VALUES SECTION
===================================== */


.company-values-section {


    padding:100px 0;


    background:

    linear-gradient(
        180deg,
        #f8fafc,
        #ffffff
    );


}




.company-values-container {


    width:90%;

    max-width:1200px;

    margin:auto;


}





/* HEADER */


.company-values-header {


    text-align:center;


    max-width:750px;


    margin:0 auto 60px;


}



.values-label {


    display:inline-block;


    padding:7px 16px;


    background:

    linear-gradient(
        90deg,
        #ede9fe,
        #ddd6fe
    );


    color:#5b21b6;


    border-radius:50px;


    font-size:.75rem;


    font-weight:700;


    letter-spacing:.08em;


    margin-bottom:18px;


}




.company-values-header h2 {


    font-size:2.6rem;


    color:#111827;


    font-weight:800;


    margin-bottom:15px;


}




.company-values-header p {


    color:#6b7280;


    line-height:1.7;


}






/* VISION MISSION */


.vision-mission-grid {


    display:grid;


    grid-template-columns:repeat(2,1fr);


    gap:30px;


    margin-bottom:45px;


}




.vision-card {


    background:white;


    border:1px solid #e5e7eb;


    border-radius:22px;


    padding:40px;


    transition:.3s;


    box-shadow:


    0 15px 40px rgba(17,24,39,.05);


}



.vision-card:hover {


    transform:translateY(-6px);


    border-color:#c4b5fd;


    box-shadow:


    0 25px 55px rgba(124,58,237,.12);


}





.vision-icon {


    width:65px;


    height:65px;


    border-radius:16px;


    display:flex;


    align-items:center;


    justify-content:center;


    background:


    linear-gradient(
        135deg,
        #ede9fe,
        #ddd6fe
    );


    margin-bottom:25px;


}



.vision-icon i {


    font-size:1.7rem;


    color:#7c3aed;


}




.vision-card h3 {


    font-size:1.6rem;


    color:#4f46e5;


    margin-bottom:15px;


}



.vision-card p {


    color:#4b5563;


    line-height:1.8;


}







/* CORE VALUES */


.core-values-grid {


    display:grid;


    grid-template-columns:repeat(5,1fr);


    gap:20px;


}





.core-value-card {


    background:white;


    border:1px solid #e5e7eb;


    border-radius:18px;


    padding:30px 20px;


    text-align:center;


    transition:.3s;


}



.core-value-card:hover {


    transform:translateY(-6px);


    background:#faf9ff;


    border-color:#c4b5fd;


}



.core-value-card i {


    font-size:2rem;


    color:#7c3aed;


    margin-bottom:18px;


}



.core-value-card h4 {


    color:#4f46e5;


    font-size:1.15rem;


    margin-bottom:10px;


}



.core-value-card p {


    color:#6b7280;


    font-size:.9rem;


    line-height:1.6;


}







/* RESPONSIVE */


@media(max-width:1100px){


.core-values-grid{


grid-template-columns:repeat(3,1fr);


}


}





@media(max-width:992px){


.vision-mission-grid{


grid-template-columns:1fr;


}



.core-values-grid{


grid-template-columns:repeat(2,1fr);


}


}




@media(max-width:600px){


.company-values-section{


padding:60px 0;


}



.company-values-header h2{


font-size:2rem;


}



.core-values-grid{


grid-template-columns:1fr;


}



.vision-card{


padding:28px;


}


}

/* =====================================
   ABOUT FINAL CTA SECTION
===================================== */


.about-final-cta-section {


    padding:40px 0;


    background:

    linear-gradient(
        180deg,
        #ffffff,
        #f8fafc
    );


}



.about-final-cta-container {


    width:90%;

    max-width:1200px;

    margin:auto;


}





/* CTA PANEL */


.about-final-cta-panel {


    position:relative;


    overflow:hidden;


    text-align:center;


    padding:70px 50px;


    border-radius:28px;


    background:


    linear-gradient(
        135deg,
        #4f46e5,
        #7c3aed
    );


    box-shadow:


    0 30px 70px rgba(79,70,229,.25);


}






/* BACKGROUND GLOW */


.about-final-cta-panel::before {


    content:"";


    position:absolute;


    width:300px;


    height:300px;


    top:-120px;


    right:-100px;


    background:


    radial-gradient(
        circle,
        rgba(255,255,255,.35),
        transparent 70%
    );


}




.about-final-cta-panel::after {


    content:"";


    position:absolute;


    width:250px;


    height:250px;


    bottom:-100px;


    left:-80px;


    background:


    radial-gradient(
        circle,
        rgba(255,255,255,.2),
        transparent 70%
    );


}





/* CONTENT */


.about-final-cta-panel > * {


    position:relative;


    z-index:2;


}




.about-final-cta-badge {


    display:inline-block;


    background:


    rgba(255,255,255,.15);


    color:white;


    padding:7px 16px;


    border-radius:50px;


    font-size:.75rem;


    font-weight:700;


    letter-spacing:.08em;


    margin-bottom:20px;


    border:1px solid rgba(255,255,255,.25);


}





.about-final-cta-panel h2 {


    color:white;


    font-size:2.8rem;


    line-height:1.25;


    font-weight:800;


    max-width:750px;


    margin:0 auto 20px;


}




.about-final-cta-panel p {


    color:rgba(255,255,255,.85);


    max-width:720px;


    margin:0 auto 35px;


    line-height:1.8;


    font-size:1.05rem;


}







/* BUTTONS */


.about-final-cta-buttons {


    display:flex;


    justify-content:center;


    gap:15px;


}





.about-final-primary-btn {


    background:white;


    color:#4f46e5;


    padding:14px 30px;


    border-radius:12px;


    text-decoration:none;


    font-weight:700;


    transition:.3s;


}




.about-final-primary-btn:hover {


    transform:translateY(-3px);


    box-shadow:


    0 15px 30px rgba(0,0,0,.15);


}






.about-final-secondary-btn {


    border:1px solid rgba(255,255,255,.5);


    color:white;


    padding:14px 30px;


    border-radius:12px;


    text-decoration:none;


    font-weight:600;


    transition:.3s;


}





.about-final-secondary-btn:hover {


    background:white;


    color:#4f46e5;


}







/* RESPONSIVE */


@media(max-width:768px){


.about-final-cta-section{


padding:60px 0;


}



.about-final-cta-panel{


padding:45px 25px;


}



.about-final-cta-panel h2{


font-size:2rem;


}



.about-final-cta-buttons{


flex-direction:column;


}



.about-final-primary-btn,

.about-final-secondary-btn{


width:100%;


}


}




/*Product Page code*/

/* =========================================
   PRODUCTS HERO SECTION
========================================= */


.products-hero-section {


    padding:90px 0;


    background:

    linear-gradient(
        180deg,
        #f8fafc 0%,
        #ffffff 100%
    );


}




.products-section-container {


    width:90%;


    max-width:1200px;


    margin:auto;


}






.products-hero-grid {


    display:grid;


    grid-template-columns:

    1.15fr .85fr;


    gap:60px;


    align-items:center;


}








/* BADGE */


.products-hero-badge {


    display:inline-flex;


    align-items:center;


    padding:7px 16px;


    background:


    linear-gradient(
        90deg,
        #ede9fe,
        #ddd6fe
    );


    color:#5b21b6;


    border-radius:50px;


    font-size:.75rem;


    font-weight:700;


    letter-spacing:.08em;


    margin-bottom:20px;


}







/* HEADING */


.products-hero-content h1 {


    font-size:3rem;


    line-height:1.15;


    font-weight:800;


    color:#111827;


    margin-bottom:15px;


}





.products-hero-highlight {


    color:#4f46e5 !important;


    font-size:1.15rem;


    font-weight:700;


}






.products-hero-content p {


    color:#4b5563;


    font-size:1.05rem;


    line-height:1.8;


}









/* FEATURES */


.products-hero-features {


    display:flex;


    flex-direction:column;


    gap:14px;


    margin:30px 0;


}





.products-hero-features span {


    display:flex;


    align-items:center;


    gap:12px;


    background:white;


    border:1px solid #e5e7eb;


    padding:12px 15px;


    border-radius:12px;


    color:#374151;


    font-weight:600;


}






.products-hero-features i {


    color:#7c3aed;


}








/* BUTTONS */


.products-hero-actions {


    display:flex;


    gap:15px;


}




.products-btn-primary {


    padding:14px 30px;


    border-radius:12px;


    background:#4f46e5;


    color:white;


    text-decoration:none;


    font-weight:700;


}



.products-btn-primary:hover {


    background:#4338ca;


}






.products-btn-secondary {


    padding:14px 30px;


    border-radius:12px;


    border:1px solid #c7d2fe;


    color:#4338ca;


    background:white;


    text-decoration:none;


    font-weight:600;


}










/* RIGHT CARD */


.products-ecosystem-card {


    position:relative;


    overflow:hidden;


    background:


    linear-gradient(
        135deg,
        #ffffff,
        #f5f3ff
    );


    border:1px solid #ddd6fe;


    border-radius:25px;


    padding:45px;


    box-shadow:


    0 25px 60px rgba(17,24,39,.08);


}







.products-glow-effect {


    position:absolute;


    width:250px;


    height:250px;


    right:-100px;


    top:-100px;


    background:


    radial-gradient(
        circle,
        #a78bfa,
        transparent 70%
    );


    opacity:.35;


}






.products-ecosystem-content {


    position:relative;


    text-align:center;


    z-index:2;


}




.products-main-icon {


    width:80px;


    height:80px;


    margin:auto;


    display:flex;


    align-items:center;


    justify-content:center;


    border-radius:20px;


    background:


    linear-gradient(
        135deg,
        #ede9fe,
        #ddd6fe
    );


}



.products-main-icon i {


    font-size:2.5rem;


    color:#7c3aed;


}







.products-ecosystem-content h3 {


    margin-top:25px;


    color:#4f46e5;


    font-size:1.7rem;


}






.products-ecosystem-content p {


    color:#6b7280;


    line-height:1.7;


}








/* COUNTERS */


.products-counter-grid {


    display:grid;


    grid-template-columns:repeat(3,1fr);


    gap:15px;


    margin-top:30px;


}




.products-counter-box {


    background:white;


    border:1px solid #e5e7eb;


    border-radius:12px;


    padding:15px 10px;


}




.products-counter-box strong {


    display:block;


    font-size:1.5rem;


    color:#4f46e5;


}





.products-counter-box span {


    font-size:.8rem;


    color:#6b7280;


}








/* RESPONSIVE */


@media(max-width:992px){


.products-hero-grid{


grid-template-columns:1fr;


}



.products-hero-content h1{


font-size:2.3rem;


}


}





@media(max-width:600px){


.products-hero-actions{


flex-direction:column;


}



.products-counter-grid{


grid-template-columns:1fr;


}



.products-ecosystem-card{


padding:30px;


}


}




/* =========================================
   PRODUCT PORTFOLIO SECTION
========================================= */


.products-portfolio-section {


    padding:100px 0;


    background:#ffffff;


}







.products-section-header {


    text-align:center;


    max-width:750px;


    margin:0 auto 60px;


}




.products-section-badge {


    display:inline-block;


    padding:7px 16px;


    background:#ede9fe;


    color:#5b21b6;


    border-radius:50px;


    font-size:.75rem;


    font-weight:700;


    letter-spacing:.08em;


    margin-bottom:18px;


}





.products-section-header h2 {


    font-size:2.6rem;


    color:#111827;


    font-weight:800;


}



.products-section-header p {


    color:#6b7280;


    line-height:1.7;


}









/* GRID */


.products-portfolio-grid {


    display:grid;


    grid-template-columns:repeat(3,1fr);


    gap:30px;


}









/* CARD */


.products-portfolio-card {


    background:white;


    border:1px solid #e5e7eb;


    border-radius:22px;


    padding:35px;


    transition:.3s;


    box-shadow:

    0 15px 40px rgba(17,24,39,.05);


}




.products-portfolio-card:hover {


    transform:translateY(-8px);


    border-color:#c4b5fd;


    box-shadow:

    0 25px 60px rgba(124,58,237,.15);


}








.products-card-top {


    display:flex;


    justify-content:space-between;


    align-items:center;


    margin-bottom:25px;


}





.products-card-icon {


    width:55px;


    height:55px;


    border-radius:15px;


    display:flex;


    align-items:center;


    justify-content:center;


    background:#f5f3ff;


}




.products-card-icon i {


    color:#7c3aed;


    font-size:1.7rem;


}







/* BADGES */


.products-live-badge,

.products-coming-badge {


    font-size:.7rem;


    font-weight:700;


    padding:5px 12px;


    border-radius:50px;


}



.products-live-badge {


    background:#dcfce7;


    color:#166534;


}



.products-coming-badge {


    background:#ede9fe;


    color:#6d28d9;


}








.products-portfolio-card h3 {


    color:#4f46e5;


    font-size:1.35rem;


    margin-bottom:15px;


}



.products-portfolio-card p {


    color:#4b5563;


    line-height:1.7;


}









/* FEATURES */


.products-card-features {


    margin:25px 0;


    display:flex;


    flex-direction:column;


    gap:10px;


}



.products-card-features span {


    display:flex;


    align-items:center;


    gap:10px;


    font-size:.9rem;


    font-weight:600;


    color:#374151;


}




.products-card-features i {


    color:#7c3aed;


}








/* BUTTON */


.products-card-button {


    display:block;


    text-align:center;


    padding:12px;


    background:#4f46e5;


    color:white;


    border-radius:10px;


    text-decoration:none;


    font-weight:600;


}








@media(max-width:1100px){


.products-portfolio-grid{


grid-template-columns:repeat(2,1fr);


}


}




@media(max-width:700px){


.products-portfolio-grid{


grid-template-columns:1fr;


}



.products-section-header h2{


font-size:2rem;


}


}



/* =========================================
   WHY CHOOSE PRODUCTS SECTION
========================================= */


.products-why-section {


    padding:100px 0;


    background:


    linear-gradient(
        180deg,
        #f8fafc,
        #ffffff
    );


}







.products-why-header {


    text-align:center;


    max-width:750px;


    margin:0 auto 60px;


}





.products-why-header h2 {


    font-size:2.6rem;


    color:#111827;


    font-weight:800;


    margin:15px 0;


}





.products-why-header p {


    color:#6b7280;


    line-height:1.7;


}









/* GRID */


.products-why-grid {


    display:grid;


    grid-template-columns:repeat(3,1fr);


    gap:30px;


}









/* CARD */


.products-why-card {


    background:white;


    border:1px solid #e5e7eb;


    border-radius:22px;


    padding:35px;


    transition:.3s;


    box-shadow:


    0 15px 40px rgba(17,24,39,.05);


}




.products-why-card:hover {


    transform:translateY(-8px);


    border-color:#c4b5fd;


    box-shadow:


    0 25px 60px rgba(124,58,237,.12);


}









/* ICON */


.products-why-icon {


    width:65px;


    height:65px;


    display:flex;


    align-items:center;


    justify-content:center;


    border-radius:18px;


    background:


    linear-gradient(
        135deg,
        #ede9fe,
        #ddd6fe
    );


    margin-bottom:25px;


}





.products-why-icon i {


    font-size:1.8rem;


    color:#7c3aed;


}









.products-why-card h3 {


    font-size:1.3rem;


    color:#4f46e5;


    margin-bottom:12px;


}




.products-why-card p {


    color:#4b5563;


    line-height:1.7;


    font-size:.95rem;


}









/* RESPONSIVE */


@media(max-width:1000px){


.products-why-grid{


grid-template-columns:repeat(2,1fr);


}


}





@media(max-width:700px){


.products-why-grid{


grid-template-columns:1fr;


}



.products-why-header h2{


font-size:2rem;


}


}

/* =========================================
   PRODUCT DEVELOPMENT PHILOSOPHY
========================================= */


.products-philosophy-section {


    padding:100px 0;


    background:#ffffff;


}







.products-philosophy-grid {


    display:grid;


    grid-template-columns:1fr 1fr;


    gap:70px;


    align-items:center;


}







/* LEFT SIDE */


.products-philosophy-label {


    display:inline-block;


    padding:7px 16px;


    background:#ede9fe;


    color:#5b21b6;


    border-radius:50px;


    font-size:.75rem;


    font-weight:700;


    letter-spacing:.08em;


    margin-bottom:20px;


}





.products-philosophy-content h2 {


    font-size:2.6rem;


    color:#111827;


    font-weight:800;


    line-height:1.25;


    margin-bottom:20px;


}




.products-philosophy-content p {


    color:#4b5563;


    line-height:1.8;


    margin-bottom:18px;


}









/* POINTS */


.products-philosophy-points {


    display:flex;


    flex-direction:column;


    gap:14px;


    margin-top:30px;


}





.products-philosophy-points span {


    display:flex;


    align-items:center;


    gap:12px;


    padding:12px 15px;


    background:#f9fafb;


    border-radius:12px;


    border:1px solid #e5e7eb;


    font-weight:600;


    color:#374151;


}





.products-philosophy-points i {


    color:#7c3aed;


}









/* RIGHT PANEL */


.products-philosophy-panel {


    padding:35px;


    border-radius:25px;


    background:


    linear-gradient(
        135deg,
        #ffffff,
        #f5f3ff
    );


    border:1px solid #ddd6fe;


    box-shadow:


    0 25px 60px rgba(17,24,39,.08);


}









/* BOX */


.philosophy-box {


    display:flex;


    gap:20px;


    align-items:flex-start;


    padding:25px;


    background:white;


    border-radius:18px;


    border:1px solid #e5e7eb;


    margin-bottom:20px;


    transition:.3s;


}




.philosophy-box:last-child {


    margin-bottom:0;


}





.philosophy-box:hover {


    transform:translateX(8px);


    border-color:#c4b5fd;


}








.philosophy-box i {


    width:50px;


    height:50px;


    display:flex;


    align-items:center;


    justify-content:center;


    border-radius:14px;


    background:#ede9fe;


    color:#7c3aed;


    font-size:1.4rem;


}







.philosophy-box h3 {


    color:#4f46e5;


    margin-bottom:8px;


    font-size:1.2rem;


}




.philosophy-box p {


    color:#6b7280;


    line-height:1.6;


    font-size:.9rem;


}









/* RESPONSIVE */


@media(max-width:992px){


.products-philosophy-grid{


grid-template-columns:1fr;


}



.products-philosophy-content h2{


font-size:2.2rem;


}


}





@media(max-width:600px){


.products-philosophy-section{


padding:60px 0;


}



.products-philosophy-panel{


padding:25px;


}



.philosophy-box{


flex-direction:column;


}


}

/* =========================================
   FINAL PRODUCTS CTA SECTION
========================================= */


.products-final-cta-section {


    padding:100px 0;


    background:#ffffff;


}







.products-final-cta-panel {


    position:relative;


    overflow:hidden;


    text-align:center;


    padding:70px 50px;


    border-radius:30px;


    background:


    linear-gradient(
        135deg,
        #4f46e5,
        #7c3aed
    );


    box-shadow:


    0 30px 80px rgba(79,70,229,.25);


}








/* BACKGROUND GLOW */


.products-final-cta-panel::before {


    content:"";


    position:absolute;


    width:350px;


    height:350px;


    right:-120px;


    top:-120px;


    background:


    radial-gradient(
        circle,
        rgba(255,255,255,.25),
        transparent 70%
    );


}







.products-final-cta-panel::after {


    content:"";


    position:absolute;


    width:300px;


    height:300px;


    left:-100px;


    bottom:-120px;


    background:


    radial-gradient(
        circle,
        rgba(255,255,255,.15),
        transparent 70%
    );


}









.products-final-cta-badge {


    position:relative;


    z-index:2;


    display:inline-block;


    padding:7px 18px;


    border-radius:50px;


    background:


    rgba(255,255,255,.15);


    color:white;


    font-size:.75rem;


    font-weight:700;


    letter-spacing:.08em;


    margin-bottom:20px;


}









.products-final-cta-panel h2 {


    position:relative;


    z-index:2;


    color:white;


    font-size:2.8rem;


    line-height:1.2;


    font-weight:800;


    max-width:750px;


    margin:0 auto 20px;


}









.products-final-cta-panel p {


    position:relative;


    z-index:2;


    color:rgba(255,255,255,.9);


    max-width:700px;


    margin:0 auto 35px;


    font-size:1.05rem;


    line-height:1.8;


}









/* BUTTONS */


.products-final-cta-buttons {


    position:relative;


    z-index:2;


    display:flex;


    justify-content:center;


    gap:18px;


}








.products-final-primary-btn {


    padding:14px 35px;


    background:white;


    color:#4f46e5;


    border-radius:12px;


    text-decoration:none;


    font-weight:700;


    transition:.3s;


}




.products-final-primary-btn:hover {


    transform:translateY(-3px);


}








.products-final-secondary-btn {


    padding:14px 35px;


    border:1px solid rgba(255,255,255,.5);


    color:white;


    border-radius:12px;


    text-decoration:none;


    font-weight:600;


    transition:.3s;


}




.products-final-secondary-btn:hover {


    background:white;


    color:#4f46e5;


}









/* RESPONSIVE */


@media(max-width:700px){



.products-final-cta-section{


padding:60px 0;


}



.products-final-cta-panel{


padding:45px 25px;


}




.products-final-cta-panel h2{


font-size:2rem;


}




.products-final-cta-buttons{


flex-direction:column;


}



}


/* Blog Page Code*/


/* ==========================================================================
   HERO CONVERSION ENGINE & FEATURED MANIFEST ARCHITECTURE
   ========================================================================== */

.blog-hero-section {
  background: linear-gradient(135deg, var(--bg-slate-tint) 0%, #f1f5f9 100%);
  padding: 80px 0 60px 0;
  border-bottom: 1px solid var(--border-clean);
}

.section-container {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
}

.section-center-head {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 50px auto;
}

.section-eyebrow {
  color: var(--color-sms-primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.85rem;
  display: block;
  margin-bottom: 12px;
}

.section-center-head h1 {
  font-size: 2.75rem;
  font-family: var(--font-header-suite);
  color: var(--text-charcoal);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}

.section-center-head p {
  font-size: 1.1rem;
  color: var(--text-slate-medium);
  line-height: 1.6;
}

/* Featured Blueprint Layout */
.blog-featured-wrapper {
  margin-top: 3rem;
  background: var(--bg-pure-white);
  border: 1px solid var(--border-clean);
  border-radius: 16px;
  box-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.05);
  overflow: hidden;
}

.featured-blog-card .featured-flex-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.featured-image-placeholder {
  flex: 1;
  min-width: 300px;
  background: linear-gradient(135deg, #1e3a8a 0%, var(--bg-slate-dark) 100%);
  color: var(--bg-pure-white);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
  font-size: 4.5rem;
}

.featured-content-pane {
  flex: 1.5;
  min-width: 320px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.blog-meta-tag-row {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 16px;
}

/* Segment-Specific Content Badges */
.blog-pill {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-block;
}

.blog-pill-sms { background: var(--color-sms-bg); color: var(--color-sms-primary); }
.blog-pill-logistics { background: var(--color-logistics-bg); color: var(--color-logistics-primary); }
.blog-pill-hrms { background: var(--color-hrms-bg); color: var(--color-hrms-primary); }

.blog-date {
  font-size: 0.85rem;
  color: var(--text-muted-gray);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.featured-content-pane h3 {
  font-size: 1.75rem;
  font-family: var(--font-header-suite);
  color: var(--text-charcoal);
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.3;
}

.featured-content-pane h3 a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease;
}

.featured-content-pane h3 a:hover {
  color: var(--color-sms-primary);
}

.featured-content-pane p {
  color: var(--text-slate-medium);
  line-height: 1.6;
  margin-bottom: 24px;
}

.read-more-link-btn {
  color: var(--color-sms-primary);
  font-weight: 700;
  text-decoration: none;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.2s ease, color 0.2s ease;
}

.read-more-link-btn:hover {
  color: var(--color-sms-hover);
  gap: 12px;
}

/* ==========================================================================
   HIGH-CONVERSION VALUE CONVERSIONS (CTA LINK TRAYS)
   ========================================================================== */

.article-card-cta-tray {
  display: flex;
  flex-wrap: wrap;
  background: var(--bg-slate-tint);
  border-top: 1px solid var(--border-clean);
  padding: 15px 25px;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
}

.tray-title-intent {
  font-size: 0.85rem;
  color: var(--text-muted-gray);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tray-action-cluster {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.article-cta-btn {
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-charcoal);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s ease, transform 0.2s ease;
}

.article-cta-btn:hover {
  color: var(--color-sms-primary);
  transform: translateY(-1px);
}

.article-cta-btn.cta-whatsapp-link {
  color: var(--color-whatsapp);
}

.article-cta-btn.cta-whatsapp-link:hover {
  color: #1ebd58;
}

/* ==========================================================================
   MONEY PAGES - GEOTARGETED SYSTEM DIRECTORY STACK
   ========================================================================== */

.solutions-directory-section {
  padding: 80px 0;
  background: var(--bg-pure-white);
  border-bottom: 1px solid var(--border-clean);
}

.solutions-directory-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.money-keyword-card {
  background: var(--bg-pure-white);
  border: 1px solid var(--border-clean);
  border-radius: 12px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), 
              box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              border-color 0.3s ease;
}

.money-keyword-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(15, 23, 42, 0.05);
  border-color: rgba(37, 99, 235, 0.2);
}

.solutions-icon-box {
  width: 45px;
  height: 45px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 20px;
}

/* Structural Micro-Branding for Regional Pillars */
.money-keyword-card.pillar-sms .solutions-icon-box { background: var(--color-sms-bg); color: var(--color-sms-primary); }
.money-keyword-card.pillar-logistics .solutions-icon-box { background: var(--color-logistics-bg); color: var(--color-logistics-primary); }
.money-keyword-card.pillar-hrms .solutions-icon-box { background: var(--color-hrms-bg); color: var(--color-hrms-primary); }

.money-keyword-card h4 {
  font-size: 1.25rem;
  font-family: var(--font-header-suite);
  color: var(--text-charcoal);
  font-weight: 700;
  margin-bottom: 10px;
}

.money-keyword-card p {
  color: var(--text-slate-medium);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.money-keyword-card .directory-action-link {
  font-weight: 700;
  text-decoration: none;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s ease, gap 0.2s ease;
}

.money-keyword-card.pillar-sms .directory-action-link { color: var(--color-sms-primary); }
.money-keyword-card.pillar-logistics .directory-action-link { color: var(--color-logistics-primary); }
.money-keyword-card.pillar-hrms .directory-action-link { color: var(--color-hrms-primary); }

.money-keyword-card .directory-action-link:hover {
  gap: 10px;
}

/* ==========================================================================
   STANDARD STRATEGIC ACTION GRID & VALUATIONS
   ========================================================================== */

.blog-grid-section {
  padding: 80px 0;
  background: var(--bg-slate-tint);
}

.blog-case-studies-section {
  padding: 80px 0;
  background: var(--bg-pure-white);
  border-top: 1px solid var(--border-clean);
}

.articles-grid-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.article-grid-card {
  background: var(--bg-pure-white);
  border: 1px solid var(--border-clean);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), 
              box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.article-grid-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(15, 23, 42, 0.06);
}

.card-image-wrapper {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  color: var(--bg-pure-white);
}

/* Visual Triggers by Category Groupings */
.article-grid-card.cat-financial .card-image-wrapper { background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%); }
.article-grid-card.cat-automation .card-image-wrapper { background: linear-gradient(135deg, #10b981 0%, #047857 100%); }
.article-grid-card.cat-logistics .card-image-wrapper { background: linear-gradient(135deg, #f59e0b 0%, #b45309 100%); }

.card-inner-body {
  padding: 26px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-inner-body h4 {
  font-size: 1.35rem;
  font-family: var(--font-header-suite);
  color: var(--text-charcoal);
  font-weight: 700;
  margin: 12px 0;
  line-height: 1.3;
}

.card-inner-body p {
  color: var(--text-slate-medium);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 16px;
  flex-grow: 1;
}

.article-grid-card .article-card-cta-tray {
  padding: 12px 20px;
  background: var(--bg-slate-tint);
}

/* ==========================================================================
   CLOSING SYSTEM CONVERSION PORT
   ========================================================================== */

.cta-banner-section {
  padding: 80px 0;
  background: var(--bg-slate-dark);
  color: var(--bg-pure-white);
}

.cta-box {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.cta-box h2 {
  font-size: 2.25rem;
  font-family: var(--font-header-suite);
  font-weight: 800;
  margin-bottom: 18px;
  color: var(--bg-pure-white);
}

.cta-box p {
  color: #94a3b8;
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto 35px auto;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.cta-primary, 
.cta-secondary,
.cta-whatsapp {
  padding: 14px 28px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.cta-primary {
  background: var(--color-sms-primary);
  color: var(--bg-pure-white);
}

.cta-primary:hover {
  background: var(--color-sms-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.25);
}

.cta-whatsapp {
  background: var(--color-whatsapp);
  color: var(--bg-pure-white);
}

.cta-whatsapp:hover {
  background: #1ebd58;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.25);
}

.cta-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--bg-pure-white);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

/* ==========================================================================
   BREAKPOINT RESPONSIVENESS CAPABILITIES
   ========================================================================== */

@media (max-width: 992px) {
  .featured-image-placeholder {
    min-height: 240px;
  }
  
  .section-center-head h1 {
    font-size: 2.25rem;
  }
}

@media (max-width: 768px) {
  .blog-hero-section,
  .solutions-directory-section,
  .blog-grid-section,
  .blog-case-studies-section,
  .cta-banner-section {
    padding: 60px 0;
  }

  .featured-content-pane {
    padding: 30px 20px;
  }

  .cta-box h2 {
    font-size: 1.85rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-primary, 
  .cta-secondary,
  .cta-whatsapp {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .article-card-cta-tray {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .tray-action-cluster {
    width: 100%;
    flex-direction: column;
    gap: 12px;
  }
  
  .article-cta-btn {
    width: 100%;
  }
}


 /* Page-specific micro-layouts to support clean editorial reading flow */
      .editorial-container { max-width: 800px; margin: 40px auto; padding: 0 20px; }
      .editorial-header { margin-bottom: 40px; }
      .editorial-body h2 { font-size: 1.85rem; color: #0f172a; margin: 40px 0 20px 0; font-weight: 700; font-family: var(--font-header-suite); }
      .editorial-body h3 { font-size: 1.4rem; color: #0f172a; margin: 30px 0 15px 0; font-weight: 700; font-family: var(--font-header-suite); }
      .editorial-body p { font-size: 1.05rem; color: #334155; line-height: 1.75; margin-bottom: 24px; }
      .editorial-body ul, .editorial-body ol { margin-bottom: 24px; padding-left: 24px; }
      .editorial-body li { font-size: 1.05rem; color: #334155; line-height: 1.6; margin-bottom: 10px; }
      .insight-callout-box { background: #f8fafc; border-left: 4px solid var(--color-sms-primary); padding: 24px; border-radius: 0 12px 12px 0; margin: 35px 0; }
      .insight-callout-box p { margin-bottom: 0 !important; font-style: italic; color: #1e293b; }
      .metrics-comparison-table { width: 100%; border-collapse: collapse; margin: 35px 0; font-size: 0.95rem; }
      .metrics-comparison-table th { background: #0f172a; color: #ffffff; text-align: left; padding: 12px 16px; font-weight: 600; }
      .metrics-comparison-table td { padding: 14px 16px; border-bottom: 1px solid #e2e8f0; color: #334155; }
      .metrics-comparison-table tr:nth-child(even) { background: #f8fafc; }
      
      
      
      /* Simple & Professional Tagline Layout */
.brand-tagline-container {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    font-family: system-ui, -apple-system, sans-serif;
}

/* Small, subtle professional accent pill */
.brand-tagline-container .tagline-badge {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background-color: rgba(30, 64, 175, 0.08); /* Transparent blue tint */
    color: #1e40af; /* Your primary dark blue */
    padding: 3px 8px;
    border-radius: 4px;
}

/* Balanced, scannable corporate typography */
.brand-tagline-container .tagline-text {
    font-size: 0.95rem;
    font-weight: 500;
    color: #475569; /* Balanced slate gray */
    margin: 0 !important; /* Prevents layout displacement */
    letter-spacing: 0.3px;
}

/* Clean emphasis on the acronym capitals */
.brand-tagline-container .tagline-text strong {
    color: var(--color-sms-primary); /* Deep near-black contrast */
    font-weight: 700;
}