/* Design System & Tokens */
:root {
  --bg-dark: #081120;
  --bg-surface: #101827;
  --color-primary: #0A66FF;
  --color-secondary: #18C6FF;
  --color-accent: #00F0FF;
  
  --text-heading: 'Outfit', sans-serif;
  --text-body: 'Nunito Sans', sans-serif;
  
  --glass-bg: rgba(16, 24, 39, 0.6);
  --glass-bg-hover: rgba(16, 24, 39, 0.85);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-border-hover: rgba(24, 198, 255, 0.3);
  
  --glow-primary: 0 0 25px rgba(10, 102, 255, 0.35);
  --glow-secondary: 0 0 25px rgba(24, 198, 255, 0.45);
  --glow-accent: 0 0 25px rgba(0, 240, 255, 0.5);
  --glow-whatsapp: 0 0 25px rgba(37, 211, 102, 0.6);
  
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease-out;
}

/* Global Reset & Base */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-dark);
  color: #E2E8F0;
  font-family: var(--text-body);
}

body {
  overflow-x: hidden;
  position: relative;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.loading {
  overflow: hidden;
}

/* Premium Preloader */
.preloader-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: var(--bg-dark);
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              visibility 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 1;
  visibility: visible;
}

.preloader-overlay.fade-out {
  opacity: 0;
  visibility: hidden;
}

.preloader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.preloader-robo-container {
  position: relative;
  width: 140px;
  height: 140px;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.preloader-robo-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(24, 198, 255, 0.35);
  box-shadow: var(--glow-secondary);
  animation: preloaderPulse 2.5s infinite ease-in-out;
  position: relative;
  z-index: 2;
}

.robo-active-ring {
  position: absolute;
  top: -6%;
  left: -6%;
  width: 112%;
  height: 112%;
  border-radius: 50%;
  border: 2px dashed rgba(24, 198, 255, 0.5);
  opacity: 0.8;
  animation: preloaderRingRotate 15s linear infinite;
  pointer-events: none;
  z-index: 1;
}

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

.preloader-speech-bubble {
  margin-top: 1rem;
  padding: 0.75rem 1.5rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  font-family: var(--text-body);
  font-size: 0.9rem;
  color: #E2E8F0;
  max-width: 380px;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.speech-prefix {
  color: var(--color-secondary);
  font-weight: 700;
  font-family: var(--text-heading);
}

.preloader-orb-glow {
  position: absolute;
  top: -10%;
  left: -10%;
  width: 120%;
  height: 120%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(24, 198, 255, 0.4) 0%, transparent 70%);
  animation: preloaderPulseGlow 2.5s infinite ease-in-out;
}

@keyframes preloaderPulse {
  0% { transform: scale(0.9); }
  50% { transform: scale(1.05); }
  100% { transform: scale(0.9); }
}

@keyframes preloaderPulseGlow {
  0% { transform: scale(0.95); opacity: 0.6; }
  50% { transform: scale(1.15); opacity: 1; }
  100% { transform: scale(0.95); opacity: 0.6; }
}

.preloader-brand {
  font-family: var(--text-heading);
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #FFFFFF 30%, var(--color-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
}

.preloader-status-bar {
  width: 240px;
  height: 3px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 100px;
  overflow: hidden;
  margin-bottom: 1rem;
  position: relative;
}

.preloader-status-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary), var(--color-accent));
  box-shadow: var(--glow-secondary);
  transition: width 0.1s linear;
}

.preloader-percentage {
  font-family: var(--text-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: 0.5rem;
  text-shadow: var(--glow-secondary);
}

.preloader-phase {
  font-family: var(--text-body);
  font-size: 0.85rem;
  color: #64748B;
  height: 20px;
}

/* Typography Custom Styling */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--text-heading);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #FFFFFF;
}

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

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

/* Custom Scrollbar styling */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
  background: rgba(24, 198, 255, 0.15);
  border-radius: 5px;
  border: 2px solid var(--bg-dark);
  transition: var(--transition-smooth);
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(24, 198, 255, 0.4);
}

/* Global Grid Container */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2.5rem;
  position: relative;
  z-index: 2;
}

/* Cursor Glow Effect */
.cursor-glow {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(24, 198, 255, 0.08) 0%, rgba(10, 102, 255, 0) 70%);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  mix-blend-mode: screen;
  transition: width 0.3s ease, height 0.3s ease;
  will-change: transform;
}

/* Scroll Progress Bar */
.scroll-progress-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  z-index: 10001;
  background: transparent;
}
.scroll-progress-bar {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary), var(--color-accent));
  box-shadow: var(--glow-secondary);
}

/* Glassmorphism Navigation */
.glass-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 90px;
  z-index: 10000;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  border-bottom: 1px solid transparent;
}

.glass-header.scrolled {
  height: 70px;
  background-color: rgba(8, 17, 32, 0.75);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.header-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-link {
  display: flex;
  align-items: center;
}

.header-logo {
  height: 42px;
  width: auto;
  transition: var(--transition-smooth);
}

.nav-menu {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 2.2rem;
}

.nav-link {
  font-family: var(--text-heading);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #94A3B8;
  position: relative;
  padding: 0.5rem 0;
  display: inline-block;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
  transition: var(--transition-smooth);
  box-shadow: var(--glow-secondary);
}

.nav-link:hover, .nav-link.active {
  color: #FFFFFF;
  text-shadow: 0 0 10px rgba(24, 198, 255, 0.3);
}

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

/* Premium Buttons Layout */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--text-heading);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 0.75rem 1.75rem;
  border-radius: 8px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
  gap: 0.5rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: #FFFFFF;
  border: none;
  box-shadow: var(--glow-primary);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transition: 0.5s;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 35px rgba(24, 198, 255, 0.6);
}

.btn-secondary {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: #FFFFFF;
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background: var(--glass-bg-hover);
  border-color: var(--glass-border-hover);
  transform: translateY(-2px);
  box-shadow: var(--glow-secondary);
}

.btn-lg {
  padding: 1.1rem 2.5rem;
  font-size: 1.05rem;
  border-radius: 12px;
}

.btn-block {
  width: 100%;
}

/* Mobile Toggle Hamburger */
.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 10002;
}

.mobile-toggle .bar {
  width: 100%;
  height: 2px;
  background-color: #FFFFFF;
  border-radius: 2px;
  transition: var(--transition-smooth);
}

/* Transform hamburger bars to close symbol */
.mobile-toggle.active .bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.mobile-toggle.active .bar:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active .bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Overlay Navigation panel */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(8, 17, 32, 0.95);
  backdrop-filter: blur(25px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

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

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  list-style: none;
  gap: 2rem;
  text-align: center;
  width: 80%;
  max-width: 400px;
}

.mobile-nav-link {
  font-family: var(--text-heading);
  font-size: 1.8rem;
  font-weight: 600;
  color: #94A3B8;
  transition: var(--transition-smooth);
}

.mobile-nav-link:hover {
  color: var(--color-secondary);
  text-shadow: var(--glow-secondary);
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  padding-top: 140px;
  padding-bottom: 80px;
  overflow: hidden;
}

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

/* Ambient Aurora Glow Circles */
.aurora-glow-1 {
  position: absolute;
  top: -10%;
  left: -10%;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, rgba(10, 102, 255, 0.12) 0%, rgba(10, 102, 255, 0) 70%);
  z-index: 1;
  animation: auroraShift 20s infinite alternate ease-in-out;
  pointer-events: none;
}

.aurora-glow-2 {
  position: absolute;
  bottom: -10%;
  right: -10%;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, rgba(24, 198, 255, 0.1) 0%, rgba(24, 198, 255, 0) 70%);
  z-index: 1;
  animation: auroraShift 16s infinite alternate-reverse ease-in-out;
  pointer-events: none;
}

@keyframes auroraShift {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(10%, 5%) scale(1.15);
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(10, 102, 255, 0.08);
  border: 1px solid rgba(10, 102, 255, 0.25);
  padding: 0.5rem 1.2rem;
  border-radius: 100px;
  font-family: var(--text-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-secondary);
  margin-bottom: 2rem;
  box-shadow: 0 0 15px rgba(24, 198, 255, 0.08);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: var(--color-secondary);
  border-radius: 50%;
  box-shadow: var(--glow-secondary);
  animation: pulseScale 1.8s infinite;
}

@keyframes pulseScale {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.4; }
  100% { transform: scale(1); opacity: 1; }
}

.hero-title {
  font-size: 4.8rem;
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 1.5rem;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

.gradient-text {
  background: linear-gradient(135deg, #FFFFFF 20%, var(--color-secondary) 60%, var(--color-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #94A3B8;
  max-width: 720px;
  margin: 0 auto 2.8rem auto;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 5.5rem;
}

/* Floating feature glass cards */
.hero-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.feature-glass-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  padding: 2.2rem;
  border-radius: 16px;
  text-align: left;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.feature-glass-card:hover {
  transform: translateY(-8px);
  border-color: var(--glass-border-hover);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), var(--glow-secondary);
}

.card-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(24, 198, 255, 0.12) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.feature-glass-card:hover .card-glow {
  opacity: 1;
}

.card-icon-wrap {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  background: rgba(24, 198, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(24, 198, 255, 0.15);
}

.feature-glass-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
}

.feature-glass-card p {
  font-size: 0.95rem;
  color: #94A3B8;
  line-height: 1.6;
}

.scroll-down-indicator {
  position: absolute;
  bottom: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: var(--text-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #64748B;
  cursor: pointer;
  z-index: 2;
}

.scroll-down-indicator span {
  margin-bottom: 0.5rem;
}

.indicator-mouse {
  width: 20px;
  height: 32px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  position: relative;
}

.indicator-wheel {
  width: 4px;
  height: 8px;
  background-color: var(--color-secondary);
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: wheelScroll 1.8s infinite ease-in-out;
}

@keyframes wheelScroll {
  0% { top: 6px; opacity: 1; }
  100% { top: 18px; opacity: 0; }
}

/* Sections Global Styling */
section {
  padding: 120px 0;
  position: relative;
}

.section-header {
  margin-bottom: 5rem;
  position: relative;
  z-index: 2;
}

.section-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1.2rem;
  text-align: center;
  background: linear-gradient(135deg, #FFFFFF 40%, #94A3B8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-title.text-left {
  text-align: left;
}

.section-subtitle {
  font-size: 1.15rem;
  color: #94A3B8;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.section-subtitle.text-left {
  text-align: left;
  margin-left: 0;
}

/* Services Section */
.services-section {
  background-color: var(--bg-dark);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

.service-card {
  background: var(--bg-surface);
  border: 1px solid var(--glass-border);
  padding: 3rem;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px) scale(1.01);
  border-color: var(--glass-border-hover);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), var(--glow-primary);
}

.service-card-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(10, 102, 255, 0.12) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.service-card:hover .service-card-glow {
  opacity: 1;
}

.service-icon {
  margin-bottom: 2rem;
  display: inline-block;
}

.service-card h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.service-card p {
  color: #94A3B8;
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 1.8rem;
}

.service-points {
  list-style: none;
  margin-bottom: 2.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.service-points li {
  font-size: 0.95rem;
  color: #CBD5E1;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.point-check {
  width: 6px;
  height: 6px;
  background-color: var(--color-secondary);
  border-radius: 50%;
  box-shadow: var(--glow-secondary);
}

.service-btn {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--text-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-secondary);
  transition: var(--transition-fast);
  align-self: flex-start;
}

.service-btn svg {
  transition: transform 0.3s ease;
}

.service-card:hover .service-btn {
  color: #FFFFFF;
}

.service-card:hover .service-btn svg {
  transform: translateX(5px);
}

/* Technology Stack Node Section */
.tech-section {
  background-color: rgba(8, 17, 32, 0.95);
  overflow: hidden;
}

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

.tech-node-map {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 2;
}

.tech-category {
  background: rgba(16, 24, 39, 0.45);
  border: 1px solid var(--glass-border);
  padding: 2rem;
  border-radius: 16px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.tech-category h3 {
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #64748B;
  margin-bottom: 1.5rem;
  border-left: 2px solid var(--color-primary);
  padding-left: 0.6rem;
}

.chip-container {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.tech-chip {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  padding: 0.75rem 1.2rem;
  border-radius: 8px;
  font-family: var(--text-heading);
  font-size: 0.95rem;
  font-weight: 500;
  color: #CBD5E1;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.chip-dot {
  width: 6px;
  height: 6px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transition: var(--transition-fast);
}

.tech-chip:hover {
  background: rgba(24, 198, 255, 0.08);
  border-color: var(--glass-border-hover);
  color: #FFFFFF;
  transform: translateX(4px) scale(1.02);
  box-shadow: var(--glow-secondary);
}

.tech-chip:hover .chip-dot {
  background-color: var(--color-secondary);
  box-shadow: var(--glow-secondary);
}

/* Portfolio Showcase Section */
.portfolio-section {
  background-color: var(--bg-dark);
}

.portfolio-filter-tabs {
  display: inline-flex;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  padding: 0.4rem;
  border-radius: 100px;
  margin: 2.2rem auto 0 auto;
  gap: 0.4rem;
  backdrop-filter: blur(10px);
}

.filter-tab {
  background: transparent;
  border: none;
  font-family: var(--text-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: #94A3B8;
  padding: 0.6rem 1.4rem;
  border-radius: 100px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.filter-tab.active, .filter-tab:hover {
  background: rgba(24, 198, 255, 0.15);
  color: var(--color-secondary);
  text-shadow: var(--glow-secondary);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 4rem;
}

.portfolio-item {
  display: none;
}

.portfolio-item.show {
  display: block;
}

.portfolio-card {
  background: var(--bg-surface);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
}

.portfolio-card:hover {
  border-color: var(--glass-border-hover);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), var(--glow-primary);
}

.portfolio-image-wrap {
  height: 220px;
  position: relative;
  background: #0d1624;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.project-tag {
  position: absolute;
  top: 1.2rem;
  left: 1.2rem;
  background: rgba(8, 17, 32, 0.75);
  border: 1px solid var(--glass-border-hover);
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
  font-family: var(--text-heading);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-secondary);
  z-index: 3;
}

.interactive-card-visual {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  opacity: 0.7;
  transition: opacity 0.5s ease;
}

.portfolio-card:hover .interactive-card-visual {
  opacity: 1;
}

/* Animations simulations inside portfolio image wrap */
.node-net-simulation {
  background: radial-gradient(circle at 30% 20%, rgba(10, 102, 255, 0.25) 0%, transparent 50%),
              radial-gradient(circle at 80% 70%, rgba(24, 198, 255, 0.2) 0%, transparent 60%);
}
.grid-flow-simulation {
  background: linear-gradient(rgba(24, 198, 255, 0.05) 1px, transparent 1px),
              linear-gradient(90deg, rgba(24, 198, 255, 0.05) 1px, transparent 1px);
  background-size: 20px 20px;
}
.wave-pulse-simulation {
  background: radial-gradient(ellipse at center, rgba(10, 102, 255, 0.2) 0%, transparent 70%);
}

.portfolio-info {
  padding: 2.2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.portfolio-info h3 {
  font-size: 1.35rem;
  margin-bottom: 0.8rem;
}

.portfolio-info p {
  font-size: 0.95rem;
  color: #94A3B8;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.portfolio-metrics {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 1.2rem;
}

.portfolio-metrics span {
  font-size: 0.75rem;
  color: #64748B;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.portfolio-metrics strong {
  font-family: var(--text-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-secondary);
}

.portfolio-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--text-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: #CBD5E1;
  transition: var(--transition-fast);
}

.portfolio-link svg {
  transition: transform 0.3s;
}

.portfolio-card:hover .portfolio-link {
  color: var(--color-secondary);
}

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

/* Metrics & Statistics Section */
.stats-section {
  background-color: rgba(8, 17, 32, 0.97);
  overflow: hidden;
}

.stats-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
}

.circular-charts-grid {
  display: flex;
  gap: 3rem;
  margin-top: 3.5rem;
}

.radial-chart-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.radial-progress-wrap {
  width: 120px;
  height: 120px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.radial-svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.radial-bg-circle {
  fill: none;
  stroke: rgba(255, 255, 255, 0.03);
  stroke-width: 8;
}

.radial-bar-circle {
  fill: none;
  stroke: var(--color-secondary);
  stroke-width: 8;
  stroke-linecap: round;
  transition: stroke-dashoffset 2s cubic-bezier(0.1, 1, 0.1, 1);
  filter: drop-shadow(0 0 5px rgba(24, 198, 255, 0.5));
}

.radial-value {
  position: absolute;
  font-family: var(--text-heading);
  font-weight: 700;
  font-size: 1.4rem;
  color: #FFFFFF;
}

.radial-chart-item span {
  font-family: var(--text-heading);
  font-size: 0.95rem;
  font-weight: 500;
  color: #94A3B8;
  text-align: center;
}

.stats-counters-column {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.counter-card {
  background: var(--bg-surface);
  border: 1px solid var(--glass-border);
  padding: 2.2rem;
  border-radius: 16px;
  text-align: left;
  transition: var(--transition-smooth);
}

.counter-card:hover {
  border-color: var(--glass-border-hover);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.counter-number-wrap {
  font-family: var(--text-heading);
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
  color: #FFFFFF;
  margin-bottom: 0.5rem;
}

.counter-num {
  background: linear-gradient(135deg, #FFFFFF, var(--color-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.counter-suffix {
  color: var(--color-secondary);
}

.counter-card p {
  color: #94A3B8;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

/* Roadmapping Timeline Widget */
.timeline-wrap {
  margin-top: 80px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 60px;
}

.timeline-heading {
  font-size: 1.8rem;
  margin-bottom: 3.5rem;
  text-align: center;
}

.timeline-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  position: relative;
}

.timeline-progress-bar {
  position: absolute;
  top: 25px;
  left: 12.5%;
  width: 75%;
  height: 2px;
  background: rgba(255, 255, 255, 0.05);
  z-index: 1;
}

.timeline-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
  box-shadow: var(--glow-secondary);
  transition: width 1.5s cubic-bezier(0.1, 1, 0.1, 1);
}

.timeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
}

.timeline-dot {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--bg-surface);
  border: 2px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--text-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: #94A3B8;
  margin-bottom: 1.5rem;
  transition: var(--transition-smooth);
}

.timeline-step.active .timeline-dot {
  border-color: var(--color-secondary);
  color: #FFFFFF;
  background: var(--bg-dark);
  box-shadow: var(--glow-secondary);
}

.timeline-step h4 {
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
}

.timeline-step p {
  font-size: 0.85rem;
  color: #64748B;
  line-height: 1.5;
  padding: 0 0.5rem;
}

/* Testimonials Carousel Section */
.testimonials-section {
  background-color: var(--bg-dark);
  overflow: hidden;
}

.testimonials-slider-wrap {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.testimonials-slider {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-slide {
  min-width: 100%;
  opacity: 0;
  transform: scale(0.95) translateY(10px);
  filter: blur(5px);
  transition: opacity 0.6s ease, transform 0.6s ease, filter 0.6s ease;
  pointer-events: none;
}

.testimonial-slide.active {
  opacity: 1;
  transform: scale(1) translateY(0);
  filter: blur(0);
  pointer-events: auto;
}

.testimonial-quote-box {
  background: var(--bg-surface);
  border: 1px solid var(--glass-border);
  padding: 4rem 3.5rem;
  border-radius: 24px;
  position: relative;
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
}

.quote-icon {
  position: absolute;
  top: 2rem;
  left: 2.5rem;
}

.quote-text {
  font-size: 1.45rem;
  line-height: 1.65;
  font-weight: 400;
  color: #E2E8F0;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 2;
  font-style: italic;
}

.client-profile {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.client-avatar {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
}

.avatar-initials {
  font-family: var(--text-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: #FFFFFF;
}

.client-meta h4 {
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
}

.client-meta p {
  font-size: 0.85rem;
  color: #64748B;
}

.slider-indicators {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 2.5rem;
}

.indicator-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.indicator-dot.active, .indicator-dot:hover {
  background: var(--color-secondary);
  box-shadow: var(--glow-secondary);
  transform: scale(1.3);
}

/* Contact & Consultation Form Section */
.contact-section {
  background-color: var(--bg-dark);
  overflow: hidden;
}

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

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.contact-detail-items {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  margin-top: 3.5rem;
}

.contact-detail-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  padding: 1.5rem 2rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  transition: var(--transition-smooth);
}

.contact-detail-card:hover {
  border-color: var(--glass-border-hover);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.detail-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(24, 198, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-detail-card h4 {
  font-size: 0.9rem;
  color: #64748B;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.2rem;
}

.contact-detail-card a {
  font-family: var(--text-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: #FFFFFF;
}

.contact-detail-card a:hover {
  color: var(--color-secondary);
}

/* Glass Form Styling */
.contact-form-card {
  background: var(--bg-surface);
  border: 1px solid var(--glass-border);
  padding: 3.5rem;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.contact-form-card .card-glow {
  opacity: 0.4;
  background: radial-gradient(circle at 100% 0%, rgba(24, 198, 255, 0.12) 0%, transparent 60%);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.input-group {
  position: relative;
  margin-bottom: 2rem;
}

.form-input {
  width: 100%;
  padding: 1rem 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  font-family: var(--text-body);
  font-size: 1rem;
  color: #FFFFFF;
  outline: none;
  transition: border-color 0.3s;
}

.form-select {
  color: #94A3B8;
  cursor: pointer;
}

.form-select option {
  background-color: var(--bg-surface);
  color: #FFFFFF;
}

.text-area {
  resize: none;
  min-height: 100px;
}

.form-label {
  position: absolute;
  top: 1rem;
  left: 0;
  font-size: 0.95rem;
  color: #64748B;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.focus-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
  transition: var(--transition-smooth);
}

.form-input:focus ~ .form-label,
.form-input:not(:placeholder-shown) ~ .form-label {
  top: -1.2rem;
  font-size: 0.8rem;
  color: var(--color-secondary);
}

.form-input:focus ~ .focus-bar {
  width: 100%;
}

.form-input:focus {
  border-color: transparent;
}

.btn-loader-icon {
  animation: spinnerRotate 1.2s linear infinite;
}

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

.form-status-alert {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 1.5rem;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-family: var(--text-body);
  opacity: 0;
  visibility: hidden;
  max-height: 0;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.form-status-alert.show {
  opacity: 1;
  visibility: visible;
  max-height: 80px;
}

.form-status-alert.success {
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.25);
  color: #10B981;
}

.form-status-alert.error {
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.25);
  color: #EF4444;
}

/* Footer Section */
.footer-wrap {
  background-color: #040912;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 80px 0 40px 0;
  position: relative;
  overflow: hidden;
}

.footer-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 4rem;
  position: relative;
  z-index: 2;
  margin-bottom: 5rem;
}

.footer-brand-column img {
  height: 40px;
  margin-bottom: 1.8rem;
}

.footer-brand-column p {
  font-size: 0.9rem;
  color: #64748B;
  line-height: 1.6;
  margin-bottom: 1.8rem;
}

.footer-socials {
  display: flex;
  gap: 1.2rem;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94A3B8;
  transition: var(--transition-smooth);
}

.social-link:hover {
  background: rgba(24, 198, 255, 0.08);
  border-color: var(--glass-border-hover);
  color: #FFFFFF;
  box-shadow: var(--glow-secondary);
}

.footer-links-column h4 {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #94A3B8;
  margin-bottom: 1.8rem;
}

.footer-links-column ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-links-column a {
  font-size: 0.9rem;
  color: #64748B;
}

.footer-links-column a:hover {
  color: var(--color-secondary);
}

.security-stamp {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  border-radius: 12px;
  display: flex;
  gap: 1rem;
}

.security-stamp h5 {
  font-size: 0.9rem;
  margin-bottom: 0.3rem;
}

.security-stamp p {
  font-size: 0.75rem;
  color: #64748B;
  line-height: 1.4;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 2;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: #64748B;
}

.scroll-to-top {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(24, 198, 255, 0.06);
  border: 1px solid rgba(24, 198, 255, 0.15);
  color: var(--color-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  outline: none;
  transition: var(--transition-smooth);
}

.scroll-to-top:hover {
  background: var(--color-secondary);
  color: var(--bg-dark);
  box-shadow: var(--glow-secondary);
  transform: translateY(-5px);
}

/* Futuristic Floating Action Dock */
.widgets-dock-wrap {
  position: fixed;
  bottom: 2.5rem;
  right: 2.5rem;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1rem;
  pointer-events: none;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.widgets-dock {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0.75rem;
  border-radius: 40px;
  background: rgba(16, 24, 39, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  pointer-events: auto;
  position: relative;
}

.dock-item-wrap {
  position: relative;
}

.dock-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  overflow: hidden;
}

.dock-icon {
  font-size: 1.15rem;
  z-index: 2;
  transition: transform 0.3s ease;
}

/* Tooltips */
.dock-tooltip {
  position: absolute;
  bottom: calc(100% + 15px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: rgba(8, 17, 32, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.4rem 0.8rem;
  border-radius: 8px;
  font-family: var(--text-heading);
  font-size: 0.75rem;
  font-weight: 600;
  color: #FFFFFF;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  pointer-events: none;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.dock-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 5px;
  border-style: solid;
  border-color: rgba(8, 17, 32, 0.9) transparent transparent transparent;
}

.dock-item-wrap:hover .dock-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dock-btn:hover .dock-icon {
  transform: scale(1.15);
}

/* Button Customizations */
.widget-call {
  color: var(--color-secondary);
}
.widget-call:hover {
  background: var(--color-secondary);
  color: var(--bg-dark);
  box-shadow: var(--glow-secondary);
}

.widget-whatsapp {
  color: #25D366;
}
.widget-whatsapp:hover {
  background: #25D366;
  color: #FFFFFF;
  box-shadow: var(--glow-whatsapp);
}

.widget-ai-orb {
  background: rgba(10, 102, 255, 0.1);
  border: 1px solid rgba(10, 102, 255, 0.2);
}

.widget-ticket {
  color: #A855F7;
}
.widget-ticket:hover {
  background: #A855F7;
  color: #FFFFFF;
  box-shadow: 0 0 15px rgba(168, 85, 247, 0.6);
}

/* Blue ring for Ticket pulse */
.blue-ring {
  border-color: #A855F7 !important;
  animation: blueRingPulse 2s infinite ease-out !important;
}

@keyframes blueRingPulse {
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.6); opacity: 0; }
}

.ai-chat-window {
  bottom: 4.8rem !important;
}

.widget-tooltip {
  position: absolute;
  right: 4.8rem;
  top: 50%;
  transform: translateY(-50%) translateX(10px);
  background: var(--bg-surface);
  border: 1px solid var(--glass-border);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-family: var(--text-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: #FFFFFF;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.floating-widget-wrap:hover .widget-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0);
}

.floating-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  transition: var(--transition-smooth);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Call Button floating */
.widget-call {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--color-secondary);
}

.widget-call:hover {
  background: var(--color-secondary);
  color: var(--bg-dark);
  box-shadow: var(--glow-secondary);
  transform: scale(1.1);
}

.pulse-ring, .pulse-ring-2 {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px solid var(--color-secondary);
  pointer-events: none;
  animation: ringPulse 2s infinite ease-out;
}

.pulse-ring-2 {
  animation-delay: 0.8s;
}

@keyframes ringPulse {
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.8); opacity: 0; }
}

/* WhatsApp widget floating */
.widget-whatsapp {
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.3);
  color: #25D366;
}

.widget-whatsapp:hover {
  background: #25D366;
  color: #FFFFFF;
  box-shadow: var(--glow-whatsapp);
  transform: scale(1.1);
}

.green-ambient-glow {
  position: absolute;
  width: 120%;
  height: 120%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 211, 102, 0.3) 0%, transparent 70%);
  z-index: -1;
  top: -10%;
  left: -10%;
}

.pulse-whatsapp {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px solid #25D366;
  pointer-events: none;
  animation: whatsappRingPulse 2s infinite ease-out;
}

@keyframes whatsappRingPulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.7); opacity: 0; }
}

/* AI Orb Bot floating button */
.widget-ai-orb {
  background: rgba(10, 102, 255, 0.15);
  border: 1px solid rgba(10, 102, 255, 0.35);
  overflow: hidden;
}

.widget-ai-orb:hover {
  transform: scale(1.1);
}

.orb-core {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  z-index: 2;
  box-shadow: var(--glow-secondary);
}

.orb-glow {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(24, 198, 255, 0.5) 0%, rgba(10, 102, 255, 0) 70%);
  z-index: 1;
}

.orb-wave, .orb-wave-2 {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1.5px solid rgba(24, 198, 255, 0.5);
  pointer-events: none;
  animation: orbWavePulse 2.5s infinite ease-in-out;
  transform-origin: center;
}

.orb-wave-2 {
  animation-delay: 1.25s;
}

@keyframes orbWavePulse {
  0% {
    transform: scale(0.9);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.3);
    opacity: 0.3;
    border-radius: 40% 60% 55% 45% / 50% 45% 65% 50%;
  }
  100% {
    transform: scale(0.9);
    opacity: 0.8;
  }
}

/* Glassmorphic Chat UI Window */
.ai-chat-window {
  position: absolute;
  bottom: 4.8rem;
  right: 0;
  width: 380px;
  height: 480px;
  background: var(--bg-surface);
  border: 1px solid var(--glass-border-hover);
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), var(--glow-primary);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transform: translateY(20px) scale(0.95);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

.ai-chat-window.open {
  transform: translateY(0) scale(1);
  opacity: 1;
  visibility: visible;
}

.chat-header {
  background: rgba(8, 17, 32, 0.7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-bot-info {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.chat-orb-mini {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  box-shadow: var(--glow-secondary);
  animation: pulseScale 1.5s infinite;
}

.header-bot-info h4 {
  font-size: 0.95rem;
  font-weight: 600;
}

.status-online {
  font-size: 0.7rem;
  color: var(--color-secondary);
  display: block;
}

.chat-close-btn {
  background: transparent;
  border: none;
  font-size: 1.8rem;
  color: #64748B;
  cursor: pointer;
  line-height: 1;
  transition: var(--transition-fast);
}

.chat-close-btn:hover {
  color: #FFFFFF;
}

.chat-body {
  flex-grow: 1;
  padding: 1.5rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.chat-message {
  max-width: 80%;
  padding: 0.85rem 1.2rem;
  border-radius: 12px;
  font-size: 0.9rem;
  line-height: 1.5;
}

.chat-message.bot {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: #CBD5E1;
  align-self: flex-start;
  border-bottom-left-radius: 2px;
}

.chat-message.user {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: #FFFFFF;
  align-self: flex-end;
  border-bottom-right-radius: 2px;
  box-shadow: var(--glow-primary);
}

/* Simulated AI typing dots loader */
.typing-loader {
  display: flex;
  gap: 4px;
  align-items: center;
  height: 20px;
}
.typing-loader span {
  width: 6px;
  height: 6px;
  background-color: var(--color-secondary);
  border-radius: 50%;
  animation: typingBounce 1s infinite alternate;
}
.typing-loader span:nth-child(2) { animation-delay: 0.2s; }
.typing-loader span:nth-child(3) { animation-delay: 0.4s; }

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

.chat-footer {
  padding: 1.2rem;
  background: rgba(8, 17, 32, 0.7);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.chat-chips {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding-bottom: 0.8rem;
  margin-bottom: 0.8rem;
}

.chat-chips::-webkit-scrollbar {
  height: 3px;
}

.chat-chip-btn {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.4rem 0.8rem;
  border-radius: 100px;
  font-family: var(--text-heading);
  font-size: 0.75rem;
  font-weight: 500;
  color: #94A3B8;
  white-space: nowrap;
  cursor: pointer;
  transition: var(--transition-fast);
}

.chat-chip-btn:hover {
  background: rgba(24, 198, 255, 0.08);
  border-color: var(--glass-border-hover);
  color: #FFFFFF;
}

.chat-input-wrap {
  display: flex;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  overflow: hidden;
  padding: 0.2rem;
}

.chat-input-wrap input {
  flex-grow: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 0.6rem 0.8rem;
  color: #FFFFFF;
  font-family: var(--text-body);
  font-size: 0.9rem;
}

.chat-input-wrap button {
  background: transparent;
  border: none;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-secondary);
  cursor: pointer;
  transition: var(--transition-fast);
  border-radius: 6px;
}

.chat-input-wrap button:hover {
  background: rgba(24, 198, 255, 0.1);
  color: #FFFFFF;
}

/* Animations for revealing items on scroll */
.reveal-fade {
  opacity: 0;
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-fade-up {
  opacity: 0;
  transform: translateY(40px);
  filter: blur(10px);
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1.2s cubic-bezier(0.16, 1, 0.3, 1),
              filter 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-fade.revealed {
  opacity: 1;
}

.reveal-fade-up.revealed {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* Stagger reveals */
.services-grid .service-card:nth-child(2) { transition-delay: 0.1s; }
.services-grid .service-card:nth-child(3) { transition-delay: 0.2s; }
.services-grid .service-card:nth-child(4) { transition-delay: 0.3s; }

.tech-node-map .tech-category:nth-child(2) { transition-delay: 0.1s; }
.tech-node-map .tech-category:nth-child(3) { transition-delay: 0.2s; }
.tech-node-map .tech-category:nth-child(4) { transition-delay: 0.3s; }

.portfolio-grid .portfolio-item:nth-child(2) { transition-delay: 0.1s; }
.portfolio-grid .portfolio-item:nth-child(3) { transition-delay: 0.2s; }

.counter-card:nth-child(2) { transition-delay: 0.1s; }
.counter-card:nth-child(3) { transition-delay: 0.2s; }

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .header-container {
    padding: 0 1.5rem;
  }
  .header-logo {
    height: 34px;
  }
  .nav-menu, .header-cta {
    display: none;
  }
  .mobile-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0;
  }
  .hero-title {
    font-size: 3.5rem;
  }
  .tech-node-map {
    grid-template-columns: repeat(2, 1fr);
  }
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  .container {
    padding: 0 1.5rem;
  }
  .glass-header {
    height: 75px;
  }
  .hero-section {
    padding-top: 120px;
    padding-bottom: 60px;
  }
  .hero-title {
    font-size: 2.8rem;
  }
  .hero-feature-grid {
    grid-template-columns: 1fr;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .tech-node-map {
    grid-template-columns: 1fr;
  }
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
  .stats-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .timeline-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .timeline-progress-bar {
    display: none;
  }
  .timeline-step {
    align-items: flex-start;
    text-align: left;
    padding-left: 70px;
  }
  .timeline-dot {
    position: absolute;
    left: 0;
    top: 0;
    margin-bottom: 0;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .contact-form-card {
    padding: 2.2rem;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
  .widgets-dock-wrap {
    bottom: 1.5rem;
    right: 1.5rem;
  }
  .ai-chat-window {
    width: 320px;
    right: 0;
  }
}

/* ==========================================================================
   ENTERPRISE SERVICE DESK CUSTOM STYLES
   ========================================================================== */
.servicedesk-section {
  position: relative;
  padding: var(--padding-large) 0;
  background: radial-gradient(circle at 50% 0%, rgba(10, 102, 255, 0.05) 0%, rgba(8, 17, 32, 0) 60%), #081120;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.servicedesk-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  opacity: 0.45;
}

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

/* 1. Hero Block */
.servicedesk-hero {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 5rem auto;
}

.desk-badge {
  display: inline-block;
  padding: 0.5rem 1.2rem;
  border-radius: 100px;
  background: rgba(24, 198, 255, 0.08);
  border: 1px solid rgba(24, 198, 255, 0.2);
  color: var(--color-secondary);
  font-family: var(--text-heading);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
  box-shadow: 0 0 20px rgba(24, 198, 255, 0.05);
}

.desk-sub-bullet {
  font-family: var(--text-body);
  font-size: 1.05rem;
  color: #94A3B8;
  line-height: 1.6;
  margin: 1.5rem auto 2.5rem auto;
  max-width: 650px;
}

.servicedesk-hero .hero-actions {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
}

/* 2. Priority Levels Matrix */
.desk-priority-matrix {
  margin-bottom: 5rem;
}

.desk-priority-matrix h3,
.desk-products-wrap h3,
.desk-categories-wrap h3,
.desk-timeline-wrap h3,
.desk-dashboard-preview h3,
.desk-kb-wrap h3 {
  font-family: var(--text-heading);
  font-size: 2rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 0.5rem;
}

.desk-priority-matrix p,
.desk-products-wrap p,
.desk-categories-wrap p,
.desk-timeline-wrap p,
.desk-dashboard-preview p,
.desk-kb-wrap p {
  color: #64748B;
  font-size: 1rem;
  margin-bottom: 2.5rem;
}

.priority-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.priority-card {
  background: var(--bg-surface);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
}

.priority-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}

.priority-card.critical::before { background: #EF4444; }
.priority-card.high::before { background: #F97316; }
.priority-card.medium::before { background: #EAB308; }
.priority-card.low::before { background: #10B981; }

.priority-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.12);
}

.priority-card.critical:hover { box-shadow: 0 10px 30px rgba(239, 68, 68, 0.1); }
.priority-card.high:hover { box-shadow: 0 10px 30px rgba(249, 115, 22, 0.1); }
.priority-card.medium:hover { box-shadow: 0 10px 30px rgba(234, 179, 8, 0.1); }
.priority-card.low:hover { box-shadow: 0 10px 30px rgba(16, 185, 129, 0.1); }

.priority-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.severity-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.critical .severity-dot { background: #EF4444; box-shadow: 0 0 10px #EF4444; }
.high .severity-dot { background: #F97316; box-shadow: 0 0 10px #F97316; }
.medium .severity-dot { background: #EAB308; box-shadow: 0 0 10px #EAB308; }
.low .severity-dot { background: #10B981; box-shadow: 0 0 10px #10B981; }

.priority-header h4 {
  font-family: var(--text-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: #FFFFFF;
}

.impact-desc {
  font-size: 0.9rem !important;
  color: #E2E8F0 !important;
  font-weight: 600;
  margin-bottom: 1rem !important;
}

.example-triggers {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}

.example-triggers li {
  font-size: 0.85rem;
  color: #94A3B8;
  padding-left: 1rem;
  position: relative;
  margin-bottom: 0.5rem;
}

.example-triggers li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #475569;
}

.priority-sla {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.priority-sla span {
  font-size: 0.8rem;
  color: #64748B;
}

.priority-sla strong {
  font-family: var(--text-heading);
  font-size: 1.05rem;
  font-weight: 700;
}
.critical .priority-sla strong { color: #EF4444; }
.high .priority-sla strong { color: #F97316; }
.medium .priority-sla strong { color: #EAB308; }
.low .priority-sla strong { color: #10B981; }

/* 3. Supported Products Grid */
.desk-products-wrap {
  margin-bottom: 5rem;
}

.products-selection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1rem;
}

.product-chip {
  background: var(--bg-surface);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  overflow: hidden;
}

.chip-glow {
  position: absolute;
  top: -20%;
  left: -20%;
  width: 140%;
  height: 140%;
  background: radial-gradient(circle, rgba(24, 198, 255, 0.08) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.product-chip:hover .chip-glow,
.product-chip.active .chip-glow {
  opacity: 1;
}

.chip-icon {
  font-size: 1.75rem;
  z-index: 2;
  transition: transform 0.3s ease;
}

.product-chip:hover .chip-icon {
  transform: scale(1.15) rotate(5deg);
}

.product-chip span {
  font-family: var(--text-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: #94A3B8;
  z-index: 2;
  text-align: center;
  transition: color 0.3s ease;
}

.product-chip:hover span,
.product-chip.active span {
  color: #FFFFFF;
}

.product-chip.active {
  border-color: var(--color-secondary);
  box-shadow: 0 0 15px rgba(24, 198, 255, 0.2), inset 0 0 10px rgba(24, 198, 255, 0.1);
  transform: translateY(-2px);
}

/* 4. Issue Categories */
.desk-categories-wrap {
  margin-bottom: 5rem;
}

.categories-selection-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.category-btn {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 0.6rem 1.2rem;
  border-radius: 100px;
  font-family: var(--text-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: #94A3B8;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.category-btn:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
  transform: translateY(-1px);
}

.category-btn.active {
  background: rgba(24, 198, 255, 0.1);
  border-color: var(--color-secondary);
  color: var(--color-secondary);
  box-shadow: 0 0 15px rgba(24, 198, 255, 0.15);
}

/* 5. Ticket Creation Form */
.desk-form-card {
  max-width: 850px;
  margin: 0 auto 5rem auto;
  position: relative;
}

.form-header {
  margin-bottom: 2.5rem;
  text-align: center;
}

.form-header h3 {
  font-family: var(--text-heading);
  font-size: 1.75rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 0.5rem;
}

.form-header p {
  color: #64748B;
}

.desk-form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* Input Group with Floating Labels */
.input-group {
  position: relative;
  flex: 1;
}

.input-group input,
.input-group textarea {
  width: 100%;
  padding: 1.1rem 1.25rem;
  background: rgba(8, 17, 32, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  font-family: var(--text-body);
  font-size: 0.95rem;
  color: #FFFFFF;
  outline: none;
  transition: all 0.3s ease;
}

.input-group textarea {
  resize: vertical;
  min-height: 120px;
}

.input-group label {
  position: absolute;
  left: 1.25rem;
  top: 1.1rem;
  font-family: var(--text-body);
  font-size: 0.95rem;
  color: #64748B;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.input-group input:focus,
.input-group textarea:focus {
  border-color: var(--color-secondary);
  box-shadow: 0 0 15px rgba(24, 198, 255, 0.15);
  background: rgba(8, 17, 32, 0.6);
}

.input-group input:focus + label,
.input-group input:valid + label,
.input-group textarea:focus + label,
.input-group textarea:valid + label {
  transform: translateY(-1.9rem) scale(0.85);
  color: var(--color-secondary);
  font-weight: 600;
  left: 0.5rem;
}

/* Select Group with Custom Arrow & Label */
.select-group {
  position: relative;
  flex: 1;
}

.select-group select {
  width: 100%;
  padding: 1.1rem 1.25rem;
  background: rgba(8, 17, 32, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  font-family: var(--text-body);
  font-size: 0.95rem;
  color: #FFFFFF;
  outline: none;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  transition: all 0.3s ease;
}

.select-group select:focus {
  border-color: var(--color-secondary);
  box-shadow: 0 0 15px rgba(24, 198, 255, 0.15);
  background: rgba(8, 17, 32, 0.6);
}

.select-group::after {
  content: '▼';
  font-size: 0.75rem;
  color: #64748B;
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.select-label {
  position: absolute;
  left: 0.5rem;
  top: -0.8rem;
  font-family: var(--text-body);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-secondary);
  pointer-events: none;
}

/* Drag & Drop attachment styles */
.drag-drop-area {
  border: 2px dashed rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 2.2rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.01);
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
}

.drag-drop-area:hover,
.drag-drop-area.dragover {
  border-color: var(--color-secondary);
  background: rgba(24, 198, 255, 0.03);
}

.file-input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.drag-drop-content {
  pointer-events: none;
}

.upload-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.75rem;
}

.upload-text {
  font-size: 0.95rem;
  color: #CBD5E1;
  margin-bottom: 0.25rem;
}

.upload-text span {
  color: var(--color-secondary);
  text-decoration: underline;
  font-weight: 600;
}

.upload-limit {
  font-size: 0.75rem;
  color: #64748B;
}

.file-list-preview {
  margin-top: 1rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.file-preview-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 6px;
  font-size: 0.85rem;
  color: #CBD5E1;
}

.file-preview-item .remove-file-btn {
  background: transparent;
  border: none;
  color: #EF4444;
  cursor: pointer;
  font-weight: bold;
}

/* Radio Preferred Method Styles */
.contact-method-group {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.method-label {
  font-family: var(--text-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: #94A3B8;
}

.radio-options {
  display: flex;
  gap: 1.5rem;
}

.radio-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #CBD5E1;
  cursor: pointer;
  position: relative;
}

.radio-label input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.radio-custom {
  width: 18px;
  height: 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: inline-block;
  position: relative;
  transition: all 0.3s ease;
}

.radio-label input:checked ~ .radio-custom {
  border-color: var(--color-secondary);
  box-shadow: 0 0 10px rgba(24, 198, 255, 0.3);
}

.radio-custom::after {
  content: '';
  position: absolute;
  display: none;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-secondary);
}

.radio-label input:checked ~ .radio-custom::after {
  display: block;
}

/* Success Form Overlay */
.form-success-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(8, 17, 32, 0.95);
  border-radius: 20px;
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease;
}

.form-success-overlay.show {
  opacity: 1;
  visibility: visible;
}

.success-content {
  text-align: center;
  max-width: 500px;
  padding: 2rem;
  transform: scale(0.9);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.form-success-overlay.show .success-content {
  transform: scale(1);
}

.success-content h3 {
  font-family: var(--text-heading);
  font-size: 1.75rem;
  font-weight: 800;
  color: #FFFFFF;
  margin: 1.5rem 0 0.5rem 0;
}

.success-content p {
  color: #94A3B8;
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

.ticket-receipt {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 2rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.receipt-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
}

.receipt-row span {
  color: #64748B;
}

.receipt-row strong {
  color: #FFFFFF;
}

/* Success Checkmark Animation */
.success-checkmark {
  width: 80px;
  height: 80px;
  margin: 0 auto;
}

.success-checkmark .check-icon {
  width: 80px;
  height: 80px;
  position: relative;
  border-radius: 50%;
  box-sizing: content-box;
  border: 4px solid var(--color-secondary);
}

.success-checkmark .check-icon::before,
.success-checkmark .check-icon::after {
  content: '';
  height: 100px;
  position: absolute;
  background: transparent;
  transform: rotate(-45deg);
}

.success-checkmark .check-icon .icon-line {
  height: 5px;
  background-color: var(--color-secondary);
  display: block;
  border-radius: 2px;
  position: absolute;
  z-index: 10;
}

.success-checkmark .check-icon .icon-line.line-tip {
  width: 25px;
  left: 14px;
  top: 45px;
  transform: rotate(45deg);
  animation: checkTip 0.4s ease;
}

.success-checkmark .check-icon .icon-line.line-long {
  width: 47px;
  right: 8px;
  top: 38px;
  transform: rotate(-45deg);
  animation: checkLong 0.7s ease;
}

@keyframes checkTip {
  0% { width: 0; left: 1px; top: 19px; }
  54% { width: 0; left: 1px; top: 19px; }
  70% { width: 50px; left: -8px; top: 37px; }
  84% { width: 17px; left: 21px; top: 48px; }
  100% { width: 25px; left: 14px; top: 45px; }
}

@keyframes checkLong {
  0% { width: 0; right: 46px; top: 54px; }
  65% { width: 0; right: 46px; top: 54px; }
  84% { width: 55px; right: 0px; top: 35px; }
  100% { width: 47px; right: 8px; top: 38px; }
}

/* 6. Ticket Status Timeline */
.desk-timeline-wrap {
  margin-bottom: 5rem;
}

.horizontal-timeline {
  position: relative;
  display: flex;
  justify-content: space-between;
  margin-top: 4rem;
  padding: 1rem 0;
}

.timeline-progress-track {
  position: absolute;
  top: 30px;
  left: 5%;
  width: 90%;
  height: 4px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  z-index: 1;
}

.timeline-progress-fill {
  width: 12.5%;
  height: 100%;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
  border-radius: 10px;
  transition: width 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--glow-secondary);
}

.timeline-node {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 80px;
}

.node-dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #111827;
  border: 2px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: #64748B;
  margin-bottom: 0.75rem;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.node-label {
  font-family: var(--text-heading);
  font-size: 0.75rem;
  font-weight: 600;
  color: #64748B;
  text-align: center;
  transition: color 0.5s ease;
  white-space: nowrap;
}

.timeline-node.active .node-dot {
  background: var(--color-secondary);
  border-color: var(--color-secondary);
  color: var(--bg-dark);
  box-shadow: var(--glow-secondary);
  transform: scale(1.15);
}

.timeline-node.active .node-label {
  color: #FFFFFF;
  font-weight: 700;
}

/* 7. Track Existing Ticket Search */
.desk-tracker-card {
  max-width: 850px;
  margin: 0 auto 5rem auto;
}

.tracker-search-bar {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.tracker-search-bar input {
  flex: 1;
  padding: 1.1rem 1.25rem;
  background: rgba(8, 17, 32, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  font-family: var(--text-body);
  font-size: 0.95rem;
  color: #FFFFFF;
  outline: none;
  transition: all 0.3s ease;
}

.tracker-search-bar input:focus {
  border-color: var(--color-secondary);
  box-shadow: 0 0 15px rgba(24, 198, 255, 0.15);
}

.tracker-result-panel {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tracker-placeholder-info {
  text-align: center;
  color: #64748B;
  font-size: 0.95rem;
}

.result-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  width: 100%;
}

.result-meta-box {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.02);
  padding-bottom: 0.75rem;
}

.meta-row span {
  font-size: 0.9rem;
  color: #64748B;
}

.meta-row strong {
  font-size: 0.95rem;
  color: #FFFFFF;
}

.status-indicator-tag {
  background: rgba(24, 198, 255, 0.1);
  border: 1px solid rgba(24, 198, 255, 0.2);
  color: var(--color-secondary);
  padding: 0.2rem 0.6rem;
  border-radius: 6px;
  font-size: 0.8rem !important;
}

.priority-indicator-tag {
  padding: 0.2rem 0.6rem;
  border-radius: 6px;
  font-size: 0.8rem !important;
}

.priority-indicator-tag.critical { background: rgba(239, 68, 68, 0.1); border: 1px solid rgba(239, 68, 68, 0.2); color: #EF4444; }
.priority-indicator-tag.high { background: rgba(249, 115, 22, 0.1); border: 1px solid rgba(249, 115, 22, 0.2); color: #F97316; }
.priority-indicator-tag.medium { background: rgba(234, 179, 8, 0.1); border: 1px solid rgba(234, 179, 8, 0.2); color: #EAB308; }
.priority-indicator-tag.low { background: rgba(16, 185, 129, 0.1); border: 1px solid rgba(16, 185, 129, 0.2); color: #10B981; }

.result-timeline-box {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 1.5rem;
  margin-top: 1rem;
}

.result-timeline-box h5 {
  font-family: var(--text-heading);
  font-size: 0.95rem;
  color: #E2E8F0;
  margin-bottom: 1.5rem;
}

.mini-timeline-progress {
  position: relative;
  padding: 1rem 0;
}

.mini-timeline-progress::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-50%);
  z-index: 1;
}

.mini-progress-fill {
  position: absolute;
  top: 50%;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
  transform: translateY(-50%);
  z-index: 2;
  transition: width 0.8s ease;
}

.mini-timeline-nodes {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: space-between;
}

.mini-node {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #111827;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  font-weight: bold;
  color: #64748B;
  transition: all 0.3s ease;
}

.mini-node.active {
  background: var(--color-secondary);
  border-color: var(--color-secondary);
  color: var(--bg-dark);
  box-shadow: 0 0 10px rgba(24, 198, 255, 0.3);
}

/* 8. Customer Dashboard Preview */
.desk-dashboard-preview {
  margin-bottom: 5rem;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.dashboard-card {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.kpi-label {
  font-size: 0.8rem;
  color: #64748B;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.kpi-value {
  font-family: var(--text-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: #FFFFFF;
  margin: 0.5rem 0;
}

.kpi-change {
  font-size: 0.75rem;
  font-weight: 600;
}
.kpi-change.positive { color: #10B981; }

.dashboard-visuals-row {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 1.25rem;
}

.dashboard-chart-card {
  padding: 1.5rem;
}

.dashboard-chart-card h4 {
  font-family: var(--text-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: #E2E8F0;
  margin-bottom: 1.5rem;
}

.csat-donut-wrap {
  width: 160px;
  height: 160px;
  margin: 0 auto;
  position: relative;
}

.donut-svg {
  transform: rotate(-90deg);
}

.donut-fill {
  transition: stroke-dashoffset 1s ease-out;
}

.donut-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  display: flex;
  flex-direction: column;
}

.donut-center strong {
  font-family: var(--text-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: #FFFFFF;
}

.donut-center span {
  font-size: 0.7rem;
  color: #64748B;
}

.activity-chart-wrap {
  display: flex;
  flex-direction: column;
}

.dashboard-chart-canvas {
  flex-grow: 1;
  width: 100% !important;
  height: 160px !important;
}

/* 9. Knowledge Base Accordion */
.desk-kb-wrap {
  margin-bottom: 5rem;
}

.kb-search-container {
  max-width: 700px;
  margin: 0 auto 3rem auto;
}

.kb-search-container input {
  width: 100%;
  padding: 1.1rem 1.5rem;
  background: rgba(8, 17, 32, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  font-family: var(--text-body);
  font-size: 0.95rem;
  color: #FFFFFF;
  outline: none;
  transition: all 0.3s ease;
  text-align: center;
}

.kb-search-container input:focus {
  border-color: var(--color-secondary);
  box-shadow: 0 0 15px rgba(24, 198, 255, 0.15);
}

.kb-accordion {
  max-width: 850px;
  margin: 0 auto 4rem auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.accordion-item {
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.accordion-header {
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.accordion-header h4 {
  font-family: var(--text-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: #E2E8F0;
  line-height: 1.4;
}

.accordion-arrow {
  font-size: 0.7rem;
  color: #64748B;
  transition: transform 0.3s ease;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.5rem;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.accordion-content p {
  color: #94A3B8;
  font-size: 0.85rem;
  line-height: 1.6;
  padding-bottom: 1.25rem;
}

.accordion-item.active {
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(255, 255, 255, 0.1);
}

.accordion-item.active .accordion-header h4 {
  color: var(--color-secondary);
}

.accordion-item.active .accordion-arrow {
  transform: rotate(180deg);
  color: var(--color-secondary);
}

.kb-quick-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  max-width: 850px;
  margin: 0 auto;
}

.kb-link-card {
  background: var(--bg-surface);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 1.5rem 1rem;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.kb-link-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.02);
}

.kb-link-icon {
  font-size: 1.5rem;
  display: block;
  margin-bottom: 0.75rem;
}

.kb-link-card h5 {
  font-family: var(--text-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 0.35rem;
}

.kb-link-card p {
  font-size: 0.75rem !important;
  color: #64748B !important;
  margin-bottom: 0 !important;
}

/* 10. Emergency Support highlight */
.desk-emergency-card {
  max-width: 850px;
  margin: 0 auto;
  position: relative;
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.08) 0%, rgba(8, 17, 32, 0.4) 100%);
  border: 1px solid rgba(239, 68, 68, 0.25);
  border-radius: 20px;
  padding: 3rem;
  text-align: center;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(239, 68, 68, 0.05);
}

.emergency-ambient {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(239, 68, 68, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.emergency-content {
  position: relative;
  z-index: 2;
}

.emergency-badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 100px;
  color: #EF4444;
  font-family: var(--text-heading);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.25rem;
  box-shadow: 0 0 15px rgba(239, 68, 68, 0.1);
  animation: pulseScaleRed 1.8s infinite;
}

@keyframes pulseScaleRed {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); box-shadow: 0 0 25px rgba(239, 68, 68, 0.25); }
  100% { transform: scale(1); }
}

.desk-emergency-card h3 {
  font-family: var(--text-heading);
  font-size: 1.75rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 0.5rem;
}

.desk-emergency-card p {
  color: #94A3B8;
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

.emergency-contacts {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.emergency-contact-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.emergency-contact-link .contact-icon {
  font-size: 1.5rem;
}

.emergency-contact-link strong {
  font-family: var(--text-heading);
  font-size: 1.3rem;
  color: #FFFFFF;
}

.emergency-contact-link:hover strong {
  color: #EF4444;
}

.emergency-actions {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
}

.emergency-actions .btn-outline {
  border-color: rgba(239, 68, 68, 0.3);
  color: #EF4444;
}

.emergency-actions .btn-outline:hover {
  background: #EF4444;
  color: #FFFFFF;
  border-color: #EF4444;
  box-shadow: 0 0 20px rgba(239, 68, 68, 0.4);
}

/* Responsive Grid Adapters for Service Desk */
@media (max-width: 1024px) {
  .dashboard-grid {
    grid-template-columns: 1fr 1fr;
  }
  .dashboard-visuals-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero-actions,
  .emergency-actions {
    flex-direction: column;
    gap: 1rem;
  }
  
  .tracker-search-bar {
    flex-direction: column;
  }
  
  .result-details-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .horizontal-timeline {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 2rem;
    gap: 2rem;
  }
  
  .timeline-progress-track {
    top: 0;
    left: 27px;
    width: 3px;
    height: 100%;
  }
  
  .timeline-progress-fill {
    width: 100%;
    height: 12.5%;
  }
  
  .timeline-node {
    flex-direction: row;
    align-items: center;
    width: auto;
    gap: 1.25rem;
  }
  
  .node-dot {
    margin-bottom: 0;
  }
  
  .kb-quick-links {
    grid-template-columns: 1fr 1fr;
  }
  
  .emergency-contacts {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .desk-emergency-card {
    padding: 2rem 1.5rem;
  }
}

}

/* ==========================================================================
   INFINITE PARTNERS MARQUEE
   ========================================================================== */
.partners-marquee-wrap {
  background: rgba(8, 17, 32, 0.4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  padding: 2rem 0;
  text-align: center;
  position: relative;
  z-index: 10;
}

.marquee-title {
  font-family: var(--text-heading);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #64748B;
  margin-bottom: 1.5rem;
}

.partners-marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
  white-space: nowrap;
}

.partners-marquee::before,
.partners-marquee::after {
  content: '';
  position: absolute;
  top: 0;
  width: 150px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.partners-marquee::before {
  left: 0;
  background: linear-gradient(90deg, #081120 0%, transparent 100%);
}

.partners-marquee::after {
  right: 0;
  background: linear-gradient(-90deg, #081120 0%, transparent 100%);
}

.marquee-track {
  display: inline-flex;
  gap: 4rem;
  animation: scrollMarquee 35s linear infinite;
}

.partner-logo {
  font-family: var(--text-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.25);
  transition: var(--transition-fast);
  cursor: default;
}

.partner-logo:hover {
  color: var(--color-secondary);
  text-shadow: var(--glow-secondary);
}

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

/* ==========================================================================
   ABOUT US SECTION
   ========================================================================== */
.about-section {
  background: linear-gradient(180deg, #081120 0%, rgba(8, 17, 32, 0.95) 100%);
  position: relative;
  overflow: hidden;
}

.about-blueprint-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(24, 198, 255, 0.05) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.4;
  pointer-events: none;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.3fr;
  gap: 3.5rem;
  margin-top: 3.5rem;
  position: relative;
  z-index: 5;
}

.about-profile-card,
.about-tabs-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 3rem;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.about-profile-card h3 {
  font-family: var(--text-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 1.25rem;
}

.about-profile-card p {
  color: #94A3B8;
  line-height: 1.65;
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

.company-fact-sheet {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
}

.fact-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.fact-item span {
  font-size: 0.75rem;
  color: #64748B;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.fact-item strong {
  font-family: var(--text-heading);
  font-size: 1.15rem;
  color: #FFFFFF;
}

.about-tab-headers {
  display: flex;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  gap: 1rem;
  margin-bottom: 2.25rem;
}

.about-tab-btn {
  background: transparent;
  border: none;
  color: #64748B;
  font-family: var(--text-heading);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.75rem 0.5rem;
  cursor: pointer;
  position: relative;
  transition: var(--transition-fast);
}

.about-tab-btn::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
  transition: var(--transition-smooth);
}

.about-tab-btn:hover {
  color: #FFFFFF;
}

.about-tab-btn.active {
  color: var(--color-secondary);
}

.about-tab-btn.active::after {
  width: 100%;
}

.about-tab-content {
  display: none;
  animation: fadeIn 0.4s ease-in-out;
}

.about-tab-content.active {
  display: block;
}

.about-tab-content h4 {
  font-family: var(--text-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 1rem;
}

.about-tab-content p {
  color: #94A3B8;
  font-size: 0.95rem;
  line-height: 1.65;
}

.values-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.values-list li {
  font-size: 0.9rem;
  color: #CBD5E1;
  line-height: 1.5;
}

.values-list li strong {
  display: block;
  color: #FFFFFF;
  margin-bottom: 0.25rem;
}

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

/* ==========================================================================
   PRINCIPAL ENGINEERING PODS (TEAM)
   ========================================================================== */
.team-section {
  background: #081120;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
  margin-top: 3.5rem;
}

.team-card {
  background: var(--bg-surface);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 2.2rem 1.75rem;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.team-card:hover {
  transform: translateY(-8px);
  border-color: var(--glass-border-hover);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4), var(--glow-secondary);
}

.team-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: rgba(24, 198, 255, 0.08);
  border: 1px solid rgba(24, 198, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.75rem;
  color: var(--color-secondary);
  transition: transform 0.5s ease;
}

.team-card:hover .team-icon {
  transform: rotateY(180deg);
  color: #FFFFFF;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
}

.team-card h3 {
  font-family: var(--text-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 0.75rem;
}

.team-card p {
  font-size: 0.85rem;
  color: #94A3B8;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.pod-specs {
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding-top: 1rem;
  width: 100%;
}

.pod-specs span {
  display: block;
  font-size: 0.7rem;
  color: #64748B;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}

.pod-specs strong {
  font-size: 0.8rem;
  color: var(--color-secondary);
}

/* ==========================================================================
   WHY CHOOSE US COMPARISON MATRIX
   ========================================================================== */
.why-choose-us-section {
  background: rgba(8, 17, 32, 0.95);
  position: relative;
}

.comparison-container {
  max-width: 900px;
  margin: 3.5rem auto 0 auto;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  overflow: hidden;
  backdrop-filter: blur(16px);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.comparison-table th,
.comparison-table td {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.comparison-table th {
  font-family: var(--text-heading);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.02);
}

.comparison-table td {
  font-size: 0.9rem;
  color: #94A3B8;
}

.comparison-table th.highlight,
.comparison-table td.highlight {
  background: rgba(24, 198, 255, 0.04);
  color: #FFFFFF;
  border-left: 1px solid rgba(24, 198, 255, 0.08);
  border-right: 1px solid rgba(24, 198, 255, 0.08);
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-table td strong {
  color: #FFFFFF;
}

/* ==========================================================================
   PORTFOLIO CASE STUDY ENHANCEMENTS
   ========================================================================== */
.case-meta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem 1.25rem;
  margin: 1.25rem 0 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1rem 0;
}

.case-meta-grid div {
  font-size: 0.8rem;
  color: #94A3B8;
  display: flex;
  justify-content: space-between;
}

.case-meta-grid div span {
  color: #64748B;
}

.case-meta-grid div strong {
  color: #E2E8F0;
}

.case-tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.tech-tag-pill {
  font-family: var(--text-heading);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--color-secondary);
  background: rgba(24, 198, 255, 0.06);
  border: 1px solid rgba(24, 198, 255, 0.15);
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
}

/* ==========================================================================
   BLOG & INSIGHTS CARDS
   ========================================================================== */
.blog-section {
  background: #081120;
}

.blog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-top: 3.5rem;
}

.blog-card {
  background: var(--bg-surface);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.blog-card:hover {
  transform: translateY(-8px);
  border-color: var(--glass-border-hover);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), var(--glow-secondary);
}

.blog-image-placeholder {
  height: 180px;
  background: radial-gradient(circle at 30% 20%, rgba(10, 102, 255, 0.15) 0%, rgba(8, 17, 32, 0.8) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.blog-image-placeholder span {
  font-family: var(--text-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--color-secondary);
  text-shadow: var(--glow-secondary);
}

.blog-content {
  padding: 2.2rem;
}

.blog-date {
  font-size: 0.75rem;
  color: #64748B;
  display: block;
  margin-bottom: 0.8rem;
}

.blog-content h3 {
  font-family: var(--text-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.blog-content p {
  font-size: 0.9rem;
  color: #94A3B8;
  line-height: 1.6;
  margin-bottom: 1.8rem;
}

.blog-link-btn {
  font-family: var(--text-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-secondary);
  text-decoration: none;
  transition: var(--transition-fast);
}

.blog-link-btn:hover {
  color: #FFFFFF;
  text-shadow: var(--glow-secondary);
}

/* ==========================================================================
   ENTERPRISE FAQ STYLING OVERRIDES
   ========================================================================== */
.faq-section {
  background: rgba(8, 17, 32, 0.95);
}

.faq-accordion-wrap {
  max-width: 900px;
  margin: 3.5rem auto 0 auto;
}

/* ==========================================================================
   FOOTER NEWSLETTER & SOCIALS
   ========================================================================== */
.compliance-links a:hover {
  color: #FFFFFF !important;
}

.footer-newsletter-form input:focus {
  border-color: var(--color-secondary) !important;
  box-shadow: 0 0 10px rgba(24, 198, 255, 0.15);
}

/* ==========================================================================
   RESPONSIVE OVERRIDES
   ========================================================================== */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .comparison-table th,
  .comparison-table td {
    padding: 1.2rem;
  }
}


