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

:root {
  --primary: #2563eb;
  --primary-hover: #1d4ed8;
  --primary-light: #eff6ff;
  --primary-dark: #1e3a8a;
  --accent-blue: #0284c7;
  --navy: #0f172a;
  --navy-light: #1e293b;
  --text-primary: #1e293b;
  --text-secondary: #475569;
  --text-muted: #64748b;
  --bg-gradient: linear-gradient(180deg, #f0f7ff 0%, #ffffff 40%, #f8fafc 100%);
  --card-bg: #ffffff;
  --border-color: #e2e8f0;
  --border-hover: #93c5fd;
  --shadow-sm: 0 2px 4px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 10px 25px -5px rgba(37, 99, 235, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 20px 35px -10px rgba(37, 99, 235, 0.12), 0 10px 15px -5px rgba(0, 0, 0, 0.04);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-pill: 9999px;
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text-primary);
  background-color: #ffffff;
  line-height: 1.6;
}

body {
  overflow-x: hidden;
}

/* Typography Helpers */
h1, h2, h3, h4, .brand-font {
  font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
  letter-spacing: -0.02em;
}

.text-gradient {
  background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 50%, #0284c7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Container */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.header, .navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
}

.header-container, .navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-img {
  height: 48px;
  max-height: 48px;
  width: auto;
  display: block;
  object-fit: contain;
  transition: transform 0.25s ease;
}

.logo:hover .logo-img {
  transform: scale(1.03);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 42px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header-right-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-primary);
  font-weight: 600;
  font-size: 20px;
  transition: var(--transition);
  position: relative;
  padding: 6px 0;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, #1e40af 0%, #2563eb 100%);
  color: white;
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.25);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.35);
  background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  padding: 10px 24px;
  border-radius: var(--radius-pill);
}

/* Language Selector Dropdown */
.lang-selector-dropdown {
  position: relative;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f0f6ff;
  color: #1d4ed8;
  border: 1.5px solid #bfdbfe;
  padding: 10px 18px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.08);
}

.lang-btn:hover {
  background: #1d4ed8;
  color: #ffffff;
  border-color: #1d4ed8;
  box-shadow: 0 4px 16px rgba(29, 78, 216, 0.25);
}

.lang-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 200px;
  background: #ffffff;
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 14px;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.15);
  padding: 8px 0;
  display: none;
  flex-direction: column;
  z-index: 1000;
  animation: fadeInDown 0.25s ease;
}

.lang-menu.active {
  display: flex;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.lang-option {
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 600;
  color: #1e293b;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: background 0.2s ease, color 0.2s ease;
}

.lang-option:hover, .lang-option.active {
  background: #eff6ff;
  color: #1d4ed8;
  font-weight: 700;
}

.flag {
  font-size: 17px;
} 

.btn-outline:hover {
  background: var(--primary-light);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--navy);
  cursor: pointer;
}

/* Hero Video Section */
.hero-video-section {
  position: relative;
  width: 100%;
  height: 85vh;
  min-height: 580px;
  max-height: 800px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0f172a;
}

.hero-video-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.hero-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.65) 0%, rgba(15, 23, 42, 0.45) 50%, rgba(15, 23, 42, 0.85) 100%);
  z-index: 2;
}

.hero-video-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 920px;
  margin: 0 auto;
  padding: 0 24px;
  color: #ffffff;
}

.hero-video-content h1 {
  font-size: 46px;
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: 20px;
  color: #ffffff;
  letter-spacing: -0.5px;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
}

.blue-glow-text {
  background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 12px rgba(59, 130, 246, 0.5));
}

.hero-video-content p {
  font-size: 18px;
  color: #e2e8f0;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 36px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.btn-outline-white {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  padding: 12px 28px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-outline-white:hover {
  background: #ffffff;
  color: #0f172a;
  border-color: #ffffff;
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.25);
}

/* Hero Section Fallback */

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(180deg, rgba(235, 245, 255, 0) 0%, #eef5ff 100%);
  pointer-events: none;
  z-index: 3;
}

.hero-content h1 {
  font-size: 50px;
  font-weight: 800;
  line-height: 1.14;
  color: #0f172a;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}

.hero-content h1 .blue-text {
  color: #2563eb;
}

.hero-content h1 .navy-text {
  color: #1e3a8a;
}

.hero-content p {
  font-size: 16.5px;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 520px;
}

/* IoT Showcase Composition (Devices + Pedestal + Floating Cloud) */
.iot-showcase {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

/* Floating 3D Cloud Element */
.cloud-float-badge {
  position: absolute;
  top: -45px;
  left: 20%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  color: white;
  padding: 12px 26px;
  border-radius: 40px;
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.4), inset 0 2px 4px rgba(255, 255, 255, 0.4);
  animation: floatCloud 3.5s ease-in-out infinite alternate;
}

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

.cloud-float-badge svg {
  width: 32px;
  height: 32px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
}

.cloud-float-badge span {
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 0.5px;
}

/* Devices Image */
.iot-devices-img {
  width: 100%;
  max-width: 1250px;
  min-width: 750px;
  height: auto;
  position: relative;
  z-index: 5;
  filter: drop-shadow(0 20px 45px rgba(15, 23, 42, 0.18));
  transition: transform 0.3s ease;
}

.iot-showcase:hover .iot-devices-img {
  transform: translateY(-4px);
}

/* Section Header standard */
.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 50px;
}

.section-header h2 {
  font-size: 38px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 14px;
}

.section-header p {
  font-size: 16px;
  color: var(--text-secondary);
}

.decorative-wave {
  display: block;
  margin: 8px auto 0;
  width: 60px;
  height: 12px;
}

/* About IoT Solutions Section */
.about-iot {
  padding: 60px 0 90px;
  background: linear-gradient(180deg, #eef5ff 0%, rgba(255, 255, 255, 0.6) 40%, #eef6ff 100%), url('assets/about_bg.png') no-repeat center top / cover;
  position: relative;
  overflow: hidden;
  margin-top: -1px;
}

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

.about-devices-img {
  width: 100%;
  max-width: 1100px;
  height: auto;
  position: relative;
  z-index: 5;
  filter: drop-shadow(0 20px 45px rgba(15, 23, 42, 0.16));
  transition: transform 0.3s ease;
}

.iot-showcase:hover .about-devices-img {
  transform: translateY(-4px);
}

.about-iot-title {
  font-size: 52px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.about-iot-title .blue-text {
  color: #2563eb;
}

.title-underline {
  width: 48px;
  height: 4px;
  background: #2563eb;
  border-radius: 2px;
  margin-bottom: 28px;
}

.about-iot-content p {
  font-size: 15.5px;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 580px;
}

.empower-title {
  font-size: 18px;
  font-weight: 700;
  color: #1e3a8a;
  margin-top: 28px;
  margin-bottom: 24px;
}

.empower-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 20px;
}

.empower-item {
  flex: 1;
  text-align: center;
  padding: 0 4px;
}

.empower-icon-clean {
  width: 50px;
  height: 50px;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.empower-item h4 {
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 4px;
}

.empower-item p {
  font-size: 12.5px;
  color: #64748b;
  line-height: 1.35;
  margin-bottom: 0;
}

.empower-divider {
  width: 1px;
  height: 80px;
  background: #cbd5e1;
  align-self: center;
}

.empower-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
}

.empower-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.empower-card {
  background: #f8fafc;
  padding: 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  text-align: center;
  transition: var(--transition);
}

.empower-card:hover {
  background: white;
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.empower-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.empower-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.empower-card p {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* About Emsensing Tech Section */
.about-emsense {
  padding: 90px 0;
  background: linear-gradient(180deg, #eef6ff 0%, #ffffff 50%, #eef5ff 100%);
  position: relative;
  margin-top: -1px;
}

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

.about-emsense-text p {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.7;
}

.vision-box {
  background: white;
  border-left: 4px solid var(--primary);
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}

.vision-box h4 {
  font-size: 16px;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 4px;
}

.founders-list {
  background: white;
  padding: 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
}

.founders-list h4 {
  font-size: 16px;
  color: var(--navy);
  margin-bottom: 12px;
  font-weight: 700;
}

.founders-list ol {
  padding-left: 20px;
  color: var(--text-secondary);
  font-size: 14px;
}

.founders-list li {
  margin-bottom: 6px;
}

/* Founder Card Spotlight */
.founder-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  border: 1px solid var(--border-color);
  position: relative;
}

.founder-img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 20px;
  border: 4px solid white;
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.2);
}

.founder-quote {
  font-style: italic;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 24px;
  position: relative;
}

.founder-name {
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 4px;
}

.founder-role {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
}

/* Platform Capabilities & Control Modes Section */
.platform-features-section {
  padding: 90px 0;
  background: linear-gradient(180deg, #ffffff 0%, #eef6ff 50%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  margin-bottom: 52px;
}

.capability-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1.5px solid rgba(59, 130, 246, 0.22);
  border-radius: 18px;
  padding: 28px 16px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease, border-color 0.35s ease;
  position: relative;
  box-shadow: 0 8px 24px -4px rgba(29, 78, 216, 0.06);
}

.capability-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 36px -6px rgba(29, 78, 216, 0.18), 0 0 20px rgba(59, 130, 246, 0.2);
  border-color: #2563eb;
}

.cap-icon-circle {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  border: 2px solid #3b82f6;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 0 20px rgba(37, 99, 235, 0.14);
  transition: transform 0.4s ease, background 0.4s ease, border-color 0.4s ease;
}

.capability-card:hover .cap-icon-circle {
  transform: scale(1.12) rotate(4deg);
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border-color: #1d4ed8;
}

.capability-card h4 {
  font-size: 13.5px;
  font-weight: 800;
  color: #1e3a8a;
  line-height: 1.35;
  margin: 0 0 14px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.cap-accent-bar {
  width: 32px;
  height: 3.5px;
  background: #1d4ed8;
  border-radius: 3px;
  margin-top: auto;
  transition: width 0.3s ease, background 0.3s ease;
}

.capability-card:hover .cap-accent-bar {
  width: 52px;
  background: #2563eb;
}

/* Diagnostic Banner */
.diagnostic-banner {
  background: linear-gradient(135deg, #f0f7ff 0%, #e0edff 100%);
  border: 2px solid #3b82f6;
  border-radius: 22px;
  padding: 30px 40px;
  display: flex;
  align-items: center;
  gap: 36px;
  box-shadow: 0 12px 36px rgba(29, 78, 216, 0.08), 0 0 0 1px rgba(255, 255, 255, 0.8) inset;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.diagnostic-banner:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(29, 78, 216, 0.16);
}

.diag-icon-wrapper {
  background: #ffffff;
  padding: 20px;
  border-radius: 20px;
  border: 2px solid #93c5fd;
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.35s ease;
}

.diagnostic-banner:hover .diag-icon-wrapper {
  transform: scale(1.06) rotate(-2deg);
}

.diag-content {
  flex: 1;
}

.diag-content h3 {
  font-size: 23px;
  font-weight: 900;
  color: #1e3a8a;
  letter-spacing: 0.6px;
  margin: 0 0 14px;
  text-transform: uppercase;
}

.diag-bullets {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 12px;
}

.diag-pill {
  font-size: 14.5px;
  font-weight: 700;
  color: #1e40af;
  background: rgba(255, 255, 255, 0.9);
  padding: 5px 14px;
  border-radius: 8px;
  border: 1px solid #bfdbfe;
  box-shadow: 0 2px 6px rgba(37, 99, 235, 0.05);
}

.diag-bullet-sep {
  color: #2563eb;
  font-weight: 900;
}

.diag-badge-btn {
  background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 100%);
  color: #ffffff;
  font-size: 15px;
  font-weight: 800;
  padding: 16px 30px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(29, 78, 216, 0.28);
  white-space: nowrap;
  flex-shrink: 0;
  letter-spacing: 0.4px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.diag-badge-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(29, 78, 216, 0.38);
}

/* Flexible Control Modes */
.modes-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 44px;
}

.modes-header h3 {
  font-size: 30px;
  font-weight: 900;
  background: linear-gradient(135deg, #0f172a 0%, #1d4ed8 60%, #2563eb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin: 0;
  white-space: nowrap;
}

.modes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.mode-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1.5px solid rgba(59, 130, 246, 0.25);
  border-radius: 18px;
  padding: 26px 24px;
  display: flex;
  align-items: center;
  gap: 22px;
  box-shadow: 0 8px 28px rgba(29, 78, 216, 0.06);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}

.mode-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(29, 78, 216, 0.15);
  border-color: #2563eb;
}

.mode-icon-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  border: 2px solid #3b82f6;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
  box-shadow: 0 0 18px rgba(37, 99, 235, 0.12);
  transition: transform 0.35s ease;
}

.mode-card:hover .mode-icon-circle {
  transform: scale(1.1);
}

.check-badge {
  position: absolute;
  bottom: -3px;
  right: -3px;
  background: #1d4ed8;
  color: #ffffff;
  font-size: 11px;
  font-weight: 900;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.mode-card h4 {
  font-size: 15px;
  font-weight: 800;
  color: #1e3a8a;
  margin: 0;
  letter-spacing: 0.4px;
  line-height: 1.35;
  text-transform: uppercase;
}

/* Why Emsensing AIoT Section - Creative Premium Design */
.why-aiot-section {
  padding: 95px 0;
  background: linear-gradient(180deg, #eef6ff 0%, #ffffff 40%, #eef6ff 100%);
  position: relative;
  overflow: hidden;
}

.why-aiot-section::before {
  content: '';
  position: absolute;
  top: 10%;
  left: 5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.07) 0%, rgba(255, 255, 255, 0) 70%);
  pointer-events: none;
}

.why-aiot-section::after {
  content: '';
  position: absolute;
  bottom: 10%;
  right: 5%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(29, 78, 216, 0.06) 0%, rgba(255, 255, 255, 0) 70%);
  pointer-events: none;
}

.why-aiot-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 56px;
  position: relative;
  z-index: 2;
}

.why-aiot-header h2 {
  font-size: 34px;
  font-weight: 900;
  background: linear-gradient(135deg, #0f172a 0%, #1d4ed8 50%, #2563eb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  white-space: nowrap;
  margin: 0;
  filter: drop-shadow(0 2px 8px rgba(37, 99, 235, 0.12));
}

.header-line {
  flex: 1;
  max-width: 280px;
  height: 3px;
  background: linear-gradient(90deg, rgba(29, 78, 216, 0.1), #1d4ed8, rgba(37, 99, 235, 0.1));
  border-radius: 3px;
}

.why-aiot-top-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 28px;
  position: relative;
  z-index: 2;
}

.why-aiot-bottom-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  position: relative;
  z-index: 2;
}

.aiot-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border: 1.5px solid rgba(59, 130, 246, 0.25);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px -5px rgba(29, 78, 216, 0.07), 0 0 0 1px rgba(255, 255, 255, 0.8) inset;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}

.aiot-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 20px 40px -10px rgba(29, 78, 216, 0.18), 0 0 24px rgba(59, 130, 246, 0.2);
  border-color: #2563eb;
}

.aiot-card-header {
  background: linear-gradient(135deg, #1e3a8a 0%, #1d4ed8 50%, #2563eb 100%);
  color: #ffffff;
  padding: 18px 22px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 78px;
  position: relative;
  box-shadow: 0 4px 14px rgba(29, 78, 216, 0.15);
}

.aiot-card-header::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
}

.aiot-card-header h3 {
  font-size: 19px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.35;
  text-transform: uppercase;
  margin: 0;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.stat-header {
  padding: 14px 22px;
  line-height: 1.1;
}

.sub-label {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1.2px;
  color: #dbeafe;
  text-transform: uppercase;
}

.huge-stat {
  font-size: 60px;
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
  margin: 2px 0;
  letter-spacing: -1px;
  text-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

.aiot-card-body {
  padding: 34px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  justify-content: center;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.horizontal-body {
  flex-direction: row;
  text-align: left;
  gap: 24px;
  align-items: center;
  padding: 28px 32px;
}

.aiot-icon-circle {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  border: 2px solid #3b82f6;
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  flex-shrink: 0;
  box-shadow: 0 0 24px rgba(37, 99, 235, 0.16), 0 4px 12px rgba(15, 23, 42, 0.04);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease;
}

.aiot-card:hover .aiot-icon-circle {
  transform: scale(1.1) rotate(4deg);
  box-shadow: 0 0 30px rgba(37, 99, 235, 0.3), 0 8px 20px rgba(15, 23, 42, 0.08);
  border-color: #1d4ed8;
}

.aiot-icon-circle svg {
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.aiot-card:hover .aiot-icon-circle svg {
  transform: scale(1.08);
}

.horizontal-body .aiot-icon-circle {
  margin-bottom: 0;
}

.aiot-card-body p {
  font-size: 17px;
  color: #334155;
  line-height: 1.65;
  margin: 0;
  font-weight: 500;
}

.savings-text {
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  padding: 10px 16px;
  border-radius: 10px;
  font-size: 15px !important;
  margin-bottom: 10px !important;
  width: 100%;
}

.savings-highlight {
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  padding: 11px 16px;
  border-radius: 10px;
  color: #1d4ed8 !important;
  font-weight: 700 !important;
  font-size: 15.5px !important;
  width: 100%;
}

/* AIoT Architecture & Lifecycle Value Section */
.lifecycle-section {
  padding: 95px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f0f7ff 50%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

/* Scroll-Triggered Animation: Enter from Left, Exit to Right (Slower & Smoother) */
.lifecycle-section .anim-item {
  opacity: 0;
  transform: translateX(-140px);
  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: opacity, transform;
}

/* When In View: Slide In From Left */
.lifecycle-section.in-view .anim-item {
  opacity: 1;
  transform: translateX(0);
}

/* When Out of View (Scrolled Away): Slide Out to Right */
.lifecycle-section.exit-right .anim-item {
  opacity: 0;
  transform: translateX(140px);
  transition: opacity 0.9s cubic-bezier(0.7, 0, 0.84, 0), transform 0.9s cubic-bezier(0.7, 0, 0.84, 0);
}

/* Staggered Delays for Sequential Flow Elements (Slower Pace) */
.lifecycle-section.in-view .flow-nodes-grid .anim-item:nth-child(1) { transition-delay: 0.10s; }
.lifecycle-section.in-view .flow-nodes-grid .anim-item:nth-child(2) { transition-delay: 0.22s; }
.lifecycle-section.in-view .flow-nodes-grid .anim-item:nth-child(3) { transition-delay: 0.34s; }
.lifecycle-section.in-view .flow-nodes-grid .anim-item:nth-child(4) { transition-delay: 0.46s; }
.lifecycle-section.in-view .flow-nodes-grid .anim-item:nth-child(5) { transition-delay: 0.58s; }
.lifecycle-section.in-view .flow-nodes-grid .anim-item:nth-child(6) { transition-delay: 0.70s; }
.lifecycle-section.in-view .flow-nodes-grid .anim-item:nth-child(7) { transition-delay: 0.82s; }
.lifecycle-section.in-view .flow-nodes-grid .anim-item:nth-child(8) { transition-delay: 0.94s; }
.lifecycle-section.in-view .flow-nodes-grid .anim-item:nth-child(9) { transition-delay: 1.06s; }

.lifecycle-section.in-view .value-caps-grid .anim-item:nth-child(1) { transition-delay: 1.18s; }
.lifecycle-section.in-view .value-caps-grid .anim-item:nth-child(2) { transition-delay: 1.30s; }
.lifecycle-section.in-view .value-caps-grid .anim-item:nth-child(3) { transition-delay: 1.42s; }
.lifecycle-section.in-view .value-caps-grid .anim-item:nth-child(4) { transition-delay: 1.54s; }

.lifecycle-header {
  text-align: center;
  max-width: 880px;
  margin: 0 auto 56px;
}

.lifecycle-header h2 {
  font-size: 38px;
  font-weight: 900;
  color: #0f172a;
  line-height: 1.3;
  margin-bottom: 12px;
}

.lifecycle-header p {
  font-size: 18.5px;
  color: #475569;
  margin: 0;
}

.flow-nodes-wrapper {
  margin-bottom: 56px;
}

.flow-nodes-grid {
  display: flex;
  align-items: center;
  gap: 14px;
}

.flow-node {
  flex: 1;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1.5px solid rgba(59, 130, 246, 0.2);
  border-radius: 18px;
  padding: 26px 20px;
  min-height: 175px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 24px -4px rgba(29, 78, 216, 0.06);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}

.flow-node:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 35px -6px rgba(29, 78, 216, 0.16);
  border-color: #2563eb;
}

.node-num {
  font-size: 22px;
  font-weight: 900;
  color: #2563eb;
  margin-bottom: 10px;
  line-height: 1;
}

.light-num {
  color: #60a5fa !important;
}

.flow-node h4 {
  font-size: 18.5px;
  font-weight: 900;
  color: #0f172a;
  margin: 0 0 10px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.flow-node p {
  font-size: 15.5px;
  color: #475569;
  line-height: 1.55;
  margin: 0;
}

.featured-core-node {
  background: linear-gradient(135deg, #0b1329 0%, #0f172a 60%, #1e293b 100%) !important;
  border: 1.5px solid rgba(96, 165, 250, 0.4) !important;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.25) !important;
}

.featured-core-node h4 {
  color: #ffffff !important;
}

.featured-core-node p {
  color: #94a3b8 !important;
}

.speed-node {
  background: linear-gradient(135deg, #ecfdf5 0%, #ccfbf1 100%) !important;
  border: 2px solid #0d9488 !important;
  box-shadow: 0 8px 24px rgba(13, 148, 136, 0.12) !important;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.speed-val {
  font-size: 28px;
  font-weight: 900;
  color: #0d9488;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.speed-label {
  font-size: 15.5px;
  font-weight: 700;
  color: #115e59 !important;
  margin: 0;
}

.flow-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.value-capabilities-block {
  margin-bottom: 48px;
}

.cap-header-label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.teal-line {
  width: 32px;
  height: 3.5px;
  background: #0d9488;
  border-radius: 2px;
}

.cap-header-label h3 {
  font-size: 14px;
  font-weight: 900;
  color: #0d9488;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0;
}

.value-caps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.value-cap-card {
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 16px;
  padding: 24px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.04);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.value-cap-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.1);
}

.cap-top-bar {
  position: absolute;
  top: 0;
  left: 24px;
  width: 40px;
  height: 4px;
  border-radius: 0 0 4px 4px;
}

.teal-bar { background: #0d9488; }
.emerald-bar { background: #10b981; }
.amber-bar { background: #f59e0b; }
.blue-bar { background: #2563eb; }

.value-cap-card h4 {
  font-size: 16.5px;
  font-weight: 800;
  color: #0f172a;
  margin: 8px 0 10px;
}

.value-cap-card p {
  font-size: 14px;
  color: #475569;
  line-height: 1.5;
  margin: 0;
}

.core-promise-banner {
  background: linear-gradient(135deg, #0b1329 0%, #0f172a 60%, #1e293b 100%);
  border: 1.5px solid rgba(59, 130, 246, 0.3);
  border-radius: 18px;
  padding: 22px 32px;
  display: flex;
  align-items: center;
  gap: 28px;
  box-shadow: 0 12px 35px rgba(11, 19, 41, 0.3);
}

.promise-badge {
  background: linear-gradient(135deg, #0d9488 0%, #14b8a6 100%);
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
  padding: 10px 20px;
  border-radius: 12px;
  letter-spacing: 0.8px;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(13, 148, 136, 0.3);
  flex-shrink: 0;
}

.promise-text {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.45;
  letter-spacing: 0.2px;
}

/* Two-Week Tenant Onboarding Path Section */
.onboarding-section {
  padding: 95px 0;
  background: linear-gradient(180deg, #ffffff 0%, #eef6ff 50%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

/* Scroll-Triggered Animation: Enter from Right, Exit to Left (Opposite Direction) */
.onboarding-section .anim-item {
  opacity: 0;
  transform: translateX(140px);
  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: opacity, transform;
}

.onboarding-section.in-view .anim-item {
  opacity: 1;
  transform: translateX(0);
}

.onboarding-section.exit-left .anim-item {
  opacity: 0;
  transform: translateX(-140px);
  transition: opacity 0.9s cubic-bezier(0.7, 0, 0.84, 0), transform 0.9s cubic-bezier(0.7, 0, 0.84, 0);
}

/* Staggered Delays for Sequential Onboarding Items */
.onboarding-section.in-view .phase-badges-wrapper .anim-item:nth-child(1) { transition-delay: 0.10s; }
.onboarding-section.in-view .phase-badges-wrapper .anim-item:nth-child(2) { transition-delay: 0.22s; }

.onboarding-section.in-view .onboarding-grid .anim-item:nth-child(1) { transition-delay: 0.34s; }
.onboarding-section.in-view .onboarding-grid .anim-item:nth-child(2) { transition-delay: 0.46s; }
.onboarding-section.in-view .onboarding-grid .anim-item:nth-child(3) { transition-delay: 0.58s; }
.onboarding-section.in-view .onboarding-grid .anim-item:nth-child(4) { transition-delay: 0.70s; }
.onboarding-section.in-view .onboarding-grid .anim-item:nth-child(5) { transition-delay: 0.82s; }
.onboarding-section.in-view .onboarding-grid .anim-item:nth-child(6) { transition-delay: 0.94s; }
.onboarding-section.in-view .onboarding-grid .anim-item:nth-child(7) { transition-delay: 1.06s; }
.onboarding-section.in-view .onboarding-grid .anim-item:nth-child(8) { transition-delay: 1.18s; }

.onboarding-header {
  text-align: center;
  max-width: 880px;
  margin: 0 auto 48px;
}

.onboarding-header h2 {
  font-size: 38px;
  font-weight: 900;
  color: #0f172a;
  line-height: 1.3;
  margin-bottom: 12px;
}

.onboarding-header p {
  font-size: 18.5px;
  color: #475569;
  margin: 0;
}

.phase-badges-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-bottom: 24px;
}

.phase-badge {
  padding: 14px 22px;
  border-radius: 14px;
  text-align: center;
  font-size: 15.5px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.phase-week1 {
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  color: #1e40af;
  border: 1px solid #bfdbfe;
  box-shadow: 0 4px 14px rgba(30, 64, 175, 0.06);
}

.phase-week2 {
  background: linear-gradient(135deg, #ccfbf1 0%, #99f6e4 100%);
  color: #0f766e;
  border: 1px solid #5eead4;
  box-shadow: 0 4px 14px rgba(15, 118, 110, 0.06);
}

.onboarding-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.onboarding-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1.5px solid rgba(59, 130, 246, 0.2);
  border-radius: 18px;
  padding: 26px 22px;
  min-height: 170px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 24px -4px rgba(29, 78, 216, 0.06);
  cursor: pointer;
  transform-origin: center center;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease, border-color 0.35s ease, background 0.35s ease;
  position: relative;
  z-index: 1;
}

.onboarding-card:hover {
  transform: translateY(-8px) scale(1.06);
  box-shadow: 0 20px 45px -8px rgba(29, 78, 216, 0.22), 0 0 24px rgba(37, 99, 235, 0.14);
  border-color: #2563eb;
  z-index: 10;
}

.card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.step-id {
  font-size: 24px;
  font-weight: 900;
  color: #2563eb;
  line-height: 1;
}

.day-tag {
  font-size: 14.5px;
  font-weight: 800;
  color: #64748b;
  background: #f1f5f9;
  padding: 4px 12px;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
}

.onboarding-card h4 {
  font-size: 20.5px;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 10px;
  line-height: 1.3;
}

.onboarding-card p {
  font-size: 16px;
  color: #475569;
  line-height: 1.55;
  margin: 0;
}

.featured-golive-card {
  background: linear-gradient(135deg, #0b1329 0%, #0f172a 60%, #1e293b 100%) !important;
  border: 1.5px solid rgba(96, 165, 250, 0.4) !important;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.25) !important;
}

.featured-golive-card:hover {
  transform: translateY(-8px) scale(1.06) !important;
  box-shadow: 0 22px 50px rgba(15, 23, 42, 0.4), 0 0 25px rgba(37, 99, 235, 0.3) !important;
  border-color: #60a5fa !important;
}

.light-step-id {
  color: #60a5fa !important;
}

.light-day-tag {
  color: #94a3b8 !important;
  background: rgba(255, 255, 255, 0.1) !important;
  border-color: rgba(255, 255, 255, 0.2) !important;
}

.featured-golive-card h4 {
  color: #ffffff !important;
}

.featured-golive-card p {
  color: #cbd5e1 !important;
}

.exit-criteria-banner {
  background: linear-gradient(135deg, #0b1329 0%, #0f172a 60%, #1e293b 100%);
  border: 1.5px solid rgba(59, 130, 246, 0.3);
  border-radius: 18px;
  padding: 22px 32px;
  display: flex;
  align-items: center;
  gap: 28px;
  box-shadow: 0 12px 35px rgba(11, 19, 41, 0.3);
}

.criteria-badge {
  background: linear-gradient(135deg, #0d9488 0%, #14b8a6 100%);
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
  padding: 10px 20px;
  border-radius: 12px;
  letter-spacing: 0.8px;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(13, 148, 136, 0.3);
  flex-shrink: 0;
}

.criteria-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 14px;
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.45;
}

.bullet-dot {
  color: #14b8a6;
  font-size: 16px;
  font-weight: 900;
}

/* Core Expertise */
.core-expertise {
  padding: 90px 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.expertise-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.expertise-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #1e40af, #3b82f6);
  opacity: 0;
  transition: var(--transition);
}

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

.expertise-card:hover::before {
  opacity: 1;
}

.expertise-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: var(--transition);
}

.expertise-card:hover .expertise-icon {
  background: var(--primary);
  color: white;
}

.expertise-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.expertise-card p {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Partners Banner Marquee - Clean Large Logos Only */
.partners-marquee-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
  background: transparent;
  padding: 30px 0;
  border: none;
  box-shadow: none;
}

.partners-marquee-wrapper::before,
.partners-marquee-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 90px;
  z-index: 10;
  pointer-events: none;
}

.partners-marquee-wrapper::before {
  left: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}

.partners-marquee-wrapper::after {
  right: 0;
  background: linear-gradient(270deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}

.partners-track {
  display: flex;
  align-items: center;
  gap: 40px;
  width: max-content;
  animation: scrollMarquee 25s linear infinite;
}

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

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

.partner-card-img {
  background: transparent;
  padding: 0;
  border: none;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 95px;
  width: max-content;
  min-width: 200px;
  padding: 0 16px;
  flex-shrink: 0;
  transition: transform 0.25s ease, filter 0.25s ease;
}

.partner-card-img:hover {
  transform: scale(1.08);
  filter: drop-shadow(0 8px 16px rgba(37, 99, 235, 0.2));
}

/* Individual Separate Logo Sizing for Optical Balance */
.partner-logo {
  height: auto;
  object-fit: contain;
  transition: transform 0.25s ease, filter 0.25s ease;
}

.logo-startuptn {
  height: 62px;
  max-width: 250px;
}

.logo-itnthub {
  height: 114px;
  max-width: 150px;
}

.logo-meity {
  height: 170px;
  max-width: 310px;
}

.logo-dpiit {
  height: 170px;
  max-width: 230px;
}
.logo-veltech {
  height: 120px;
  max-width: 230px;
}
.logo-medivalley {
  height: 120px;
  max-width: 230px;
}
.logo-amtz {
  height: 120px;
  max-width: 230px;
}
.logo-kltif {
  height: 120px;
  max-width: 230px;
}

.logo-venturecenter{
  height: 120px;
  max-width: 230px;
}

.logo-edii {
  height: 128px;
  max-width: 180px;
}

/* Awards & Recognitions */
.awards {
  padding: 90px 0;
  background: linear-gradient(180deg, #eef6ff 0%, #ffffff 50%, #eef5ff 100%);
  position: relative;
  overflow: hidden;
  margin-top: -1px;
}

.awards::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(180deg, rgba(238, 246, 255, 0) 0%, #eef6ff 100%);
  pointer-events: none;
  z-index: 3;
}

.awards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.award-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  aspect-ratio: 3/4;
  border: 1px solid var(--border-color);
}

.award-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.award-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(15, 23, 42, 0.85) 100%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  color: white;
  opacity: 0.9;
  transition: var(--transition);
}

.award-item:hover img {
  transform: scale(1.06);
}

.award-item:hover .award-overlay {
  opacity: 1;
}

.award-overlay-text strong {
  display: block;
  font-size: 15px;
  line-height: 1.3;
}

.award-overlay-text span {
  font-size: 12px;
  color: #cbd5e1;
}

/* Contact Us Section */
.contact-section {
  padding: 90px 0 60px;
  background: linear-gradient(180deg, #eef6ff 0%, #ffffff 40%, #eef6ff 100%);
  position: relative;
  overflow: hidden;
  margin-top: -1px;
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 30px;
}

.location-card {
  background: #f8fafc;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  text-align: center;
  transition: var(--transition);
}

.location-card:hover {
  background: white;
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
  transform: translateY(-4px);
}

.location-icon {
  width: 52px;
  height: 52px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.location-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.location-card p {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.contact-dual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
}

.contact-info-card {
  background: #f8fafc;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: var(--transition);
}

.contact-info-card:hover {
  background: white;
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.contact-icon-large {
  width: 56px;
  height: 56px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.contact-info-card p {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 4px;
}

.contact-info-card a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}

.contact-info-card a:hover {
  text-decoration: underline;
}

/* Contact Bottom Banner */
.contact-banner {
  background: linear-gradient(135deg, #1e40af 0%, #2563eb 100%);
  color: white;
  padding: 20px 32px;
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.25);
  flex-wrap: wrap;
  gap: 16px;
}

.banner-left {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  font-weight: 600;
}

.banner-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.banner-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-size: 13.5px;
  font-weight: 600;
  color: white;
  text-decoration: none;
  transition: var(--transition);
}

.banner-item:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* Footer */
footer {
  background: var(--navy);
  color: #94a3b8;
  padding: 30px 0;
  text-align: center;
  font-size: 14px;
  border-top: 1px solid var(--navy-light);
}

/* Modals & Dialogs */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(6px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 20px;
}

.modal-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  background: white;
  width: 100%;
  max-width: 500px;
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  position: relative;
  transform: translateY(20px) scale(0.96);
  transition: transform 0.3s ease;
}

.modal-backdrop.active .modal-card {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #f1f5f9;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: var(--transition);
}

.modal-close:hover {
  background: #e2e8f0;
  color: var(--navy);
}

.modal-title {
  font-size: 24px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}

.modal-subtitle {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

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

.form-group label {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 14px;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.modal-tabs {
  display: flex;
  border-bottom: 2px solid var(--border-color);
  margin-bottom: 24px;
}

.modal-tab {
  flex: 1;
  padding: 10px;
  text-align: center;
  background: none;
  border: none;
  font-weight: 700;
  font-size: 15px;
  color: var(--text-muted);
  cursor: pointer;
  position: relative;
  transition: var(--transition);
}

.modal-tab.active {
  color: var(--primary);
}

.modal-tab.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary);
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(8px);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 40px;
}

.lightbox-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-content {
  max-width: 900px;
  max-height: 85vh;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  position: relative;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 80vh;
  display: block;
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .hero-grid,
  .about-iot-grid,
  .about-emsense-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

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

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

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 38px;
  }

  .nav-links {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

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

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

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

  .contact-banner {
    flex-direction: column;
    text-align: center;
  }

  .banner-right {
    flex-direction: column;
    width: 100%;
  }

  .banner-item {
    width: 100%;
    justify-content: center;
  }
}

/* Home Redesign Styling (Matching reference mockup) */
.hero-home-redesign {
  position: relative;
  padding: 60px 0 70px;
  background: radial-gradient(circle at 85% 25%, rgba(219, 234, 254, 0.6) 0%, rgba(240, 247, 255, 0.4) 45%, #ffffff 85%);
  overflow: hidden;
}

.hero-home-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
}

.hero-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.25);
  color: #1d4ed8;
  font-size: 15.5px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: 30px;
  margin-bottom: 24px;
}

.pill-dot {
  width: 9px;
  height: 9px;
  background-color: #2563eb;
  border-radius: 50%;
  box-shadow: 0 0 10px #2563eb;
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.25); opacity: 1; }
  100% { transform: scale(0.95); opacity: 0.8; }
}

.hero-home-content h1 {
  font-size: 64px;
  font-weight: 900;
  line-height: 1.14;
  color: #0f172a;
  margin-bottom: 22px;
  letter-spacing: -1.4px;
}

.blue-text-gradient {
  background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 50%, #0284c7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-home-content p {
  font-size: 21.5px;
  color: #475569;
  line-height: 1.65;
  max-width: 680px;
  margin-bottom: 38px;
}

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

.btn-start-project {
  position: relative;
  background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 50%, #3b82f6 100%);
  color: #ffffff;
  font-size: 18px;
  font-weight: 800;
  padding: 16px 38px;
  border-radius: 35px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 28px -4px rgba(37, 99, 235, 0.42), 0 0 0 1px rgba(255, 255, 255, 0.25) inset;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: hidden;
  z-index: 1;
}

/* Continuous Light Shimmer Sweep */
.btn-start-project::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.38), transparent);
  transform: skewX(-25deg);
  animation: btnShimmer 3s infinite;
  pointer-events: none;
}

@keyframes btnShimmer {
  0% { left: -100%; }
  30% { left: 160%; }
  100% { left: 160%; }
}

.btn-start-project .btn-arrow-icon {
  display: inline-block;
  font-size: 20px;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.btn-start-project:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 18px 42px -6px rgba(29, 78, 216, 0.55), 0 0 28px rgba(59, 130, 246, 0.4);
}

.btn-start-project:hover .btn-arrow-icon {
  transform: translateX(6px);
}

.btn-start-project:active {
  transform: translateY(-1px) scale(0.98);
  box-shadow: 0 6px 18px rgba(29, 78, 216, 0.4);
}

.btn-see-how {
  position: relative;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  color: #0f172a;
  font-size: 18px;
  font-weight: 800;
  padding: 16px 36px;
  border-radius: 35px;
  border: 1.8px solid #cbd5e1;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.04);
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.btn-see-how .btn-play-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #eff6ff;
  color: #2563eb;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.btn-see-how:hover {
  border-color: #2563eb;
  color: #1d4ed8;
  background: #f0f7ff;
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.18);
}

.btn-see-how:hover .btn-play-icon {
  background: #2563eb;
  color: #ffffff;
  transform: scale(1.12) rotate(6deg);
}

.btn-see-how:active {
  transform: translateY(-1px) scale(0.98);
}

.hero-globe-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-left: 20px;
}

.globe-img {
  width: 250%;
  max-width: 860px;
  height: auto;
  display: block;
  margin-right: -80px;
  margin-top: -25px;
  filter: drop-shadow(0 15px 40px rgba(37, 99, 235, 0.22));
  animation: floatGlobe 6s ease-in-out infinite;
}

@keyframes floatGlobe {
  0% { transform: translate(80px, -10px); }
  50% { transform: translate(80px, -22px); }
  100% { transform: translate(80px, -10px); }
}

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

.trust-badges-bar {
  margin-top: 54px;
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 24px;
  padding: 28px 32px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

.trust-badges-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px 28px;
}

.trust-badge-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  border-radius: 16px;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.trust-badge-item:hover {
  background: #ffffff;
  border-color: #93c5fd;
  box-shadow: 0 8px 22px rgba(37, 99, 235, 0.12);
  transform: translateY(-3px);
}

.trust-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #eff6ff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2563eb;
  flex-shrink: 0;
}

.trust-badge-text strong {
  display: block;
  font-size: 17.5px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.25;
}

.trust-badge-text span {
  font-size: 15.5px;
  color: #64748b;
  display: block;
  margin-top: 2px;
}

.core-features-section {
  padding: 100px 0;
  position: relative;
  background-image: linear-gradient(180deg, rgba(15, 23, 42, 0.75) 0%, rgba(15, 23, 42, 0.85) 100%), url('assets/hero_iot_platform.jpg');
  background-attachment: fixed;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.core-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
  z-index: 2;
}

.feature-mini-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1.5px solid rgba(255, 255, 255, 0.85);
  border-radius: 22px;
  padding: 36px 30px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22), 0 0 0 1px rgba(255, 255, 255, 0.8) inset;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.feature-mini-card:hover {
  transform: translateY(-8px) scale(1.02);
  background: #ffffff;
  border-color: #3b82f6;
  box-shadow: 0 22px 48px rgba(37, 99, 235, 0.35);
}

.feature-icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: #eff6ff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2563eb;
  margin-bottom: 22px;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.15);
}

.feature-mini-card h4 {
  font-size: 22.5px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 12px;
  line-height: 1.3;
}

.feature-mini-card p {
  font-size: 17px;
  color: #475569;
  line-height: 1.65;
  margin: 0;
}

.metrics-banner-section {
  padding: 10px 0 70px;
}

.metrics-banner-bar {
  background: linear-gradient(135deg, #f0f7ff 0%, #e0f2fe 100%);
  border: 1px solid #bae6fd;
  border-radius: 20px;
  padding: 28px 40px;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.metric-item {
  display: flex;
  align-items: center;
  gap: 18px;
}

.metric-item:not(:last-child) {
  border-right: 1.5px dashed #cbd5e1;
}

.metric-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0284c7;
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.14);
  flex-shrink: 0;
}

.metric-val {
  font-size: 30px;
  font-weight: 900;
  color: #0f172a;
  line-height: 1;
}

.metric-lbl {
  font-size: 15px;
  color: #475569;
  font-weight: 700;
  margin-top: 6px;
}

.process-section {
  padding: 80px 0;
  background: #fafafa;
}

.process-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 54px;
}

.process-tagline {
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 1.2px;
  color: #2563eb;
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}

.process-header h2 {
  font-size: 38px;
  font-weight: 900;
  color: #0f172a;
  margin-bottom: 14px;
}

.process-header p {
  font-size: 17.5px;
  color: #64748b;
  margin: 0;
}

.process-flow-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.process-card {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 20px;
  padding: 32px 24px;
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.04);
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.process-card:hover {
  transform: translateY(-6px);
  border-color: #2563eb;
  box-shadow: 0 16px 36px rgba(37, 99, 235, 0.16);
}

.process-num {
  font-size: 28px;
  font-weight: 900;
  color: #2563eb;
  margin-bottom: 14px;
  line-height: 1;
  letter-spacing: -0.5px;
}

.process-icon-box {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: #eff6ff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1d4ed8;
  margin-bottom: 20px;
}

.process-card h4 {
  font-size: 21px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 12px;
  line-height: 1.3;
}

.process-card p {
  font-size: 16.5px;
  color: #475569;
  line-height: 1.6;
  margin: 0;
}

.terms-condition-wrapper {
  text-align: center;
  margin-top: 42px;
}

.terms-condition-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, rgba(239, 246, 255, 0.95) 0%, rgba(240, 249, 255, 0.95) 100%);
  border: 1.5px solid #93c5fd;
  border-radius: 50px;
  padding: 12px 28px;
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.08);
  font-size: 15.5px;
  font-weight: 600;
  color: #1e293b;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.terms-condition-badge:hover {
  transform: translateY(-3px);
  border-color: #2563eb;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.15);
}

.tc-icon-circle {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #2563eb;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 900;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
}

.tc-title {
  color: #1d4ed8;
  font-weight: 800;
  letter-spacing: 0.2px;
}

@media (max-width: 1024px) {
  .hero-home-grid { grid-template-columns: 1fr; text-align: center; }
  .trust-badges-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-badge-item { border-right: none !important; }
  .core-features-grid { grid-template-columns: repeat(2, 1fr); }
  .metrics-grid { grid-template-columns: repeat(2, 1fr); }
  .process-flow-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .trust-badges-grid { grid-template-columns: 1fr; }
  .core-features-grid { grid-template-columns: 1fr; }
  .metrics-grid { grid-template-columns: 1fr; }
  .process-flow-grid { grid-template-columns: 1fr; }
}

/* Connected Process Flow Connectors */
.process-flow-wrapper {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 8px;
}

.process-arrow-connector {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #ffffff;
  border: 1.5px solid #93c5fd;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2563eb;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.18);
  transition: all 0.3s ease;
}

.process-arrow-connector:hover {
  background: #2563eb;
  color: #ffffff;
  border-color: #2563eb;
  transform: scale(1.15);
}

/* Redesigned Premium Footer */
.footer-redesign {
  background: #0b1329;
  color: #94a3b8;
  padding: 80px 0 35px;
  border-top: 1px solid rgba(59, 130, 246, 0.25);
  position: relative;
}

.footer-redesign-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr 1.3fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-col-brand p {
  font-size: 14.5px;
  color: #94a3b8;
  line-height: 1.65;
  margin: 18px 0 24px;
}

.footer-iso-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37, 99, 235, 0.15);
  border: 1px solid rgba(59, 130, 246, 0.3);
  color: #60a5fa;
  font-size: 12.5px;
  font-weight: 700;
  padding: 7px 16px;
  border-radius: 20px;
}

.footer-col h4 {
  font-size: 16px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 22px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

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

.footer-col-links li {
  margin-bottom: 12px;
}

.footer-col-links a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 14.5px;
  font-weight: 500;
  transition: all 0.25s ease;
}

.footer-col-links a:hover {
  color: #60a5fa;
  padding-left: 4px;
}

.footer-logo-badge {
  display: inline-block;
  background: #ffffff;
  padding: 8px 16px;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

.footer-logo-badge .logo-img {
  height: 42px;
  width: auto;
  display: block;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 22px;
}

.footer-contact-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(37, 99, 235, 0.16);
  border: 1px solid rgba(59, 130, 246, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #60a5fa;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-text {
  flex: 1;
}

.contact-title {
  display: block;
  font-size: 14.5px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 3px;
}

.footer-contact-text p {
  font-size: 13.5px;
  color: #94a3b8;
  line-height: 1.45;
  margin: 0;
}

/* Horizontal Footer Locations Row (3-Column Bottom Bar) */
.footer-locations-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 24px 0 32px;
  border-top: 1px dashed rgba(255, 255, 255, 0.12);
  margin-top: 10px;
}

.footer-location-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 16px 18px;
  transition: all 0.3s ease;
}

.footer-location-item:hover {
  background: rgba(37, 99, 235, 0.08);
  border-color: rgba(96, 165, 250, 0.3);
}

.footer-location-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(37, 99, 235, 0.18);
  border: 1px solid rgba(96, 165, 250, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #60a5fa;
  flex-shrink: 0;
}

.footer-location-text strong {
  display: block;
  font-size: 14.5px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 4px;
}

.footer-location-text p {
  font-size: 13px;
  color: #94a3b8;
  line-height: 1.45;
  margin: 0;
}

.footer-bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13.5px;
  color: #64748b;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer-bottom-links a {
  color: #64748b;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
  color: #60a5fa;
}

@media (max-width: 1024px) {
  .process-flow-wrapper { grid-template-columns: 1fr; gap: 16px; }
  .process-arrow-connector { display: none; }
  .footer-redesign-grid { grid-template-columns: 1fr 1fr; }
  .footer-locations-row { grid-template-columns: 1fr; gap: 14px; }
  .trust-badges-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
}

@media (max-width: 768px) {
  .header-container, .navbar .container {
    height: 70px;
    padding: 0 16px;
  }
  
  .logo-img {
    height: 38px;
    max-height: 38px;
  }

  .mobile-toggle {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: #2563eb;
    cursor: pointer;
  }

  .nav-links {
    display: none;
  }

  .nav-links.mobile-open a {
    color: #ffffff !important;
    font-size: 16.5px;
    font-weight: 700;
    padding: 12px 16px;
    border-radius: 10px;
    display: block;
  }

  .nav-links.mobile-open a:hover {
    background: rgba(37, 99, 235, 0.25);
    color: #60a5fa !important;
  }

  .hero-section, .hero {
    padding: 42px 16px 48px;
    text-align: center;
  }

  .hero h1 {
    font-size: 30px !important;
    line-height: 1.25 !important;
    letter-spacing: -0.5px;
    margin-bottom: 14px;
  }

  .hero p {
    font-size: 15.5px !important;
    line-height: 1.55;
    margin-bottom: 24px;
  }

  .hero-cta-buttons, .hero-buttons, .remote-hero-btns {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .btn-start-project, .btn-see-how {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
    font-size: 15px;
  }

  .hero-home-grid {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
    text-align: center;
  }

  .hero-globe-visual {
    margin: 20px auto 0 !important;
    text-align: center !important;
    display: flex !important;
    justify-content: center !important;
    width: 100% !important;
    overflow: hidden !important;
  }

  .hero-globe-visual .globe-img {
    width: 110% !important;
    max-width: 580px !important;
    height: auto !important;
    margin: 0 auto !important;
    transform: none !important;
    animation: floatGlobeMobile 6s ease-in-out infinite !important;
  }

  .trust-badges-bar {
    padding: 18px 14px;
    border-radius: 18px;
    margin-top: 28px;
  }

  .trust-badges-grid {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .trust-badge-item, .trust-badge-card {
    padding: 14px 16px;
  }

  .why-aiot-top-grid,
  .why-aiot-bottom-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .flow-nodes-grid {
    flex-direction: column !important;
    gap: 16px !important;
  }

  .flow-node {
    width: 100%;
    min-height: auto;
  }

  .onboarding-grid {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }

  .onboarding-card {
    padding: 22px 18px;
    min-height: auto;
  }

  .phase-badges-wrapper {
    flex-direction: column;
    gap: 10px;
  }

  .phase-badge {
    width: 100%;
    text-align: center;
  }

  .terms-condition-badge {
    padding: 12px 16px;
    border-radius: 20px;
    text-align: left;
    font-size: 13.5px;
    line-height: 1.45;
  }

  .footer-redesign-grid {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
    text-align: center;
  }

  .footer-col-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-contact-item {
    justify-content: center;
    text-align: left;
  }

  .footer-locations-row {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }

  .footer-location-item {
    padding: 14px 16px;
  }

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

  .footer-bottom-links {
    justify-content: center;
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 26px !important;
  }
  .hero p {
    font-size: 14.5px !important;
  }
  .section-title, h2 {
    font-size: 24px !important;
  }
}

/* Hide Google Translate Toolbar & Branding Artifacts for Clean Aesthetic */
.goog-te-banner-frame.skiptranslate,
.goog-te-banner-frame,
.goog-te-balloon-frame {
  display: none !important;
}
body {
  top: 0px !important;
}
.goog-te-spinner-pos {
  display: none !important;
}
#google_translate_element {
  display: none !important;
}
.goog-text-highlight {
  background-color: transparent !important;
  box-shadow: none !important;
}
