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

/* ==========================================================================
   CSS DESIGN SYSTEM - SMARTINTELECTUAL
   ========================================================================== */

:root {
  /* Color Tokens */
  --bg-primary: #f8fafc;
  --bg-secondary: #ffffff;
  --bg-dark: #0f172a;
  --bg-dark-light: #1e293b;

  --text-main: #334155;
  --text-muted: #64748b;
  --text-light: #f1f5f9;
  --text-dark: #0f172a;

  --primary: #0a2540;
  --primary-hover: #071a2e;
  --primary-light: #f0f6fc;

  --accent: #ff5a36;
  --accent-hover: #e04622;
  --accent-light: #fff5f2;

  --border-color: #e2e8f0;
  --border-dark: #334155;

  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);

  /* Fonts */
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Borders & Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  /* Layout */
  --container-width: 1200px;
  --header-height: 80px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base Styles & Resets */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-primary);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul,
ol {
  list-style: none;
}

input,
textarea,
button,
select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.25;
}

h1 {
  font-size: 2.75rem;
  letter-spacing: -0.03em;
}

h2 {
  font-size: 2.25rem;
  letter-spacing: -0.02em;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.25rem;
}

.text-gradient {
  color: var(--accent);
}

/* Layout Elements */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.section {
  padding: 50px 0;
  position: relative;
}

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

.section-dark {
  background-color: var(--bg-dark);
  color: var(--text-light);
}

.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: #ffffff;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px auto;
}

.section-header p {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-top: 15px;
}

.section-dark .section-header p {
  color: #94a3b8;
}

/* Ultra-Modern Navigation Header - White Background & Dark Text */
.header-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  z-index: 1000;
  transition: background 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    border-bottom-color 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-nav.scrolled {
  height: 72px;
  background: #ffffff;
  border-bottom-color: rgba(203, 213, 225, 1);
  box-shadow: 0 15px 35px -5px rgba(0, 0, 0, 0.1);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--text-dark);
  letter-spacing: -0.02em;
}

.logo span {
  color: var(--accent);
}

.nav-logo-img {
  height: 46px;
  width: auto;
  vertical-align: middle;
  transition: var(--transition);
}

.header-nav.scrolled .nav-logo-img {
  height: 38px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  height: 100%;
}

.nav-item {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.nav-link {
  padding: 8px 16px;
  font-weight: 600;
  font-size: 0.925rem;
  color: #0f172a;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 5px;
  transition: all 0.25s ease;
}

.nav-link:hover,
.nav-item.active>.nav-link {
  color: #0a2540;
  background: rgba(10, 37, 64, 0.07);
  border: 1px solid rgba(10, 37, 64, 0.12);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

/* Dropdown Menu CSS - Light Card Theme */
.dropdown-menu {
  position: absolute;
  top: 85%;
  left: 50%;
  transform: translateX(calc(-50% - 55px)) translateY(12px);
  width: max-content;
  min-width: 280px;
  max-width: 620px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 40px -10px rgba(15, 23, 42, 0.12), 0 0 15px rgba(0, 0, 0, 0.03);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  z-index: 1010;
  display: grid;
  gap: 8px;
}

.dropdown-menu.single-column-menu {
  width: 320px;
  grid-template-columns: 1fr;
}

.dropdown-menu.mega-menu {
  grid-template-columns: repeat(2, 1fr);
  width: 560px;
}

/* ==========================================================================
   SERVICES MEGA MENU REDESIGN
   ========================================================================== */
.dropdown-menu.services-mega-menu {
  display: grid !important;
  grid-template-columns: 1fr 250px;
  width: 1200px;
  max-width: calc(100vw - 40px);
  padding: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid rgba(226, 232, 240, 0.85);
  box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.16), 0 0 25px rgba(0, 0, 0, 0.02);
  background: #ffffff;
  z-index: 1020;
}

/* Services Grid (Left Column Wrapper) */
.services-grid-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 28px 20px;
  background: #ffffff;
}

.services-grid-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Service Headers */
.services-column-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.825rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding-bottom: 8px;
  border-bottom: 2px solid #f1f5f9;
}

.services-column-header .col-icon {
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  transition: transform 0.3s ease;
}

/* Color Coding for Service Columns */
.col-automation {
  color: #ff5a36;
  border-color: rgba(255, 90, 54, 0.2);
}

.col-automation .col-icon {
  background: rgba(255, 90, 54, 0.1);
}

.col-performance {
  color: #00d2ff;
  border-color: rgba(0, 210, 255, 0.2);
}

.col-performance .col-icon {
  background: rgba(0, 210, 255, 0.1);
}

.col-engineering {
  color: #6366f1;
  border-color: rgba(99, 102, 241, 0.2);
}

.col-engineering .col-icon {
  background: rgba(99, 102, 241, 0.1);
}

.col-security {
  color: #ec4899;
  border-color: rgba(236, 72, 153, 0.2);
}

.col-security .col-icon {
  background: rgba(236, 72, 153, 0.1);
}

/* List Items and Hover states */
.services-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-left: 0;
  margin: 0;
  list-style: none;
}

.services-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 8px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  color: #475569;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  background: transparent;
}

.services-item .item-title {
  transition: transform 0.2s ease;
  line-height: 1.25;
}

.services-item .item-hover-arrow {
  opacity: 0;
  transform: translateX(-6px);
  transition: all 0.2s ease;
  color: var(--accent);
  font-weight: bold;
}

.services-item:hover {
  background: #f8fafc;
  color: var(--text-dark);
}

.services-item:hover .item-title {
  transform: translateX(4px);
}

.services-item:hover .item-hover-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* Hover effect on Column Icon when column items are hovered */
.services-grid-column:hover .services-column-header .col-icon {
  transform: scale(1.15) rotate(5deg);
}

/* Specialized Engineering Sidebar Panel */
.services-sidebar-panel {
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  border-left: 1px solid rgba(226, 232, 240, 0.85);
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}

.sidebar-panel-header {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sidebar-badge {
  background: linear-gradient(135deg, rgba(255, 90, 54, 0.1) 0%, rgba(224, 70, 34, 0.1) 100%);
  color: var(--accent);
  padding: 4px 10px;
  font-size: 0.7rem;
  font-weight: 800;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  width: max-content;
  display: inline-block;
}

.sidebar-panel-header h4 {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--primary);
  margin-top: 4px;
}

.sidebar-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sidebar-card-link {
  display: flex;
  gap: 12px;
  padding: 12px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-sm);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.sidebar-card-icon {
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  transition: all 0.25s ease;
}

.card-icon-mobile {
  background: rgba(0, 210, 255, 0.08);
  color: #00d2ff;
}

.card-icon-design {
  background: rgba(236, 72, 153, 0.08);
  color: #ec4899;
}

.sidebar-card-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sidebar-card-content .card-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: #1e293b;
  transition: color 0.2s ease;
  line-height: 1.2;
}

.sidebar-card-content .card-desc {
  font-size: 0.725rem;
  color: var(--text-muted);
  line-height: 1.35;
}

.sidebar-card-link:hover {
  border-color: rgba(255, 90, 54, 0.35);
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.06);
  transform: translateY(-2px);
}

.sidebar-card-link:hover .sidebar-card-content .card-title {
  color: var(--accent);
}

.sidebar-card-link:hover .sidebar-card-icon {
  transform: scale(1.1);
}

/* Sidebar Footer CTA button */
.sidebar-footer {
  margin-top: auto;
}

.sidebar-cta-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 16px;
  background: var(--primary);
  color: #ffffff !important;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 700;
  transition: all 0.25s ease;
}

.sidebar-cta-btn .cta-arrow {
  transition: transform 0.25s ease;
}

.sidebar-cta-btn:hover {
  background: var(--accent);
  box-shadow: 0 4px 12px rgba(255, 90, 54, 0.2);
}

.sidebar-cta-btn:hover .cta-arrow {
  transform: translateX(4px);
}

/* Responsive Overrides for Services Mega Menu */
@media (max-width: 1200px) {
  .dropdown-menu.services-mega-menu {
    width: 820px;
    grid-template-columns: 2.2fr 1fr;
  }

  .services-grid-wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding: 20px;
  }
}

@media (max-width: 992px) {
  .dropdown-menu.services-mega-menu {
    width: 760px;
    grid-template-columns: 1fr;
  }

  .services-sidebar-panel {
    border-left: none;
    border-top: 1px solid rgba(226, 232, 240, 0.85);
    flex-direction: row;
    flex-wrap: wrap;
    padding: 20px;
  }

  .sidebar-panel-header {
    width: 100%;
  }

  .sidebar-cards {
    flex-direction: row;
    width: 100%;
  }

  .sidebar-card-link {
    flex: 1;
  }

  .sidebar-footer {
    width: 100%;
  }

  .sidebar-cta-btn {
    justify-content: center;
    gap: 10px;
  }
}

.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(calc(-50% - 55px)) translateY(0);
}

.dropdown-column {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.dropdown-heading {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: #38bdf8;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 6px 12px;
  margin-bottom: 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.dropdown-heading-link {
  font-size: 0.825rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 6px 12px;
  margin-bottom: 4px;
  border-bottom: 1px solid #e2e8f0;
  display: block;
  transition: all 0.25s ease;
}

.dropdown-heading-link:hover {
  transform: translateX(3px);
}

.dropdown-link {
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 500;
  color: #334155;
  display: flex;
  align-items: center;
  transition: all 0.25s ease;
}

.dropdown-link:hover {
  background: #f1f5f9;
  color: var(--primary);
  transform: translateX(4px);
}

.dropdown-link-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  transition: all 0.25s ease;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}

.dropdown-link-card:hover {
  background: #ffffff;
  border-color: rgba(37, 99, 235, 0.4);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transform: translateX(4px);
}

.drop-icon {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.drop-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 2px;
}

.drop-desc {
  font-size: 0.75rem;
  color: #64748b;
  line-height: 1.35;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid transparent;
}

.btn-primary {
  background-color: var(--primary);
  color: #ffffff;
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

.btn-secondary {
  background-color: var(--bg-secondary);
  color: var(--text-dark);
  border-color: var(--border-color);
}

.btn-secondary:hover {
  background-color: var(--bg-primary);
  border-color: var(--text-muted);
  transform: translateY(-2px);
}

.btn-accent {
  background-color: var(--accent);
  color: #ffffff;
}

.btn-accent:hover {
  background-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(13, 148, 136, 0.25);
}

.btn-white {
  background-color: #ffffff;
  color: var(--primary);
}

.btn-white:hover {
  background-color: var(--primary-light);
  transform: translateY(-2px);
}

/* Mobile Toggle Hamburger */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-dark);
  cursor: pointer;
  padding: 5px;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  padding-top: calc(var(--header-height) + 40px);
  display: flex;
  align-items: center;
  background: linear-gradient(140deg, #090e1a 0%, #030712 50%, #08031a 100%);
  position: relative;
  overflow: hidden;
  color: #ffffff;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 1;
  pointer-events: none;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 3;
}

.hero-content h1 {
  margin-bottom: 25px;
  color: #ffffff;
}

.hero-content p {
  font-size: 1.25rem;
  color: #cbd5e1;
  margin-bottom: 35px;
}

.hero-ctas {
  display: flex;
  gap: 15px;
}

.hero .btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, #ff7c5c 100%);
  border: none;
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(255, 90, 54, 0.3);
}

.hero .btn-primary:hover {
  background: linear-gradient(135deg, #ff7c5c 0%, var(--accent) 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 90, 54, 0.5);
}

.hero .btn-secondary {
  background-color: rgba(255, 255, 255, 0.03);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero .btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.05);
}

.hero .text-gradient {
  background: linear-gradient(135deg, #ff5a36 0%, #f43f5e 50%, #d946ef 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-graphic {
  position: relative;
  z-index: 3;
}

.hero-img-wrap {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  overflow: visible;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
  position: relative;
}

/* Glowing halo effect behind hero graphic */
.hero-img-wrap::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, rgba(255, 90, 54, 0.4), rgba(99, 102, 241, 0.4));
  z-index: -1;
  border-radius: calc(var(--radius-lg) + 2px);
  filter: blur(25px);
  opacity: 0.5;
  transition: var(--transition);
}

.hero-img-wrap:hover::before {
  opacity: 0.8;
  filter: blur(35px);
}

/* Glassmorphic Metric Cards */
.hero-metric-card {
  position: absolute;
  background: rgba(10, 15, 30, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 16px 22px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), inset 0 1px 1px rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  gap: 15px;
  z-index: 5;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-metric-card:hover {
  transform: scale(1.05) translateY(-5px);
  border-color: rgba(255, 90, 54, 0.3);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 90, 54, 0.15);
}

.hero-metric-card.card-left {
  bottom: -20px;
  left: -20px;
  animation: float-slow-1 7s ease-in-out infinite;
}

.hero-metric-card.card-right {
  top: -20px;
  right: -20px;
  animation: float-slow-2 7s ease-in-out infinite;
}

.hero-metric-card .metric-number {
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1;
}

.hero-metric-card.card-left .metric-number {
  color: #38bdf8;
  text-shadow: 0 0 12px rgba(56, 189, 248, 0.4);
}

.hero-metric-card.card-right .metric-number {
  color: var(--accent);
  text-shadow: 0 0 12px rgba(255, 90, 54, 0.4);
}

.hero-metric-card .metric-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #cbd5e1;
  letter-spacing: 0.05em;
  line-height: 1.2;
}

@keyframes float-slow-1 {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes float-slow-2 {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(10px);
  }
}

/* Animated Background Liquid Blobs */
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.18;
  z-index: 2;
  pointer-events: none;
}

.blob-1 {
  top: 10%;
  right: 15%;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(255, 90, 54, 0.4) 0%, transparent 70%);
  animation: blob-orbit-1 22s infinite ease-in-out alternate;
}

.blob-2 {
  bottom: 15%;
  left: 10%;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.35) 0%, transparent 70%);
  animation: blob-orbit-2 26s infinite ease-in-out alternate;
}

.blob-3 {
  top: 40%;
  left: 40%;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.3) 0%, transparent 70%);
  animation: blob-orbit-3 18s infinite ease-in-out alternate;
}

@keyframes blob-orbit-1 {
  0% {
    transform: translate(0, 0) scale(1) rotate(0deg);
  }

  50% {
    transform: translate(60px, 40px) scale(1.15) rotate(180deg);
  }

  100% {
    transform: translate(0, 0) scale(1) rotate(360deg);
  }
}

@keyframes blob-orbit-2 {
  0% {
    transform: translate(0, 0) scale(1.1) rotate(0deg);
  }

  50% {
    transform: translate(-50px, -50px) scale(0.9) rotate(-180deg);
  }

  100% {
    transform: translate(0, 0) scale(1.1) rotate(-360deg);
  }
}

@keyframes blob-orbit-3 {
  0% {
    transform: translate(0, 0) scale(0.95);
  }

  50% {
    transform: translate(80px, -60px) scale(1.1);
  }

  100% {
    transform: translate(0, 0) scale(0.95);
  }
}

/* Entrance Animations */
.animate-fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fade-up 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.animate-fade-in-right {
  opacity: 0;
  transform: translateX(45px);
  animation: fade-in-right 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.delay-1 {
  animation-delay: 0.15s;
}

.delay-2 {
  animation-delay: 0.3s;
}

.delay-3 {
  animation-delay: 0.45s;
}

@keyframes fade-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-in-right {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Scroll reveal styles are defined in modern animations section */

/* Scroll-Down Mouse Wheel Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  z-index: 10;
  cursor: pointer;
  transition: var(--transition);
  animation: fade-in 1.5s ease-in-out forwards;
}

.scroll-indicator:hover {
  color: #ffffff;
}

.mouse-wheel {
  width: 24px;
  height: 40px;
  border: 2px solid currentColor;
  border-radius: 12px;
  position: relative;
}

.mouse-wheel::before {
  content: '';
  width: 4px;
  height: 8px;
  background-color: currentColor;
  border-radius: 2px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: scroll-wheel-anim 1.6s infinite ease-in-out;
}

@keyframes scroll-wheel-anim {
  0% {
    top: 8px;
    opacity: 1;
    height: 8px;
  }

  50% {
    top: 16px;
    opacity: 0.5;
    height: 12px;
  }

  100% {
    top: 24px;
    opacity: 0;
    height: 4px;
  }
}

@keyframes fade-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* Stats Section */
.stats-section {
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 40px 0;
  position: relative;
  z-index: 10;
  overflow: hidden;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}

.stat-item {
  padding: 15px 10px;
  transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  position: relative;
  opacity: 0;
  transform: translateY(25px);
}

.stat-item.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Delays for entry transition */
.stat-item:nth-child(1) {
  transition-delay: 0.1s;
}

.stat-item:nth-child(2) {
  transition-delay: 0.25s;
}

.stat-item:nth-child(3) {
  transition-delay: 0.4s;
}

.stat-item:nth-child(4) {
  transition-delay: 0.55s;
}

.stat-item:not(:first-child) {
  border-left: 1px solid var(--border-color);
}

.stat-number {
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 8px;
  color: var(--text-dark);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-item:nth-child(2) .stat-number {
  color: var(--primary);
}

.stat-item:nth-child(3) .stat-number {
  color: var(--accent);
}

.stat-label {
  font-size: 0.825rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: all 0.3s ease;
}

/* Hover Animations */
.stat-item:hover {
  transform: translateY(-8px);
}

.stat-item:hover .stat-number {
  transform: scale(1.1);
}

.stat-item:nth-child(1):hover .stat-number {
  text-shadow: 0 0 15px rgba(15, 23, 42, 0.15);
}

.stat-item:nth-child(2):hover .stat-number {
  text-shadow: 0 0 15px rgba(10, 37, 64, 0.2);
}

.stat-item:nth-child(3):hover .stat-number {
  text-shadow: 0 0 15px rgba(255, 90, 54, 0.3);
}

.stat-item:nth-child(4):hover .stat-number {
  text-shadow: 0 0 15px rgba(15, 23, 42, 0.15);
}

.stat-item:hover .stat-label {
  color: var(--text-dark);
}

/* Responsive updates for Tablet and Mobile viewports */
@media (max-width: 900px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .stat-item {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    background-color: var(--bg-primary);
    padding: 25px 15px;
  }

  .stat-item:not(:first-child) {
    border-left: none;
  }

  .stat-item:hover {
    box-shadow: var(--shadow-md);
    background-color: #ffffff;
  }
}

@media (max-width: 600px) {
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

/* Grid & Cards System */
.section-tag {
  display: inline-block;
  padding: 6px 16px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  background-color: var(--accent-light);
  border-radius: var(--radius-full);
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(255, 90, 54, 0.05);
}

/* About Us Grid & Feature Card */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 65px;
  align-items: center;
}

.about-features {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 35px;
}

/* Global Light Glassmorphic Card (Fallback/Subpages) */
.card {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: var(--radius-lg);
  padding: 45px 35px;
  transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 1;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: transparent;
  transition: all 0.4s ease;
  z-index: 2;
}

.card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
  border-radius: inherit;
  opacity: 0;
  z-index: -1;
  transition: all 0.4s ease;
  pointer-events: none;
}

.card:hover {
  transform: translateY(-10px);
  background: #ffffff;
}

.card:hover::after {
  opacity: 1;
}

/* Light Card Theme Accents */
.card-qa:hover {
  border-color: rgba(59, 130, 246, 0.25);
  box-shadow: 0 25px 50px -12px rgba(59, 130, 246, 0.12);
}

.card-qa:hover::before {
  background: linear-gradient(90deg, #3b82f6, #60a5fa);
}

.card-md:hover {
  border-color: rgba(255, 90, 54, 0.25);
  box-shadow: 0 25px 50px -12px rgba(255, 90, 54, 0.12);
}

.card-md:hover::before {
  background: linear-gradient(90deg, #ff5a36, #ff7e5f);
}

.card-ux:hover {
  border-color: rgba(13, 148, 136, 0.25);
  box-shadow: 0 25px 50px -12px rgba(13, 148, 136, 0.12);
}

.card-ux:hover::before {
  background: linear-gradient(90deg, #0d9488, #14b8a6);
}

/* Card Icons */
.card-icon {
  width: 70px;
  height: 70px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  position: relative;
}

.card-icon svg {
  width: 32px;
  height: 32px;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.card-qa .card-icon {
  background-color: rgba(59, 130, 246, 0.08);
  color: #3b82f6;
}

.card-qa:hover .card-icon {
  background-color: #3b82f6;
  color: #ffffff;
  transform: rotate(5deg) scale(1.05);
  box-shadow: 0 10px 20px rgba(59, 130, 246, 0.2);
}

.card-md .card-icon {
  background-color: rgba(255, 90, 54, 0.08);
  color: var(--accent);
}

.card-md:hover .card-icon {
  background-color: var(--accent);
  color: #ffffff;
  transform: rotate(-5deg) scale(1.05);
  box-shadow: 0 10px 20px rgba(255, 90, 54, 0.2);
}

.card-ux .card-icon {
  background-color: rgba(13, 148, 136, 0.08);
  color: #0d9488;
}

.card-ux:hover .card-icon {
  background-color: #0d9488;
  color: #ffffff;
  transform: rotate(5deg) scale(1.05);
  box-shadow: 0 10px 20px rgba(13, 148, 136, 0.2);
}

.card h3 {
  margin-bottom: 15px;
  font-size: 1.5rem;
  color: var(--text-dark);
}

.card p {
  color: var(--text-muted);
  margin-bottom: 25px;
  font-size: 0.975rem;
  line-height: 1.6;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.925rem;
  position: relative;
  padding-bottom: 3px;
  transition: all 0.3s ease;
}

.card-qa .card-link {
  color: #3b82f6;
}

.card-md .card-link {
  color: var(--accent);
}

.card-ux .card-link {
  color: #0d9488;
}

.card-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: currentColor;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.card:hover .card-link::after {
  width: 100%;
}

.card-link svg {
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.card:hover .card-link svg {
  transform: translateX(6px);
}

/* ==========================================
   SERVICES SECTION (DARK MODE OVERRIDES)
   ========================================== */
.services-section {
  background: linear-gradient(135deg, #090e1a 0%, #03050a 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.services-blob {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.06) 0%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

.services-section .section-header h2 {
  color: #ffffff;
}

.services-section .section-header p {
  color: #94a3b8;
}

.services-section .section-tag {
  color: var(--accent);
  background-color: rgba(255, 90, 54, 0.15);
  box-shadow: 0 2px 10px rgba(255, 90, 54, 0.1);
}

/* Dark Glassmorphic Card Styling */
.services-section .card {
  background: rgba(15, 23, 42, 0.65);
  border-color: rgba(255, 255, 255, 0.06);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), inset 0 1px 1px rgba(255, 255, 255, 0.05);
  overflow: visible;
  margin-top: 35px;
  padding: 60px 35px 45px 35px;
}

.services-section .card::after {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0));
}

.services-section .card:hover {
  transform: translateY(-8px);
  background: rgba(15, 23, 42, 0.85);
}

/* Accent top border and glow on hover */
.services-section .card-qa:hover {
  border-color: rgba(59, 130, 246, 0.4);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), 0 0 25px rgba(59, 130, 246, 0.15);
}

.services-section .card-md:hover {
  border-color: rgba(255, 90, 54, 0.4);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), 0 0 25px rgba(255, 90, 54, 0.15);
}

.services-section .card-ux:hover {
  border-color: rgba(13, 148, 136, 0.4);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), 0 0 25px rgba(13, 148, 136, 0.15);
}

/* Floating Icon Containers in Dark Mode */
.services-section .card-icon {
  position: absolute;
  top: -35px;
  left: 35px;
  margin-bottom: 0;
  width: 70px;
  height: 70px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #090e1a;
  /* masking border matching top gradient */
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  z-index: 5;
}

.services-section .card-icon svg {
  width: 30px;
  height: 30px;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* QA Icon Theme */
.services-section .card-qa .card-icon {
  background-color: rgba(59, 130, 246, 0.12);
  color: #60a5fa;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.1);
}

.services-section .card-qa:hover .card-icon {
  background-color: #3b82f6;
  color: #ffffff;
  transform: translateY(-5px) scale(1.1) rotate(5deg);
  box-shadow: 0 10px 25px rgba(59, 130, 246, 0.35);
  border-color: #0c152b;
}

/* MD Icon Theme */
.services-section .card-md .card-icon {
  background-color: rgba(255, 90, 54, 0.12);
  color: #ff7c5c;
  box-shadow: 0 4px 15px rgba(255, 90, 54, 0.1);
}

.services-section .card-md:hover .card-icon {
  background-color: var(--accent);
  color: #ffffff;
  transform: translateY(-5px) scale(1.1) rotate(-5deg);
  box-shadow: 0 10px 25px rgba(255, 90, 54, 0.35);
  border-color: #1a0f12;
}

/* UX Icon Theme */
.services-section .card-ux .card-icon {
  background-color: rgba(13, 148, 136, 0.12);
  color: #2dd4bf;
  box-shadow: 0 4px 15px rgba(13, 148, 136, 0.1);
}

.services-section .card-ux:hover .card-icon {
  background-color: #0d9488;
  color: #ffffff;
  transform: translateY(-5px) scale(1.1) rotate(5deg);
  box-shadow: 0 10px 25px rgba(13, 148, 136, 0.35);
  border-color: #0c1817;
}

.services-section .card h3 {
  color: #ffffff;
}

.services-section .card p {
  color: #94a3b8;
}

/* Dark Mode Links */
.services-section .card-qa .card-link {
  color: #60a5fa;
}

.services-section .card-md .card-link {
  color: #ff7c5c;
}

.services-section .card-ux .card-link {
  color: #2dd4bf;
}

/* Staggered Card Scroll Reveal */
.card-reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.card-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.card-reveal:nth-child(1) {
  transition-delay: 0.1s;
}

.card-reveal:nth-child(2) {
  transition-delay: 0.25s;
}

.card-reveal:nth-child(3) {
  transition-delay: 0.4s;
}

/* Technologies Showcase Section */
.tech-showcase-section {
  padding: 90px 0;
  background: linear-gradient(180deg, #fffdf8 0%, #fff7e8 100%);
}

.tech-showcase-grid {
  display: grid;
  grid-template-columns: repeat(10, minmax(0, 1fr));
  gap: 16px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 32px;
  padding: 24px;
  box-shadow: 0 18px 54px rgba(15, 23, 42, 0.06);
}

.tech-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 86px;
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  padding: 14px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tech-card img {
  max-height: 42px;
  max-width: 100%;
  width: auto;
  height: auto;
  opacity: 0.85;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.tech-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 42px rgba(15, 23, 42, 0.12);
}

.tech-card:hover img {
  opacity: 1;
  transform: scale(1.03);
}

@media (max-width: 1280px) {
  .tech-showcase-grid {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }
}

@media (max-width: 1080px) {
  .tech-showcase-grid {
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }
}

@media (max-width: 940px) {
  .tech-showcase-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .tech-showcase-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .tech-showcase-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .tech-showcase-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Call to Action Banner */
.cta-banner {
  background: #0f172a;
  color: #ffffff;
  border-radius: 40px;
  /* Curvy Oval corners matching other sections */
  padding: 85px 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(15, 23, 42, 0.4), 0 10px 30px rgba(255, 90, 54, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Multi-layered Neon Ambient Glow Backdrop & Tech Grid */
.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 1;
}

.cta-banner::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background:
    radial-gradient(circle at 35% 35%, rgba(255, 90, 54, 0.16) 0%, transparent 40%),
    radial-gradient(circle at 65% 65%, rgba(0, 180, 240, 0.14) 0%, transparent 40%);
  pointer-events: none;
  z-index: 1;
  animation: rotateGlow 25s linear infinite;
}

/* Floating animated ambient light bubbles */
.cta-glow-bubble {
  position: absolute;
  border-radius: 50%;
  filter: blur(50px);
  pointer-events: none;
  z-index: 1;
  opacity: 0.65;
}

.cta-glow-1 {
  width: 280px;
  height: 280px;
  background: rgba(255, 90, 54, 0.18);
  top: -20px;
  left: -20px;
  animation: floatBubble1 16s ease-in-out infinite alternate;
}

.cta-glow-2 {
  width: 240px;
  height: 240px;
  background: rgba(0, 180, 240, 0.15);
  bottom: -20px;
  right: -20px;
  animation: floatBubble2 13s ease-in-out infinite alternate;
}

@keyframes rotateGlow {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes floatBubble1 {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(60px, 40px) scale(1.15);
  }
}

@keyframes floatBubble2 {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(-50px, -30px) scale(1.1);
  }
}

/* Inner contents z-index to stay above background glows */
.cta-banner h2,
.cta-banner p,
.cta-banner .btn-glowing {
  position: relative;
  z-index: 2;
}

.cta-banner h2 {
  font-size: 2.75rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.25;
  color: #ffffff;
  margin-bottom: 22px;
  background: linear-gradient(135deg, #ffffff 30%, #e2e8f0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cta-banner p {
  color: #94a3b8;
  font-size: 1.15rem;
  max-width: 640px;
  margin: 0 auto 38px auto;
  line-height: 1.7;
}

/* Sleek Glowing Button Style */
.btn-glowing {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 38px;
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff !important;
  background: linear-gradient(135deg, #ff5a36 0%, #ff7e67 100%);
  border-radius: 50px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 0 0 0 rgba(255, 90, 54, 0.4), 0 8px 24px rgba(255, 90, 54, 0.25);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  animation: pulseGlow 2.5s infinite;
}

.btn-glowing:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 0 0 12px rgba(255, 90, 54, 0), 0 16px 36px rgba(255, 90, 54, 0.4);
  background: linear-gradient(135deg, #ff6c4a 0%, #ff8f7c 100%);
}

@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 90, 54, 0.5), 0 8px 24px rgba(255, 90, 54, 0.25);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(255, 90, 54, 0), 0 8px 24px rgba(255, 90, 54, 0.25);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 90, 54, 0), 0 8px 24px rgba(255, 90, 54, 0.25);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .cta-banner {
    padding: 60px 24px;
    border-radius: 28px;
  }

  .cta-banner h2 {
    font-size: 2.1rem;
  }

  .cta-banner p {
    font-size: 1rem;
    margin-bottom: 28px;
  }

  .btn-glowing {
    padding: 14px 30px;
    font-size: 0.9rem;
  }
}

/* Subpages Styling */
.page-hero {
  background: linear-gradient(-45deg, #090e1a, #030712, #0c1830, #08031a);
  background-size: 400% 400%;
  animation: page-gradient-shift 12s ease infinite;
  color: #ffffff;
  padding: 120px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
  z-index: 1;
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

@keyframes page-gradient-shift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.page-hero h1 {
  color: #ffffff;
  margin-bottom: 15px;
}

.breadcrumbs {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: #94a3b8;
  margin-top: 15px;
}

.breadcrumbs a {
  color: #cbd5e1;
}

.breadcrumbs a:hover {
  color: var(--primary-light);
}

.breadcrumbs span {
  display: flex;
  align-items: center;
}

.page-content-grid {
  display: grid;
  grid-template-columns: 2.2fr 0.8fr;
  gap: 50px;
  padding: 80px 0;
}

.main-content {
  font-size: 1.05rem;
  line-height: 1.75;
}

.main-content p {
  margin-bottom: 25px;
}

.main-content h2,
.main-content h3 {
  margin: 45px 0 20px 0;
}

.main-content h2:first-of-type {
  margin-top: 0;
}

.list-styled {
  margin-bottom: 30px;
  display: grid;
  gap: 15px;
}

.list-styled li {
  position: relative;
  padding-left: 30px;
}

.list-styled li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--accent);
  font-weight: 900;
  font-size: 1.1rem;
}

.page-sidebar {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.sidebar-widget {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 30px;
}

.sidebar-widget h3 {
  font-size: 1.15rem;
  margin-bottom: 20px;
  border-bottom: 2px solid var(--border-color);
  padding-bottom: 10px;
}

.sidebar-menu {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sidebar-link {
  padding: 10px 15px;
  border-radius: var(--radius-sm);
  background-color: var(--bg-primary);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--text-dark);
}

.sidebar-link.active,
.sidebar-link:hover {
  background-color: var(--primary);
  color: #ffffff;
}

.sidebar-widget-cta {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: #ffffff;
  text-align: center;
  border-radius: var(--radius-md);
  padding: 40px 30px;
}

.sidebar-widget-cta h3 {
  color: #ffffff;
  font-size: 1.35rem;
  margin-bottom: 15px;
}

.sidebar-widget-cta p {
  font-size: 0.95rem;
  color: #e0f2fe;
  margin-bottom: 25px;
}

/* Contact Us Styling */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  padding: 0;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.info-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.info-icon {
  width: 50px;
  height: 50px;
  background-color: var(--primary-light);
  color: var(--primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.info-details h3 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.info-details p {
  color: var(--text-muted);
}

.contact-form-widget {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  background-color: var(--bg-primary);
  outline: none;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--primary);
  background-color: #ffffff;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

textarea.form-control {
  min-height: 100px;
  resize: vertical;
}

/* Footer Section */
.footer {
  background-color: var(--bg-dark);
  color: #94a3b8;
  padding: 80px 0 30px 0;
  border-top: 1px solid var(--border-dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-col h3 {
  color: #ffffff;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 25px;
}

.footer-col p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 0.925rem;
}

.footer-links a:hover {
  color: #ffffff;
  transform: translateX(4px);
}

.footer-bottom {
  border-top: 1px solid var(--border-dark);
  padding-top: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.875rem;
}

.logo-wrapper {
  display: inline-flex;
  align-items: center;
  background: #ffffff;
  padding: 5px 12px;
  border-radius: var(--radius-md);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.25s ease;
}

.logo-wrapper:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(255, 90, 54, 0.25);
}

.mobile-toggle {
  display: none;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-size: 1.35rem;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.2s ease;
}

.mobile-toggle:hover {
  background: rgba(255, 90, 54, 0.2);
  border-color: var(--accent);
  color: #ffffff;
}

/* Mobile Responsive Drawer Overlay Menu */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background-color: var(--bg-secondary);
  box-shadow: var(--shadow-xl);
  z-index: 2000;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  /* Enable vertical scrolling */
  -webkit-overflow-scrolling: touch;
  /* Smooth inertia momentum scrolling on mobile browsers */
}

.mobile-drawer.open {
  right: 0;
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-drawer-close {
  background: none;
  border: none;
  font-size: 1.75rem;
  cursor: pointer;
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.mobile-nav-link {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  padding: 10px 0;
  border-bottom: 1px solid var(--border-color);
}

.mobile-sub-links {
  padding-left: 15px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 5px;
  margin-bottom: 10px;
}

.mobile-sub-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
}

.mobile-sub-heading {
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--primary);
  margin-top: 10px;
}

.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(4px);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.drawer-overlay.open {
  opacity: 1;
  visibility: visible;
}

/* ==========================================================================
   MEDIA QUERIES - RESPONSIVE DESIGN
   ========================================================================== */

@media (max-width: 1024px) {
  h1 {
    font-size: 2.25rem;
  }

  h2 {
    font-size: 1.85rem;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-ctas {
    justify-content: center;
  }

  .hero-graphic {
    max-width: 500px;
    margin: 0 auto;
  }

  .page-content-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .page-sidebar {
    order: 2;
  }

  .main-content {
    order: 1;
  }
}

@media (max-width: 900px) {
  .nav-menu {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 600px) {
  .section {
    padding: 60px 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-form-widget {
    padding: 25px;
  }

  .hero-ctas {
    flex-direction: column;
    width: 100%;
  }

  .hero-ctas .btn {
    width: 100%;
  }

  .hero-metric-card {
    padding: 10px 15px;
    gap: 10px;
  }

  .hero-metric-card .metric-number {
    font-size: 1.5rem;
  }

  .hero-metric-card .metric-label {
    font-size: 0.65rem;
  }

  .hero-metric-card.card-left {
    bottom: -10px;
    left: 0;
  }

  .hero-metric-card.card-right {
    top: -10px;
    right: 0;
  }

  .scroll-indicator {
    display: none;
  }

  /* Services Section Mobile Overrides */
  .services-section .card-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .services-section .card {
    padding: 55px 25px 35px 25px;
    margin-top: 25px;
  }

  .services-section .card-icon {
    top: -25px;
    left: 25px;
    width: 60px;
    height: 60px;
  }

  .services-section .card-icon svg {
    width: 26px;
    height: 26px;
  }

  /* Technology Marquee Mobile Overrides */
  .marquee-wrapper::before,
  .marquee-wrapper::after {
    width: 60px;
  }

  .about-features {
    padding: 30px 20px;
  }
}

/* ==========================================================================
   HOMEPAGE MODERN REDESIGN COMPONENT STYLES
   ========================================================================== */

/* Ambient Lighting & Canvas Tokens */
:root {
  --glow-primary: rgba(10, 37, 64, 0.15);
  --glow-accent: rgba(255, 90, 54, 0.25);
  --glow-cyan: rgba(56, 189, 248, 0.25);
  --glass-bg: rgba(255, 255, 255, 0.75);
  --glass-border: rgba(255, 255, 255, 0.8);
  --glass-shadow: 0 20px 40px -15px rgba(15, 23, 42, 0.08), 0 0 0 1px rgba(255, 255, 255, 0.5);
  --gradient-neon: linear-gradient(135deg, #0a2540 0%, #2563eb 50%, #ff5a36 100%);
  --gradient-dark-glass: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

/* Modern Hero Section - Logo Color Infused */
.hero-modern {
  position: relative;
  padding: 150px 0 110px 0;
  background: linear-gradient(135deg, #050d1a 0%, #0a2540 50%, #0d1e36 100%);
  overflow: hidden;
  color: #ffffff;
}

.hero-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(rgba(255, 90, 54, 0.12) 1px, transparent 1px),
    radial-gradient(rgba(0, 210, 255, 0.08) 1px, transparent 1px);
  background-size: 32px 32px;
  background-position: 0 0, 16px 16px;
  pointer-events: none;
  z-index: 1;
}

.hero-ambient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 1;
}

.orb-1 {
  top: -80px;
  right: -40px;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(255, 90, 54, 0.35) 0%, rgba(255, 90, 54, 0) 70%);
  animation: floatOrb 12s ease-in-out infinite alternate;
}

.orb-2 {
  bottom: -120px;
  left: -80px;
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(0, 210, 255, 0.3) 0%, rgba(0, 210, 255, 0) 70%);
  animation: floatOrb 15s ease-in-out infinite alternate-reverse;
}

.orb-3 {
  top: 40%;
  left: 45%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(255, 183, 3, 0.18) 0%, transparent 70%);
  animation: floatOrb 10s ease-in-out infinite alternate;
}

@keyframes floatOrb {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(35px, 45px) scale(1.12);
  }
}

.hero-modern .hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  background: rgba(15, 29, 51, 0.85);
  border: 1px solid rgba(255, 90, 54, 0.4);
  box-shadow: 0 0 20px rgba(255, 90, 54, 0.25), inset 0 0 10px rgba(255, 90, 54, 0.1);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 24px;
  backdrop-filter: blur(12px);
}

.pulse-dot {
  width: 9px;
  height: 9px;
  background-color: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(255, 90, 54, 0.8);
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(255, 90, 54, 0.8);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(255, 90, 54, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(255, 90, 54, 0);
  }
}

.hero-title-modern {
  font-size: 3.5rem;
  line-height: 1.14;
  font-weight: 800;
  letter-spacing: -0.035em;
  margin-bottom: 24px;
  color: #ffffff;
}

.hero-title-modern .highlight-text {
  background: linear-gradient(135deg, #ff5a36 0%, #ff8a00 45%, #00d2ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 4px 20px rgba(255, 90, 54, 0.35));
}

.hero-subtitle-modern {
  font-size: 1.15rem;
  color: #94a3b8;
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 580px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.btn-glowing {
  position: relative;
  background: linear-gradient(135deg, #ff5a36 0%, #e04622 100%);
  color: #ffffff;
  padding: 15px 34px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 10px 30px -5px rgba(255, 90, 54, 0.5), 0 0 20px rgba(255, 90, 54, 0.3);
  transition: all 0.35s ease;
  overflow: hidden;
  border: none;
}

.btn-glowing::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(60deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: rotate(30deg);
  transition: all 0.6s ease;
}

.btn-glowing:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px -5px rgba(255, 90, 54, 0.65), 0 0 30px rgba(255, 90, 54, 0.5);
  color: #ffffff;
}

.btn-glowing:hover::after {
  left: 100%;
}

.btn-outline-modern {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(0, 210, 255, 0.4);
  background: rgba(0, 210, 255, 0.08);
  font-weight: 600;
  color: #38bdf8;
  backdrop-filter: blur(10px);
  transition: all 0.35s ease;
}

.btn-outline-modern:hover {
  background: rgba(0, 210, 255, 0.2);
  border-color: #00d2ff;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px -5px rgba(0, 210, 255, 0.4);
}

.hero-converge {
  padding: 130px 0 90px;
}

.hero-converge .hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

.hero-copy {
  max-width: 640px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #7dd3fc;
  text-transform: uppercase;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  font-weight: 700;
  margin-bottom: 26px;
}

.hero-copy h1 {
  font-size: clamp(2.75rem, 4vw, 4.6rem);
  line-height: 1.05;
  margin-bottom: 24px;
}

.hero-text {
  max-width: 590px;
  color: rgba(241, 245, 249, 0.9);
  font-size: 1.05rem;
  line-height: 1.85;
  margin-bottom: 36px;
}

.hero-value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.hero-value-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 22px;
  padding: 22px 24px;
  min-height: 120px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.hero-value-card strong {
  display: block;
  font-size: 1.5rem;
  color: #ffffff;
  margin-bottom: 8px;
}

.hero-value-card span {
  color: rgba(241, 245, 249, 0.85);
  font-size: 0.95rem;
  line-height: 1.65;
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.visual-card {
  width: 100%;
  min-height: 420px;
  padding: 30px;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 30px 70px rgba(15, 23, 42, 0.22);
  backdrop-filter: blur(20px);
}

.visual-header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 26px;
}

.visual-label {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(56, 189, 248, 0.12);
  color: #7dd3fc;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.visual-header h3 {
  color: #ffffff;
  font-size: 1.35rem;
  line-height: 1.2;
  margin: 0;
  max-width: 320px;
}

.status-pill {
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.visual-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 28px;
}

.visual-stat {
  padding: 20px 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.visual-stat span {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 10px;
}

.visual-stat p {
  margin: 0;
  color: rgba(241, 245, 249, 0.8);
  font-size: 0.98rem;
  line-height: 1.7;
}

.visual-graph {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  min-height: 132px;
}

.graph-bar {
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
}

.graph-bar::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(180deg, #38bdf8 0%, #0ea5e9 100%);
  border-radius: 18px;
}

.graph-bar-1::after {
  height: 52%;
}

.graph-bar-2::after {
  height: 78%;
}

.graph-bar-3::after {
  height: 40%;
}

.graph-bar-4::after {
  height: 86%;
}

.service-split-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.service-card {
  background: #ffffff;
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.1);
  border: 1px solid rgba(15, 23, 42, 0.07);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  min-height: 420px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 36px 80px rgba(15, 23, 42, 0.14);
}

.service-card-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
}

.service-card-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 90, 54, 0.12);
  color: #ff5a36;
  font-weight: 800;
  font-size: 1rem;
}

.service-card h3 {
  margin: 0;
  font-size: 1.45rem;
  line-height: 1.2;
  color: #0f172a;
}

.service-card p {
  margin: 0 0 24px;
  color: #475569;
  line-height: 1.8;
}

.service-card-list {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
  display: grid;
}

.service-card-list li {
  position: relative;
  padding-left: 28px;
  color: #334155;
  font-weight: 600;
}

.service-card-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: #10b981;
  font-size: 0.85rem;
  line-height: 1;
}

.service-card-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #0f172a;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s ease;
}

.service-card-link:hover {
  border-color: #ff5a36;
}

.section-label {
  display: inline-flex;
  color: #0ea5e9;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.section-subtitle {
  color: #475569;
  max-width: 700px;
  margin: 18px auto 0;
  line-height: 1.7;
}

.tech-showcase-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 32px;
  padding: 26px;
  box-shadow: 0 18px 54px rgba(15, 23, 42, 0.06);
}

.tech-card {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border-radius: 24px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.04);
  padding: 18px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tech-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.12);
}

.tech-card img {
  max-height: 42px;
  max-width: 100%;
  opacity: 0.9;
}

@media (max-width: 1120px) {
  .tech-showcase-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 960px) {

  .hero-modern .hero-grid,
  .services-presentation-grid,
  .service-split-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding-bottom: 24px;
  }

  .visual-stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 660px) {
  .hero-modern {
    padding: 100px 0 70px;
  }

  .hero-copy h1 {
    font-size: 2.3rem;
  }

  .hero-value-grid,
  .visual-stats-grid,
  .tech-showcase-grid {
    grid-template-columns: 1fr;
  }
}

/* Hero Terminal & Interactive Mockup */
.hero-terminal-wrap {
  position: relative;
  perspective: 1000px;
}

.hero-terminal {
  background: rgba(11, 22, 40, 0.95);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 90, 54, 0.3);
  box-shadow: 0 25px 60px -10px rgba(0, 0, 0, 0.7), 0 0 40px rgba(255, 90, 54, 0.15);
  overflow: hidden;
  color: #f8fafc;
  transform: rotateY(-3deg) rotateX(2deg);
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.5s ease;
}

.hero-terminal:hover {
  transform: rotateY(0deg) rotateX(0deg);
  box-shadow: 0 30px 70px -10px rgba(0, 0, 0, 0.8), 0 0 50px rgba(0, 210, 255, 0.25);
  border-color: rgba(0, 210, 255, 0.4);
}

.terminal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: rgba(15, 30, 54, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

.dot-red {
  background-color: #ff5a36;
}

.dot-yellow {
  background-color: #ffb703;
}

.dot-green {
  background-color: #00d2ff;
}

.terminal-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #38bdf8;
  font-family: monospace;
}

.terminal-body {
  padding: 24px;
  font-family: 'Consolas', 'Fira Code', Monaco, monospace;
  font-size: 0.85rem;
  line-height: 1.7;
}

.log-line {
  display: flex;
  gap: 12px;
  margin-bottom: 8px;
}

.log-time {
  color: #64748b;
}

.log-status-pass {
  color: #ff5a36;
  font-weight: 700;
}

.log-status-info {
  color: #38bdf8;
}

.log-text {
  color: #e2e8f0;
}

.terminal-metric-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.term-stat-card {
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.term-stat-val {
  font-size: 1.4rem;
  font-weight: 700;
  color: #00d2ff;
}

.term-stat-lbl {
  font-size: 0.75rem;
  color: #94a3b8;
}

.floating-hero-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 22px;
  background: rgba(10, 25, 46, 0.92);
  border-radius: var(--radius-md);
  box-shadow: 0 20px 35px -10px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 90, 54, 0.4);
  backdrop-filter: blur(14px);
  z-index: 5;
  color: #ffffff;
  animation: floatBadge 4s ease-in-out infinite alternate;
}

.badge-pos-left {
  bottom: -20px;
  left: -30px;
}

.badge-pos-right {
  top: 30px;
  right: -25px;
  border-color: rgba(0, 210, 255, 0.4);
  animation-delay: -2s;
}

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

  100% {
    transform: translateY(-10px);
  }
}


/* Glassmorphic Floating Stats Strip */
.glass-stats-section {
  position: relative;
  z-index: 10;
  margin-top: -50px;
}

.glass-stats-strip {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  border-radius: var(--radius-lg);
  padding: 35px 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.modern-stat-item {
  text-align: center;
  position: relative;
}

.modern-stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(148, 163, 184, 0.25);
}

.modern-stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 6px;
}

.modern-stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* About Company Section */
.about-company-section {
  padding: 80px 0;
  background: #f5f8fb;
}

.about-company-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.about-company-content {
  max-width: 620px;
}

.about-section-tag {
  background: rgba(251, 146, 60, 0.1);
  color: #fb6c35;
  padding: 8px 18px;
  border-radius: 999px;
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.about-company-content h2 {
  font-size: clamp(2.6rem, 3.2vw, 3.4rem);
  margin-bottom: 24px;
  color: #0f172a;
  line-height: 1.05;
}

.about-company-content p {
  font-size: 1rem;
  color: #475569;
  line-height: 1.85;
  margin-bottom: 34px;
}

.about-company-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 32px;
  margin-bottom: 40px;
}

.about-company-visual {
  position: relative;
}

.about-company-visual-stack {
  position: relative;
  min-height: 520px;
}

.about-image-card {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(15, 23, 42, 0.08);
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 36px;
}

.about-image-card img {
  width: auto;
  height: 60%;
  max-width: 80%;
  display: block;
  object-fit: contain;
}

.about-image-card-large {
  height: 100%;
  min-height: 420px;
}

.about-image-card-small {
  position: absolute;
  bottom: 16px;
  right: -6px;
  width: 56%;
  min-height: 220px;
  transform: translateY(22px);
  border: 1px solid rgba(148, 163, 184, 0.16);
  background: #ffffff;
}

.about-company-stat {
  position: absolute;
  top: 40px;
  right: -20px;
  width: 140px;
  min-height: 160px;
  background: #ffffff;
  border-radius: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 32px 80px rgba(15, 23, 42, 0.1);
  border: 1px solid rgba(148, 163, 184, 0.16);
}

.about-company-number {
  font-size: 4.5rem;
  color: #fb6c35;
  line-height: 1;
  font-weight: 800;
}

.about-company-label {
  margin-top: 10px;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: #475569;
  letter-spacing: 0.16em;
}

.about-company-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.about-company-bullet {
  width: 10px;
  height: 10px;
  margin-top: 8px;
  border-radius: 50%;
  background: #fb6c35;
  flex-shrink: 0;
}

.about-company-item p {
  margin: 0;
  color: #475569;
  font-size: 0.98rem;
}

.about-company-author {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 20px;
}

.author-avatar {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(251, 146, 60, 0.2);
}

.about-company-author strong {
  display: block;
  font-size: 1rem;
  color: #0f172a;
}

.about-company-author span {
  display: block;
  color: #64748b;
  font-size: 0.95rem;
}

.about-company-visual {
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.about-company-visual-grid {
  display: grid;
  gap: 24px;
  width: 100%;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
}

.feature-card {
  background: #ffffff;
  border-radius: 28px;
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(148, 163, 184, 0.16);
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.feature-card-large {
  grid-column: 1 / -1;
}

.feature-card-large h3 {
  font-size: 1.85rem;
  line-height: 1.1;
  margin: 18px 0 20px;
  color: #0f172a;
}

.feature-card-tag {
  display: inline-flex;
  background: rgba(251, 146, 60, 0.12);
  color: #fb6c35;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.feature-card-large p {
  color: #475569;
  line-height: 1.85;
  margin-bottom: 28px;
}

.feature-card-btn {
  width: fit-content;
}

.feature-card-logos {
  display: grid;
  gap: 18px;
}

.feature-card-title {
  font-weight: 700;
  color: #0f172a;
  letter-spacing: 0.02em;
}

.company-logos {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.company-logo-item {
  background: rgba(59, 130, 246, 0.08);
  border-radius: 20px;
  padding: 22px 16px;
  text-align: center;
  color: #1d4ed8;
  font-weight: 700;
  font-size: 0.95rem;
}

.feature-card-experience {
  background: linear-gradient(180deg, #fb6c35 0%, #f97316 100%);
  color: #ffffff;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.experience-number {
  font-size: 4.5rem;
  line-height: 1;
  font-weight: 800;
}

.experience-copy {
  margin-top: 12px;
  display: grid;
  gap: 6px;
  font-size: 0.95rem;
}

.experience-copy strong {
  font-size: 1rem;
}

.experience-copy span {
  color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 1100px) {
  .about-company-visual-grid {
    grid-template-columns: 1fr;
  }

  .feature-card-large {
    grid-column: auto;
  }
}

@media (max-width: 760px) {
  .about-company-visual {
    align-items: stretch;
  }

  .feature-card {
    padding: 28px;
  }

  .company-logos {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1100px) {
  .about-company-grid {
    grid-template-columns: 1fr;
  }

  .about-company-visual-stack {
    min-height: 420px;
  }

  .about-image-card-small {
    width: 62%;
    right: 0;
  }

  .about-company-stat {
    top: auto;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (max-width: 760px) {
  .about-company-content h2 {
    font-size: 2.2rem;
  }

  .about-company-list {
    grid-template-columns: 1fr;
  }

  .about-image-card-large,
  .about-image-card-small {
    min-height: 260px;
  }

  .about-image-card-small {
    position: relative;
    width: 100%;
    transform: translateY(20px);
    right: 0;
  }

  .about-company-stat {
    position: relative;
    top: auto;
    right: auto;
    transform: none;
    margin: 24px auto 0;
  }
}

/* Services Presentation Section */
.services-presentation-section {
  position: relative;
  overflow: hidden;
  padding: 80px 0 60px;
  background: #f8fafc;
}

.services-presentation-section::before {
  display: none;
}

.services-presentation-header {
  max-width: 780px;
  margin: 0 auto 50px;
  position: relative;
  z-index: 2;
}

.services-presentation-header h2 {
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 1.02;
  color: #111827;
}

.services-presentation-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
}

.service-circle-card {
  background: #ffffff;
  border-radius: 50%;
  padding: 44px 28px 38px;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  box-shadow: 0 28px 80px rgba(15, 23, 42, 0.1);
}

.service-icon-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  margin-bottom: 22px;
  display: grid;
  place-items: center;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
}

.service-icon-circle svg {
  width: 30px;
  height: 30px;
}

.service-circle-card h3 {
  margin-bottom: 16px;
  font-size: 1.2rem;
  color: #111827;
}

.service-circle-card p {
  margin: 0 auto;
  max-width: 250px;
  font-size: 0.98rem;
  line-height: 1.75;
  color: #475569;
}

.service-card-link {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #111827;
  text-decoration: none;
  letter-spacing: 0.01em;
}

.service-circle-qa .service-icon-circle {
  background: rgba(219, 234, 254, 0.85);
  color: #1d4ed8;
}

.service-circle-mobile .service-icon-circle {
  background: rgba(237, 233, 254, 0.88);
  color: #7c3aed;
}

.service-circle-uiux .service-icon-circle {
  background: rgba(254, 230, 202, 0.95);
  color: #f97316;
}

@media (max-width: 992px) {
  .services-presentation-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .services-presentation-section {
    padding-top: 80px;
  }

  .services-presentation-grid {
    grid-template-columns: 1fr;
  }

  .services-presentation-section::before {
    height: 280px;
    bottom: -80px;
  }
}

/* Scroll Reveal Transition System */
.scroll-reveal {
  opacity: 0;
  transform: translateY(45px);
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

/* Custom animation direction overrides */
.scroll-reveal[data-anim="fade-in-right"] {
  transform: translateX(45px) translateY(0);
}

/* Revealed States */
.scroll-reveal.animate-fade-up {
  opacity: 1;
  transform: translateY(0);
}

.scroll-reveal.animate-fade-in-right {
  opacity: 1;
  transform: translateX(0) translateY(0);
}

/* Scroll Reveal Delay Utilities for cascading elements */
.scroll-reveal.delay-1 {
  transition-delay: 0.1s;
}

.scroll-reveal.delay-2 {
  transition-delay: 0.2s;
}

.scroll-reveal.delay-3 {
  transition-delay: 0.3s;
}

.scroll-reveal.delay-4 {
  transition-delay: 0.4s;
}

.scroll-reveal.delay-5 {
  transition-delay: 0.5s;
}

/* Hide legacy solutions tabs and grid if still present */
.solutions-section-modern,
.solutions-tabs-nav,
.solutions-modern-grid,
.solution-modern-card {
  display: none !important;
}

.solution-modern-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(10, 37, 64, 0.2);
}

.sol-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.sol-icon-box {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(37, 99, 235, 0.08);
  color: #2563eb;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sol-icon-box svg {
  width: 24px;
  height: 24px;
}

.sol-card-badge {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  background: #f1f5f9;
  color: var(--text-muted);
}

.solution-modern-card h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}

.solution-modern-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
}

.sol-feature-list {
  margin-bottom: 28px;
  display: grid;
  gap: 10px;
}

.sol-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text-main);
}

.sol-feature-item svg {
  color: #2563eb;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.sol-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.925rem;
  color: var(--primary);
  transition: gap 0.2s ease;
}

.sol-card-link:hover {
  gap: 14px;
  color: var(--accent);
}

/* 4-Step Interactive Engineering Pipeline */
.pipeline-section {
  padding: 100px 0;
  background: #f8fafc;
}

.pipeline-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}

.pipeline-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  padding: 32px 24px;
  position: relative;
  transition: all 0.3s ease;
}

.pipeline-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.pipeline-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: #ffffff;
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(10, 37, 64, 0.2);
}

.pipeline-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.pipeline-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* Modern Footer Additions */
.system-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.2);
  color: #16a34a;
  font-size: 0.8rem;
  font-weight: 600;
  margin-top: 15px;
}

.status-dot-green {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #22c55e;
  box-shadow: 0 0 8px #22c55e;
}

/* Responsive Modern Overrides */
@media (max-width: 1024px) {
  .hero-modern .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .glass-stats-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .modern-stat-item:nth-child(2)::after {
    display: none;
  }

  .bento-grid {
    grid-template-columns: 1fr;
  }

  .bento-span-7,
  .bento-span-5,
  .bento-span-4,
  .bento-span-8 {
    grid-column: span 1;
  }

  .solutions-modern-grid {
    grid-template-columns: 1fr 1fr;
  }

  .roi-calc-grid {
    grid-template-columns: 1fr;
  }

  .pipeline-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .hero-title-modern {
    font-size: 2.25rem;
  }

  .glass-stats-strip {
    grid-template-columns: 1fr;
  }

  .modern-stat-item::after {
    display: none !important;
  }

  .solutions-modern-grid {
    grid-template-columns: 1fr;
  }

  .pipeline-grid {
    grid-template-columns: 1fr;
  }

  .roi-calc-container {
    padding: 25px 20px;
  }
}

/* ==========================================================================
   OPTION B: ULTRA-SLEEK FLOATING CAPSULE HEADER & COMMAND CENTER HERO
   ========================================================================== */

/* Option B Header: Floating Pill Capsule Navbar */
.header-option-b {
  position: fixed;
  top: 15px;
  left: 0;
  right: 0;
  width: 95%;
  max-width: 1240px;
  height: 68px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: var(--radius-full);
  box-shadow: 0 15px 35px -5px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(0, 0, 0, 0.04);
  z-index: 1000;
  padding: 0 24px;
  transition: top 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    width 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    max-width 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    border-radius 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    padding 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    background 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-nav.header-option-b.scrolled {
  height: 68px;
}

.header-nav.header-option-b.scrolled .nav-logo-img {
  height: 46px;
}

.header-option-b.scrolled {
  top: 0;
  width: 100%;
  max-width: 100%;
  border-radius: 0;
  padding: 0 32px;
  background: rgba(255, 255, 255, 0.98);
  border-color: rgba(203, 213, 225, 0.9);
  border-left: none;
  border-right: none;
  border-top: none;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.10);
}

.header-option-b .nav-container {
  height: 100%;
}

.header-option-b.scrolled .nav-container {
  max-width: 100%;
  padding: 0;
}

.header-option-b .nav-link {
  font-size: 0.9rem;
  padding: 7px 16px;
  color: #0f172a;
}

.header-option-b .nav-link:hover,
.header-option-b .nav-item.active>.nav-link {
  color: #0a2540;
  background: rgba(10, 37, 64, 0.07);
  border: 1px solid rgba(10, 37, 64, 0.12);
}

/* Option B Hero: Command Center & Interactive Matrix */
.hero-option-b {
  position: relative;
  padding: 160px 0 120px 0;
  background: radial-gradient(circle at 50% 10%, #0d2238 0%, #071325 50%, #030812 100%);
  color: #ffffff;
  overflow: hidden;
}

.hero-option-b::after {
  content: '';
  position: absolute;
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 500px;
  background: radial-gradient(ellipse at center, rgba(255, 90, 54, 0.25) 0%, rgba(0, 210, 255, 0.15) 50%, transparent 80%);
  filter: blur(60px);
  pointer-events: none;
}

.hero-option-b .hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* Holographic Command Dashboard Card */
.dashboard-card-wrap {
  position: relative;
}

.dashboard-card-wrap .command-dashboard {
  transform: scale(0.97);
  opacity: 0;
  transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1),
    opacity 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.dashboard-card-wrap.revealed .command-dashboard {
  transform: scale(1);
  opacity: 1;
}

.dashboard-card-wrap .dash-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 0.55s cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: calc(var(--dash-i, 0) * 0.12s + 0.35s);
}

.dashboard-card-wrap.revealed .dash-reveal {
  opacity: 1;
  transform: translateY(0);
}

.dashboard-card-wrap .floating-hero-badge.dash-reveal {
  animation: none;
  transition: opacity 0.55s cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 0.55s cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: calc(var(--dash-i, 0) * 0.12s + 0.35s);
}

.dashboard-card-wrap.revealed .floating-hero-badge.dash-reveal {
  animation: floatBadge 4s ease-in-out infinite alternate;
}

.dashboard-card-wrap.revealed .badge-pos-right.dash-reveal {
  animation-delay: -2s;
}

.dashboard-card-wrap .dash-bar-fill {
  width: 0;
  transition: width 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: calc(var(--dash-i, 0) * 0.12s + 0.55s);
}

.dashboard-card-wrap.revealed .dash-bar-fill {
  width: var(--bar-target, 100%);
}

.command-dashboard {
  background: rgba(11, 24, 43, 0.92);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 210, 255, 0.35);
  box-shadow: 0 30px 70px -15px rgba(0, 0, 0, 0.8), 0 0 45px rgba(0, 210, 255, 0.2);
  backdrop-filter: blur(20px);
  overflow: hidden;
  padding: 28px;
}

.dash-header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 20px;
}

.dash-status-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.775rem;
  font-weight: 700;
  color: #00d2ff;
  letter-spacing: 0.05em;
}

.dash-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}

.dash-tab {
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.8rem;
  font-weight: 600;
  color: #cbd5e1;
  cursor: pointer;
  transition: all 0.25s ease;
}

.dash-tab.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(255, 90, 54, 0.4);
}

.dash-progress-box {
  background: rgba(0, 0, 0, 0.25);
  border-radius: var(--radius-md);
  padding: 18px;
  margin-bottom: 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.dash-prog-head {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.dash-bar-bg {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
}

.dash-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #ff5a36 0%, #00d2ff 100%);
  border-radius: 4px;
}

.dash-grid-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.dash-mini-stat {
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-sm);
  padding: 12px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.dash-mini-stat-val {
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff;
}

.dash-mini-stat-lbl {
  font-size: 0.725rem;
  color: #94a3b8;
}

@media (prefers-reduced-motion: reduce) {

  .dashboard-card-wrap .command-dashboard,
  .dashboard-card-wrap .dash-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .dashboard-card-wrap .dash-bar-fill {
    width: var(--bar-target, 100%);
    transition: none;
  }

  .dashboard-card-wrap .floating-hero-badge.dash-reveal {
    animation: floatBadge 4s ease-in-out infinite alternate;
  }
}

/* ==========================================================================
   MOBILE & TABLET RESPONSIVE OVERRIDES (HEADER & HERO OPTION B)
   ========================================================================== */

@media (max-width: 900px) {

  /* Header Option B Mobile Fixes */
  .header-option-b {
    top: 0 !important;
    left: 0 !important;
    transform: none !important;
    width: 100% !important;
    max-width: 100% !important;
    height: 64px !important;
    border-radius: 0 !important;
    padding: 0 16px !important;
    border-top: none !important;
    border-left: none !important;
    border-right: none !important;
    border-bottom: 1px solid rgba(226, 232, 240, 0.9) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05) !important;
  }

  .header-option-b.scrolled {
    top: 0 !important;
    height: 64px !important;
  }

  .nav-logo-img {
    height: 34px !important;
  }

  .mobile-toggle {
    display: block !important;
    background: rgba(10, 37, 64, 0.08) !important;
    color: #0a2540 !important;
    border: 1px solid rgba(10, 37, 64, 0.15) !important;
  }

  /* Hero Option B Mobile Layout */
  .hero-option-b {
    padding: 95px 0 50px 0 !important;
  }

  .hero-option-b .hero-grid {
    grid-template-columns: 1fr !important;
    text-align: center !important;
    gap: 32px !important;
  }

  .hero-title-modern {
    font-size: 2.2rem !important;
    line-height: 1.2 !important;
  }

  .hero-subtitle-modern {
    font-size: 0.975rem !important;
    margin: 0 auto 24px auto !important;
  }

  .hero-cta-group {
    flex-direction: column !important;
    width: 100% !important;
    gap: 12px !important;
  }

  .hero-cta-group .btn-glowing,
  .hero-cta-group .btn-outline-modern {
    width: 100% !important;
    justify-content: center !important;
    padding: 13px 20px !important;
  }

  .floating-hero-badge {
    display: none !important;
    /* Hide floating badges to prevent mobile side-scroll overflow */
  }

  .command-dashboard {
    padding: 18px 14px !important;
    border-radius: var(--radius-md) !important;
  }

  .dash-tabs {
    flex-wrap: wrap !important;
  }

  .dash-tab {
    flex: 1 !important;
    text-align: center !important;
    font-size: 0.75rem !important;
    padding: 6px 8px !important;
  }
}

@media (max-width: 520px) {
  .header-option-b .btn-glowing {
    display: none !important;
    /* Hide CTA button on tiny mobile screens to avoid logo overlap */
  }

  .hero-title-modern {
    font-size: 1.85rem !important;
  }

  .dash-grid-stats {
    grid-template-columns: 1fr !important;
    gap: 8px !important;
  }
}

/* ==========================================================================
   HOMEPAGE ABOUT US SECTION (QUIETY STYLE)
   ========================================================================== */
.about-company-section {
  padding: 60px 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.about-company-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-company-visual-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-visual-container {
  position: relative;
  width: 100%;
  max-width: 520px;
}

.about-team-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 30px;
  object-fit: cover;
}

/* Floating Circular Badges */
.about-stat-badge {
  position: absolute;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08), 0 6px 16px rgba(0, 0, 0, 0.04);
  z-index: 5;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(226, 232, 240, 0.6);
  backdrop-filter: blur(8px);
}

.about-stat-badge:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12), 0 10px 20px rgba(0, 0, 0, 0.06);
}

/* Badge Positioning & Sizing */
.about-stat-badge.badge-bottom-left {
  width: 140px;
  height: 140px;
  padding: 16px;
  left: -25px;
  bottom: 8%;
}

.about-stat-badge.badge-bottom-center {
  width: 155px;
  height: 155px;
  padding: 18px;
  left: 32%;
  bottom: -30px;
}

.about-stat-badge.badge-middle-right {
  width: 130px;
  height: 130px;
  padding: 14px;
  right: -20px;
  bottom: 30%;
}

/* Stat Badge Values & Colors */
.stat-badge-val {
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.stat-badge-val.yellow-val {
  color: #f59e0b;
}

.stat-badge-val.red-val {
  color: #ff4d4d;
  font-size: 1.85rem;
}

.stat-badge-val.green-val {
  color: #10b981;
}

.stat-badge-lbl {
  font-size: 0.75rem;
  font-weight: 600;
  color: #64748b;
  margin-top: 4px;
  line-height: 1.2;
}

/* Content Column Styles */
.about-company-content {
  padding-left: 10px;
}

.about-company-heading {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.25;
  color: #1e293b;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.about-company-desc {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #64748b;
  margin-bottom: 36px;
  font-weight: 400;
}

.about-company-cta {
  display: flex;
  align-items: center;
}

.btn-quiety-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  background: #ff4d4d;
  color: #ffffff !important;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(255, 77, 77, 0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
}

.btn-quiety-primary:hover {
  background: #e63939;
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(255, 77, 77, 0.4);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .about-company-grid {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .about-company-content {
    padding-left: 0;
    text-align: center;
  }

  .about-company-heading {
    font-size: 2.1rem;
  }

  .about-company-cta {
    justify-content: center;
  }

  .about-stat-badge.badge-bottom-left {
    left: 0;
  }

  .about-stat-badge.badge-bottom-center {
    left: 50%;
    transform: translateX(-50%);
  }

  .about-stat-badge.badge-bottom-center:hover {
    transform: translate(-50%, -6px);
  }

  .about-stat-badge.badge-middle-right {
    right: 0;
  }
}

@media (max-width: 640px) {
  .about-company-section {
    padding: 60px 0;
  }

  .about-company-heading {
    font-size: 1.75rem;
  }

  .about-company-desc {
    font-size: 0.95rem;
  }

  .about-stat-badge.badge-bottom-left {
    width: 110px;
    height: 110px;
    padding: 10px;
    left: -10px;
  }

  .about-stat-badge.badge-bottom-center {
    width: 125px;
    height: 125px;
    padding: 12px;
    bottom: -20px;
  }

  .about-stat-badge.badge-middle-right {
    width: 100px;
    height: 100px;
    padding: 8px;
    right: -10px;
  }

  .stat-badge-val {
    font-size: 1.3rem;
  }

  .stat-badge-val.red-val {
    font-size: 1.5rem;
  }

  .stat-badge-lbl {
    font-size: 0.65rem;
  }
}

/* ==========================================================================
   SHADED CARD BACKGROUNDS, SHADED BORDERS & UNDERLINE BUTTON STYLE
   ========================================================================== */
.services-presentation-section {
  padding: 80px 0 60px 0;
  background: #f8fafc;
  position: relative;
  overflow: hidden;
}

.services-presentation-section::before {
  display: none;
}

.services-presentation-section .container {
  position: relative;
  z-index: 2;
}

.services-presentation-header {
  margin-bottom: 50px;
  text-align: center;
}

.services-presentation-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: stretch;
}

/* Curvy Oval Cards with Shaded Backgrounds & Shaded Borders */
.service-card {
  border-radius: 44px;
  /* Smooth Curvy Oval Shape */
  padding: 44px 36px 36px 36px;
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
}

/* Card 1: QA Shaded Background & Shaded Border */
.service-card-qa {
  background: linear-gradient(165deg, #ffffff 0%, #fff6f3 100%);
  border: 1.5px solid rgba(255, 90, 54, 0.22);
  box-shadow: 0 16px 40px -10px rgba(255, 90, 54, 0.1), inset 0 0 0 1px rgba(255, 255, 255, 0.9);
}

/* Card 2: Mobile Shaded Background & Shaded Border */
.service-card-mobile {
  background: linear-gradient(165deg, #ffffff 0%, #f0f9ff 100%);
  border: 1.5px solid rgba(0, 180, 240, 0.22);
  box-shadow: 0 16px 40px -10px rgba(0, 180, 240, 0.1), inset 0 0 0 1px rgba(255, 255, 255, 0.9);
}

/* Card 3: UI/UX Shaded Background & Shaded Border */
.service-card-uiux {
  background: linear-gradient(165deg, #ffffff 0%, #fdf2f8 100%);
  border: 1.5px solid rgba(236, 72, 153, 0.22);
  box-shadow: 0 16px 40px -10px rgba(236, 72, 153, 0.1), inset 0 0 0 1px rgba(255, 255, 255, 0.9);
}

/* Hover Elevation & Shaded Border Glow */
.service-card:hover {
  transform: translateY(-10px);
}

.service-card-qa:hover {
  border-color: rgba(255, 90, 54, 0.5);
  box-shadow: 0 28px 60px -10px rgba(255, 90, 54, 0.22), inset 0 0 0 1px rgba(255, 255, 255, 1);
}

.service-card-mobile:hover {
  border-color: rgba(0, 180, 240, 0.5);
  box-shadow: 0 28px 60px -10px rgba(0, 180, 240, 0.22), inset 0 0 0 1px rgba(255, 255, 255, 1);
}

.service-card-uiux:hover {
  border-color: rgba(236, 72, 153, 0.5);
  box-shadow: 0 28px 60px -10px rgba(236, 72, 153, 0.22), inset 0 0 0 1px rgba(255, 255, 255, 1);
}

.service-card-top {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 22px;
}

/* Circular Number Badge */
.service-card-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 90, 54, 0.12);
  color: #ff5a36;
  font-weight: 800;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.4s ease;
}

.service-card-mobile .service-card-number {
  background: rgba(0, 180, 240, 0.12);
  color: #0284c7;
}

.service-card-uiux .service-card-number {
  background: rgba(236, 72, 153, 0.12);
  color: #db2777;
}

.service-card:hover .service-card-number {
  transform: scale(1.1);
}

.service-card h3 {
  font-size: 1.45rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.3;
  margin: 0;
  padding-top: 4px;
}

.service-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #64748b;
  margin-bottom: 28px;
}

/* List with checkmarks */
.service-card-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
}

.service-card-list li {
  font-size: 0.925rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.service-card-list li::before {
  content: "✓";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.12);
  color: #10b981;
  font-size: 0.85rem;
  font-weight: 900;
  flex-shrink: 0;
}

/* Underline Border Line Button Style (Matching Image Attached) */
.service-card-link {
  margin-top: auto;
  align-self: center;
  display: inline-block;
  font-weight: 800;
  font-size: 1.05rem;
  color: #0f172a;
  text-decoration: none;
  padding-bottom: 8px;
  position: relative;
  text-align: center;
  transition: color 0.3s ease;
  width: 100%;
}

/* Colored Bottom Line Underneath Button */
.service-card-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  transition: all 0.3s ease;
}

.service-card-qa .service-card-link::after {
  background: #ff7e67;
}

.service-card-mobile .service-card-link::after {
  background: #38bdf8;
}

.service-card-uiux .service-card-link::after {
  background: #f472b6;
}

.service-card-qa .service-card-link:hover {
  color: #ff5a36;
}

.service-card-mobile .service-card-link:hover {
  color: #0284c7;
}

.service-card-uiux .service-card-link:hover {
  color: #db2777;
}

.service-card-link:hover::after {
  height: 3px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

/* Responsive Service Cards */
@media (max-width: 991px) {
  .services-presentation-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .service-card {
    border-radius: 36px;
    padding: 36px 28px;
  }
}

/* ==========================================================================
   MODERN TECHNOLOGY ECOSYSTEM SECTION (INFINITE MARQUEE & GLASS CARDS)
   ========================================================================== */
.tech-showcase-section {
  padding: 40px 0 60px 0;
  background: #f8fafc;
  position: relative;
  overflow: hidden;
}

.tech-header {
  margin-bottom: 20px;
  text-align: center;
}

.tech-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  background: rgba(14, 165, 233, 0.1);
  color: #0284c7;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  border-radius: 50px;
  margin-bottom: 16px;
  border: 1px solid rgba(14, 165, 233, 0.2);
  text-transform: uppercase;
}

.tech-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #0284c7;
  box-shadow: 0 0 10px #0284c7;
}

.tech-title {
  font-size: 2.35rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.tech-subtitle {
  font-size: 1.05rem;
  color: #64748b;
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Marquee Outer Container with Gradient Mask Edges */
.tech-marquee-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 15px 0;
}

/* Absolute gradient overlays for safe cross-browser fade effect */
.tech-marquee-wrapper::before,
.tech-marquee-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 150px;
  z-index: 10;
  pointer-events: none;
}

.tech-marquee-wrapper::before {
  left: 0;
  background: linear-gradient(to right, #f8fafc, transparent);
}

.tech-marquee-wrapper::after {
  right: 0;
  background: linear-gradient(to left, #f8fafc, transparent);
}

.tech-marquee-track {
  display: flex;
  width: max-content;
  user-select: none;
}

.tech-marquee-content {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-right: 20px;
  flex-shrink: 0;
  /* Prevent items from shrinking to 0 width */
}

/* Continuous Animation Loops */
.marquee-track-left .tech-marquee-content {
  animation: marqueeLeft 38s linear infinite;
}

.marquee-track-right .tech-marquee-content {
  animation: marqueeRight 42s linear infinite;
}

/* Pause Marquee on Hover for Interactive Inspection */
.tech-marquee-wrapper:hover .tech-marquee-content {
  animation-play-state: paused;
}

@keyframes marqueeLeft {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

@keyframes marqueeRight {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(0);
  }
}

/* Individual Tech Glass Cards */
.tech-glass-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 26px;
  background: #ffffff;
  border-radius: 22px;
  border: 1.5px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  white-space: nowrap;
}

.tech-glass-card img {
  height: 32px;
  width: auto;
  max-width: 42px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.tech-glass-card span {
  font-size: 0.925rem;
  font-weight: 700;
  color: #1e293b;
  letter-spacing: -0.01em;
}

/* Card Hover Micro-Interactions */
.tech-glass-card:hover {
  transform: translateY(-4px) scale(1.05);
  background: #ffffff;
  border-color: #0284c7;
  box-shadow: 0 16px 36px rgba(14, 165, 233, 0.15), 0 4px 12px rgba(15, 23, 42, 0.05);
}

.tech-glass-card:hover img {
  transform: scale(1.15);
}

.tech-glass-card:hover span {
  color: #0284c7;
}

/* Responsive Marquee Adjustments */
@media (max-width: 768px) {
  .tech-title {
    font-size: 1.8rem;
  }

  .tech-glass-card {
    padding: 10px 18px;
    border-radius: 16px;
  }

  .tech-glass-card img {
    height: 26px;
  }

  .tech-glass-card span {
    font-size: 0.85rem;
  }
}

/* ─────────────────────────────────────────────────────────────
   Hero Technology Illustration Showcase & Interactive Pillars
   ───────────────────────────────────────────────────────────── */
.hero-showcase-wrap {
  position: relative;
  width: 100%;
}

.hero-tech-tabs {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  background: rgba(11, 24, 43, 0.85);
  padding: 6px;
  border-radius: 16px;
  border: 1px solid rgba(0, 210, 255, 0.25);
  backdrop-filter: blur(16px);
  margin-bottom: 16px;
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
}

.tech-tab-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 12px;
  border-radius: 12px;
  background: transparent;
  border: 1px solid transparent;
  color: #94a3b8;
  font-size: 0.825rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  white-space: nowrap;
}

.tech-tab-btn:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
}

.tech-tab-btn.active {
  background: linear-gradient(135deg, rgba(255, 90, 54, 0.25) 0%, rgba(0, 210, 255, 0.2) 100%);
  border: 1px solid rgba(0, 210, 255, 0.5);
  color: #ffffff;
  font-weight: 700;
  box-shadow: 0 4px 18px rgba(0, 210, 255, 0.25), inset 0 0 12px rgba(255, 90, 54, 0.15);
}

.tab-icon {
  font-size: 1rem;
}

.hero-visual-frame.command-dashboard {
  position: relative;
  padding: 0;
  border-radius: 24px;
  background: rgba(11, 24, 43, 0.95);
  border: 1px solid rgba(0, 210, 255, 0.3);
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.85), 0 0 50px rgba(0, 210, 255, 0.2);
  overflow: hidden;
}

.visual-glow-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(0, 210, 255, 0.18) 0%, rgba(255, 90, 54, 0.1) 45%, transparent 80%);
  pointer-events: none;
  z-index: 1;
}

.hero-image-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10.5;
  min-height: 380px;
  overflow: hidden;
  z-index: 2;
}

.hero-tech-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 0.7s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
  pointer-events: none;
}

.hero-tech-img.active {
  opacity: 1;
  transform: scale(1);
}

/* Compact HUD Floating Capsule Badges (Non-blocking Overlay) */
.floating-hero-badge {
  position: absolute;
  z-index: 6;
  pointer-events: none;
}

.hero-visual-frame .badge-pos-left {
  top: 14px !important;
  left: 14px !important;
  bottom: auto !important;
  right: auto !important;
  background: rgba(5, 13, 26, 0.78) !important;
  border: 1px solid rgba(0, 210, 255, 0.4) !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4), 0 0 15px rgba(0, 210, 255, 0.15) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  padding: 5px 14px !important;
  border-radius: 999px !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  width: auto !important;
  max-width: calc(50% - 20px) !important;
}

.hero-visual-frame .badge-pos-right {
  top: 14px !important;
  right: 14px !important;
  bottom: auto !important;
  left: auto !important;
  background: rgba(5, 13, 26, 0.78) !important;
  border: 1px solid rgba(255, 90, 54, 0.4) !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4), 0 0 15px rgba(255, 90, 54, 0.15) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  padding: 5px 14px !important;
  border-radius: 999px !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  width: auto !important;
  max-width: calc(50% - 20px) !important;
}

.badge-icon-box {
  width: 26px !important;
  height: 26px !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-weight: 800 !important;
  font-size: 0.8rem !important;
  flex-shrink: 0 !important;
}

.badge-icon-box.icon-cyan {
  background: rgba(0, 210, 255, 0.25) !important;
  color: #00d2ff !important;
  border: 1px solid rgba(0, 210, 255, 0.4) !important;
}

.badge-icon-box.icon-orange {
  background: rgba(255, 90, 54, 0.25) !important;
  color: #ff5a36 !important;
  border: 1px solid rgba(255, 90, 54, 0.4) !important;
}

.badge-icon-box.icon-green {
  background: rgba(34, 197, 94, 0.25) !important;
  color: #22c55e !important;
  border: 1px solid rgba(34, 197, 94, 0.4) !important;
}

.badge-text-wrap {
  display: inline-flex !important;
  align-items: center !important;
  gap: 5px !important;
  white-space: nowrap !important;
}

.badge-title {
  font-weight: 700 !important;
  font-size: 0.8rem !important;
  color: #ffffff !important;
  line-height: 1 !important;
}

.badge-sub {
  font-size: 0.725rem !important;
  color: #94a3b8 !important;
  line-height: 1 !important;
}

@media (max-width: 768px) {
  .hero-visual-frame .floating-hero-badge {
    display: none !important;
  }
}

/* Interactive Caption Bar */
.hero-visual-caption-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 5;
  padding: 14px 22px;
  background: rgba(5, 13, 26, 0.88);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.caption-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #00d2ff;
  box-shadow: 0 0 10px #00d2ff;
  animation: pulseDot 2s infinite;
  flex-shrink: 0;
}

.caption-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: #ffffff;
  margin-left: 8px;
  margin-right: auto;
  letter-spacing: -0.01em;
}

.caption-dots {
  display: flex;
  align-items: center;
  gap: 6px;
}

.cap-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: all 0.3s ease;
}

.cap-dot.active {
  width: 20px;
  border-radius: 10px;
  background: #ff5a36;
  box-shadow: 0 0 10px rgba(255, 90, 54, 0.6);
}

@media (max-width: 991px) {
  .hero-tech-tabs {
    flex-wrap: wrap;
  }
  .tech-tab-btn {
    min-width: 45%;
    font-size: 0.775rem;
  }
  .hero-visual-frame .badge-pos-left {
    top: 12px;
    left: 12px;
    padding: 8px 12px;
  }
  .hero-visual-frame .badge-pos-right {
    bottom: 54px;
    right: 12px;
    padding: 8px 12px;
  }
  .badge-title {
    font-size: 0.8rem;
  }
  .badge-sub {
    font-size: 0.7rem;
  }
}

/* ─────────────────────────────────────────────────────────────
   About Company Section - Interactive Digital Specialists Showcase
   ───────────────────────────────────────────────────────────── */
.about-company-section {
  padding: 90px 0;
  background: #ffffff;
  position: relative;
}

.about-company-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-company-visual-wrap {
  width: 100%;
}

.about-role-tabs-wrap {
  position: relative;
  z-index: 5;
  padding: 14px 14px 0 14px;
}

.about-role-tabs {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  background: rgba(5, 13, 26, 0.85);
  padding: 5px;
  border-radius: 14px;
  border: 1px solid rgba(0, 210, 255, 0.3);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.about-role-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 10px;
  border-radius: 10px;
  background: transparent;
  border: 1px solid transparent;
  color: #94a3b8;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  white-space: nowrap;
}

.about-role-btn:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.about-role-btn.active {
  background: linear-gradient(135deg, rgba(255, 90, 54, 0.3) 0%, rgba(0, 210, 255, 0.25) 100%);
  border: 1px solid rgba(0, 210, 255, 0.5);
  color: #ffffff;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(0, 210, 255, 0.25);
}

.about-visual-container {
  position: relative;
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  background: #091629;
  border: 1px solid rgba(0, 210, 255, 0.25);
  box-shadow: 0 25px 60px -15px rgba(15, 23, 42, 0.25);
}

.about-glow-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(0, 210, 255, 0.15) 0%, rgba(255, 90, 54, 0.08) 50%, transparent 80%);
  pointer-events: none;
  z-index: 1;
}

.about-image-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  min-height: 380px;
  overflow: hidden;
  z-index: 2;
}

.about-role-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 0.7s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.about-role-img.active {
  opacity: 1;
  transform: scale(1);
}

/* Floating Stat Pills */
.about-stat-badge {
  position: absolute;
  z-index: 5;
  background: rgba(9, 21, 38, 0.88);
  border-radius: 999px;
  padding: 8px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  backdrop-filter: blur(14px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.badge-pos-top-right {
  top: 18px;
  right: 18px;
  border: 1px solid rgba(34, 197, 94, 0.4);
}

.badge-pos-bottom-left {
  bottom: 18px;
  left: 18px;
  border: 1px solid rgba(255, 183, 3, 0.4);
}

.badge-pos-bottom-right {
  bottom: 18px;
  right: 18px;
  border: 1px solid rgba(255, 90, 54, 0.4);
}

.stat-badge-val {
  font-weight: 800;
  font-size: 1.1rem;
}

.stat-badge-val.green-val {
  color: #22c55e;
}

.stat-badge-val.yellow-val {
  color: #ffb703;
}

.stat-badge-val.red-val {
  color: #ff5a36;
}

.stat-badge-lbl {
  font-weight: 600;
  font-size: 0.78rem;
  color: #ffffff;
  white-space: nowrap;
}

.about-company-heading {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.18;
  color: #0f172a;
  margin-bottom: 20px;
  letter-spacing: -0.025em;
}

.about-company-desc {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #475569;
  margin-bottom: 30px;
}

@media (max-width: 991px) {
  .about-company-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-company-heading {
    font-size: 2rem;
  }
  .about-role-tabs {
    flex-wrap: wrap;
  }
  .about-role-btn {
    min-width: 45%;
  }
}