/* Theme Variables - Clean Corporate Light Theme Default with Dark Theme Toggle */
:root {
  --font-primary: 'Inter', sans-serif;
  --font-display: 'Inter', sans-serif;

  /* Default Light Theme variables */
  --bg-primary: #ffffff;
  --bg-secondary: #f8fafc;
  --bg-tertiary: #f1f5f9;
  --bg-dark-blue: #0f172a;
  --bg-dark-blue-hover: #1e293b;
  --bg-card-hover: #f1f5f9;
  
  --text-primary: #0f172a;
  --text-secondary: #334155;
  --text-muted: #64748b;
  --text-light: #ffffff;
  
  --accent: #0d9488;
  --accent-rgb: 13, 148, 136;
  --accent-hover: #0f766e;
  
  --border-color: rgba(15, 23, 42, 0.08);
  --border-hover: rgba(15, 23, 42, 0.16);
  
  --shadow-sm: 0 1px 2px 0 rgba(15, 23, 42, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(15, 23, 42, 0.05);
  --shadow-lg: 0 10px 15px -3px rgba(15, 23, 42, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(15, 23, 42, 0.08);

  --badge-bg: rgba(13, 148, 136, 0.08);
  --badge-text: #0d9488;
  
  --orb-color-1: #14b8a6;
  --orb-color-2: #0ea5e9;
  --glowing-text-end: #0f172a;
  --hero-bg-image: linear-gradient(rgba(248, 250, 252, 0.45), rgba(248, 250, 252, 0.45)), url('img/hero_bg.jpg');
  --clients-bg-image: linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.4)), url('img/trust_bg.jpg');
  --why-us-bg-image: linear-gradient(rgba(255, 255, 255, 0.45), rgba(255, 255, 255, 0.45)), url('img/why_us_bg.jpg');
  --industries-bg-brightness: 0.95;

  --transition-fast: 0.15s ease;
  --transition-normal: 0.25s ease;
  --transition-slow: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --border-radius: 8px;
}

/* Dark Theme Overrides */
.dark-theme {
  --bg-primary: #090d16;
  --bg-secondary: #0f172a;
  --bg-tertiary: #1e293b;
  --bg-dark-blue: #1e293b;
  --bg-dark-blue-hover: #334155;
  --bg-card-hover: #1e293b;
  
  --text-primary: #ffffff;
  --text-secondary: #cbd5e1;
  --text-muted: #869ab8;
  
  --accent: #14b8a6;
  --accent-rgb: 20, 184, 166;
  --accent-hover: #0d9488;
  
  --border-color: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(255, 255, 255, 0.16);
  
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.5);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.6);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.7);

  --badge-bg: rgba(20, 184, 166, 0.12);
  --badge-text: #14b8a6;

  --orb-color-1: var(--accent);
  --orb-color-2: #ffffff;
  --glowing-text-end: #f8fafc;
  --hero-bg-image: linear-gradient(to right, rgba(9, 13, 22, 0.95) 40%, rgba(9, 13, 22, 0.75) 100%), url('img/hero_bg.jpg');
  --clients-bg-image: linear-gradient(rgba(9, 13, 22, 0.94), rgba(9, 13, 22, 0.94)), url('img/trust_bg.jpg');
  --why-us-bg-image: linear-gradient(rgba(9, 13, 22, 0.94), rgba(9, 13, 22, 0.94)), url('img/why_us_bg.jpg');
  --industries-bg-brightness: 0.15;
}


/* General Reset & Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-size: 17px;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all var(--transition-fast);
}

ul {
  list-style: none;
}

/* Containers */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.grid {
  display: grid;
  gap: 30px;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.flex-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  color: var(--text-primary);
}

h2 {
  font-size: 36px;
  font-weight: 700;
}

h3 {
  font-size: 22px;
  font-weight: 700;
}

.glowing-text {
  background: linear-gradient(135deg, var(--accent), var(--glowing-text-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.accent-text {
  color: var(--accent);
}

.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 4px;
  font-family: var(--font-primary);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background-color: var(--badge-bg);
  color: var(--badge-text);
  margin-bottom: 16px;
}

.text-center { text-align: center; }
.text-right { text-align: right; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  border-radius: var(--border-radius);
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-fast);
  border: 1px solid transparent;
}

.btn-primary {
  background-color: var(--accent);
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(13, 148, 136, 0.2);
}

.btn-primary:hover {
  background-color: var(--accent-hover);
  transform: translateY(-1px);
}

.btn-secondary {
  background-color: var(--bg-dark-blue);
  color: #ffffff;
}

.btn-secondary:hover {
  background-color: var(--bg-dark-blue-hover);
  transform: translateY(-1px);
}

.btn-outline {
  background-color: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-color);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  background-color: rgba(13, 148, 136, 0.03);
}

.btn-lg {
  padding: 12px 28px;
  font-size: 1rem;
}

.btn-sm {
  padding: 6px 16px;
  font-size: 0.8rem;
}

.btn-block {
  width: 100%;
}

/* Header & Nav */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background-color: var(--bg-dark-blue);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 16px 0;
  transition: all var(--transition-normal);
}

.main-header.scrolled {
  box-shadow: var(--shadow-md);
  padding: 10px 0;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 50px;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-icon-img {
  height: 36px;
  width: auto;
  object-fit: contain;
}

.main-footer .logo-area .logo-icon-img {
  height: 28px;
}

.logo-text {
  font-family: var(--font-primary);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #ffffff;
}

.desktop-nav ul {
  display: flex;
  gap: 28px;
}

.nav-link {
  font-family: var(--font-primary);
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
}

.nav-link:hover, .nav-link.active {
  color: #ffffff;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.portal-btn {
  background-color: var(--accent);
  color: #ffffff;
  border: 1px solid transparent;
  padding: 8px 16px;
  border-radius: var(--border-radius);
  font-family: var(--font-primary);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.portal-btn:hover {
  background-color: var(--bg-dark-blue-hover);
}

.outline-portal {
  background-color: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.3);
}

.outline-portal:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* Mobile Hamburger Menu */
.menu-toggle-btn {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  width: 24px;
  height: 18px;
  position: relative;
  flex-direction: column;
  justify-content: space-between;
}

.menu-toggle-btn span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #ffffff;
  transition: transform var(--transition-normal), opacity var(--transition-normal);
}

.menu-toggle-btn.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-toggle-btn.active span:nth-child(2) { opacity: 0; }
.menu-toggle-btn.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: var(--bg-primary);
  z-index: 95;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
  padding: 24px;
}

.mobile-menu-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu-content {
  width: 100%;
  max-width: 320px;
  text-align: center;
}

.mobile-nav ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
}

.mobile-link {
  font-family: var(--font-primary);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
}

.mobile-menu-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Hero Section */
.hero-section {
  position: relative;
  padding: 140px 0 80px;
  overflow: hidden;
  background-color: var(--bg-secondary);
  background-image: var(--hero-bg-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: background-color var(--transition-normal), background-image var(--transition-normal);
}

.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  z-index: 0;
  opacity: 0.08;
}

.orb-1 {
  width: 350px;
  height: 350px;
  background: var(--orb-color-1);
  top: -50px;
  right: -50px;
  animation: floatOrb1 15s ease-in-out infinite;
}

.orb-2 {
  width: 350px;
  height: 350px;
  background: var(--orb-color-2);
  bottom: -100px;
  left: -100px;
  animation: floatOrb2 18s ease-in-out infinite;
}

@keyframes floatOrb1 {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-30px, 30px) scale(1.08); }
  100% { transform: translate(0, 0) scale(1); }
}

@keyframes floatOrb2 {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -20px) scale(1.1); }
  100% { transform: translate(0, 0) scale(1); }
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 1;
}

.hero-title {
  font-size: 56px;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 32px;
  max-width: 500px;
}

.hero-cta {
  display: flex;
  gap: 12px;
}

/* Dashboard Visual Card */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

.dashboard-preview-card {
  width: 100%;
  max-width: 440px;
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}

.dashboard-header {
  background-color: var(--bg-tertiary);
  padding: 12px 16px;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  gap: 6px;
}

.window-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}

.window-dot.red { background-color: #ef4444; }
.window-dot.yellow { background-color: #eab308; }
.window-dot.green { background-color: #22c55e; }

.dashboard-title {
  font-size: 0.75rem;
  font-family: var(--font-primary);
  font-weight: 600;
  color: var(--text-secondary);
  margin-left: auto;
}

.dashboard-body {
  padding: 20px;
}

.db-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.db-label {
  font-size: 0.75rem;
  color: var(--text-secondary);
  display: block;
  margin-bottom: 4px;
}

.db-value {
  font-size: 1.3rem;
  font-weight: 700;
}

.db-trend {
  font-size: 0.8rem;
  font-weight: 600;
  color: #10b981;
  background-color: rgba(16, 185, 129, 0.1);
  padding: 2px 6px;
  border-radius: 4px;
}

.db-progress-bar {
  width: 100%;
  height: 6px;
  background-color: var(--bg-tertiary);
  border-radius: 9999px;
  overflow: hidden;
}

.db-progress-fill {
  height: 100%;
  background-color: var(--accent);
}

.db-grid-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}

.db-mini-card {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  padding: 10px;
  border-radius: 6px;
  text-align: center;
}

.db-mini-card .lbl {
  display: block;
  font-size: 0.7rem;
  color: var(--text-secondary);
  margin-bottom: 2px;
}

.db-mini-card strong {
  font-size: 1rem;
  color: var(--accent);
}

.db-footer {
  padding-top: 12px;
  border-top: 1px solid var(--border-color);
}

.activity-feed {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
}

.activity-dot {
  width: 6px;
  height: 6px;
  background-color: #22c55e;
  border-radius: 50%;
}

/* Interactive card lifts */
.card-interactive {
  transition: transform var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal);
  border: 1px solid var(--border-color);
}

.card-interactive:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: var(--shadow-lg);
}

/* Clients Section */
.clients-section {
  padding: 50px 0;
  border-bottom: 1px solid var(--border-color);
  background-color: var(--bg-primary);
  background-image: var(--clients-bg-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: background-color var(--transition-normal), background-image var(--transition-normal);
}

/* Value Proposition Section */
.why-us-section {
  position: relative;
  padding: 80px 0;
  background-color: var(--bg-secondary);
  background-image: var(--why-us-bg-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: background-color var(--transition-normal), background-image var(--transition-normal);
}

.clients-title {
  text-align: center;
  font-size: 0.8rem;
  font-family: var(--font-primary);
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0;
  margin-bottom: 24px;
}

.logos-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px;
}

.logo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.partner-name {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  opacity: 0.8;
  transition: color var(--transition-fast), opacity var(--transition-fast);
}

.logo-item:hover .partner-name {
  color: var(--text-primary);
  opacity: 1;
}

.partner-logo {
  max-width: 100px;
  opacity: 0.65;
  transition: opacity var(--transition-fast);
  flex-shrink: 0;
}

.partner-logo:hover {
  opacity: 1;
}

/* Individual Brand Logo Sizing & Color Adjustments */
.partner-logo.logo-ibm {
  height: 20px;
  width: 20px;
  color: #0f62fe;
}
.partner-logo.logo-salesforce {
  height: 24px;
  width: 24px;
  color: #00a1e0;
}
.partner-logo.logo-oracle {
  height: 18px;
  width: 18px;
  color: #f80000;
}
.partner-logo.logo-sap {
  height: 26px;
  width: 26px;
  color: #008fd3;
}
.partner-logo.logo-microsoft {
  height: 20px;
  width: 20px;
}

/* Why Choose Us Section */
.why-choose-section {
  position: relative;
  padding: 80px 0;
  background-color: var(--bg-secondary);
  background-image: var(--why-us-bg-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: background-color var(--transition-normal), background-image var(--transition-normal);
}

.section-desc {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto;
}

.stats-ticks-grid {
  margin-bottom: 60px;
}

.stat-tick-card {
  background-color: var(--bg-primary);
  padding: 24px;
  border-radius: var(--border-radius);
  text-align: center;
}

.tick-icon {
  width: 32px;
  height: 32px;
  background-color: rgba(13, 148, 136, 0.1);
  color: var(--accent);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-bottom: 16px;
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 4px;
}

.stat-lbl {
  font-size: 0.8rem;
  font-family: var(--font-primary);
  font-weight: 600;
  color: var(--text-secondary);
}

.benefits-grid {
}

.benefit-item h4 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  position: relative;
  padding-left: 20px;
}

.benefit-item h4::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
}

.benefit-item p {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* Services Section */
.services-section {
  padding: 80px 0;
  background-color: var(--bg-primary);
}

.service-column-card {
  background-color: var(--bg-secondary);
  padding: 32px;
  border-radius: var(--border-radius);
  display: flex;
  flex-direction: column;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
}

.col-icon {
  width: 44px;
  height: 44px;
  background-color: rgba(13, 148, 136, 0.1);
  color: var(--accent);
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-column-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}

.service-column-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.service-bullet-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-bullet-list li {
  font-size: 0.85rem;
  color: var(--text-secondary);
  position: relative;
  padding-left: 14px;
}

.service-bullet-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
}

/* Featured Service Card style */
.featured-service {
  position: relative;
  overflow: hidden;
  background-color: var(--bg-dark-blue);
  color: #ffffff !important;
  border-color: var(--bg-dark-blue);
  z-index: 1;
}

.featured-service::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('img/tech_bg.jpg');
  background-size: cover;
  background-position: center;
  filter: blur(8px) brightness(0.35);
  z-index: -1;
  transform: scale(1.1);
  opacity: 0.85;
  transition: transform var(--transition-normal);
}

.featured-service:hover::before {
  transform: scale(1.18);
}

.featured-service h3 {
  color: #ffffff !important;
}

.featured-service p {
  color: #ffffff !important;
}

.featured-service .col-icon {
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.service-column-card.featured-service .service-bullet-list li,
.service-column-card.featured-service .service-bullet-list li strong {
  color: #fff !important;
}

.service-column-card.featured-service .service-bullet-list li::before {
  color: #fff !important;
}

.tech-tags-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.tech-grid-tag {
  background-color: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 6px 10px;
  border-radius: 4px;
  font-size: 0.75rem;
  text-align: center;
  color: var(--text-light);
  font-family: 'Inter', sans-serif;
  font-weight: 500;
}

/* Industries Section */
.industries-section {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
  background-color: var(--bg-secondary);
  z-index: 1;
}

.industries-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('img/industries_bg.jpg');
  background-size: cover;
  background-position: center;
  filter: blur(6px) brightness(var(--industries-bg-brightness));
  z-index: -1;
  transform: scale(1.05);
  opacity: 0.22;
  transition: filter var(--transition-normal);
}

.industries-section .badge {
  background-color: var(--accent);
  color: #ffffff;
}

.industries-section .section-desc {
  color: var(--text-primary);
  font-weight: 500;
}

.industry-card {
  background-color: var(--bg-primary);
  padding: 24px;
  border-radius: var(--border-radius);
  text-align: center;
}

.ind-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.industry-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.industry-card p {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-bottom: 0;
}

/* Process Section Flow */
.process-section {
  padding: 80px 0;
  background-color: var(--bg-primary);
}

.process-flow-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto;
}

.flow-step {
  text-align: center;
  flex: 1;
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  padding: 24px 16px;
  border-radius: var(--border-radius);
}

.step-num {
  width: 36px;
  height: 36px;
  background-color: var(--accent);
  color: #ffffff;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}

.flow-step h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.flow-step p {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-bottom: 0;
}

.flow-arrow {
  font-size: 1.5rem;
  color: var(--accent);
  font-weight: bold;
}

/* About Us VM Cards */
.about-section {
  padding: 80px 0;
  background-color: var(--bg-secondary);
}

.about-content-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-content-left h2 {
  font-size: 2.3rem;
  margin-bottom: 16px;
}

.about-content-left p {
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.vision-mission-card {
  background-color: var(--bg-primary);
  padding: 30px;
  border-radius: var(--border-radius);
}

.vm-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.vision-mission-card h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.vision-mission-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 0;
}

/* Careers (Join Team) */
.careers-section {
  padding: 80px 0;
  background-color: var(--bg-primary);
}

.join-team-banner {
  position: relative;
  overflow: hidden;
  background-color: var(--bg-dark-blue);
  color: #ffffff;
  padding: 60px 40px;
  border-radius: var(--border-radius);
  margin-bottom: 40px;
  z-index: 1;
}

.join-team-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('img/tech_bg.jpg');
  background-size: cover;
  background-position: center;
  filter: blur(8px) brightness(0.35);
  z-index: -1;
  transform: scale(1.1);
  opacity: 0.85;
  transition: transform var(--transition-normal);
}

.join-team-banner:hover::before {
  transform: scale(1.18);
}

.join-team-banner h2 {
  color: #ffffff;
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.join-team-banner p {
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto 30px;
}

/* Insights Section */
.insights-section {
  padding: 80px 0;
  background-color: var(--bg-secondary);
}

.insight-card {
  background-color: var(--bg-primary);
  padding: 24px;
  border-radius: var(--border-radius);
  display: flex;
  flex-direction: column;
}

.ins-category {
  font-size: 0.75rem;
  font-family: var(--font-primary);
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}

.insight-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  flex-grow: 1;
}

.insight-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.read-more-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
}

.read-more-link:hover {
  color: var(--accent-hover);
}

/* Testimonials */
.testimonials-section {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
  background-color: var(--bg-primary);
  color: #ffffff;
  z-index: 1;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('img/testimonials_bg.jpg');
  background-size: cover;
  background-position: center;
  filter: blur(8px) brightness(0.35);
  z-index: -1;
  transform: scale(1.05);
  opacity: 0.9;
}

.testimonials-section h2,
.testimonials-section h4 {
  color: #ffffff;
}

.testimonials-section .badge {
  background-color: rgba(255, 255, 255, 0.1);
  color: #14b8a6;
}

.testimonials-section .author-title {
  color: rgba(255, 255, 255, 0.65);
}

.slider-container {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}

.testimonial-slider {
  min-height: 180px;
  overflow: hidden;
  position: relative;
}

.testimonial-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transition: opacity var(--transition-slow);
}

.testimonial-slide.active {
  position: relative;
  opacity: 1;
}

.stars {
  color: #fbbf24;
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.testimonial-quote {
  font-size: 1.2rem;
  font-style: italic;
  font-weight: 500;
  margin-bottom: 16px;
  line-height: 1.5;
}

.author-name {
  font-size: 0.95rem;
}

.author-title {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

/* Careers portal job board listing */
.careers-portal-container {
  border-top: 1px solid var(--border-color);
  padding-top: 40px;
  margin-top: 40px;
}

.job-filters-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}

.search-box {
  position: relative;
  flex-grow: 1;
  max-width: 400px;
}

.search-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
}

.search-box input {
  width: 100%;
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  padding: 10px 12px 10px 38px;
  border-radius: var(--border-radius);
  font-size: 0.9rem;
  transition: all var(--transition-fast);
}

.search-box input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(13, 148, 136, 0.15);
}

.filter-options {
  display: flex;
  gap: 8px;
}

.filter-btn {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  padding: 8px 14px;
  border-radius: var(--border-radius);
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.filter-btn:hover {
  border-color: var(--accent);
}

.filter-btn.active {
  background-color: var(--accent);
  color: #ffffff;
  border-color: var(--accent);
}

.jobs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.job-card {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 20px;
  transition: all var(--transition-normal);
}

.job-card:hover {
  border-color: var(--accent);
  transform: translateX(2px);
  box-shadow: var(--shadow-sm);
}

.job-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 8px;
}

.job-dept {
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 2px;
  display: block;
}

.job-title {
  font-size: 1.15rem;
}

.job-type {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 4px;
}

.remote-tag { background-color: rgba(16, 185, 129, 0.1); color: #059669; }
.hybrid-tag { background-color: rgba(37, 99, 235, 0.1); color: #2563eb; }

.job-description {
  color: var(--text-secondary);
  font-size: 0.85rem;
  margin-bottom: 12px;
}

.job-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}

.job-tag {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  font-size: 0.75rem;
  padding: 2px 8px;
  border-radius: 4px;
  color: var(--text-secondary);
}

.job-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid var(--border-color);
}

.job-salary {
  font-family: var(--font-primary);
  font-size: 0.95rem;
  font-weight: 700;
}

.no-jobs-found {
  text-align: center;
  padding: 40px;
}

/* Contact Us Section */
.contact-section {
  padding: 80px 0;
  background-color: var(--bg-secondary);
}

.contact-info h2 {
  font-size: 2.3rem;
  margin-bottom: 16px;
}

.contact-info p {
  color: var(--text-secondary);
  margin-bottom: 30px;
}

.info-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 30px;
}

.info-item {
  display: flex;
  gap: 12px;
  align-items: center;
}

.info-icon {
  width: 36px;
  height: 36px;
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  color: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.info-item span {
  display: block;
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.info-item strong {
  font-size: 0.9rem;
}

/* Real Map Embed Styling */
.real-map-container {
  height: 250px;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background-color: var(--bg-tertiary);
}

.contact-form-container {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--shadow-md);
}

.form-title {
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--text-secondary);
}

.form-group input, .form-group textarea {
  width: 100%;
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  padding: 10px 12px;
  border-radius: var(--border-radius);
  font-family: var(--font-primary);
  font-size: 0.9rem;
  transition: all var(--transition-fast);
}

.form-group input:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(13, 148, 136, 0.15);
}

/* Footer */
.main-footer {
  background-color: var(--bg-dark-blue);
  color: var(--text-light);
  padding: 60px 0 0;
}

.footer-top {
  padding-bottom: 40px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-brand .logo-text {
  color: #ffffff;
}

.brand-pitch {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
}

.main-footer h4 {
  color: #ffffff;
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.main-footer ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.main-footer ul a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.85rem;
}

.main-footer ul a:hover {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 20px 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

/* Modals */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(15, 23, 42, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  transition: opacity var(--transition-normal);
}

.modal-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

.modal-card {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  width: 100%;
  max-width: 500px;
  padding: 30px;
  position: relative;
  box-shadow: var(--shadow-xl);
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 1.5rem;
  background: transparent;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
}

.modal-close:hover {
  color: var(--accent);
}

.modal-title {
  font-size: 1.4rem;
  margin-bottom: 2px;
}

.modal-subtitle {
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.dropzone {
  border: 2px dashed var(--border-color);
  border-radius: var(--border-radius);
  padding: 20px;
  text-align: center;
  cursor: pointer;
  background-color: var(--bg-secondary);
}

.dropzone:hover {
  border-color: var(--accent);
}

.dropzone-text {
  font-size: 0.85rem;
  margin-bottom: 4px;
}

.accent-link {
  color: var(--accent);
  text-decoration: underline;
}

.hidden-file-input {
  display: none;
}

.file-info-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--bg-tertiary);
  padding: 6px 12px;
  border-radius: 4px;
  margin-top: 10px;
  font-size: 0.8rem;
}

.remove-file-btn {
  background: transparent;
  border: none;
  color: #ef4444;
  cursor: pointer;
}

/* Toast */
.toast-notification {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-left: 4px solid var(--accent);
  padding: 14px 20px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
  z-index: 1100;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 350px;
  transition: all var(--transition-normal);
}

.toast-notification.hidden {
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
}

.toast-icon {
  width: 28px;
  height: 28px;
  background-color: rgba(13, 148, 136, 0.1);
  color: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.toast-content h4 {
  font-size: 0.85rem;
}

.toast-content p {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.toast-close {
  background: transparent;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  margin-left: auto;
}

/* Scroll Trigger reveals */
.scroll-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-reveal.reveal-active {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .hero-title { font-size: 2.5rem; }
  .process-flow-container { gap: 10px; }
}

@media (max-width: 768px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .desktop-nav { display: none; }
  .menu-toggle-btn { display: flex; }
  
  .hero-section { text-align: center; padding-top: 100px; }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-cta { justify-content: center; }
  
  .process-flow-container {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
  
  .flow-arrow {
    transform: rotate(90deg);
    text-align: center;
    margin: 4px 0;
  }
  
  .flex-footer {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .grid-4 { grid-template-columns: 1fr; }
  .hero-title { font-size: 2rem; }
  .hero-cta { flex-direction: column; }
  .btn { width: 100%; }
}

/* ==========================================
   THEME TOGGLE BUTTON STYLES
   ========================================== */
.theme-toggle-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  cursor: pointer;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  padding: 0;
  margin-right: 12px;
}

.theme-toggle-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
  color: #ffffff;
}

/* Hide moon icon in dark theme, hide sun icon in light theme */
:root:not(.dark-theme) .theme-toggle-btn .sun-icon {
  display: none;
}
:root.dark-theme .theme-toggle-btn .moon-icon {
  display: none;
}

/* Sourcing Platform Animations */
@keyframes pulseHighlight {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); color: #10b981; }
  100% { transform: scale(1); }
}

.pulse-change {
  animation: pulseHighlight 0.6s ease-out;
}

@keyframes slideFadeIn {
  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 1; transform: translateY(0); }
}

.activity-change {
  animation: slideFadeIn 0.4s ease-out;
}

/* Ambient Background Orbs */
.ambient-orbs-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -2;
  pointer-events: none;
  overflow: hidden;
}

.ambient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.04;
  transition: background var(--transition-slow);
}

.aorb-1 {
  width: 450px;
  height: 450px;
  background-color: var(--orb-color-1);
  top: -100px;
  right: -100px;
  animation: floatAorb1 25s ease-in-out infinite;
}

.aorb-2 {
  width: 500px;
  height: 500px;
  background-color: var(--orb-color-2);
  bottom: -150px;
  left: -150px;
  animation: floatAorb2 30s ease-in-out infinite;
}

.aorb-3 {
  width: 400px;
  height: 400px;
  background-color: var(--orb-color-1);
  top: 40%;
  right: 15%;
  animation: floatAorb3 28s ease-in-out infinite;
}

@keyframes floatAorb1 {
  0% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-50px, 80px) scale(1.1); }
  66% { transform: translate(60px, -40px) scale(0.95); }
  100% { transform: translate(0, 0) scale(1); }
}

@keyframes floatAorb2 {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(80px, -60px) scale(1.15); }
  100% { transform: translate(0, 0) scale(1); }
}

@keyframes floatAorb3 {
  0% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-40px, -60px) scale(0.9); }
  66% { transform: translate(50px, 40px) scale(1.1); }
  100% { transform: translate(0, 0) scale(1); }
}

.hidden {
  display: none !important;
}
