/* ============================================================
   NDMSK Technology — Premium SaaS CSS
   Dark theme · Glassmorphism · Gradient · Smooth Animations
   ============================================================ */

/* ─── ROOT VARIABLES ──────────────────────────────────────── */
:root {
  --bg-primary: #050510;
  --bg-secondary: #0a0a1f;
  --bg-card: rgba(255, 255, 255, 0.04);
  --bg-card-hover: rgba(255, 255, 255, 0.08);
  --border-color: rgba(255, 255, 255, 0.08);
  --border-glow: rgba(99, 102, 241, 0.3);

  --blue: #6366f1;
  --cyan: #06b6d4;
  --purple: #8b5cf6;
  --pink: #ec4899;
  --green: #10b981;
  --yellow: #f59e0b;
  --red: #ef4444;
  --indigo: #4f46e5;

  --grad-1: linear-gradient(135deg, #6366f1, #06b6d4);
  --grad-2: linear-gradient(135deg, #8b5cf6, #ec4899);
  --grad-3: linear-gradient(135deg, #06b6d4, #10b981);
  --grad-4: linear-gradient(135deg, #f59e0b, #ef4444);
  --grad-hero: linear-gradient(135deg, #0a0a2e 0%, #050510 50%, #0a0a2e 100%);

  --text-primary: #f1f5f9;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;

  --font-main: 'Inter', 'Montserrat', sans-serif;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-glow: 0 0 40px rgba(99, 102, 241, 0.2);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
  --shadow-hover: 0 20px 60px rgba(99, 102, 241, 0.3);
}

/* ─── RESET & BASE ────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-main);
  line-height: 1.7;
  overflow-x: hidden;
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: var(--blue);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--purple);
}

/* ─── SELECTION ───────────────────────────────────────────── */
::selection {
  background: rgba(99, 102, 241, 0.3);
  color: #fff;
}

/* ─── TYPOGRAPHY ──────────────────────────────────────────── */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
}

.gradient-text {
  background: var(--grad-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-purple {
  background: var(--grad-2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-green {
  background: var(--grad-3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-yellow {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── LAYOUT HELPERS ──────────────────────────────────────── */
.section-padding {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

#typing-text {
  background: var(--grad-2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

#typing-text::after {
  content: '|';
  -webkit-text-fill-color: var(--purple);
  margin-left: 5px;
  animation: blink 0.8s infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

.section-badge {
  display: inline-block;
  padding: 6px 20px;
  background: rgba(99, 102, 241, 0.15);
  border: 1px solid rgba(99, 102, 241, 0.3);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 20px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* ─── ANIMATED BACKGROUND ─────────────────────────────────── */
.animated-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
  animation: float-orb 8s ease-in-out infinite;
  display: none;
  /* Removed blue light effect */
}

.bg-orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #6366f1, transparent);
  top: -200px;
  left: -200px;
  animation-duration: 10s;
}

.bg-orb-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #8b5cf6, transparent);
  top: 30%;
  right: -150px;
  animation-duration: 13s;
  animation-delay: -3s;
}

.bg-orb-3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #06b6d4, transparent);
  bottom: 10%;
  left: 20%;
  animation-duration: 11s;
  animation-delay: -6s;
}

@keyframes float-orb {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(30px, -40px) scale(1.05);
  }

  66% {
    transform: translate(-20px, 20px) scale(0.95);
  }
}

/* Animated grid */
.animated-grid {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(rgba(99, 102, 241, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99, 102, 241, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: grid-move 20s linear infinite;
}

@keyframes grid-move {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(60px, 60px);
  }
}

/* ─── SCROLL PROGRESS ─────────────────────────────────────── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--grad-1);
  z-index: 10000;
  width: 0%;
  transition: width 0.1s;
}

/* ─── BACK TO TOP ─────────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  background: var(--grad-1);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(99, 102, 241, 0.5);
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(99, 102, 241, 0.7);
}

/* ─── NAVBAR ──────────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: var(--transition);
  background: transparent;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

#navbar.scrolled {
  background: rgba(5, 5, 16, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

/* ─── HERO SECTION ────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 650px;
  overflow: hidden;
  background: #000;
  display: flex;
  align-items: center;
}

#glitch-bg {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  z-index: 1;
  opacity: 0.4;
  pointer-events: none;
}

.hero-brand-structured {
  margin-bottom: 32px;
  animation: fade-up 0.8s ease both;
}

.hero-title-main {
  font-size: clamp(4rem, 12vw, 9rem);
  font-weight: 950;
  line-height: 0.9;
  letter-spacing: -4px;
  text-transform: uppercase;
  margin-bottom: 0;
  background: linear-gradient(to right, #f59e0b 20%, #fbbf24 40%, #fff 50%, #fbbf24 60%, #f59e0b 80%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textShine 4s linear infinite;
  /* Ultimate visibility - removed indigo glow */
  text-shadow: 0 15px 45px rgba(0, 0, 0, 0.7);
  filter: drop-shadow(0 4px 15px rgba(245, 158, 11, 0.3));
}

@keyframes textShine {
  0% {
    background-position: 200% center;
  }

  100% {
    background-position: 0% center;
  }
}

.hero-title-suffix {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 5px;
  padding-left: 4px;
}

.hero-title-suffix .gradient-text {
  font-size: clamp(1.2rem, 3.5vw, 2.2rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--blue);
  background: none;
  -webkit-text-fill-color: initial;
}

.hero-title-suffix .pvt-ltd {
  font-size: clamp(1.2rem, 3.5vw, 2.2rem);
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--blue);
  font-weight: 700;
  border-left: 1px solid rgba(99, 102, 241, 0.3);
  padding-left: 15px;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  height: 100%;
  padding-top: 100px;
  /* Added gap from navbar */
  padding-left: 3%;
  color: white;
  max-width: 1000px;
  background: transparent;
}

.hero-tagline-text {
  font-size: clamp(1rem, 2vw, 1.1rem);
  line-height: 1.5;
  color: var(--text-secondary);
  max-width: 700px;
  margin-top: 60px;
  margin-bottom: 40px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;

  /* Subtle Visibility Background */
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 10px 25px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: inline-block;
  font-family: monospace;
  /* Applied for the scrambled text effect */
}

.char {
  will-change: transform;
  display: inline-block;
}

.tagline-sub {
  display: block;
  font-size: 0.85em;
  color: var(--text-muted);
  margin-top: 10px;
  letter-spacing: 5px;
  opacity: 0.8;
}



@media (max-width: 768px) {
  .hero-content {
    padding-left: 5%;
    align-items: center;
    text-align: center;
    width: 100%;
  }

  #glitch-bg {
    opacity: 0.4;
  }
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 100%;
  margin: 0;
  padding: 0 30px 0 10px;
}

.navbar-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-combined {
  display: flex;
  align-items: center;
  gap: 0;
}

.logo-combined .icon-img {
  height: 75px;
  width: auto;
  object-fit: contain;
  transform: translateX(15px);
  padding: 0;
  z-index: 1;
}

.logo-combined .text-img {
  height: 55px;
  width: auto;
  object-fit: contain;
  padding: 0;
  transform: translateX(-45px);
}

.logo-combined.footer-logo {
  gap: 5px;
}

.logo-combined.footer-logo .icon-img {
  height: 48px;
  transform: none !important;
}

.logo-combined.footer-logo .text-img {
  height: 30px;
  transform: none !important;
}

.navbar-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.navbar-menu a {
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
}

.navbar-menu a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 4px;
  height: 4px;
  background: var(--blue);
  border-radius: 50%;
  transition: var(--transition);
}

.navbar-menu a:hover,
.navbar-menu a.active {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.05);
}

.navbar-menu a:hover::after,
.navbar-menu a.active::after {
  transform: translateX(-50%) scaleX(1);
}

.navbar-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: var(--grad-1);
  border: none;
  border-radius: 10px;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
}

.navbar-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(99, 102, 241, 0.6);
}

.navbar-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.navbar-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}

/* ─── HERO SECTION ────────────────────────────────────────── */
#home {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--grad-hero);
  padding: 120px 0 80px;
}

.hero-container {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 60px;
  min-height: calc(100vh - 120px);
}

.hero-content {
  text-align: left;
  flex: 1;
  max-width: 700px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(99, 102, 241, 0.12);
  border: 1px solid rgba(99, 102, 241, 0.25);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--blue);
  letter-spacing: 1px;
  margin-bottom: 32px;
  animation: fade-down 0.8s ease both;
}

.hero-badge .badge-dot {
  width: 6px;
  height: 6px;
  background: var(--blue);
  border-radius: 50%;
  animation: pulse-dot 1.5s ease infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(1.5);
  }
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
  animation: fade-up 0.8s ease 0.1s both;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: var(--text-secondary);
  margin-bottom: 48px;
  max-width: 600px;
  animation: fade-up 0.8s ease 0.2s both;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-bottom: 64px;
  animation: fade-up 0.8s ease 0.3s both;
}

.btn-primary-glow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  background: var(--grad-1);
  border: none;
  border-radius: 12px;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(99, 102, 241, 0.5);
  text-decoration: none;
}

.btn-primary-glow:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(99, 102, 241, 0.7);
  color: #fff;
}

.btn-outline-glass {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  color: var(--text-primary);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  backdrop-filter: blur(10px);
  text-decoration: none;
}

.btn-outline-glass:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(99, 102, 241, 0.4);
  color: var(--text-primary);
  transform: translateY(-3px);
}

/* Hero Stats */
.hero-stats {
  display: flex;
  justify-content: flex-start;
  gap: 32px;
  flex-wrap: wrap;
  animation: fade-up 0.8s ease 0.4s both;
}

.hero-visual {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-visual-container {
  position: relative;
}

.hero-glow-sphere {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
  z-index: -1;
}

.stat-item {
  text-align: center;
  padding: 20px 28px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

.stat-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(99, 102, 241, 0.3);
  transform: translateY(-4px);
}

.stat-number {
  font-size: 2.2rem;
  font-weight: 900;
  background: var(--grad-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 1px;
}

/* Hero floating particles */
.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--blue);
  border-radius: 50%;
  opacity: 0;
  animation: particle-float linear infinite;
}

@keyframes particle-float {
  0% {
    opacity: 0;
    transform: translateY(0) scale(0);
  }

  10% {
    opacity: 0.8;
    transform: translateY(-20px) scale(1);
  }

  90% {
    opacity: 0.3;
  }

  100% {
    opacity: 0;
    transform: translateY(-120px) scale(0.5);
  }
}

/* ─── GLASSMORPHISM CARD ──────────────────────────────────── */
.glass-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: var(--transition);
}

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

/* ─── ABOUT SECTION ───────────────────────────────────────── */
#about {
  position: relative;
  z-index: 1;
  padding: 100px 0;
  overflow: hidden;
}

/* Floating Glow Shapes */
.about-floating-shapes {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

.a-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
  animation: float-slow 10s infinite alternate ease-in-out;
}

.shape-glow-1 {
  width: 300px;
  height: 300px;
  background: var(--blue);
  top: -10%;
  right: -5%;
}

.shape-glow-2 {
  width: 250px;
  height: 250px;
  background: var(--accent-purple, #8b5cf6);
  bottom: -10%;
  left: -5%;
  animation-delay: -5s;
}

@keyframes float-slow {
  0% {
    transform: translateY(0) scale(1);
  }

  100% {
    transform: translateY(-40px) scale(1.1);
  }
}

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

.about-content h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 20px;
}

.about-content p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 24px;
  line-height: 1.8;
}

.about-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-visual-card {
  position: relative;
  padding: 50px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  backdrop-filter: blur(20px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2;
}

.about-visual-card:hover {
  transform: translateY(-10px) rotateX(5deg) rotateY(-5deg);
  border-color: rgba(99, 102, 241, 0.4);
  box-shadow: 0 35px 60px -15px rgba(99, 102, 241, 0.3);
}

.about-stat-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.about-stat {
  text-align: left;
  padding: 24px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.about-stat:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
}

.about-stat-num {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 10px;
}

.about-stat-lbl {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.about-tech-tag {
  position: absolute;
  top: -20px;
  right: -20px;
  padding: 12px 20px;
  background: var(--blue);
  color: white;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 10px 20px rgba(99, 102, 241, 0.4);
  z-index: 3;
  animation: bounce-slow 3s infinite ease-in-out;
}

@keyframes bounce-slow {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@media (max-width: 991px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }

  .about-content {
    order: 2;
  }

  .about-visual {
    order: 1;
    max-width: 500px;
    margin: 0 auto;
  }

  .about-stat-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ─── SERVICES SECTION ────────────────────────────────────── */
#services {
  position: relative;
  z-index: 1;
  padding: 100px 0;
  background: linear-gradient(180deg, transparent, rgba(10, 10, 30, 0.5), transparent);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  width: 100%;
}

.service-card {
  position: relative;
  padding: 36px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(20px);
  transition: var(--transition);
  overflow: hidden;
  cursor: default;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--card-gradient, var(--grad-1));
  opacity: 0;
  transition: var(--transition);
}

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

.service-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-glow);
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}

.service-card::after,
.course-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at var(--x, 50%) var(--y, 50%), rgba(255, 255, 255, 0.08) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 1;
}

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

.service-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 24px;
  transition: var(--transition);
  flex-shrink: 0;
}

.service-card:hover .service-icon-wrap {
  transform: scale(1.1) rotate(-5deg);
}

.service-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.service-card .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 20px;
}

.service-card .tag {
  padding: 4px 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50px;
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Service card color variants */
.sc-blue {
  --card-gradient: var(--grad-1);
}

.sc-purple {
  --card-gradient: var(--grad-2);
}

.sc-green {
  --card-gradient: var(--grad-3);
}

.sc-yellow {
  --card-gradient: linear-gradient(135deg, #f59e0b, #10b981);
}

.sc-cyan {
  --card-gradient: linear-gradient(135deg, #06b6d4, #6366f1);
}

.sc-red {
  --card-gradient: linear-gradient(135deg, #ef4444, #f43f5e);
}

.sc-pink {
  --card-gradient: linear-gradient(135deg, #ec4899, #8b5cf6);
}

.sc-orange {
  --card-gradient: linear-gradient(135deg, #f97316, #f59e0b);
}

.sc-lime {
  --card-gradient: linear-gradient(135deg, #84cc16, #10b981);
}

.sc-blue .service-icon-wrap {
  background: rgba(99, 102, 241, 0.15);
  color: var(--blue);
  box-shadow: 0 0 20px rgba(99, 102, 241, 0.2);
}

.sc-purple .service-icon-wrap {
  background: rgba(139, 92, 246, 0.15);
  color: var(--purple);
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.2);
}

.sc-green .service-icon-wrap {
  background: rgba(16, 185, 129, 0.15);
  color: var(--green);
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.2);
}

/* Cyber Enhancements for Service Cards */
.card-scan-line {
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to bottom, transparent, rgba(99, 102, 241, 0.15), transparent);
  pointer-events: none;
  z-index: 2;
  transition: opacity 0.3s;
  opacity: 0;
}

.service-card:hover .card-scan-line {
  opacity: 1;
  animation: scan-vertical 3s linear infinite;
}

@keyframes scan-vertical {
  0% {
    top: -50%;
  }

  100% {
    top: 150%;
  }
}

.card-corner {
  position: absolute;
  width: 15px;
  height: 15px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  pointer-events: none;
}

.corner-tl {
  top: 15px;
  left: 15px;
  border-right: none;
  border-bottom: none;
}

.corner-br {
  bottom: 15px;
  right: 15px;
  border-left: none;
  border-top: none;
}

.service-card:hover .card-corner {
  border-color: var(--card-gradient, var(--blue));
  opacity: 0.8;
}

.service-status {
  position: absolute;
  top: 15px;
  right: 15px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 8px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 4px;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.status-dot {
  width: 6px;
  height: 6px;
  background: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 10px #10b981;
  animation: blink 1.5s infinite;
}

.status-text {
  color: rgba(255, 255, 255, 0.5);
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.3;
    transform: scale(0.8);
  }
}

.sc-cyan .service-icon-wrap {
  background: rgba(6, 182, 212, 0.15);
  color: #06b6d4;
  box-shadow: 0 0 20px rgba(6, 182, 212, 0.2);
}

.sc-yellow .service-icon-wrap {
  background: rgba(245, 158, 11, 0.15);
  color: #f59e0b;
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.2);
}

.sc-red .service-icon-wrap {
  background: rgba(239, 68, 68, 0.15);
  color: #ef4444;
  box-shadow: 0 0 20px rgba(239, 68, 68, 0.2);
}

.sc-pink .service-icon-wrap {
  background: rgba(236, 72, 153, 0.15);
  color: #ec4899;
  box-shadow: 0 0 20px rgba(236, 72, 153, 0.2);
}

.sc-orange .service-icon-wrap {
  background: rgba(249, 115, 22, 0.15);
  color: #f97316;
  box-shadow: 0 0 20px rgba(249, 115, 22, 0.2);
}

.sc-lime .service-icon-wrap {
  background: rgba(132, 204, 22, 0.15);
  color: #84cc16;
  box-shadow: 0 0 20px rgba(132, 204, 22, 0.2);
}

/* Service Card Button */
.service-btn {
  margin-top: 24px;
  width: 100%;
  padding: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 5;
  cursor: pointer;
}

.service-card:hover .service-btn {
  background: var(--card-gradient, var(--blue));
  border-color: transparent;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.service-btn i {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

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


/* ─── COACHING SECTION ────────────────────────────────────── */
#coaching {
  position: relative;
  z-index: 1;
  padding: 100px 0;
}

.coaching-inner {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.08), rgba(99, 102, 241, 0.05));
  border: 1px solid rgba(139, 92, 246, 0.15);
  border-radius: 32px;
  padding: 60px 40px;
}

.coaching-header {
  text-align: center;
  margin-bottom: 48px;
}

.coaching-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.course-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.course-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.course-card:hover .course-bg-gradient {
  opacity: 0.25;
}

.course-bg-gradient {
  position: absolute;
  inset: 0;
  opacity: 0.12;
  transition: var(--transition);
}

.gradient-blue {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
}

.gradient-cyan {
  background: linear-gradient(135deg, #06b6d4, #6366f1);
}

.gradient-purple {
  background: linear-gradient(135deg, #8b5cf6, #ec4899);
}

.gradient-green {
  background: linear-gradient(135deg, #10b981, #06b6d4);
}

.gradient-orange {
  background: linear-gradient(135deg, #f59e0b, #ef4444);
}

.gradient-red {
  background: linear-gradient(135deg, #ef4444, #ec4899);
}

.course-content {
  position: relative;
  z-index: 1;
  padding: 32px 24px;
}

.course-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
  transition: var(--transition);
}

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

.icon-blue {
  background: rgba(99, 102, 241, 0.2);
  color: var(--blue);
}

.icon-cyan {
  background: rgba(6, 182, 212, 0.2);
  color: var(--cyan);
}

.icon-purple {
  background: rgba(139, 92, 246, 0.2);
  color: var(--purple);
}

.icon-green {
  background: rgba(16, 185, 129, 0.2);
  color: var(--green);
}

.icon-orange {
  background: rgba(245, 158, 11, 0.2);
  color: var(--yellow);
}

.icon-red {
  background: rgba(239, 68, 68, 0.2);
  color: var(--red);
}

.course-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.course-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
}

.course-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
}

.course-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.course-meta i {
  font-size: 0.75rem;
}

.course-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  color: #fff;
}

.btn-course-blue {
  background: var(--blue);
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
}

.btn-course-cyan {
  background: var(--cyan);
  box-shadow: 0 4px 15px rgba(6, 182, 212, 0.4);
}

.btn-course-purple {
  background: var(--purple);
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
}

.btn-course-green {
  background: var(--green);
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}

.btn-course-orange {
  background: var(--yellow);
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
}

.btn-course-red {
  background: var(--red);
  box-shadow: 0 4px 15px rgba(239, 68, 68, 0.4);
}

.course-btn:hover {
  transform: translateX(4px);
  filter: brightness(1.15);
}

.course-stats {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.c-stat-val {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
}

.c-stat-lbl {
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* ─── WHY CHOOSE US ───────────────────────────────────────── */
#why-us {
  position: relative;
  z-index: 1;
  padding: 100px 0;
}

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

@media (max-width: 992px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}

.why-card {
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: var(--transition);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.why-card-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.5s ease;
}

.why-card:hover .why-card-img {
  transform: scale(1.05);
}

.why-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-glow);
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.why-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  display: block;
}

.why-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.why-card p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ─── TESTIMONIALS ────────────────────────────────────────── */
#testimonials {
  position: relative;
  z-index: 1;
  padding: 100px 0;
  overflow: hidden;
}

.testimonials-wrapper {
  overflow: hidden;
  position: relative;
}

.testimonials-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
  min-width: 360px;
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(20px);
  flex-shrink: 0;
  transition: var(--transition);
}

.testimonial-card:hover {
  border-color: rgba(99, 102, 241, 0.3);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.test-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.test-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--grad-1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.test-info h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.test-info p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.test-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}

.test-stars i {
  color: #f59e0b;
  font-size: 0.85rem;
}

.test-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 20px;
}

.test-badge {
  display: inline-block;
  padding: 4px 14px;
  background: rgba(99, 102, 241, 0.12);
  border: 1px solid rgba(99, 102, 241, 0.25);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--blue);
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  font-size: 0.9rem;
}

.carousel-btn:hover {
  background: var(--blue);
  border-color: var(--blue);
  transform: scale(1.1);
}

.carousel-dots {
  display: flex;
  gap: 8px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border-color);
  cursor: pointer;
  transition: var(--transition);
}

.carousel-dot.active {
  background: var(--blue);
  width: 24px;
  border-radius: 4px;
}

/* ─── CONTACT SECTION ─────────────────────────────────────── */
#contact {
  position: relative;
  z-index: 1;
  padding: 100px 0;
}

/* ─── CONTACT PREMIUM STYLES ───────────────────────────── */
.contact-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 576px) {
  .contact-cards-grid {
    grid-template-columns: 1fr;
  }
}

.contact-card-premium {
  padding: 24px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.contact-card-premium:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--blue);
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(99, 102, 241, 0.1);
}

.cp-icon {
  width: 50px;
  height: 50px;
  background: rgba(99, 102, 241, 0.1);
  color: var(--blue);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  transition: transform 0.4s ease;
}

.contact-card-premium:hover .cp-icon {
  transform: rotate(10deg) scale(1.1);
  background: var(--blue);
  color: #fff;
}

.cp-content h4 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.cp-content p {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-primary);
  margin: 0;
}

.social-glass-wrap {
  display: flex;
  gap: 12px;
}

.social-glass-btn {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--text-secondary);
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-glass-btn:hover {
  background: var(--grad-1);
  color: #fff;
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(99, 102, 241, 0.3);
}

.contact-form-premium {
  padding: 50px;
  background: rgba(255,255,255,0.015);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 30px;
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}

.contact-form-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--grad-1);
}

.form-input-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-input-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary);
  padding-left: 5px;
}

.input-wrapper {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 0 16px;
  transition: all 0.3s ease;
}

.input-wrapper i {
  color: var(--text-muted);
  font-size: 1.1rem;
}

.input-wrapper input,
.input-wrapper select,
.input-wrapper textarea {
  background: transparent;
  border: none;
  width: 100%;
  padding: 14px 12px;
  color: #fff;
  font-family: var(--font-main);
  outline: none;
}

.input-wrapper select option {
  background: var(--bg-secondary);
}

.input-wrapper:focus-within {
  border-color: var(--blue);
  background: rgba(99, 102, 241, 0.05);
  box-shadow: 0 0 20px rgba(99, 102, 241, 0.1);
}

.input-wrapper:focus-within i {
  color: var(--blue);
}

.premium-submit {
  height: 56px;
  border-radius: 15px;
  font-size: 1.1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ─── QUICK SUPPORT SECTION ────────────────────────────── */
.support-cta {
  border: 1px solid rgba(255,255,255,0.05);
  background: rgba(255,255,255,0.02);
  border-radius: 30px;
  overflow: hidden;
  position: relative;
}

.btn-support {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-support.whatsapp { background: rgba(37, 211, 102, 0.1); color: #25D366; border: 1px solid rgba(37, 211, 102, 0.2); }
.btn-support.discord { background: rgba(88, 101, 242, 0.1); color: #5865F2; border: 1px solid rgba(88, 101, 242, 0.2); }
.btn-support.telegram { background: rgba(0, 136, 204, 0.1); color: #0088CC; border: 1px solid rgba(0, 136, 204, 0.2); }

.btn-support:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.btn-support.whatsapp:hover { background: #25D366; color: #fff; }
.btn-support.discord:hover { background: #5865F2; color: #fff; }
.btn-support.telegram:hover { background: #0088CC; color: #fff; }

@media (max-width: 991px) {
  .contact-form-premium {
    padding: 30px;
  }
}

.hero-mini-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 15px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  height: 100%;
}

.hero-mini-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--blue);
  transform: translateY(-5px);
}

.hmc-icon {
  font-size: 1.5rem;
  display: block;
  margin-bottom: 8px;
}

.hero-mini-card p {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}


/* ─── FOOTER ──────────────────────────────────────────────── */
footer {
  position: relative;
  z-index: 1;
  padding: 60px 0 30px;
  border-top: 1px solid var(--border-color);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.8;
  margin: 16px 0 24px;
  max-width: 260px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.social-link {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition);
}

.social-link:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
  transform: translateY(-3px);
}

.footer-col h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 0.875rem;
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--blue);
  padding-left: 4px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--border-color);
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.designer-tag {
  font-size: 0.65rem !important;
  opacity: 0.2;
  transition: all 0.3s ease;
  position: absolute;
  bottom: 10px;
  right: 20px;
  margin: 0 !important;
  letter-spacing: 0.5px;
  cursor: default;
}

.designer-tag:hover {
  opacity: 0.7;
  color: var(--blue);
}

@media (max-width: 768px) {
  .designer-tag {
    position: static;
    text-align: right;
    width: 100%;
    margin-top: 10px !important;
  }
}

/* ─── KEY FRAME ANIMATIONS ────────────────────────────────── */
@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-down {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* ─── PRELOADER ───────────────────────────────────────────── */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s, visibility 0.5s;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-inner {
  text-align: center;
}

.preloader-logo {
  font-size: 3rem;
  font-weight: 900;
  background: var(--grad-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  animation: pulse-brand 1.5s ease infinite;
}

@keyframes pulse-brand {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.05);
    opacity: 0.8;
  }
}

.preloader-bar {
  width: 200px;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  margin: 20px auto 0;
  overflow: hidden;
}

.preloader-progress {
  height: 100%;
  background: var(--grad-1);
  border-radius: 2px;
  animation: load-bar 1.5s ease forwards;
}

@keyframes load-bar {
  0% {
    width: 0%;
  }

  100% {
    width: 100%;
  }
}

.preloader-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
}

/* ─── CONTAINER ───────────────────────────────────────────── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
    padding-top: 60px;
    gap: 40px;
  }

  .hero-content {
    text-align: center;
    max-width: 100%;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons,
  .hero-stats {
    justify-content: center;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

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

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

@media (max-width: 768px) {
  .navbar-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(5, 5, 16, 0.98);
    backdrop-filter: blur(20px);
    padding: 20px;
    gap: 4px;
    border-bottom: 1px solid var(--border-color);
  }

  .navbar-menu.open {
    display: flex;
  }

  .navbar-toggle {
    display: flex;
  }

  .navbar-cta {
    display: none;
  }

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

  .hero-stats {
    gap: 16px;
  }

  .stat-item {
    padding: 16px 20px;
  }

  .testimonial-card {
    min-width: 280px;
  }

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

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

  .footer-bottom {
    justify-content: center;
    text-align: center;
  }

  .coaching-inner {
    padding: 40px 20px;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .about-stat-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-primary-glow,
  .btn-outline-glass {
    width: 100%;
    justify-content: center;
  }

  .hero-stats {
    flex-direction: column;
    align-items: center;
  }
}

/* ─── COMMUNITY SECTION ───────────────────────────────────── */
#community {
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

.community-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.c-highlight {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.c-highlight:hover {
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-5px);
  border-color: rgba(245, 158, 11, 0.3);
}

.c-icon {
  width: 48px;
  height: 48px;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--yellow);
  font-size: 1.4rem;
  flex-shrink: 0;
  transition: var(--transition);
}

.c-highlight:hover .c-icon {
  background: var(--yellow);
  color: #000;
  transform: rotate(10deg);
}

.vyuh-logo-wrap {
  position: relative;
  z-index: 1;
}

.vyuh-logo-wrap::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.1) 0%, transparent 70%);
  z-index: -1;
}

.btn-glass-yellow {
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.2);
  color: var(--yellow);
}

.btn-glass-yellow:hover {
  background: var(--yellow);
  color: #000;
  box-shadow: 0 0 30px rgba(245, 158, 11, 0.4);
}

/* ─── CUSTOM CURSOR ───────────────────────────────────────── */
.custom-cursor {
  width: 10px;
  height: 10px;
  background: var(--blue);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 10000;
  transition: transform 0.1s ease-out, background 0.3s ease;
}

.custom-cursor-outline {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(99, 102, 241, 0.4);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.15s ease-out, width 0.3s ease, height 0.3s ease, border-color 0.3s ease;
}

.cursor-hover .custom-cursor {
  transform: scale(1.5);
  background: var(--purple);
}

.cursor-hover .custom-cursor-outline {
  width: 60px;
  height: 60px;
  border-color: var(--purple);
  background: rgba(139, 92, 246, 0.1);
}

@media (max-width: 1024px) {

  .custom-cursor,
  .custom-cursor-outline {
    display: none !important;
  }
}

/* ─── MAGNETIC BUTTONS ────────────────────────────────────── */
.magnetic {
  display: inline-block;
  transition: transform 0.2s cubic-bezier(0.33, 1, 0.68, 1);
}

/* ─── SCRAMBLED TEXT EFFECT ────────────────────────────────── */
.char {
  display: inline-block;
  will-change: contents;
}

/* ─── TEAM SECTION ────────────────────────────────────────── */
#team {
  position: relative;
  overflow: hidden;
}

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

.team-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  text-align: center;
  transition: var(--transition);
  overflow: hidden;
}

.team-card:hover {
  transform: translateY(-10px);
  border-color: var(--border-glow);
  background: var(--bg-card-hover);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.team-image-wrap {
  width: 140px;
  height: 140px;
  margin: 0 auto 25px;
  border-radius: 50%;
  padding: 8px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  position: relative;
}

.team-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px dashed rgba(255, 255, 255, 0.2);
  animation: rotate-dashed 20s linear infinite;
}

@keyframes rotate-dashed {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.team-image {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--bg-card);
  position: relative;
  z-index: 1;
}

.team-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.team-role {
  font-size: 0.9rem;
  color: var(--cyan);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  display: block;
}

.team-bio {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 25px;
}

.team-social {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.team-social-link {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: var(--transition);
  font-size: 0.9rem;
}

.team-social-link:hover {
  background: var(--blue);
  color: #fff;
  transform: translateY(-3px);
}

@media (max-width: 992px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
}

/* ─── WHY CHOOSE US IMPROVEMENTS ────────────────────────── */
.cyber-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 40px 30px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.cyber-card:hover {
  transform: translateY(-10px);
  border-color: var(--border-glow);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.card-scanner {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
  animation: scan-horizontal 4s linear infinite;
  opacity: 0.3;
}

@keyframes scan-horizontal {
  0% {
    left: -100%;
  }

  100% {
    left: 100%;
  }
}

.why-card-status {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  box-shadow: 0 0 10px currentColor;
}

.green-glow {
  background: #10b981;
  color: #10b981;
}

.blue-glow {
  background: #3b82f6;
  color: #3b82f6;
}

.cyan-glow {
  background: #06b6d4;
  color: #06b6d4;
}

.yellow-glow {
  background: #f59e0b;
  color: #f59e0b;
}

.red-glow {
  background: #ef4444;
  color: #ef4444;
}

.purple-glow {
  background: #8b5cf6;
  color: #8b5cf6;
}

.indigo-glow {
  background: #6366f1;
  color: #6366f1;
}

.orange-glow {
  background: #f97316;
  color: #f97316;
}

.pink-glow {
  background: #ec4899;
  color: #ec4899;
}

.status-text {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--text-muted);
}

.why-icon-wrap {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 25px;
  color: var(--blue);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Methodology */
.methodology-container {
  max-width: 900px;
  margin: 0 auto;
}

.method-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.method-step {
  display: flex;
  align-items: flex-start;
  gap: 25px;
  background: rgba(255, 255, 255, 0.02);
  padding: 30px;
  border-radius: 15px;
  border-left: 4px solid var(--blue);
  transition: var(--transition);
}

.method-step:hover {
  background: rgba(255, 255, 255, 0.04);
  transform: translateX(10px);
}

.method-num {
  font-size: 2.5rem;
  font-weight: 900;
  opacity: 0.2;
  font-family: 'Montserrat', sans-serif;
  line-height: 1;
}

.method-content h4 {
  color: var(--blue);
  margin-bottom: 10px;
  font-weight: 700;
}

/* Tech Grid */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 20px;
}

.tech-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  transition: var(--transition);
}

.tech-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--blue);
  transform: translateY(-5px);
}

.tech-item i {
  font-size: 2rem;
  margin-bottom: 10px;
  display: block;
  color: var(--text-primary);
}

.tech-item span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
}

/* Stats Bar */
.glass-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 40px 20px;
  border-radius: 20px;
  text-align: center;
  transition: var(--transition);
}

.glass-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--blue);
}

.why-stat-num {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 10px;
}

.why-stat-lbl {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
}

@media (max-width: 992px) {
  .why-stats-bar {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .why-stats-bar {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .method-step {
    flex-direction: column;
    gap: 15px;
  }
}