/* landing.css - Hyper-Realistic Tech Theme for IT Software Development Company */

/* Root variables with vibrant neon accents and dark background variables */
:root {
  --neon-blue: #38bdf8;
  --neon-purple: #a855f7;
  --neon-teal: #14b8a6;
  --neon-emerald: #10b981;
  --bg-deep: #030712;
  --bg-slate: #0b1528;
  --border-glass: rgba(255, 255, 255, 0.08);
  --bg-glass: rgba(15, 23, 42, 0.65);
  --text-primary: #f8fafc;
  --text-muted: #94a3b8;
  --accent-gradient: linear-gradient(135deg, #3b82f6 0%, #a855f7 50%, #14b8a6 100%);
  --btn-glow: 0 0 20px rgba(59, 130, 246, 0.4);
}

/* Base Overrides for Landing Page Wrapper */
.landing-wrap {
  background-color: var(--bg-deep);
  background-image: 
    radial-gradient(circle at 50% -20%, rgba(59, 130, 246, 0.25) 0%, transparent 60%),
    radial-gradient(circle at 10% 25%, rgba(168, 85, 247, 0.18) 0%, transparent 40%),
    radial-gradient(circle at 90% 45%, rgba(244, 63, 94, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 15% 70%, rgba(20, 184, 166, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 85% 90%, rgba(236, 72, 153, 0.15) 0%, transparent 40%);
  color: var(--text-primary);
  font-family: 'Poppins', system-ui, sans-serif;
  overflow-x: hidden;
  position: relative;
}

/* Theme Sections (Alternating Dark / Light) */
.sec-dark {
  background-color: var(--bg-deep);
  color: var(--text-primary);
  border-bottom: 1px solid var(--border-glass);
  position: relative;
}

.sec-dark::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: 40px 40px;
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  pointer-events: none;
  z-index: 1;
}

.sec-dark .sec-heading {
  color: #fff;
}
.sec-dark .sec-subtitle {
  color: var(--neon-blue);
}

.sec-light {
  background: #ffffff !important;
  color: #0f172a;
  border-bottom: 1px solid #e2e8f0;
  position: relative;
  z-index: 2;
}
.sec-light::before {
  display: none !important;
}
.sec-light .sec-heading {
  color: #0f172a;
}
.sec-light .sec-subtitle {
  color: #2563eb;
}
.sec-light p {
  color: #475569;
}

/* Light Theme Card Overrides */
.sec-light .service-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}
.sec-light .service-card h3 {
  color: #0f172a;
}
.sec-light .service-card p {
  color: #475569;
}
.sec-light .service-icon-box {
  background: rgba(37, 99, 235, 0.05);
  border: 1px solid rgba(37, 99, 235, 0.1);
  color: #2563eb;
}

.sec-light .process-info-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
}
.sec-light .process-info-card h3 {
  color: #0f172a;
}
.sec-light .process-info-card p {
  color: #475569;
}
.sec-light .process-timeline::before {
  background: #cbd5e1;
}

.sec-light .testimonial-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}
.sec-light .testimonial-card .client-name {
  color: #0f172a;
}
.sec-light .testimonial-card .testimonial-quote {
  color: #334155;
}

/* Stats metrics light theme wrapper */
.stats-wrapper-light {
  background: #ffffff;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  padding: 4.5rem 1rem;
}
.stats-wrapper-light .stat-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}
.stats-wrapper-light .stat-number {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stats-wrapper-light .stat-label {
  color: #64748b;
}

/* Animations */
@keyframes pulse-glow {
  0%, 100% { opacity: 0.15; transform: scale(1); }
  50% { opacity: 0.3; transform: scale(1.05); }
}

@keyframes grid-move {
  0% { background-position: 0 0; }
  100% { background-position: 40px 40px; }
}

@keyframes text-shine {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes float-slow {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(1deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

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

/* Glowing background grid */
.landing-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: 40px 40px;
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  pointer-events: none;
  z-index: 1;
  animation: grid-move 20s linear infinite;
}

/* Hero Section */
.hero-wrapper {
  position: relative;
  padding: 8rem 1rem 6rem;
  z-index: 2;
  border-bottom: 1px solid var(--border-glass);
}

.hero-slider-window {
  max-width: 1220px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  width: 100%;
}

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

.hero-slide-item {
  flex: 0 0 100%;
  width: 100%;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 4rem;
  align-items: center;
  box-sizing: border-box;
}

/* Arrows for Hero Slider */
.hero-slider-arrow-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  user-select: none;
}

.hero-slider-arrow-left {
  left: 0;
}

.hero-slider-arrow-right {
  right: 0;
}

.hero-slider-arrow-btn:hover {
  background: var(--accent-gradient);
  border-color: transparent;
  box-shadow: 0 0 15px rgba(168, 85, 247, 0.4);
}

/* Dots for Hero Slider */
.hero-slider-dots-container {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 2rem;
  position: relative;
  z-index: 5;
}

.hero-slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-slider-dot.active {
  width: 28px;
  border-radius: 99px;
  background: var(--neon-blue);
  box-shadow: 0 0 10px rgba(56, 189, 248, 0.6);
}

.badge-premium {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.3);
  color: var(--neon-blue);
  padding: 0.5rem 1.1rem;
  border-radius: 99px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: 0 0 15px rgba(59, 130, 246, 0.15);
}

.hero-title {
  font-size: clamp(2.4rem, 5.5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero-title span {
  background: linear-gradient(to right, #38bdf8, #a855f7, #14b8a6);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: text-shine 6s ease infinite;
}

.hero-desc {
  font-size: 1.12rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 620px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}

/* Premium Tech Buttons */
.btn-premium {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  z-index: 2;
  cursor: pointer;
}

.btn-premium-primary {
  background: var(--accent-gradient);
  color: #fff;
  box-shadow: var(--btn-glow);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-premium-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(168, 85, 247, 0.6);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-premium-secondary {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid var(--border-glass);
  color: #fff;
  backdrop-filter: blur(10px);
}

.btn-premium-secondary:hover {
  background: rgba(15, 23, 42, 0.85);
  border-color: var(--neon-blue);
  transform: translateY(-2px);
  box-shadow: 0 0 15px rgba(56, 189, 248, 0.2);
}

/* Dashboard Mockup Component */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.dashboard-panel {
  width: 100%;
  max-width: 480px;
  background: var(--bg-glass);
  border-radius: 24px;
  border: 1px solid var(--border-glass);
  box-shadow: 
    0 25px 50px -12px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(59, 130, 246, 0.05);
  backdrop-filter: blur(16px);
  overflow: hidden;
  animation: float-slow 6s ease-in-out infinite;
}

.dashboard-header {
  background: rgba(11, 21, 40, 0.8);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  border-bottom: 1px solid var(--border-glass);
}

.window-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}
.dot-close { background: #ef4444; }
.dot-min { background: #eab308; }
.dot-max { background: #22c55e; }

.dashboard-tab {
  margin-left: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  color: var(--neon-blue);
  font-size: 0.72rem;
  font-family: monospace;
  padding: 0.25rem 0.65rem;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.dashboard-body {
  padding: 1.5rem;
  font-family: 'Courier New', Courier, monospace;
}

.sys-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}

.sys-card {
  background: rgba(3, 7, 18, 0.6);
  border: 1px solid var(--border-glass);
  border-radius: 12px;
  padding: 0.8rem;
  text-align: center;
}

.sys-label {
  font-size: 0.65rem;
  color: var(--text-muted);
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.35rem;
}

.sys-val {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  font-family: sans-serif;
}

.val-blue { color: var(--neon-blue); text-shadow: 0 0 10px rgba(56, 189, 248, 0.3); }
.val-purple { color: var(--neon-purple); text-shadow: 0 0 10px rgba(168, 85, 247, 0.3); }
.val-teal { color: var(--neon-teal); text-shadow: 0 0 10px rgba(20, 184, 166, 0.3); }

/* Live Terminal Log */
.terminal-console {
  background: #030712;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 1rem;
  font-size: 0.78rem;
  line-height: 1.5;
  color: #a7f3d0;
  min-height: 140px;
}

.term-prompt { color: #f472b6; }
.term-cursor {
  display: inline-block;
  width: 7px;
  height: 14px;
  background: var(--neon-teal);
  margin-left: 3px;
  vertical-align: middle;
  animation: blink 1s step-end infinite;
}

/* Trust Logo Marquee */
.logo-marquee-wrap {
  width: 100%;
  padding: 3rem 0;
  background: rgba(11, 21, 40, 0.5);
  border-bottom: 1px solid var(--border-glass);
  position: relative;
  overflow: hidden;
}

.logo-marquee-container {
  display: flex;
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, #000 15%, #000 85%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 15%, #000 85%, transparent);
}

.logo-marquee-track {
  display: flex;
  gap: 5rem;
  animation: marquee-scroll 25s linear infinite;
  white-space: nowrap;
}

.marquee-logo-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--text-muted);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  opacity: 0.55;
  transition: opacity 0.3s ease;
}

.marquee-logo-item:hover {
  opacity: 0.9;
  color: #fff;
}

.marquee-logo-item svg {
  fill: currentColor;
}

/* Sections Base */
.sec-padding {
  padding: 6.5rem 1rem;
  position: relative;
  z-index: 2;
}

.sec-title-area {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.sec-subtitle {
  color: var(--neon-blue);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.6rem;
  display: block;
}

.sec-heading {
  font-size: clamp(2.4rem, 5.5vw, 3.4rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-top: 0.5rem;
}

/* Services Grid (Glowing Cards) */
.services-section {
  background: rgba(3, 7, 18, 0.4);
}

.services-grid {
  max-width: 1220px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  backdrop-filter: blur(12px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  border: 1.5px solid transparent;
  background: var(--accent-gradient) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: transparent;
  box-shadow: 0 20px 40px rgba(124, 58, 237, 0.08);
}

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

.service-icon-box {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.8rem;
  color: var(--neon-blue);
  transition: all 0.3s ease;
}

.service-card:hover .service-icon-box {
  background: var(--accent-gradient);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 0 15px rgba(168, 85, 247, 0.4);
}

.service-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.9rem;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.94rem;
  line-height: 1.65;
}

/* Interactive Estimation Calculator Widget */
.estimator-wrapper {
  background: radial-gradient(circle at 80% 20%, rgba(168, 85, 247, 0.06) 0%, transparent 40%);
}

.estimator-container {
  max-width: 1100px;
  margin: 0 auto;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: 28px;
  padding: 3rem;
  backdrop-filter: blur(15px);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.estimator-form h3 {
  font-size: 1.45rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.estimator-group-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.8rem;
  display: block;
}

.estimator-options-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
  margin-bottom: 2rem;
}

/* Range Slider Styling */
.estimator-slider-container {
  margin: 1.5rem 0 2.5rem;
  position: relative;
}

.estimator-slider-label-val {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--neon-blue);
  margin-bottom: 0.6rem;
}

.estimator-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 10px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.08);
  outline: none;
  margin: 1.2rem 0;
  border: 1px solid var(--border-glass);
}

.estimator-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--accent-gradient);
  cursor: pointer;
  box-shadow: 0 0 15px rgba(56, 189, 248, 0.8);
  border: 2px solid #fff;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.estimator-slider::-webkit-slider-thumb:hover {
  transform: scale(1.25);
}

.estimator-slider-steps {
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  color: var(--text-muted);
  font-family: monospace;
}

.slider-step-label {
  cursor: pointer;
  transition: color 0.2s ease;
}
.slider-step-label:hover {
  color: #fff;
}

/* Custom Estimator Checkboxes */
.estimator-checkbox {
  display: none;
}

.estimator-label {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  border-radius: 12px;
  padding: 0.9rem 1rem;
  font-size: 0.88rem;
  color: var(--text-primary);
  font-weight: 500;
  cursor: pointer;
  user-select: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.estimator-label:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.2);
}

.estimator-checkbox:checked + .estimator-label {
  background: rgba(59, 130, 246, 0.08);
  border-color: var(--neon-blue);
  color: #fff;
  box-shadow: 0 0 15px rgba(56, 189, 248, 0.1);
}

.estimator-check-icon {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  border: 2px solid var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  color: transparent;
  transition: all 0.2s ease;
}

.estimator-checkbox:checked + .estimator-label .estimator-check-icon {
  border-color: var(--neon-blue);
  background: var(--neon-blue);
  color: #030712;
}

/* Estimation Display Screen */
.estimator-display {
  background: rgba(3, 7, 18, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 2.2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.estimator-display::before {
  content: '';
  position: absolute;
  top: -50px;
  left: -50px;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.display-title {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.display-price-box {
  margin: 1.8rem 0;
}

.display-price {
  font-size: 3.2rem;
  font-weight: 800;
  color: #fff;
  text-shadow: 0 0 30px rgba(56, 189, 248, 0.25);
  font-family: sans-serif;
  letter-spacing: -0.02em;
}

.display-timeline {
  font-size: 0.94rem;
  color: var(--neon-teal);
  font-weight: 600;
  background: rgba(20, 184, 166, 0.08);
  border: 1px solid rgba(20, 184, 166, 0.15);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  display: inline-block;
  margin-top: 0.5rem;
}

.estimator-btn {
  width: 100%;
  margin-top: 2rem;
}

/* Processes & Agile Timelines */
.process-timeline {
  max-width: 960px;
  margin: 0 auto;
  position: relative;
  padding-left: 3rem;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 9px;
  width: 2px;
  background: linear-gradient(to bottom, var(--neon-blue) 0%, var(--neon-purple) 50%, var(--neon-teal) 100%);
}

.process-step {
  position: relative;
  margin-bottom: 3.5rem;
}

.process-marker-glowing {
  position: absolute;
  left: -3rem;
  top: 6px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--bg-deep);
  border: 4px solid var(--neon-blue);
  z-index: 2;
  box-shadow: 0 0 10px var(--neon-blue);
}

.process-step:nth-child(2) .process-marker-glowing { border-color: var(--neon-purple); box-shadow: 0 0 10px var(--neon-purple); }
.process-step:nth-child(3) .process-marker-glowing { border-color: #ec4899; box-shadow: 0 0 10px #ec4899; }
.process-step:nth-child(4) .process-marker-glowing { border-color: var(--neon-teal); box-shadow: 0 0 10px var(--neon-teal); }
.process-step:nth-child(5) .process-marker-glowing { border-color: var(--neon-emerald); box-shadow: 0 0 10px var(--neon-emerald); }

.process-info-card {
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: 16px;
  padding: 1.8rem 2.2rem;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(10px);
}

.process-step:hover .process-info-card {
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.02);
  transform: translateX(4px);
}

/* Portfolio Image Slider Layout */
.portfolio-slider-container {
  max-width: 1220px;
  margin: 0 auto;
  position: relative;
  padding: 0 1rem;
}

.portfolio-slider-window {
  overflow: hidden;
  border-radius: 24px;
  width: 100%;
}

.portfolio-slider-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.portfolio-card {
  flex: 0 0 100%;
  box-sizing: border-box;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  overflow: hidden;
  backdrop-filter: blur(10px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  margin-right: 0;
}

@media (min-width: 768px) {
  .portfolio-card {
    flex: 0 0 calc(50% - 1rem);
    margin-right: 2rem;
  }
}

@media (min-width: 1024px) {
  .portfolio-card {
    flex: 0 0 calc(33.333% - 1.333rem);
    margin-right: 2rem;
  }
}

.portfolio-card:hover {
  transform: translateY(-6px);
  border-color: rgba(56, 189, 248, 0.25);
  box-shadow: 0 20px 40px rgba(56, 189, 248, 0.05);
}

.portfolio-img-box {
  height: 220px;
  overflow: hidden;
  border-bottom: 1px solid var(--border-glass);
  position: relative;
}

.portfolio-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.portfolio-card:hover .portfolio-img-box img {
  transform: scale(1.08);
}

/* Slider Controls */
.portfolio-slider-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.portfolio-slider-arrow {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
  user-select: none;
}

.portfolio-slider-arrow:hover {
  background: var(--accent-gradient);
  border-color: transparent;
  box-shadow: 0 0 15px rgba(168, 85, 247, 0.4);
}

.portfolio-slider-dots {
  display: flex;
  gap: 0.6rem;
  align-items: center;
}

.portfolio-slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
}

.portfolio-slider-dot.active {
  width: 24px;
  border-radius: 99px;
  background: var(--neon-blue);
  box-shadow: 0 0 10px rgba(56, 189, 248, 0.6);
}

.portfolio-body {
  padding: 1.8rem;
}

.portfolio-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--neon-blue);
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.15);
  padding: 0.25rem 0.75rem;
  border-radius: 6px;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}

.portfolio-body h3 {
  font-size: 1.35rem;
  color: #fff;
  margin-bottom: 0.6rem;
  font-weight: 700;
}

.portfolio-body p {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.portfolio-link {
  font-size: 0.88rem;
  color: var(--neon-teal);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: all 0.2s ease;
}

.portfolio-card:hover .portfolio-link {
  gap: 0.6rem;
  color: var(--neon-blue);
}

/* Stats metrics numbers bar */
.stats-wrapper {
  background: linear-gradient(180deg, rgba(11, 21, 40, 0.4) 0%, rgba(3, 7, 18, 0.9) 100%);
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
  padding: 4.5rem 1rem;
}

.stats-grid {
  max-width: 1220px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.stat-card {
  background: rgba(11, 21, 40, 0.3);
  border: 1px solid var(--border-glass);
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(to right, #38bdf8, #14b8a6);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
  margin-bottom: 0.35rem;
  font-family: sans-serif;
  letter-spacing: -0.02em;
}

.stat-label {
  color: var(--text-muted);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

/* Testimonial Cards */
.testimonials-section {
  background: rgba(3, 7, 18, 0.3);
}

.testimonials-grid {
  max-width: 1220px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  padding: 2.5rem 2.2rem;
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: border-color 0.3s ease;
}

.testimonial-card:hover {
  border-color: rgba(255, 255, 255, 0.15);
}

.rating-stars {
  color: #fbbf24;
  margin-bottom: 1.2rem;
  font-size: 0.95rem;
}

.testimonial-quote {
  font-size: 0.95rem;
  color: var(--text-primary);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.8rem;
  position: relative;
}

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

.client-avatar-glow {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--accent-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  box-shadow: 0 0 15px rgba(168, 85, 247, 0.3);
}

.client-name {
  font-size: 0.95rem;
  color: #fff;
  font-weight: 600;
  margin: 0 0 0.15rem;
}

.client-role {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* Contact Info & Forms (Cybernetic Inputs) */
.contact-grid {
  max-width: 1220px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 5rem;
}

.contact-info-col h2 {
  font-size: 2.4rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 1.2rem;
  letter-spacing: -0.015em;
}

.contact-info-col h2 span {
  background: linear-gradient(to right, var(--neon-blue), var(--neon-teal));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contact-info-col p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.65;
  margin-bottom: 2.5rem;
}

.details-list {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.detail-item {
  display: flex;
  gap: 1.2rem;
}

.detail-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neon-blue);
  font-size: 1.2rem;
}

.detail-content h4 {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  margin: 0 0 0.2rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.detail-content p {
  font-size: 1rem;
  color: #fff;
  margin: 0;
  font-weight: 600;
}

/* Cyber Form Card */
.contact-form-card {
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: 24px;
  padding: 3rem;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(12px);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.form-control {
  width: 100%;
  border: 1px solid var(--border-glass);
  background: rgba(3, 7, 18, 0.5);
  border-radius: 10px;
  padding: 0.85rem 1.1rem;
  font-size: 0.92rem;
  color: #fff;
  outline: none;
  font-family: inherit;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.form-control::placeholder {
  color: rgba(255,255,255,0.25);
}

.form-control:focus {
  border-color: var(--neon-blue);
  background: rgba(3, 7, 18, 0.8);
  box-shadow: 0 0 15px rgba(56, 189, 248, 0.15);
}

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

.btn-form-submit {
  width: 100%;
  margin-top: 1rem;
}

.form-alert {
  padding: 1rem;
  border-radius: 10px;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  display: none;
  font-weight: 500;
}

.form-alert-success {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #34d399;
  box-shadow: 0 0 15px rgba(16, 185, 129, 0.1);
}

/* Media Queries */
@media (max-width: 1024px) {
  .hero-slide-item {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3.5rem;
  }
  
  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .dashboard-panel {
    margin: 0 auto;
  }
  
  .estimator-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 2rem;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .sec-padding {
    padding: 4.5rem 1rem;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .estimator-options-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-form-card {
    padding: 1.8rem;
  }
}

/* Individual Glowing Service Cards Accent Colors */
.service-card:nth-child(1):hover {
  box-shadow: 0 20px 40px rgba(56, 189, 248, 0.15);
  border-color: rgba(56, 189, 248, 0.3);
}
.service-card:nth-child(1) .service-icon-box { color: var(--neon-blue); }

.service-card:nth-child(2):hover {
  box-shadow: 0 20px 40px rgba(168, 85, 247, 0.15);
  border-color: rgba(168, 85, 247, 0.3);
}
.service-card:nth-child(2) .service-icon-box { color: var(--neon-purple); }

.service-card:nth-child(3):hover {
  box-shadow: 0 20px 40px rgba(244, 63, 94, 0.15);
  border-color: rgba(244, 63, 94, 0.3);
}
.service-card:nth-child(3) .service-icon-box { color: #f43f5e; }

.service-card:nth-child(4):hover {
  box-shadow: 0 20px 40px rgba(16, 185, 129, 0.15);
  border-color: rgba(16, 185, 129, 0.3);
}
.service-card:nth-child(4) .service-icon-box { color: var(--neon-emerald); }

.service-card:nth-child(5):hover {
  box-shadow: 0 20px 40px rgba(20, 184, 166, 0.15);
  border-color: rgba(20, 184, 166, 0.3);
}
.service-card:nth-child(5) .service-icon-box { color: var(--neon-teal); }

.service-card:nth-child(6):hover {
  box-shadow: 0 20px 40px rgba(236, 72, 153, 0.15);
  border-color: rgba(236, 72, 153, 0.3);
}
.service-card:nth-child(6) .service-icon-box { color: #ec4899; }

/* Wizard Form Landing Page Styles */
.wizard-container {
  max-width: 820px;
  width: 100%;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  padding: 1.6rem 1.8rem;
  backdrop-filter: blur(15px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  position: relative;
  z-index: 5;
  overflow: hidden;
}

.wizard-progress-bar-container {
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 2px;
  margin-bottom: 1.2rem;
  overflow: hidden;
}

.wizard-progress-bar {
  width: 0%;
  height: 100%;
  background: var(--accent-gradient);
  transition: width 0.4s ease;
}

.wizard-steps-indicator {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.wizard-steps-indicator .step-lbl {
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
}

.wizard-steps-indicator .step-lbl.active {
  color: var(--neon-blue);
  text-shadow: 0 0 10px rgba(56, 189, 248, 0.4);
}

.wizard-step-pane {
  display: none;
}

.wizard-step-pane.active {
  display: block;
  animation: wizardFadeIn 0.4s ease;
}

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

.wizard-title {
  font-size: 1.28rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.35rem;
  line-height: 1.35;
}

.wizard-subtitle {
  font-size: 0.86rem;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}

.wizard-options-grid {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.2rem;
}

.wizard-option-card {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-glass);
  padding: 0.75rem 1.1rem;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-align: left;
  width: 100%;
}

.wizard-option-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--neon-blue);
  box-shadow: 0 10px 25px rgba(56, 189, 248, 0.05);
  transform: translateY(-2px);
}

.option-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
}

.option-text h3 {
  font-size: 0.96rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.15rem;
}

.option-text p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

.wizard-navigation-buttons {
  display: flex;
  justify-content: flex-start;
  margin-top: 1.5rem;
}

.wizard-summary-banner {
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.15);
  border-radius: 12px;
  padding: 1rem 1.2rem;
  font-size: 0.88rem;
  color: var(--text-primary);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.wizard-summary-banner strong {
  color: var(--neon-blue);
}

.wizard-form-box {
  display: flex;
  flex-direction: column;
}

.form-row-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-input-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-input-wrapper label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: left;
}

.form-input-wrapper input,
.form-input-wrapper textarea {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  padding: 0.9rem 1.1rem;
  border-radius: 12px;
  color: #fff;
  font-size: 0.92rem;
  outline: none;
  transition: all 0.3s ease;
}

.form-input-wrapper input:focus,
.form-input-wrapper textarea:focus {
  border-color: var(--neon-blue);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 15px rgba(56, 189, 248, 0.15);
}

.wizard-submit-buttons-row {
  display: flex;
  justify-content: space-between;
  margin-top: 1.8rem;
  gap: 1rem;
}

.wizard-success-alert {
  display: none;
  text-align: center;
  padding: 2rem 1rem;
  animation: wizardFadeIn 0.4s ease;
}

.wizard-success-alert span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 50%;
  font-size: 1.8rem;
  color: var(--neon-emerald);
  margin-bottom: 1.2rem;
}

.wizard-success-alert h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.6rem;
}

.wizard-success-alert p {
  font-size: 0.94rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}
