/* 
 * Cyberoshi Premium Corporate Technology Website
 * Core Custom Stylesheet - Revamped Elegant Dark Theme
 * Built for ultra-premium UX/UI metrics and full responsiveness
 */

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

:root {
  --bg-color: #03040a;
  --bg-darker: #010205;
  --primary-color: #00E5FF;
  --primary-glow: rgba(0, 229, 255, 0.35);
  --secondary-color: #7B61FF;
  --secondary-glow: rgba(123, 97, 255, 0.25);
  --accent-color: #00FFB3;
  --accent-glow: rgba(0, 255, 179, 0.3);
  --text-white: #FFFFFF;
  --text-muted: #A3A3C2;
  --card-bg: linear-gradient(135deg, rgba(8, 12, 32, 0.6) 0%, rgba(3, 5, 15, 0.4) 100%);
  --card-border: rgba(255, 255, 255, 0.07);
  --card-hover-border: rgba(0, 229, 255, 0.35);
  --font-display: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;
  --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base Styles & Custom Clean Scrollbar */
body {
  background-color: var(--bg-color);
  color: var(--text-white);
  font-family: var(--font-body);
  overflow-x: hidden;
  position: relative;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text-white);
}

::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--bg-darker);
}
::-webkit-scrollbar-thumb {
  background: rgba(123, 97, 255, 0.25);
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary-color);
}

/* Background Gradients & Mesh Overlays */
.bg-grid-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(rgba(0, 229, 255, 0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  z-index: 1;
}

.ambient-glow-1 {
  position: absolute;
  top: 5%;
  left: -15%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(123, 97, 255, 0.08) 0%, rgba(3, 4, 10, 0) 70%);
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}

.ambient-glow-2 {
  position: absolute;
  top: 45%;
  right: -15%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.07) 0%, rgba(3, 4, 10, 0) 70%);
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}

.ambient-glow-3 {
  position: absolute;
  bottom: 2%;
  left: 10%;
  width: 750px;
  height: 750px;
  background: radial-gradient(circle, rgba(0, 255, 179, 0.06) 0%, rgba(3, 4, 10, 0) 70%);
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}

/* Header & Translucent Navigation */
.navbar-custom {
  background: rgba(3, 4, 10, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  padding: 20px 0;
  z-index: 1050;
  transition: var(--transition-smooth);
}

.navbar-custom.scrolled {
  padding: 12px 0;
  background: rgba(1, 2, 5, 0.9);
  border-bottom: 1px solid rgba(0, 229, 255, 0.15);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}

.navbar-brand-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 24px;
  letter-spacing: -0.5px;
  color: var(--text-white) !important;
  transition: var(--transition-smooth);
}

.logo-dot {
  color: var(--primary-color);
  text-shadow: 0 0 12px var(--primary-glow);
}

.nav-link-custom {
  color: rgba(255, 255, 255, 0.8) !important;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 14px;
  padding: 8px 18px !important;
  transition: var(--transition-smooth);
  position: relative;
}

.nav-link-custom:hover {
  color: var(--primary-color) !important;
}

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

.nav-link-custom:hover::after,
.nav-link-custom.active::after {
  width: calc(100% - 36px);
}

.nav-link-custom.active {
  color: var(--primary-color) !important;
  font-weight: 600;
}

/* Premium Buttons Styling */
.btn-cyber-primary {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: #010205;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.2px;
  padding: 13px 30px;
  border-radius: 10px;
  border: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 4px 20px var(--primary-glow);
  transition: var(--transition-smooth);
}

.btn-cyber-primary:hover {
  color: var(--text-white);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(123, 97, 255, 0.45);
}

.btn-cyber-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
  z-index: -1;
  opacity: 0;
  transition: var(--transition-smooth);
}

.btn-cyber-primary:hover::before {
  opacity: 1;
}

.btn-cyber-secondary {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-white);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.2px;
  padding: 13px 30px;
  border-radius: 10px;
  transition: var(--transition-smooth);
}

.btn-cyber-secondary:hover {
  background: rgba(0, 229, 255, 0.05);
  border-color: var(--primary-color);
  color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 4px 20px rgba(0, 229, 255, 0.15);
}

/* Hero Section */
.hero-wrapper {
  position: relative;
  min-height: 100vh;
  margin-top: -89px;
  padding-top: 18vh;
  padding-bottom: 120px;
  display: flex;
  align-items: center;
  z-index: 2;
  overflow: hidden;
}

#hero-interactive-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: auto;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 229, 255, 0.04);
  border: 1px solid rgba(0, 229, 255, 0.18);
  color: var(--primary-color);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 28px;
}

.hero-badge i {
  font-size: 10px;
  animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
  0% { transform: scale(0.9); opacity: 0.5; }
  50% { transform: scale(1.2); opacity: 1; }
  100% { transform: scale(0.9); opacity: 0.5; }
}

.hero-title {
  font-size: clamp(2.6rem, 6.5vw, 4.4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-title .glow-text {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 50%, var(--accent-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  position: relative;
}

.hero-subheadline {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 650px;
  margin-bottom: 44px;
}

.hero-visual-container {
  position: relative;
  z-index: 2;
  perspective: 1000px;
}

.premium-terminal-card {
  background: rgba(10, 15, 30, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 229, 255, 0.2);
  border-radius: 16px;
  box-shadow: 0 15px 45px rgba(0, 10, 30, 0.6), 0 0 30px rgba(0, 229, 255, 0.1);
  overflow: hidden;
  position: relative;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.6s ease;
  transform-style: preserve-3d;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

.premium-terminal-card:hover {
  transform: rotateY(-5deg) rotateX(4deg) translateY(-8px);
  box-shadow: 0 25px 60px rgba(0, 10, 30, 0.8), 0 0 45px rgba(0, 229, 255, 0.25);
}

.terminal-header {
  background: rgba(3, 7, 18, 0.85);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 12px 20px;
}

.terminal-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 6px;
}

.terminal-dot.red { background-color: #ff5f56; }
.terminal-dot.yellow { background-color: #ffbd2e; }
.terminal-dot.green { background-color: #27c93f; }

.terminal-title {
  color: rgba(255, 255, 255, 0.45);
  font-size: 11px;
  letter-spacing: 1px;
}

.bg-cyber-pulse {
  background: rgba(0, 229, 255, 0.1);
  color: var(--primary-color);
  border: 1px solid rgba(0, 229, 255, 0.25);
  font-size: 10px;
  padding: 3px 10px;
  border-radius: 30px;
  animation: bg-flicker 2s infinite alternate;
}

@keyframes bg-flicker {
  0% { opacity: 0.7; box-shadow: 0 0 5px rgba(0, 229, 255, 0.1); }
  100% { opacity: 1; box-shadow: 0 0 15px rgba(0, 229, 255, 0.3); }
}

.terminal-body {
  padding: 24px;
}

.border-cyber-light {
  border-color: rgba(255, 255, 255, 0.08) !important;
}

.lighthouse-circle {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  border: 4px solid #00F5D4;
  background: radial-gradient(circle, rgba(0, 245, 212, 0.12) 0%, transparent 80%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 25px rgba(0, 245, 212, 0.35);
  animation: glow-pulse 3s infinite;
}

@keyframes glow-pulse {
  0% { transform: scale(1); box-shadow: 0 0 15px rgba(0, 245, 212, 0.25); }
  50% { transform: scale(1.03); box-shadow: 0 0 30px rgba(0, 245, 212, 0.5); }
  100% { transform: scale(1); box-shadow: 0 0 15px rgba(0, 245, 212, 0.25); }
}

.score-number {
  color: #00F5D4;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.compact-score-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 12px 14px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.compact-score-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(0, 229, 255, 0.15);
  transform: translateY(-2px);
}

.compact-label {
  font-family: var(--font-mono);
  font-size: 9px;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 1.2px;
  display: block;
}

.compact-value {
  font-size: 20px;
  font-weight: 700;
  margin: 6px 0;
  letter-spacing: -0.5px;
}

.compact-value.text-accent { color: var(--primary-color); }
.compact-value.text-primary { color: #7B61FF; }
.compact-value.text-green { color: #00F5D4; }
.compact-value.text-white { color: #ffffff; }

.compact-bar-bg {
  display: block;
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 10px;
  overflow: hidden;
}

.compact-bar {
  display: block;
  height: 100%;
  border-radius: 10px;
}

.compact-bar.text-accent { background: var(--primary-color); }
.compact-bar.text-primary { background: #7B61FF; }
.compact-bar.text-green { background: #00F5D4; }
.compact-bar.text-white { background: #ffffff; }

.cyber-mini-graph {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  height: 55px;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 8px;
  padding: 10px 14px;
}

.graph-bar {
  width: 11%;
  background: linear-gradient(180deg, rgba(0, 229, 255, 0.45) 0%, rgba(123, 97, 255, 0.15) 100%);
  border-radius: 4px 4px 0 0;
  transition: height 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.graph-bar.animated-pulse {
  background: linear-gradient(180deg, rgba(0, 255, 179, 0.7) 0%, rgba(0, 245, 212, 0.2) 100%);
  animation: graph-flicker 1.5s infinite alternate;
}

@keyframes graph-flicker {
  0% { filter: brightness(1); }
  100% { filter: brightness(1.25); }
}

.pulse-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #00F5D4;
  box-shadow: 0 0 10px #00F5D4;
  animation: blink 1.2s infinite alternate;
}

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

.ambient-glow-circle-purple {
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(123, 97, 255, 0.15) 0%, transparent 70%);
  bottom: -40px;
  left: -40px;
  z-index: -1;
  pointer-events: none;
}

.ambient-glow-circle-cyan {
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.13) 0%, transparent 70%);
  top: -50px;
  right: -50px;
  z-index: -1;
  pointer-events: none;
}

/* Sections Structure */
.section-padding {
  padding: 80px 0;
  position: relative;
  z-index: 3;
}

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

.section-tag {
  color: var(--primary-color);
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 13px;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(2.2rem, 4.5vw, 2.9rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.section-desc {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
  max-width: 650px;
  margin-bottom: 60px;
}

/* Custom Glass Cards (Service, Testimonial, Pricing, FAQ) */
.cyber-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 40px;
  height: 100%;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 10px 40px -15px rgba(0, 0, 0, 0.5);
  transition: var(--transition-smooth);
}

.cyber-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(0, 229, 255, 0.25), rgba(123, 97, 255, 0.2), transparent);
  pointer-events: none;
}

.cyber-card:hover {
  transform: translateY(-8px);
  border-color: var(--card-hover-border);
  background: linear-gradient(135deg, rgba(12, 18, 44, 0.7) 0%, rgba(5, 8, 22, 0.55) 100%);
  box-shadow: 0 20px 50px rgba(123, 97, 255, 0.08), 0 0 30px rgba(0, 229, 255, 0.04);
}

.card-icon-container {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  background: rgba(0, 229, 255, 0.04);
  border: 1px solid rgba(0, 229, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--primary-color);
  margin-bottom: 28px;
  transition: var(--transition-smooth);
}

.cyber-card:hover .card-icon-container {
  background: rgba(123, 97, 255, 0.12);
  border-color: var(--secondary-color);
  color: var(--secondary-color);
  box-shadow: 0 0 20px rgba(123, 97, 255, 0.25);
  transform: scale(1.05);
}

.card-title {
  font-size: 21px;
  font-weight: 700;
  margin-bottom: 16px;
  transition: var(--transition-smooth);
}

.cyber-card:hover .card-title {
  color: var(--primary-color);
}

.card-text {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 24px;
}

.card-bullet-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.card-bullet-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 12px;
}

.card-bullet-item i {
  color: var(--accent-color);
  font-size: 12px;
}

.card-action-btn {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  color: var(--primary-color);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-smooth);
}

.card-action-btn:hover {
  color: var(--accent-color);
}

.card-action-btn i {
  font-size: 11px;
  transition: var(--transition-smooth);
}

.card-action-btn:hover i {
  transform: translateX(5px);
}

/* Why Choose Us Style */
.feature-small-card {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
  padding: 24px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  background: rgba(255, 255, 255, 0.01);
  transition: var(--transition-smooth);
}

.feature-small-card:hover {
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(0, 255, 179, 0.2);
  transform: translateY(-4px);
}

.feature-small-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(0, 255, 179, 0.03);
  border: 1px solid rgba(0, 255, 179, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--accent-color);
  flex-shrink: 0;
  transition: var(--transition-smooth);
}

.feature-small-card:hover .feature-small-icon {
  background: rgba(0, 255, 179, 0.1);
  box-shadow: 0 0 15px rgba(0, 255, 179, 0.2);
}

.feature-small-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.feature-small-desc {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

/* Portfolio Section */
.portfolio-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 50px;
}

.portfolio-filter-btn {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.07);
  color: var(--text-muted);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  padding: 10px 24px;
  border-radius: 50px;
  transition: var(--transition-smooth);
}

.portfolio-filter-btn:hover,
.portfolio-filter-btn.active {
  background: rgba(0, 229, 255, 0.08);
  border-color: var(--primary-color);
  color: var(--primary-color);
  box-shadow: 0 4px 15px rgba(0, 229, 255, 0.1);
}

.portfolio-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #060919;
  border: 1px solid rgba(255, 255, 255, 0.05);
  height: 100%;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
  transition: var(--transition-smooth);
}

.portfolio-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(0, 229, 255, 0.2), transparent);
  z-index: 3;
  pointer-events: none;
}

.portfolio-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 229, 255, 0.3);
  box-shadow: 0 20px 40px rgba(0, 229, 255, 0.05);
}

.portfolio-image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #03040a;
}

.portfolio-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(1, 2, 5, 0.95) 0%, rgba(1, 2, 5, 0.45) 100%);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

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

.portfolio-card:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-view-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--primary-color);
  color: #010205;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 4px 20px var(--primary-glow);
  transform: translateY(20px);
  transition: var(--transition-smooth);
}

.portfolio-card:hover .portfolio-view-icon {
  transform: translateY(0);
}

.portfolio-details {
  padding: 30px;
}

.portfolio-category {
  color: var(--primary-color);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: block;
  margin-bottom: 10px;
}

.portfolio-project-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 18px;
}

.portfolio-card-btn {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  color: var(--text-white);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-smooth);
}

.portfolio-card-btn i {
  color: var(--accent-color);
  font-size: 11px;
  transition: var(--transition-smooth);
}

.portfolio-card:hover .portfolio-card-btn {
  color: var(--primary-color);
}

.portfolio-card-btn:hover i {
  transform: translateX(4px);
}

/* Process Section & Modular Timeline */
.timeline-wrapper {
  position: relative;
  padding: 50px 0;
}

.timeline-line {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
  opacity: 0.25;
  z-index: 1;
  display: none;
}

@media (min-width: 992px) {
  .timeline-line {
    display: block;
  }
}

.timeline-step {
  position: relative;
  z-index: 2;
  margin-bottom: 50px;
}

@media (min-width: 992px) {
  .timeline-step {
    margin-bottom: 0;
  }
}

.timeline-node {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--bg-color);
  border: 2px solid var(--primary-color);
  box-shadow: 0 0 15px rgba(0, 229, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--primary-color);
  font-size: 17px;
  margin: 0 auto 24px auto;
  transition: var(--transition-smooth);
}

.timeline-step:hover .timeline-node {
  background: var(--primary-color);
  color: #010205;
  box-shadow: 0 0 25px rgba(0, 229, 255, 0.7);
  transform: scale(1.1);
}

.timeline-step-title {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 10px;
  text-align: center;
}

.timeline-step-desc {
  color: var(--text-muted);
  font-size: 13.5px;
  line-height: 1.6;
  text-align: center;
  max-width: 220px;
  margin: 0 auto;
}

/* Testimonial Cards */
.testimonial-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 35px;
  height: 100%;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 10px 40px -15px rgba(0, 0, 0, 0.5);
  transition: var(--transition-smooth);
  position: relative;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(123, 97, 255, 0.25), transparent);
}

.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: rgba(123, 97, 255, 0.4);
  box-shadow: 0 15px 35px rgba(123, 97, 255, 0.08);
}

.testimonial-quote-icon {
  font-size: 26px;
  color: rgba(0, 229, 255, 0.2);
  margin-bottom: 18px;
}

.testimonial-stars {
  color: #FFB300;
  font-size: 12px;
  margin-bottom: 18px;
}

.testimonial-text {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--text-white);
  margin-bottom: 26px;
  font-style: italic;
  opacity: 0.95;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--secondary-color);
  box-shadow: 0 0 10px rgba(123, 97, 255, 0.2);
}

.testimonial-username {
  font-size: 15px;
  font-weight: 700;
  margin: 0;
}

.testimonial-userdept {
  font-size: 11.5px;
  color: var(--accent-color);
  margin: 0;
}

/* Stats Live Banner */
.stats-banner {
  background: radial-gradient(circle at center, rgba(8, 12, 32, 0.9) 0%, rgba(3, 4, 10, 0.98) 100%);
  border-top: 1px solid rgba(0, 229, 255, 0.12);
  border-bottom: 1px solid rgba(0, 229, 255, 0.12);
  padding: 70px 0;
  position: relative;
  z-index: 3;
}

.stat-box {
  text-align: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.5vw, 3.6rem);
  font-weight: 800;
  color: var(--primary-color);
  text-shadow: 0 0 20px rgba(0, 229, 255, 0.4);
  margin-bottom: 8px;
}

.stat-label {
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  color: var(--text-muted);
}

/* Technology Marquee Dynamic Slider */
.marquee-container {
  overflow: hidden;
  white-space: nowrap;
  padding: 30px 0;
  background: rgba(8, 12, 32, 0.4);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.marquee-content {
  display: inline-flex;
  animation: marquee 28s linear infinite;
  gap: 70px;
}

.tech-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  color: rgba(255, 255, 255, 0.55);
  transition: var(--transition-smooth);
}

.tech-badge i {
  font-size: 26px;
}

.tech-badge.active {
  color: var(--primary-color);
  text-shadow: 0 0 10px rgba(0, 229, 255, 0.2);
}

.tech-logo-img {
  width: 26px;
  height: 26px;
  object-fit: contain;
  transition: var(--transition-smooth);
}

.tech-badge.active .tech-logo-img {
  filter: drop-shadow(0 0 8px rgba(0, 229, 255, 0.4));
}

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

/* Pricing Section Custom Layout */
.price-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 45px 40px;
  height: 100%;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  position: relative;
  transition: var(--transition-smooth);
}

.price-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.05), transparent);
}

.price-card.popular {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, rgba(16, 18, 48, 0.75) 0%, rgba(5, 8, 22, 0.6) 100%);
  box-shadow: 0 15px 45px rgba(123, 97, 255, 0.25);
}

.price-card.popular::before {
  background: linear-gradient(90deg, var(--secondary-color), var(--primary-color), transparent);
}

.price-popular-tag {
  position: absolute;
  top: 22px;
  right: 22px;
  background: var(--secondary-color);
  color: var(--text-white);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 5px 14px;
  border-radius: 50px;
}

.price-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding-bottom: 28px;
  margin-bottom: 28px;
}

.price-name {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--primary-color);
  margin-bottom: 14px;
}

.price-card.popular .price-name {
  color: var(--secondary-color);
}

.price-amount {
  font-size: 42px;
  font-weight: 800;
  color: var(--text-white);
  letter-spacing: -1px;
}

.price-amount span {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-muted);
}

.price-features {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
}

.price-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14.5px;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.9);
}

.price-feature-item i {
  font-size: 14px;
}

.price-feature-item i.fa-check {
  color: var(--accent-color);
}

.price-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-color);
  box-shadow: 0 20px 45px rgba(0, 229, 255, 0.08);
}

/* FAQ Premium Accordion */
.accordion-item-custom {
  background: var(--card-bg) !important;
  border: 1px solid var(--card-border) !important;
  margin-bottom: 16px;
  border-radius: 12px !important;
  overflow: hidden;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: var(--transition-smooth);
}

.accordion-item-custom::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.03), transparent);
}

.accordion-button-custom {
  background: transparent !important;
  color: var(--text-white) !important;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  padding: 22px 28px;
  border: none !important;
  box-shadow: none !important;
  text-align: left;
}

.accordion-button-custom::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2300E5FF'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
  background-size: 18px;
  transition: var(--transition-smooth);
}

.accordion-item-custom:hover {
  border-color: rgba(0, 229, 255, 0.35) !important;
  background: linear-gradient(135deg, rgba(12, 18, 44, 0.5) 0%, rgba(5, 8, 22, 0.4) 100%) !important;
}

.accordion-body-custom {
  background: rgba(3, 4, 10, 0.3);
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.7;
  padding: 0 28px 24px 28px;
}

/* Contact Form Section */
.contact-form {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 24px;
  padding: 45px;
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  position: relative;
}

.contact-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), transparent);
}

.form-group-custom {
  margin-bottom: 24px;
}

.form-label-custom {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.form-control-custom {
  background: rgba(3, 4, 10, 0.7) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  color: var(--text-white) !important;
  padding: 14px 18px !important;
  font-size: 14.5px !important;
  border-radius: 10px !important;
  transition: var(--transition-smooth) !important;
}

.form-control-custom::placeholder {
  color: rgba(255, 255, 255, 0.3) !important;
}

.form-control-custom:focus {
  border-color: var(--primary-color) !important;
  box-shadow: 0 0 15px rgba(0, 229, 255, 0.2) !important;
  outline: none;
}

.form-select-custom {
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2300E5FF'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
  background-repeat: no-repeat !important;
  background-position: right 18px center !important;
  background-size: 16px 12px !important;
}

/* Footer Section */
.footer-wrap {
  background: #010206;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 65px 0 20px 0;
  position: relative;
  z-index: 3;
}

.footer-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 24px;
  color: var(--text-white);
  margin-bottom: 24px;
}

.footer-desc {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 320px;
}

.footer-socials {
  display: flex;
  gap: 14px;
}

.footer-social-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--text-white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
  text-decoration: none;
}

.footer-social-icon:hover {
  background: var(--primary-color);
  color: #010205;
  border-color: var(--primary-color);
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.45);
  transform: translateY(-4px);
}

.footer-title {
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 28px;
}

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

.footer-link-item {
  margin-bottom: 14px;
}

.footer-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  transition: var(--transition-smooth);
}

.footer-link:hover {
  color: var(--primary-color);
  padding-left: 6px;
}

.footer-contact-info {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact-item {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 16px;
  display: flex;
  gap: 12px;
}

.footer-contact-item i {
  color: var(--primary-color);
  margin-top: 4px;
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  font-size: 13px;
  color: var(--text-muted);
}

/* Luxury Success Custom Toast Notification */
.success-toast-custom {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: linear-gradient(135deg, rgba(8, 12, 32, 0.95) 0%, rgba(3, 5, 15, 0.95) 100%);
  border: 1px solid var(--accent-color);
  border-radius: 14px;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  gap: 18px;
  box-shadow: 0 15px 40px rgba(0, 255, 179, 0.15);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  z-index: 2000;
  transform: translateY(150px);
  opacity: 0;
  transition: var(--transition-smooth);
}

.success-toast-custom.show {
  transform: translateY(0);
  opacity: 1;
}

.success-toast-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 255, 179, 0.1);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

/*Animations */
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ==========================================================================
   ENTERPRISE QUALITY UPGRADE: LUXURY ANIMATIONS, CURSOR, PRELOADER, GLOWS
   ========================================================================== */

/* Premium Cinematic Preloader */
#custom-preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #020308;
  z-index: 10000;
  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);
  overflow: hidden;
}

#custom-preloader::before {
  content: '';
  position: absolute;
  width: 150%;
  height: 150%;
  background: radial-gradient(circle, rgba(123, 97, 255, 0.05) 0%, transparent 60%);
  animation: preloader-ambient-pulse 8s ease-in-out infinite alternate;
}

@keyframes preloader-ambient-pulse {
  0% { transform: scale(1) translate(-5%, -5%); }
  100% { transform: scale(1.1) translate(5%, 5%); }
}

.preloader-content {
  position: relative;
  z-index: 10001;
  width: 100%;
  max-width: 420px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.preloader-logo-container {
  overflow: hidden;
  margin-bottom: 24px;
}

.preloader-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 32px;
  letter-spacing: 2px;
  color: var(--text-white);
  animation: logo-glowing-glow 2.5s ease-in-out infinite;
}

@keyframes logo-glowing-glow {
  0%, 100% { text-shadow: 0 0 10px rgba(0, 229, 255, 0); }
  50% { text-shadow: 0 0 25px rgba(0, 229, 255, 0.4), 0 0 50px rgba(123, 97, 255, 0.2); }
}

.preloader-bar-bg {
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 16px;
  position: relative;
}

.preloader-progress-bar {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
  border-radius: 10px;
  box-shadow: 0 0 12px var(--primary-glow);
  transition: width 0.1s linear;
}

.preloader-meta-row {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-display);
}

.preloader-status {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  text-transform: uppercase;
}

.preloader-percentage {
  font-size: 13px;
  font-weight: 800;
  color: var(--primary-color);
  font-feature-settings: "tnum";
}

/* Custom Cursor Follower */
.custom-cursor {
  width: 22px;
  height: 22px;
  border: 1.5px solid var(--primary-color);
  border-radius: 50%;
  position: fixed;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 99999;
  mix-blend-mode: screen;
  box-shadow: 0 0 10px rgba(0, 229, 255, 0.15);
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1), 
              height 0.3s cubic-bezier(0.16, 1, 0.3, 1), 
              background-color 0.3s cubic-bezier(0.16, 1, 0.3, 1), 
              border-color 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, width, height, top, left;
  display: none;
}

.custom-cursor-dot {
  width: 6px;
  height: 6px;
  background-color: var(--accent-color);
  border-radius: 50%;
  position: fixed;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 99999;
  box-shadow: 0 0 10px var(--accent-glow);
  transition: transform 0.15s ease-out, background-color 0.3s ease;
  will-change: transform, top, left;
  display: none;
}

@media (min-width: 1025px) {
  /* Restored fallback system mouse cursor as requested for consistent hover and click behavior in all views */
}

/* Cursor Hover scaling states */
.custom-cursor.hover-expanded {
  width: 55px;
  height: 55px;
  background-color: rgba(0, 229, 255, 0.05);
  border-color: var(--accent-color);
  box-shadow: 0 0 24px rgba(0, 229, 255, 0.35), inset 0 0 10px rgba(0, 229, 255, 0.1);
}

.custom-cursor-dot.hover-expanded {
  background-color: var(--primary-color);
  transform: translate(-50%, -50%) scale(1.6);
  box-shadow: 0 0 15px var(--primary-glow);
}

/* Magnetic Interaction Support */
.magnetic-wrap {
  display: inline-block;
  position: relative;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* 3D Glassmorphism Cards & Interactive Shimmers */
.cyber-card, .price-card, .testimonial-card {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --shine-x: 50%;
  --shine-y: 50%;
  transform: perspective(1000px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transition: transform 0.1s ease-out, border-color 0.4s ease, box-shadow 0.4s ease;
  transform-style: preserve-3d;
}

/* Luxury card lightning sweep effect using custom mouse coordinate values */
.cyber-card::after, .price-card::after, .testimonial-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: radial-gradient(circle 120px at var(--shine-x) var(--shine-y), rgba(255, 255, 255, 0.08) 0%, transparent 80%);
  pointer-events: none;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.cyber-card:hover::after, .price-card:hover::after, .testimonial-card:hover::after {
  opacity: 1;
}

/* Interactive Card Checklist Items lighting up */
.cyber-card .card-bullet-item {
  transition: transform 0.3s ease, color 0.3s ease;
}

.cyber-card .card-bullet-item i {
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), color 0.3s ease, text-shadow 0.3s ease;
}

.cyber-card:hover .card-bullet-item {
  transform: translateX(4.5px);
  color: #FFFFFF;
}

.cyber-card:hover .card-bullet-item i {
  transform: scale(1.15) rotate(5deg);
  color: var(--primary-color);
  text-shadow: 0 0 10px rgba(0, 229, 255, 0.7);
}

/* Enhanced Glassmorphism borders */
.cyber-card, .price-card, .testimonial-card {
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(135deg, rgba(8, 12, 32, 0.45) 0%, rgba(3, 5, 15, 0.45) 100%);
}

.price-card.popular {
  border-color: rgba(123, 97, 255, 0.5);
  box-shadow: 0 15px 45px rgba(123, 97, 255, 0.2);
}

/* Advanced Hover Effects for Buttons & Logo */
.btn-cyber-primary {
  overflow: hidden;
}

.btn-cyber-primary::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 30%;
  height: 200%;
  background: rgba(255, 255, 255, 0.25);
  transform: rotate(35deg);
  transition: none;
  pointer-events: none;
  z-index: 2;
}

.btn-cyber-primary:hover::after {
  left: 140%;
  transition: left 0.8s ease-in-out;
}

.navbar-brand-logo:hover .logo-dot {
  color: var(--accent-color) !important;
  text-shadow: 0 0 20px var(--accent-glow);
}

/* Advanced typography & rhythmic sections alignment */
.section-tag {
  letter-spacing: 3px;
  font-size: 12px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
  display: inline-block;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.section-title {
  letter-spacing: -1px;
  font-family: var(--font-display);
  font-weight: 800;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -1.5px;
}

/* Smooth Scrolling Parallax Elements */
.scroll-parallax-bg {
  transform: translateY(var(--scroll-offset, 0px));
  will-change: transform;
}

/* Particle Flashes inside Cards */
.card-flash-node {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--primary-color);
  border-radius: 50%;
  filter: blur(1px);
  box-shadow: 0 0 8px var(--primary-color);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.cyber-card:hover .card-flash-node {
  opacity: 0.6;
}

/* Luxury Process Node Pulse */
@keyframes nodePulseGlow {
  0% { box-shadow: 0 0 0 0 rgba(0, 229, 255, 0.4); }
  70% { box-shadow: 0 0 0 12px rgba(0, 229, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 229, 255, 0); }
}

.timeline-node {
  animation: nodePulseGlow 2.5s infinite;
}

/* Premium Inline SEO Link Anchor Styling */
.seo-link {
  color: var(--primary-color) !important;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px dashed rgba(0, 229, 255, 0.4);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  display: inline-block;
}

.seo-link:hover {
  color: var(--accent-color) !important;
  border-bottom-color: var(--accent-color);
  text-shadow: 0 0 10px rgba(0, 255, 179, 0.6);
  transform: translateY(-1px);
}

/* -------------------------------------------------------------------------- */
/* NEW SECTIONS STYLING (TRUST, INDUSTRIES, TEAM, REVIEWS & CONVERSION SUITE) */
/* -------------------------------------------------------------------------- */

/* Client Logo Wall & Credentials Badge */
.client-logo-grid {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.logo-item {
  color: rgba(255, 255, 255, 0.35);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  transition: color 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.logo-item:hover {
  color: var(--primary-color);
  text-shadow: 0 0 15px var(--primary-glow);
  transform: scale(1.05);
}

.credential-badge {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-family: var(--font-sans);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
  height: 100%;
}

.credential-badge:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(0, 229, 255, 0.3);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 229, 255, 0.08);
}

/* Industries We Serve Card */
.industry-card {
  background: linear-gradient(135deg, rgba(8, 12, 32, 0.5) 0%, rgba(3, 5, 15, 0.5) 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 30px;
  position: relative;
  overflow: hidden;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.industry-icon {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  background: rgba(0, 229, 255, 0.05);
  border: 1px solid rgba(0, 229, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--primary-color);
  margin-bottom: 22px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.industry-title {
  font-size: 18px;
  font-family: var(--font-display);
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 12px;
}

.industry-text {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
  margin-bottom: 20px;
}

.industry-badge {
  font-family: var(--font-mono);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--accent-color);
  background: rgba(0, 255, 179, 0.08);
  border: 1px solid rgba(0, 255, 179, 0.15);
  padding: 4px 10px;
  border-radius: 4px;
  display: inline-block;
  text-transform: uppercase;
}

.industry-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 229, 255, 0.35);
  box-shadow: 0 12px 30px rgba(0, 229, 255, 0.12);
}

.industry-card:hover .industry-icon {
  background: var(--primary-color);
  color: #03050f;
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 0 15px var(--primary-glow);
}

/* Team Card */
.team-card {
  background: linear-gradient(135deg, rgba(8, 12, 32, 0.4) 0%, rgba(3, 5, 15, 0.4) 100%);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  overflow: hidden;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.team-image-container {
  position: relative;
  width: 100%;
  padding-top: 100%; /* 1:1 Aspect Ratio */
  overflow: hidden;
  background: #03050f;
}

.team-avatar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(40%) contrast(110%);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.team-social-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(3, 5, 15, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 2;
}

.team-social-overlay a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 16px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.team-social-overlay a:hover {
  background: var(--primary-color);
  color: #03050f;
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 0 15px var(--primary-glow);
}

.team-info {
  padding: 24px;
}

.team-name {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 4px;
}

.team-role {
  font-size: 12px;
  font-family: var(--font-mono);
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.team-bio {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
  margin-bottom: 16px;
}

.team-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.skill-tag {
  font-size: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 2px 8px;
  border-radius: 30px;
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--font-sans);
}

.team-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 229, 255, 0.3);
  box-shadow: 0 15px 35px rgba(0, 229, 255, 0.08);
}

.team-card:hover .team-avatar {
  transform: scale(1.08);
  filter: grayscale(0%) contrast(100%);
}

.team-card:hover .team-social-overlay {
  opacity: 1;
}

/* Google Reviews Card */
.google-review-card {
  background: linear-gradient(135deg, rgba(8, 12, 32, 0.4) 0%, rgba(3, 5, 15, 0.4) 100%);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 24px;
  height: 100%;
  transition: all 0.3s ease;
}

.google-review-card:hover {
  border-color: rgba(0, 229, 255, 0.25);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 229, 255, 0.05);
}

.reviewer-avatar-placeholder {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  color: #03050f;
  font-family: var(--font-display);
}

.reviewer-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14.5px;
  color: #FFFFFF;
  margin-bottom: 2px;
}

.reviewer-title {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0;
}

.review-text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 0;
}

/* Call Booking Selector Buttons */
.booking-date-btn {
  flex: 1;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  padding: 10px 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
}

.booking-date-btn .day-label {
  font-size: 10px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.booking-date-btn .num-label {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.85);
}

.booking-date-btn:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(0, 229, 255, 0.25);
  color: #FFFFFF;
}

.booking-date-btn.active {
  background: rgba(0, 229, 255, 0.08) !important;
  border-color: var(--primary-color) !important;
  box-shadow: 0 0 15px rgba(0, 229, 255, 0.15);
}

.booking-date-btn.active .day-label {
  color: var(--primary-color);
}

.booking-date-btn.active .num-label {
  color: #FFFFFF;
}

.booking-slot-btn {
  width: 100%;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 6px;
  padding: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.2s ease;
  cursor: pointer;
}

.booking-slot-btn:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(0, 229, 255, 0.2);
  color: #FFFFFF;
}

.booking-slot-btn.active {
  background: rgba(0, 255, 179, 0.08) !important;
  border-color: var(--accent-color) !important;
  color: #FFFFFF !important;
  box-shadow: 0 0 12px rgba(0, 255, 179, 0.15);
}

/* PageSpeed Terminal scan classes */
.scan-log-line {
  font-family: var(--font-mono);
  margin-bottom: 4px;
}

/* Portfolio project meta tags styles */
.portfolio-meta-text {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 8px !important;
}

.portfolio-metric-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 4px;
  padding: 4px 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(255,255,255,0.9);
  margin-bottom: 16px !important;
}

/* Custom designed brand logo style */
.logo-symbol-wrapper {
  position: relative;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.1) 0%, rgba(0, 255, 179, 0.1) 100%);
  border: 1.5px solid var(--primary-color);
  border-radius: 8px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0, 229, 255, 0.2);
}

.logo-symbol-icon {
  font-size: 14px;
  color: var(--primary-color);
  text-shadow: 0 0 8px var(--primary-glow);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.navbar-brand-logo:hover .logo-symbol-wrapper {
  border-color: var(--accent-color);
  transform: rotate(45deg);
  box-shadow: 0 0 15px rgba(0, 255, 179, 0.4);
  background: linear-gradient(135deg, rgba(0, 255, 179, 0.15) 0%, rgba(0, 229, 255, 0.15) 100%);
}

.navbar-brand-logo:hover .logo-symbol-icon {
  color: var(--accent-color);
  text-shadow: 0 0 8px var(--accent-glow);
  transform: rotate(-45deg) scale(1.1);
}

.logo-text {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.5px;
  background: linear-gradient(90deg, #FFFFFF 0%, rgba(255, 255, 255, 0.85) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.3s ease;
}

.navbar-brand-logo:hover .logo-text {
  background: linear-gradient(90deg, var(--primary-color) 0%, #FFFFFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* CYBER GLASSMORPHIC MODAL STYLES */
.modal-cyber {
  backdrop-filter: blur(10px);
  background: rgba(1, 2, 5, 0.4);
}

.modal-cyber-content {
  background: linear-gradient(135deg, rgba(8, 12, 32, 0.95) 0%, rgba(3, 5, 15, 0.95) 100%);
  border: 1px solid rgba(0, 229, 255, 0.25) !important;
  box-shadow: 0 0 35px rgba(0, 229, 255, 0.15);
  border-radius: 16px;
  overflow: hidden;
}

.modal-cyber-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px;
}

.modal-cyber-title {
  font-family: var(--font-display);
  font-weight: 800;
  color: #FFFFFF;
  text-shadow: 0 0 10px rgba(0, 229, 255, 0.2);
  font-size: 20px;
}

.modal-cyber-body {
  padding: 30px 24px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.7;
  max-height: 70vh;
  overflow-y: auto;
}

.modal-cyber-body::-webkit-scrollbar {
  width: 5px;
}
.modal-cyber-body::-webkit-scrollbar-track {
  background: rgba(255,255,255,0.01);
}
.modal-cyber-body::-webkit-scrollbar-thumb {
  background: rgba(0, 229, 255, 0.3);
  border-radius: 10px;
}

.modal-cyber-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 16px 24px;
  background: rgba(1, 2, 5, 0.3);
}

.btn-cyber-close {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  font-family: var(--font-mono);
  font-size: 12px;
  padding: 8px 18px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.btn-cyber-close:hover {
  background: var(--primary-color);
  color: #03050f;
  border-color: var(--primary-color);
  box-shadow: 0 0 15px var(--primary-glow);
}

.modal-section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--primary-color);
  margin-top: 20px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.modal-section-title:first-of-type {
  margin-top: 0;
}

.btn-close-cyber {
  color: rgba(255, 255, 255, 0.5);
  background: transparent;
  border: none;
  font-size: 18px;
  transition: all 0.2s ease;
  cursor: pointer;
}

.btn-close-cyber:hover {
  color: var(--accent-color);
  transform: rotate(90deg);
}


