/* =====================================================
   IIITIHAS UNIVERSAL — Advanced Enhancements CSS
   Version: 2026.2
   Covers: Animations, Missing Sections, Toast, Scroll-Top
   ===================================================== */

/* ── 1. SCROLL-TO-TOP BUTTON ─────────────────────────── */
.scroll-to-top-btn {
  position: fixed;
  bottom: 155px;
  right: 25px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #5b03e4 0%, #c03afe 100%);
  color: #ffffff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 6px 20px rgba(91, 3, 228, 0.45);
  z-index: 9998;
  opacity: 0;
  transform: translateY(20px) scale(0.8);
  transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  pointer-events: none;
}

.scroll-to-top-btn.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.scroll-to-top-btn:hover {
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 12px 30px rgba(91, 3, 228, 0.6);
}


/* ── 2. TOAST NOTIFICATION SYSTEM ────────────────────── */
.toast-container {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  gap: 12px;
  pointer-events: none;
}

.toast-notification {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #ffffff;
  border-radius: 14px;
  padding: 16px 20px;
  min-width: 300px;
  max-width: 380px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15), 0 2px 10px rgba(0, 0, 0, 0.08);
  border-left: 4px solid #5b03e4;
  opacity: 0;
  transform: translateX(120%);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  pointer-events: auto;
  position: relative;
}

.toast-notification.show {
  opacity: 1;
  transform: translateX(0);
}

.toast-notification.hide {
  opacity: 0;
  transform: translateX(120%);
  transition: all 0.3s ease;
}

.toast-notification.success { border-left-color: #10b981; }
.toast-notification.error   { border-left-color: #ef4444; }
.toast-notification.warning { border-left-color: #f59e0b; }
.toast-notification.info    { border-left-color: #3b82f6; }

.toast-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.toast-notification.success .toast-icon { background: #d1fae5; color: #10b981; }
.toast-notification.error   .toast-icon { background: #fee2e2; color: #ef4444; }
.toast-notification.warning .toast-icon { background: #fef3c7; color: #f59e0b; }
.toast-notification.info    .toast-icon { background: #dbeafe; color: #3b82f6; }
.toast-notification:not(.success):not(.error):not(.warning):not(.info) .toast-icon {
  background: #ede9fe; color: #5b03e4;
}

.toast-body { flex: 1; }
.toast-title {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 3px;
}
.toast-message {
  font-size: 13px;
  color: #64748b;
  line-height: 1.5;
}

.toast-close {
  position: absolute;
  top: 10px;
  right: 12px;
  background: none;
  border: none;
  color: #94a3b8;
  cursor: pointer;
  font-size: 14px;
  padding: 0;
  line-height: 1;
  transition: color 0.2s;
}
.toast-close:hover { color: #475569; }

.toast-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: currentColor;
  border-radius: 0 0 14px 14px;
  animation: toastProgress 4s linear forwards;
}
.toast-notification.success .toast-progress { color: #10b981; }
.toast-notification.error   .toast-progress { color: #ef4444; }
.toast-notification.warning .toast-progress { color: #f59e0b; }
.toast-notification.info    .toast-progress { color: #3b82f6; }
.toast-notification:not(.success):not(.error):not(.warning):not(.info) .toast-progress { color: #5b03e4; }

@keyframes toastProgress {
  from { width: 100%; }
  to   { width: 0%; }
}


/* ── 3. SCROLL REVEAL ANIMATIONS ────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.from-left  { transform: translateX(-50px); }
.reveal.from-right { transform: translateX(50px); }
.reveal.scale-up   { transform: scale(0.9); }

.reveal.visible {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
}

/* Stagger delay helpers */
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }


/* ── 4. PROCESS SECTION ──────────────────────────────── */
.process-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #0f0a1e 0%, #1e1338 60%, #2e0854 100%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.process-section::before {
  content: '';
  position: absolute;
  top: -80px; left: -80px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124,58,237,0.3) 0%, transparent 70%);
  pointer-events: none;
}

.process-section::after {
  content: '';
  position: absolute;
  bottom: -80px; right: -80px;
  width: 350px; height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(198,61,255,0.2) 0%, transparent 70%);
  pointer-events: none;
}

.process-section h2 {
  text-align: center;
  font-family: 'Outfit', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 50px;
  position: relative;
  z-index: 2;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  position: relative;
  z-index: 2;
}

@media (max-width: 1199px) {
  .process-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 767px) {
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-section h2 { font-size: 26px; }
}

.process-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 24px 16px;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: default;
}

.process-item:hover {
  background: rgba(112, 18, 206, 0.25);
  border-color: rgba(192, 58, 254, 0.5);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(112, 18, 206, 0.25);
}

.process-item .step-number {
  font-family: 'Outfit', sans-serif;
  font-size: 36px;
  font-weight: 900;
  background: linear-gradient(135deg, #7012ce, #c63dff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 10px;
}

.process-item h6 {
  font-size: 14px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.process-item p {
  font-size: 12.5px;
  color: #94a3b8;
  line-height: 1.5;
  margin: 0;
}


/* ── 5. TECH GRID SECTION ───────────────────────────── */
.tech-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  padding: 10px 0 20px 0;
  position: relative;
  z-index: 2;
}

.tech-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: #ffffff;
  border: 1px solid #e0d0fb;
  border-radius: 50px;
  font-size: 13.5px;
  font-weight: 700;
  color: #2a2a2a;
  cursor: default;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 2px 8px rgba(91, 3, 228, 0.06);
}

.tech-item i {
  font-size: 16px;
  color: #5b03e4;
  transition: transform 0.3s ease;
}

.tech-item:hover {
  background: linear-gradient(135deg, #5b03e4, #c03afe);
  color: #ffffff;
  border-color: transparent;
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 10px 25px rgba(91, 3, 228, 0.35);
}

.tech-item:hover i {
  color: #ffffff;
  transform: rotate(10deg) scale(1.2);
}


/* ── 6. MAIN CTA SECTION ────────────────────────────── */
.main-cta {
  background: linear-gradient(135deg, #5500e3 0%, #7c3aed 50%, #c63dff 100%);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
  margin-top: 0;
}

.main-cta::before {
  content: '';
  position: absolute;
  top: -60px; left: -60px;
  width: 250px; height: 250px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  pointer-events: none;
}

.main-cta::after {
  content: '';
  position: absolute;
  bottom: -80px; right: 10%;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  pointer-events: none;
}

.main-cta h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 12px;
  line-height: 1.3;
  position: relative;
  z-index: 2;
}

.main-cta p {
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  line-height: 26px;
  margin-bottom: 28px;
  position: relative;
  z-index: 2;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  position: relative;
  z-index: 2;
}

.btn-white {
  display: inline-block;
  background: #ffffff;
  color: #5b03e4;
  padding: 14px 30px;
  border-radius: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 14px;
  text-decoration: none !important;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.btn-white:hover {
  background: #f0e6ff;
  color: #5b03e4;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255,255,255,0.5);
  padding: 12px 28px;
  border-radius: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none !important;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: #ffffff;
  color: #ffffff;
  transform: translateY(-3px);
}


/* ── 7. FOOTER CONTACT LIST ─────────────────────────── */
.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #94a3b8;
  font-size: 14px;
  line-height: 22px;
  margin-bottom: 12px;
}

.footer-contact-list li i {
  color: #a78bfa;
  font-size: 14px;
  margin-top: 4px;
  flex-shrink: 0;
}

.footer-contact-list li span {
  flex: 1;
}


/* ── 8. HERO SECTION BACKGROUND ─────────────────────── */
.main-banner {
  background: linear-gradient(135deg, #fdfbff 0%, #f5eeff 40%, #ede4ff 70%, #f8f4ff 100%) !important;
  position: relative;
}

.main-banner::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(192, 58, 254, 0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.main-banner::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(91, 3, 228, 0.1) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.main-banner .container {
  position: relative;
  z-index: 1;
}


/* ── 9. ANIMATED SKILL BARS ─────────────────────────── */
.skill-bar-animated .fill {
  width: 0 !important;
  transition: width 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.skill-bar-animated.in-view .fill {
  width: var(--target-width) !important;
}


/* ── 10. SERVICE CARD HOVER CURSOR ──────────────────── */
.service-item {
  cursor: pointer;
}


/* ── 11. GLASSMORPHISM STAT ITEMS ───────────────────── */
.stats-section .stat-item {
  position: relative;
  overflow: hidden;
}

.stats-section .stat-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(255,255,255,0.05);
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.15);
  transition: all 0.3s ease;
}

.stats-section .stat-item:hover::before {
  background: rgba(255,255,255,0.12);
}


/* ── 12. CERTIFICATION CARD HOVER ───────────────────── */
.cert-card {
  transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

.cert-card:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 20px 45px rgba(91, 3, 228, 0.15) !important;
  border-color: #c084fc !important;
}


/* ── 13. SECTION HEADING ANIMATION ─────────────────── */
.section-heading {
  position: relative;
}


/* ── 14. PREHEADER HIDE ON MOBILE ───────────────────── */
@media (max-width: 576px) {
  .pre-header { display: none; }
}


/* ── 15. HERO BADGE ANIMATION ───────────────────────── */
@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(91, 3, 228, 0.2); }
  50% { box-shadow: 0 0 0 8px rgba(91, 3, 228, 0); }
}

.hero-tags .badge {
  transition: all 0.3s ease;
  cursor: default;
  border-radius: 6px !important;
}

.hero-tags .badge:hover {
  background: linear-gradient(135deg, #5b03e4, #c03afe) !important;
  color: #ffffff !important;
  border-color: transparent !important;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(91, 3, 228, 0.35);
}

.hero-tags .badge i {
  margin-right: 5px;
}

.hero-tags .badge:hover i {
  color: #ffffff !important;
}


/* ── 16. FLOATING BUTTON LABELS ─────────────────────── */
.floating-action-btn {
  position: relative;
}

.floating-action-btn::before {
  content: attr(data-label);
  position: absolute;
  right: 58px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(15, 23, 42, 0.9);
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.floating-action-btn:hover::before {
  opacity: 1;
}


/* ── 17. PARTNER CARD HOVER ─────────────────────────── */
.partner-logo-card {
  transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

.partner-logo-card:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 20px 45px rgba(91, 3, 228, 0.15) !important;
  border-color: #c084fc !important;
}


/* ── 18. REVIEW CARD ANIMATION FIX ─────────────────── */
.review-card-item {
  animation-fill-mode: forwards !important;
}


/* ── 19. MOBILE RESPONSIVE EXTRAS ──────────────────── */
@media (max-width: 767px) {
  .main-cta h4 { font-size: 22px; }
  .cta-buttons { flex-direction: column; align-items: flex-start; }
  .btn-white, .btn-outline { width: 100%; text-align: center; }
  .tech-item { font-size: 12px; padding: 8px 14px; }
  .process-section h2 { font-size: 22px; }
  .toast-container { top: 12px; right: 12px; left: 12px; }
  .toast-notification { min-width: unset; max-width: 100%; }
}

/* ── 16. FLOATING BUTTON ENHANCEMENTS ────────────────── */
.floating-action-btn.whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E) !important;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35) !important;
}

.floating-action-btn.whatsapp:hover {
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6) !important;
}

.floating-action-btn.contact {
  background: linear-gradient(135deg, #7012ce, #c63dff) !important;
  box-shadow: 0 8px 25px rgba(112, 18, 206, 0.35) !important;
}

.floating-action-btn.contact:hover {
  box-shadow: 0 12px 30px rgba(112, 18, 206, 0.6) !important;
}

@media (max-width: 480px) {
  .scroll-to-top-btn { bottom: 145px; right: 16px; width: 42px; height: 42px; font-size: 15px; }
  .floating-quick-widget { right: 16px; bottom: 18px; }
}


/* ── 20. SMOOTH FADE-IN FOR PAGE ────────────────────── */
body {
  animation: pageLoad 0.4s ease forwards;
}

@keyframes pageLoad {
  from { opacity: 0.6; }
  to   { opacity: 1; }
}

/* ── 21. UNIVERSAL COMMAND PALETTE (CTRL+K) ─────────── */






@keyframes cmdScaleIn {
  from { opacity: 0; transform: scale(0.96) translateY(-10px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}































/* ── 22. INTERACTIVE PROJECT COST ESTIMATOR MODAL ───── */
.calc-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(10px);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.calc-modal-overlay.open {
  display: flex;
}

.calc-modal-box {
  background: #ffffff;
  border-radius: 24px;
  width: 100%;
  max-width: 680px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
  padding: 36px;
  position: relative;
  animation: cmdScaleIn 0.3s ease;
}

.calc-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f1f5f9;
  border: none;
  color: #64748b;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}

.calc-close-btn:hover {
  background: #ef4444;
  color: #fff;
}

.calc-option-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 12px;
  margin: 16px 0 24px;
}

.calc-option-card {
  border: 2px solid #e2e8f0;
  border-radius: 14px;
  padding: 16px 12px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.calc-option-card:hover {
  border-color: #a78bfa;
  transform: translateY(-2px);
}

.calc-option-card.selected {
  border-color: #7c3aed;
  background: #f5f3ff;
  box-shadow: 0 6px 18px rgba(124, 58, 237, 0.15);
}

.calc-option-card i {
  font-size: 24px;
  color: #7c3aed;
  margin-bottom: 8px;
  display: block;
}

.calc-option-card span {
  font-size: 13px;
  font-weight: 700;
  color: #1e293b;
  display: block;
}

.calc-estimate-result {
  background: linear-gradient(135deg, #2e0854 0%, #4c1d95 100%);
  color: #ffffff;
  border-radius: 18px;
  padding: 24px;
  text-align: center;
  margin-top: 20px;
}

.calc-estimate-price {
  font-size: 32px;
  font-weight: 800;
  color: #38bdf8;
  margin: 8px 0 4px;
}

/* ── 23. PRIVACY & COOKIE CONSENT BANNER ─────────────── */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  max-width: 420px;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(12px);
  color: #ffffff;
  border-radius: 18px;
  padding: 20px 24px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.15);
  z-index: 9997;
  animation: slideUpCookie 0.4s ease;
  display: none;
}

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

.cookie-banner h5 {
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 6px;
  color: #fff;
}

.cookie-banner p {
  font-size: 12px;
  color: #94a3b8;
  line-height: 18px;
  margin-bottom: 16px;
}

.cookie-btn-group {
  display: flex;
  gap: 10px;
}

.cookie-btn-accept {
  background: linear-gradient(135deg, #7c3aed, #9333ea);
  color: #fff;
  border: none;
  padding: 8px 18px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
}

.cookie-btn-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(124, 58, 237, 0.4);
}

.cookie-btn-decline {
  background: rgba(255, 255, 255, 0.1);
  color: #cbd5e1;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 14px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
}

/* ── 24. BREADCRUMB NAVIGATION ───────────────────────── */
.custom-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #e2e8f0;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.custom-breadcrumb a {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.2s;
}

.custom-breadcrumb a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.custom-breadcrumb .separator {
  color: #a78bfa;
  font-size: 11px;
}

.custom-breadcrumb .current {
  color: #f3e8ff;
  font-weight: 700;
}

/* ── 25. COMPREHENSIVE MOBILE RESPONSIVE SUITE ──────── */
@media (max-width: 992px) {
  /* Mobile Hamburger Trigger */
  .header-area .main-nav .menu-trigger,
  .background-header .main-nav .menu-trigger,
  .menu-trigger {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: absolute;
    top: 18px;
    right: 18px;
    width: 44px;
    height: 44px;
    cursor: pointer;
    z-index: 1001;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  }

  .menu-trigger span {
    display: block !important;
    width: 22px !important;
    height: 2.5px !important;
    background-color: #ffffff !important;
    border-radius: 2px !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
    transform-origin: center;
  }

  .menu-trigger.active {
    background: rgba(124, 58, 237, 0.5) !important;
    border-color: rgba(192, 58, 254, 0.6) !important;
  }

  .menu-trigger.active span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg) !important;
  }

  .menu-trigger.active span:nth-child(2) {
    opacity: 0 !important;
    transform: scale(0) !important;
  }

  .menu-trigger.active span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg) !important;
  }

  /* Glassmorphic Mobile Navigation Drawer */
  .header-area .main-nav .nav,
  .background-header .main-nav .nav {
    display: none;
    position: absolute;
    top: 76px;
    left: 14px;
    right: 14px;
    background: rgba(15, 7, 32, 0.98) !important;
    backdrop-filter: blur(22px);
    border-radius: 20px;
    padding: 18px 14px !important;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.65);
    border: 1px solid rgba(192, 58, 254, 0.3);
    height: auto !important;
    flex-direction: column;
    align-items: stretch !important;
    z-index: 1000;
    animation: mobileNavIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  }

  @keyframes mobileNavIn {
    from { opacity: 0; transform: translateY(-12px) scale(0.98); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
  }

  .header-area .main-nav .nav li,
  .background-header .main-nav .nav li {
    padding: 0 !important;
    background: transparent !important;
    margin-bottom: 4px;
  }

  .header-area .main-nav .nav li a,
  .background-header .main-nav .nav li a {
    height: auto !important;
    line-height: normal !important;
    padding: 12px 16px !important;
    border-radius: 12px;
    font-size: 14px !important;
    font-weight: 700 !important;
    color: #e2e8f0 !important;
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    transition: all 0.2s;
  }

  .header-area .main-nav .nav li a:hover,
  .header-area .main-nav .nav li a.active {
    background: linear-gradient(135deg, rgba(91, 3, 228, 0.4), rgba(192, 58, 254, 0.4)) !important;
    color: #ffffff !important;
  }

  .header-area .main-nav .nav li.has-sub ul.sub-menu {
    position: static !important;
    width: 100% !important;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    box-shadow: none !important;
    border: none !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border-radius: 12px !important;
    padding: 6px 0 !important;
    margin: 4px 0 8px 10px !important;
    display: none;
  }

  .header-area .main-nav .nav li.has-sub.open ul.sub-menu {
    display: block !important;
  }

  .header-area .main-nav .nav li.has-sub:after,
  .background-header .main-nav .nav li.has-sub:after {
    display: none !important;
  }

  /* Hero & Banner mobile adjustments */
  .main-banner {
    padding-top: 110px !important;
    padding-bottom: 60px !important;
  }

  .main-banner h2 {
    font-size: clamp(28px, 6vw, 42px) !important;
    line-height: 1.25 !important;
  }

  .main-banner p {
    font-size: 14.5px !important;
    line-height: 24px !important;
  }

  .hero-image-wrapper {
    margin-right: 0 !important;
    margin-top: 30px !important;
  }

  .hero-image-wrapper img {
    width: 100% !important;
    max-width: 480px !important;
  }

  /* Service Cards & Grids on Mobile */
  .service-item {
    padding: 26px 20px !important;
    border-radius: 18px !important;
    margin-bottom: 20px !important;
  }

  .section-heading h2 {
    font-size: clamp(26px, 5.5vw, 36px) !important;
    line-height: 1.3 !important;
  }

  /* Modals on Mobile */
  .calc-modal-box, 

  .calc-option-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  /* Subpage Header */
  .page-heading {
    padding: 110px 0 50px !important;
  }

  .page-heading h4 {
    font-size: clamp(26px, 5.5vw, 38px) !important;
    line-height: 1.25 !important;
  }
}

@media (max-width: 480px) {
  .header-area .main-nav .logo span:first-child {
    font-size: 13.5px !important;
  }
  .header-area .main-nav .logo span:last-child {
    font-size: 8.5px !important;
  }
  .calc-option-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 8px !important;
  }
  .calc-option-card {
    padding: 12px 8px !important;
  }
  .calc-option-card span {
    font-size: 11.5px !important;
  }
  .hero-tech-badges .badge {
    font-size: 11px !important;
    padding: 6px 10px !important;
  }
  .cookie-banner {
    left: 12px !important;
    right: 12px !important;
    bottom: 12px !important;
    max-width: 100% !important;
  }
}

/* ── 26. IIITIHAS AI ASSISTANT WIDGET ───────────────── */
.ai-widget-wrapper {
  position: fixed !important;
  bottom: 22px !important;
  left: 22px !important;
  z-index: 2147483647 !important;
  font-family: 'Plus Jakarta Sans', -apple-system, sans-serif !important;
}

.ai-widget-btn {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  background: linear-gradient(135deg, #1e1242 0%, #5b03e4 100%) !important;
  color: #ffffff !important;
  border: 1.5px solid rgba(192, 58, 254, 0.4) !important;
  padding: 12px 20px !important;
  border-radius: 40px !important;
  cursor: pointer !important;
  box-shadow: 0 10px 30px rgba(91, 3, 228, 0.4) !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  position: relative !important;
  z-index: 2147483647 !important;
  user-select: none !important;
}

.ai-widget-btn:hover {
  transform: translateY(-3px) scale(1.03) !important;
  box-shadow: 0 15px 40px rgba(192, 58, 254, 0.6) !important;
}

.ai-widget-btn * {
  pointer-events: none !important;
}

.ai-btn-label {
  font-size: 13px !important;
  font-weight: 800 !important;
  letter-spacing: 0.5px !important;
  color: #ffffff !important;
}

.ai-online-dot {
  width: 8px !important;
  height: 8px !important;
  background: #22c55e !important;
  border-radius: 50% !important;
  box-shadow: 0 0 8px #22c55e !important;
}

/* Chat Box */
.ai-chat-box {
  position: fixed !important;
  bottom: 80px !important;
  left: 22px !important;
  width: 380px !important;
  max-width: calc(100vw - 36px) !important;
  height: 520px !important;
  max-height: calc(100vh - 100px) !important;
  background: rgba(15, 7, 32, 0.98) !important;
  backdrop-filter: blur(24px) !important;
  border: 1.5px solid rgba(192, 58, 254, 0.4) !important;
  border-radius: 20px !important;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.8), 0 0 30px rgba(91, 3, 228, 0.3) !important;
  display: none !important;
  flex-direction: column !important;
  overflow: hidden !important;
  z-index: 2147483647 !important;
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.ai-chat-box.open,
.ai-chat-box.active {
  display: flex !important;
  opacity: 1 !important;
  transform: translateY(0) scale(1) !important;
  pointer-events: auto !important;
  visibility: visible !important;
}

.ai-chat-header {
  padding: 14px 16px;
  background: linear-gradient(135deg, rgba(91, 3, 228, 0.6), rgba(192, 58, 254, 0.35));
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.ai-header-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ai-avatar {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #7c3aed, #c03afe);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  position: relative;
  box-shadow: 0 0 12px rgba(192, 58, 254, 0.5);
}

.ai-header-controls {
  display: flex;
  align-items: center;
  gap: 6px;
}

.ai-lang-switch {
  display: flex;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 8px;
  padding: 2px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.ai-lang-btn {
  background: none;
  border: none;
  color: #cbd5e1;
  font-size: 10px;
  font-weight: 800;
  padding: 3px 6px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
}

.ai-lang-btn.active {
  background: #5b03e4;
  color: #ffffff;
}

.ai-ctrl-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #cbd5e1;
  font-size: 12px;
  cursor: pointer;
  padding: 5px 8px;
  border-radius: 6px;
  transition: all 0.2s;
}

.ai-ctrl-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.ai-chat-messages {
  flex: 1;
  padding: 16px 14px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ai-msg {
  display: flex;
  flex-direction: column;
  max-width: 90%;
  animation: aiFadeIn 0.25s ease forwards;
}

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

.ai-msg.bot {
  align-self: flex-start;
}

.ai-msg.user {
  align-self: flex-end;
}

.ai-bubble {
  padding: 11px 14px;
  border-radius: 14px;
  font-size: 13px;
  line-height: 1.45;
}

.ai-msg.bot .ai-bubble {
  background: rgba(255, 255, 255, 0.08);
  color: #f1f5f9;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom-left-radius: 3px;
}

.ai-msg.user .ai-bubble {
  background: linear-gradient(135deg, #5b03e4, #7c3aed);
  color: #ffffff;
  border-bottom-right-radius: 3px;
}

.ai-quick-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 8px;
}

.ai-chip {
  background: rgba(192, 58, 254, 0.15);
  border: 1px solid rgba(192, 58, 254, 0.35);
  color: #decdfa;
  padding: 5px 10px;
  border-radius: 16px;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
}

.ai-chip:hover {
  background: rgba(192, 58, 254, 0.4);
  color: #fff;
  transform: translateY(-1px);
}

.ai-actions-wrap {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: 8px;
}

.ai-action-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #f1f5f9;
  padding: 7px 12px;
  border-radius: 8px;
  font-size: 11.5px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: all 0.2s;
}

.ai-action-btn:hover {
  background: #5b03e4;
  color: #ffffff;
  transform: translateY(-1px);
}

.ai-action-btn.act-wa {
  background: rgba(37, 211, 102, 0.2);
  border-color: rgba(37, 211, 102, 0.4);
  color: #4ade80;
}
.ai-action-btn.act-wa:hover {
  background: #25d366;
  color: #ffffff;
}

/* Chat Input Footer */
.ai-chat-footer {
  padding: 10px 12px;
  background: rgba(0, 0, 0, 0.4);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.ai-input-form {
  display: flex;
  align-items: center;
  gap: 6px;
}

.ai-input-form input {
  flex: 1;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 9px 14px;
  color: #ffffff;
  font-size: 12.5px;
  outline: none;
  transition: border 0.2s;
}

.ai-input-form input:focus {
  border-color: #c03afe;
  box-shadow: 0 0 8px rgba(192, 58, 254, 0.3);
}

.ai-input-form input::placeholder {
  color: #94a3b8;
}

.ai-voice-btn,
.ai-send-btn {
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}

.ai-voice-btn {
  background: rgba(255, 255, 255, 0.08);
  color: #cbd5e1;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.ai-voice-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

.ai-send-btn {
  background: linear-gradient(135deg, #5b03e4, #c03afe);
  color: #fff;
  box-shadow: 0 4px 12px rgba(91, 3, 228, 0.35);
}

.ai-send-btn:hover {
  transform: scale(1.05);
}

/* Typing Bubble Animation */
.ai-typing-bubble {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 10px 14px !important;
}

.ai-typing-bubble span {
  width: 6px;
  height: 6px;
  background: #a78bfa;
  border-radius: 50%;
  animation: aiTypingDot 1.4s infinite;
}

.ai-typing-bubble span:nth-child(2) { animation-delay: 0.2s; }
.ai-typing-bubble span:nth-child(3) { animation-delay: 0.4s; }

@keyframes aiTypingDot {
  0%, 100% { opacity: 0.3; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.2); }
}

/* ── 27. MEGA SPORTS X TOURNAMENT SIMULATOR ─────────── */
.sports-sim-card {
  background: linear-gradient(135deg, #0f0720 0%, #1e1242 100%);
  border: 1.5px solid rgba(192, 58, 254, 0.3);
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  color: #fff;
  margin: 30px 0;
}

.sports-sim-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 20px;
}

.bracket-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.1fr;
  gap: 20px;
}

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

.bracket-round {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.round-title {
  font-size: 11.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #a78bfa;
  margin-bottom: 6px;
}

.match-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.match-box.gold-match {
  border-color: #f59e0b;
  background: rgba(245, 158, 11, 0.08);
}

.team-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  color: #cbd5e1;
  cursor: pointer;
  transition: all 0.2s;
}

.team-row:hover {
  background: rgba(255, 255, 255, 0.08);
}

.team-row.winner {
  background: rgba(34, 197, 94, 0.15);
  color: #22c55e;
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.team-row.winner.gold {
  background: rgba(245, 158, 11, 0.2);
  color: #f59e0b;
  border: 1px solid rgba(245, 158, 11, 0.4);
}

.champion-banner {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(192, 58, 254, 0.2));
  border: 1.5px dashed #f59e0b;
  border-radius: 14px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 10px;
}

.sports-sim-toast {
  position: fixed;
  top: 30px;
  right: 30px;
  background: #10b981;
  color: #fff;
  padding: 14px 22px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 13.5px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  z-index: 10000;
  animation: slideInToast 0.3s ease;
}

@keyframes slideInToast {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── 28. GLOBAL DARK THEME (PUBLIC WEBSITE) ─────────── */
body.dark-theme {
  background-color: #0b0517 !important;
  color: #e2e8f0 !important;
}

body.dark-theme .section,
body.dark-theme .services,
body.dark-theme .projects,
body.dark-theme .infos,
body.dark-theme .testimonials-section,
body.dark-theme .about-us {
  background: #0f0720 !important;
  color: #e2e8f0 !important;
}

body.dark-theme .service-item,
body.dark-theme .projects .item,
body.dark-theme .review-inner-card,
body.dark-theme .contact-us form {
  background: #18092d !important;
  border: 1px solid rgba(192, 58, 254, 0.2) !important;
  color: #e2e8f0 !important;
}

body.dark-theme h1,
body.dark-theme h2,
body.dark-theme h3,
body.dark-theme h4,
body.dark-theme h5 {
  color: #ffffff !important;
}

body.dark-theme p {
  color: #94a3b8 !important;
}




/* ── 20. NEXT-GEN INTERACTIVE MODULES ────────────────── */
.custom-slider {
  -webkit-appearance: none;
  appearance: none;
  height: 8px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.15);
  outline: none;
  transition: background 0.3s ease;
}

.custom-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #ffffff;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(192, 132, 252, 0.8);
  transition: transform 0.2s ease;
}

.custom-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.track-tab-btn, .matrix-tab-btn, .tier-btn {
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.track-tab-btn:hover, .matrix-tab-btn:hover, .tier-btn:hover {
  transform: translateY(-2px);
}

@keyframes pulse-glow {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.1); opacity: 1; filter: drop-shadow(0 0 8px #22c55e); }
  100% { transform: scale(0.95); opacity: 0.8; }
}

/* ── 21. ADVANCED AI ASSISTANT 3.0 STYLES ──────────────── */
.ai-lang-switch {
  display: flex;
  gap: 4px;
  background: rgba(255, 255, 255, 0.1);
  padding: 2px 4px;
  border-radius: 8px;
  margin-right: 4px;
}

.ai-lang-btn {
  background: transparent;
  border: none;
  color: #cbd5e1;
  font-size: 10.5px;
  font-weight: 700;
  padding: 3px 6px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.ai-lang-btn.active {
  background: #5b03e4;
  color: #ffffff;
}

.ai-voice-btn {
  background: transparent;
  border: none;
  color: #94a3b8;
  font-size: 15px;
  padding: 0 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.ai-voice-btn:hover {
  color: #c084fc;
  transform: scale(1.1);
}

.ai-typing-bubble {
  display: inline-flex;
  gap: 4px;
  padding: 10px 14px !important;
}

.ai-typing-bubble span {
  width: 6px;
  height: 6px;
  background: #c084fc;
  border-radius: 50%;
  animation: typingBounce 1.4s infinite ease-in-out both;
}

.ai-typing-bubble span:nth-child(1) { animation-delay: -0.32s; }
.ai-typing-bubble span:nth-child(2) { animation-delay: -0.16s; }

@keyframes typingBounce {
  0%, 80%, 100% { transform: scale(0); }
  40% { transform: scale(1); }
}


/* ═══════════════════════════════════════════════════════════
   ADVANCED FEATURES v2 — New Premium Enhancements
   ═══════════════════════════════════════════════════════════ */

/* ── SCROLL PROGRESS BAR ────────────────────────────────── */
#scrollProgressBar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, #5b03e4, #c084fc, #38bdf8, #5b03e4);
  background-size: 300% 100%;
  animation: progressGradient 3s linear infinite;
  z-index: 100000;
  transition: width 0.1s linear;
  border-radius: 0 2px 2px 0;
  box-shadow: 0 0 10px rgba(91, 3, 228, 0.5);
}

@keyframes progressGradient {
  0% { background-position: 0% 50%; }
  100% { background-position: 300% 50%; }
}

/* ── BACK TO TOP WITH PROGRESS RING ─────────────────────── */
#backToTopBtn {
  position: fixed;
  bottom: 100px;
  right: 25px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #5b03e4, #7c3aed);
  color: #fff;
  border: none;
  cursor: pointer;
  z-index: 9997;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(91, 3, 228, 0.4);
}

#backToTopBtn.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

#backToTopBtn:hover {
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 14px 35px rgba(91, 3, 228, 0.55);
}

#backToTopBtn svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
  height: 50px;
  transform: rotate(-90deg);
}

#backToTopBtn .progress-ring-circle {
  stroke: rgba(255, 255, 255, 0.4);
  stroke-width: 3;
  fill: none;
  r: 20;
  cx: 25;
  cy: 25;
  stroke-dasharray: 125.66;
  stroke-dashoffset: 125.66;
  transition: stroke-dashoffset 0.15s linear;
}

#backToTopBtn .arrow-icon {
  font-size: 18px;
  position: relative;
  z-index: 2;
}

/* ── SCROLL REVEAL ANIMATIONS ───────────────────────────── */
.anim-hidden {
  opacity: 0;
  transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.anim-hidden[data-animate="fade-up"] {
  transform: translateY(50px);
}

.anim-hidden[data-animate="fade-down"] {
  transform: translateY(-50px);
}

.anim-hidden[data-animate="fade-left"] {
  transform: translateX(-60px);
}

.anim-hidden[data-animate="fade-right"] {
  transform: translateX(60px);
}

.anim-hidden[data-animate="zoom-in"] {
  transform: scale(0.85);
}

.anim-hidden[data-animate="flip-up"] {
  transform: perspective(600px) rotateX(15deg) translateY(30px);
}

.anim-visible {
  opacity: 1 !important;
  transform: none !important;
}

/* ── DARK MODE ──────────────────────────────────────────── */
#darkModeToggle {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 12px 0 0 12px;
  background: linear-gradient(135deg, #1e1b4b, #312e81);
  color: #e0e7ff;
  border: 1px solid rgba(255,255,255,0.1);
  border-right: none;
  cursor: pointer;
  z-index: 99990;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: -4px 0 20px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

#darkModeToggle:hover {
  width: 50px;
  background: linear-gradient(135deg, #312e81, #4c1d95);
  box-shadow: -6px 0 30px rgba(91, 3, 228, 0.3);
}

body.dark-mode {
  background-color: #0f0a1e !important;
  color: #e2e8f0 !important;
}

body.dark-mode .pre-header {
  background: #1a1035 !important;
}

body.dark-mode .header-area {
  background: #0f0a1e !important;
  border-bottom: 1px solid rgba(124, 58, 237, 0.2);
}

body.dark-mode .main-banner {
  background: linear-gradient(135deg, #0f0a1e 0%, #1e1338 100%) !important;
}

body.dark-mode .section-heading h2,
body.dark-mode h2, body.dark-mode h3, body.dark-mode h4, body.dark-mode h5 {
  color: #f1f5f9 !important;
}

body.dark-mode p {
  color: #94a3b8 !important;
}

body.dark-mode .service-item,
body.dark-mode .review-inner-card,
body.dark-mode .cert-card,
body.dark-mode .partner-logo-card {
  background: #1e1338 !important;
  border-color: rgba(124, 58, 237, 0.25) !important;
}

body.dark-mode .testimonials-section,
body.dark-mode .certifications-section,
body.dark-mode .partners-section,
body.dark-mode .faq-section,
body.dark-mode .services-section,
body.dark-mode .why-choose,
body.dark-mode .tech-matrix-section {
  background: #0f0a1e !important;
}

body.dark-mode .infos .main-content {
  background: #1e1338 !important;
}

body.dark-mode .accordion-item {
  background: #1e1338 !important;
  border-color: rgba(124, 58, 237, 0.2) !important;
}

body.dark-mode .accordion-button {
  background: #1e1338 !important;
  color: #e2e8f0 !important;
}

body.dark-mode .accordion-body {
  background: #1a1035 !important;
  color: #94a3b8 !important;
}

body.dark-mode .contact-us-content {
  background: #1e1338 !important;
}

body.dark-mode input, body.dark-mode textarea, body.dark-mode select {
  background: #2a1f4e !important;
  color: #e2e8f0 !important;
  border-color: rgba(124, 58, 237, 0.3) !important;
}

body.dark-mode .feature-item {
  background: #1e1338 !important;
  border-color: rgba(124, 58, 237, 0.25) !important;
  color: #e2e8f0 !important;
}

body.dark-mode .tech-item {
  background: #1e1338 !important;
  border-color: rgba(124, 58, 237, 0.25) !important;
  color: #e2e8f0 !important;
}

body.dark-mode .stat-item {
  background: rgba(30, 19, 56, 0.8) !important;
}

body.dark-mode .process-item {
  background: #1e1338 !important;
  border-color: rgba(124, 58, 237, 0.25) !important;
}

/* ── TYPING CURSOR ──────────────────────────────────────── */
#typingText {
  display: inline;
  border-right: 3px solid #7c3aed;
  padding-right: 4px;
  animation: blinkCursor 0.7s step-end infinite;
}

@keyframes blinkCursor {
  from, to { border-color: transparent; }
  50% { border-color: #7c3aed; }
}

/* ── PARTICLE CANVAS ────────────────────────────────────── */
#particleCanvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: auto;
}

.main-banner .container {
  position: relative;
  z-index: 2;
}

/* ── 3D TILT CARDS ──────────────────────────────────────── */
.tilt-card {
  transition: transform 0.15s ease-out;
  will-change: transform;
  transform-style: preserve-3d;
}

/* ── GLASSMORPHISM CARD OVERLAY ─────────────────────────── */
.glass-card {
  background: rgba(255, 255, 255, 0.7) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.25) !important;
}

body.dark-mode .glass-card {
  background: rgba(30, 19, 56, 0.65) !important;
  border: 1px solid rgba(124, 58, 237, 0.2) !important;
}

/* ── ANIMATED GRADIENT BORDER ON HOVER ──────────────────── */
.gradient-border-card {
  position: relative;
  overflow: hidden;
}

.gradient-border-card::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, #7c3aed, #c084fc, #38bdf8, #7c3aed);
  background-size: 300% 300%;
  border-radius: inherit;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
  animation: gradientRotate 4s linear infinite;
}

.gradient-border-card:hover::after {
  opacity: 1;
}

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

/* ── LOGO MARQUEE ───────────────────────────────────────── */
.marquee-wrapper {
  overflow: hidden;
  position: relative;
  padding: 30px 0;
  background: linear-gradient(180deg, #faf5ff 0%, #f3e8ff 50%, #faf5ff 100%);
}

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

.marquee-wrapper::before {
  left: 0;
  background: linear-gradient(90deg, #faf5ff, transparent);
}

.marquee-wrapper::after {
  right: 0;
  background: linear-gradient(-90deg, #faf5ff, transparent);
}

body.dark-mode .marquee-wrapper {
  background: linear-gradient(180deg, #0f0a1e 0%, #1a1035 50%, #0f0a1e 100%);
}

body.dark-mode .marquee-wrapper::before {
  background: linear-gradient(90deg, #0f0a1e, transparent);
}

body.dark-mode .marquee-wrapper::after {
  background: linear-gradient(-90deg, #0f0a1e, transparent);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 60px;
  animation: marqueeScroll 25s linear infinite;
  width: max-content;
}

.marquee-track:hover {
  animation-play-state: paused;
}

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

.marquee-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 28px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(224, 208, 251, 0.6);
  border-radius: 60px;
  white-space: nowrap;
  transition: all 0.3s ease;
  backdrop-filter: blur(6px);
}

body.dark-mode .marquee-item {
  background: rgba(30, 19, 56, 0.6);
  border-color: rgba(124, 58, 237, 0.25);
}

.marquee-item:hover {
  transform: scale(1.06);
  border-color: #c084fc;
  box-shadow: 0 8px 25px rgba(124, 58, 237, 0.15);
}

.marquee-item i {
  font-size: 22px;
  color: #7c3aed;
  flex-shrink: 0;
}

.marquee-item span {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #1e293b;
}

body.dark-mode .marquee-item span {
  color: #e2e8f0;
}

/* ── NAVBAR SHRINK ──────────────────────────────────────── */
.header-area.header-scrolled {
  padding: 0 !important;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15) !important;
  backdrop-filter: blur(14px);
}

.header-area.header-scrolled .main-nav .logo img {
  height: 36px !important;
  transition: height 0.3s ease;
}

/* ── MAGNETIC BUTTON ────────────────────────────────────── */
.magnetic-btn {
  transition: transform 0.2s ease-out;
}

/* ── SERVICE CARD HOVER GLOW ────────────────────────────── */
.services-section .service-item {
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

.services-section .service-item:hover {
  transform: translateY(-10px) !important;
  box-shadow: 0 20px 50px rgba(91, 3, 228, 0.15) !important;
  border-color: #c084fc !important;
}

/* ── STAT ITEM GLOW ─────────────────────────────────────── */
.stats-section .stat-item {
  transition: all 0.3s ease;
}

.stats-section .stat-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 35px rgba(91, 3, 228, 0.2);
}

/* ── WHY-CHOOSE CARD HOVER ──────────────────────────────── */
.why-choose .service-item {
  transition: all 0.3s ease !important;
}

.why-choose .service-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(91, 3, 228, 0.12);
}

/* ── CERT CARD HOVER ────────────────────────────────────── */
.cert-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(91, 3, 228, 0.12);
  border-color: #c084fc !important;
}

/* ── PROCESS ITEM HOVER ─────────────────────────────────── */
.process-item {
  transition: all 0.3s ease;
}

.process-item:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 12px 30px rgba(91, 3, 228, 0.15);
}

/* ── STAGGER ANIMATION DELAYS FOR CHILDREN ──────────────── */
.row > [data-animate]:nth-child(1) { transition-delay: 0ms !important; }
.row > [data-animate]:nth-child(2) { transition-delay: 100ms !important; }
.row > [data-animate]:nth-child(3) { transition-delay: 200ms !important; }
.row > [data-animate]:nth-child(4) { transition-delay: 300ms !important; }
.row > [data-animate]:nth-child(5) { transition-delay: 400ms !important; }
.row > [data-animate]:nth-child(6) { transition-delay: 500ms !important; }

/* ── PULSE GLOW BADGE ───────────────────────────────────── */
.pulse-badge {
  animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(91, 3, 228, 0.4); }
  50% { box-shadow: 0 0 0 10px rgba(91, 3, 228, 0); }
}

/* ── FLOATING ANIMATION ─────────────────────────────────── */
.float-anim {
  animation: floatUpDown 3s ease-in-out infinite;
}

@keyframes floatUpDown {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ── RESPONSIVE ADJUSTMENTS ─────────────────────────────── */
@media (max-width: 768px) {
  #darkModeToggle {
    width: 38px;
    height: 38px;
    font-size: 15px;
  }

  #backToTopBtn {
    width: 42px;
    height: 42px;
    bottom: 85px;
    right: 15px;
  }

  .marquee-track {
    gap: 30px;
  }

  .marquee-item {
    padding: 8px 18px;
    font-size: 12px;
  }
}



/* ═══════════════════════════════════════════════════════════
   PREMIUM MOBILE EXPERIENCE SUITE (Screens <= 991px & <= 768px)
   ═══════════════════════════════════════════════════════════ */

/* ── 1. GLOBAL OVERFLOW & CONTAINER FIT ──────────────────── */
@media (max-width: 991px) {
  html, body {
    overflow-x: hidden !important;
    max-width: 100vw !important;
    position: relative;
  }

  .container {
    padding-left: 18px !important;
    padding-right: 18px !important;
  }

  /* Pre-header mobile stack */
  .pre-header .left-info ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 16px;
  }

  .pre-header .left-info ul li {
    font-size: 11.5px !important;
    margin-right: 0 !important;
  }

  .pre-header .social-icons {
    text-align: center !important;
    margin-top: 6px;
  }

  /* Header and Logo */
  .header-area .main-nav .logo img {
    height: 38px !important;
    margin-right: 8px !important;
  }

  .header-area .main-nav .logo span:first-child {
    font-size: 13.5px !important;
  }

  .header-area .main-nav .logo span:last-child {
    font-size: 8.5px !important;
  }

  /* Hero Section */
  .main-banner {
    padding-top: 80px !important;
    padding-bottom: 50px !important;
  }

  .main-banner .header-text h2 {
    font-size: 28px !important;
    line-height: 38px !important;
    margin-bottom: 12px !important;
  }

  .main-banner .header-text p {
    font-size: 14px !important;
    line-height: 23px !important;
    margin-bottom: 18px !important;
  }

  .hero-image-wrapper {
    margin-right: 0 !important;
    margin-top: 25px !important;
  }

  .hero-image-wrapper img {
    width: 100% !important;
    max-width: 320px !important;
    margin: 0 auto !important;
  }

  .hero-tech-badges {
    margin-bottom: 18px !important;
  }

  .hero-tech-badges .badge {
    font-size: 11px !important;
    padding: 6px 10px !important;
    margin-right: 4px !important;
    margin-bottom: 5px !important;
  }

  /* Stack hero CTA buttons neatly */
  .main-banner .d-flex.flex-wrap {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    gap: 10px !important;
  }

  .main-banner .d-flex.flex-wrap a.btn,
  .main-banner .d-flex.flex-wrap button.btn {
    width: 100% !important;
    margin-right: 0 !important;
    margin-bottom: 0 !important;
    text-align: center !important;
    justify-content: center !important;
    display: flex !important;
    align-items: center !important;
    font-size: 14px !important;
    padding: 13px 20px !important;
  }

  /* Section Spacing & Headings */
  .section {
    padding: 50px 0 !important;
  }

  .section-heading h2, h2 {
    font-size: 24px !important;
    line-height: 33px !important;
  }

  .section-heading p {
    font-size: 13.5px !important;
    line-height: 22px !important;
  }

  /* Service & Feature Cards */
  .services-section .service-item,
  .why-choose .service-item,
  .tilt-card {
    padding: 20px 16px !important;
    border-radius: 14px !important;
    margin-bottom: 18px !important;
  }

  /* Testimonials */
  .testimonials-section {
    padding: 50px 0 !important;
  }

  .review-inner-card {
    padding: 22px 18px !important;
    border-radius: 16px !important;
  }

  /* Stats Counter Grid */
  .stats-section .stat-item {
    padding: 16px 12px !important;
    border-radius: 12px !important;
  }

  .stats-section .counter {
    font-size: 26px !important;
  }

  /* Process Steps */
  .process-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }

  .process-item {
    padding: 16px 12px !important;
  }

  /* Certifications */
  .cert-card {
    padding: 18px 12px !important;
  }

  .cert-card img {
    height: 60px !important;
  }

  .cert-card h5 {
    font-size: 13.5px !important;
  }

  /* Contact Form */
  .contact-us-content {
    padding: 24px 18px !important;
    border-radius: 16px !important;
  }

  .contact-us-content input,
  .contact-us-content textarea,
  .contact-us-content select {
    font-size: 15px !important;
    border-radius: 10px !important;
  }

  /* Video showcase */
  .video-showcase-section {
    padding: 50px 0 !important;
  }

  #techShowcaseVideo {
    height: 240px !important;
  }
}

/* ── 2. MOBILE FLOATING WIDGETS DOCK (Clean, Compact, Non-Overlapping) ── */
@media (max-width: 768px) {
  /* AI Assistant: Compact Floating Bubble on Bottom-Left */
  .ai-assistant-widget {
    bottom: 16px !important;
    left: 16px !important;
    z-index: 9999 !important;
  }

  .ai-widget-btn {
    width: 48px !important;
    height: 48px !important;
    padding: 0 !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 6px 20px rgba(91, 3, 228, 0.45) !important;
  }

  .ai-widget-btn .ai-btn-label {
    display: none !important;
  }

  .ai-widget-btn .ai-online-dot {
    position: absolute !important;
    top: 3px !important;
    right: 3px !important;
    width: 9px !important;
    height: 9px !important;
  }

  .ai-widget-btn i {
    font-size: 19px !important;
    margin: 0 !important;
  }

  /* AI Chat Box on Mobile */
  .ai-chat-box {
    position: fixed !important;
    bottom: 75px !important;
    left: 12px !important;
    right: 12px !important;
    width: calc(100vw - 24px) !important;
    max-width: 100vw !important;
    height: 72vh !important;
    max-height: 520px !important;
    border-radius: 20px !important;
    z-index: 100000 !important;
  }

  /* Right-Side Floating Actions Dock */
  .floating-quick-widget {
    bottom: 16px !important;
    right: 16px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
    z-index: 9997 !important;
  }

  .floating-action-btn {
    width: 44px !important;
    height: 44px !important;
    border-radius: 50% !important;
    font-size: 18px !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25) !important;
  }

  .floating-action-btn:hover::before {
    display: none !important;
  }

  /* Back-to-Top Button */
  #backToTopBtn {
    width: 44px !important;
    height: 44px !important;
    bottom: 124px !important;
    right: 16px !important;
    z-index: 9996 !important;
  }

  #backToTopBtn svg {
    width: 44px !important;
    height: 44px !important;
  }

  #backToTopBtn .arrow-icon {
    font-size: 15px !important;
  }

  /* Dark Mode Toggle on Mobile */
  #darkModeToggle {
    top: 35% !important;
    right: 0 !important;
    width: 34px !important;
    height: 34px !important;
    font-size: 14px !important;
    border-radius: 8px 0 0 8px !important;
  }

  /* Marquee sizing */
  .marquee-wrapper {
    padding: 16px 0 !important;
  }

  .marquee-track {
    gap: 20px !important;
  }

  .marquee-item {
    padding: 6px 14px !important;
    font-size: 11px !important;
    border-radius: 30px !important;
  }

  .marquee-item i {
    font-size: 14px !important;
  }

  /* Process Grid on tiny screens */
  .process-grid {
    grid-template-columns: 1fr !important;
  }

  /* Tech Grid icons */
  .tech-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 10px !important;
  }

  .tech-item {
    padding: 12px 8px !important;
    font-size: 12px !important;
  }

  /* Feature grid in Sports Management */
  .feature-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
  }

  .feature-item {
    padding: 12px 10px !important;
    font-size: 12px !important;
  }

  .feature-item[style*="grid-column: span 2"] {
    grid-column: span 2 !important;
  }
}

/* ── 3. EXTRA SMALL PHONES (<= 480px) ────────────────────── */
@media (max-width: 480px) {
  .main-banner .header-text h2 {
    font-size: 24px !important;
    line-height: 33px !important;
  }

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

  .footer-main {
    padding: 40px 0 20px 0 !important;
  }
}

/* ── 28. NEAT MODERN APPLICATION FORM COMPONENT ─────────── */
.neat-form-input,
.neat-form-select,
.neat-form-textarea {
  width: 100% !important;
  background: #f8fafc !important;
  border: 1.5px solid #cbd5e1 !important;
  border-radius: 12px !important;
  padding: 0 16px !important;
  font-size: 13.5px !important;
  font-weight: 600 !important;
  color: #1e293b !important;
  outline: none !important;
  box-shadow: none !important;
  transition: all 0.25s ease !important;
  font-family: inherit !important;
}

.neat-form-input,
.neat-form-select {
  height: 48px !important;
}

.neat-form-select {
  cursor: pointer !important;
  appearance: auto !important;
}

.neat-form-textarea {
  height: 110px !important;
  padding: 14px 16px !important;
  resize: vertical !important;
  line-height: 1.5 !important;
}

.neat-form-input:focus,
.neat-form-select:focus,
.neat-form-textarea:focus {
  background: #ffffff !important;
  border-color: #7c3aed !important;
  box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.15) !important;
}

.neat-form-input::placeholder,
.neat-form-textarea::placeholder {
  color: #94a3b8 !important;
  font-weight: 400 !important;
}

.neat-form-submit-btn {
  width: 100% !important;
  height: 52px !important;
  background: linear-gradient(135deg, #5b03e4 0%, #7c3aed 100%) !important;
  color: #ffffff !important;
  font-size: 15px !important;
  font-weight: 800 !important;
  letter-spacing: 0.5px !important;
  border: none !important;
  border-radius: 12px !important;
  box-shadow: 0 8px 24px rgba(91, 3, 228, 0.35) !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.neat-form-submit-btn:hover {
  transform: translateY(-2px) scale(1.01) !important;
  box-shadow: 0 14px 32px rgba(91, 3, 228, 0.5) !important;
  background: linear-gradient(135deg, #4f03c7 0%, #6d28d9 100%) !important;
}

/* =====================================================
   ENTERPRISE SUITE 4.0: ADVANCED HIGH-TECH STYLES
   ===================================================== */

/* ── 1. UNIVERSAL COMMAND PALETTE (CTRL+K / CMD+K) ───── */
.cmd-palette-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(10, 6, 26, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 999999;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 12vh;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.25s;
}

.cmd-palette-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.cmd-palette-modal {
  width: 92%;
  max-width: 680px;
  background: #0f0923;
  border: 1px solid rgba(192, 132, 252, 0.35);
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(124, 58, 237, 0.25);
  overflow: hidden;
  transform: scale(0.95) translateY(-10px);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  max-height: 75vh;
}

.cmd-palette-backdrop.active .cmd-palette-modal {
  transform: scale(1) translateY(0);
}

.cmd-input-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
}

.cmd-search-icon {
  font-size: 18px;
  color: #c084fc;
}

.cmd-search-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.cmd-search-input::placeholder {
  color: #94a3b8;
  font-weight: 400;
}

.cmd-shortcut-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  padding: 3px 8px;
  font-size: 11px;
  font-weight: 700;
  color: #cbd5e1;
}

.cmd-results-list {
  flex: 1;
  overflow-y: auto;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cmd-category-label {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: #94a3b8;
  padding: 8px 12px 4px 12px;
}

.cmd-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-radius: 12px;
  cursor: pointer;
  background: transparent;
  border: 1px solid transparent;
  transition: all 0.15s ease;
  text-decoration: none;
  color: inherit;
}

.cmd-item:hover,
.cmd-item.active {
  background: linear-gradient(90deg, rgba(124, 58, 237, 0.25) 0%, rgba(192, 132, 252, 0.15) 100%);
  border-color: rgba(192, 132, 252, 0.4);
  transform: translateX(4px);
}

.cmd-item-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.cmd-item-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c084fc;
  font-size: 15px;
  flex-shrink: 0;
}

.cmd-item.active .cmd-item-icon {
  background: #7c3aed;
  color: #ffffff;
  box-shadow: 0 0 15px rgba(124, 58, 237, 0.6);
}

.cmd-item-title {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
}

.cmd-item-desc {
  font-size: 12px;
  color: #94a3b8;
}

.cmd-badge {
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  color: #cbd5e1;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.cmd-footer {
  padding: 12px 24px;
  background: rgba(0, 0, 0, 0.3);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: #94a3b8;
}

.cmd-footer-keys {
  display: flex;
  align-items: center;
  gap: 14px;
}

.cmd-footer-keys span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

kbd {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  padding: 2px 6px;
  font-size: 10px;
  font-family: inherit;
  color: #e2e8f0;
}

/* ── 2. FLOATING HUD & AUDIO LAUNCHER BUTTONS ─────────── */
.floating-hud-trigger {
  position: fixed;
  bottom: 215px;
  right: 25px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1e1242 0%, #3b0764 100%);
  color: #c084fc;
  border: 1.5px solid rgba(192, 132, 252, 0.4);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
  z-index: 9997;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.floating-hud-trigger:hover {
  transform: scale(1.1) translateY(-2px);
  background: linear-gradient(135deg, #5b03e4 0%, #7c3aed 100%);
  color: #ffffff;
  box-shadow: 0 10px 25px rgba(124, 58, 237, 0.5);
}

.audio-toggle-btn {
  position: fixed;
  bottom: 275px;
  right: 25px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(15, 9, 35, 0.85);
  color: #94a3b8;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  z-index: 9997;
  transition: all 0.3s ease;
}

.audio-toggle-btn.sound-on {
  color: #38bdf8;
  border-color: rgba(56, 189, 248, 0.5);
  box-shadow: 0 0 15px rgba(56, 189, 248, 0.3);
}

.audio-toggle-btn:hover {
  transform: scale(1.1);
  color: #38bdf8;
}

/* ── 3. LIVE CLOUD ARCHITECTURE & TELEMETRY HUD ──────── */
.system-hud-modal {
  position: fixed;
  inset: 0;
  background: rgba(10, 6, 26, 0.8);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  z-index: 999998;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
  padding: 20px;
}

.system-hud-modal.active {
  opacity: 1;
  visibility: visible;
}

.system-hud-card {
  width: 100%;
  max-width: 860px;
  background: linear-gradient(180deg, #0f0923 0%, #160c32 100%);
  border: 1.5px solid rgba(192, 132, 252, 0.3);
  border-radius: 24px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7), 0 0 50px rgba(124, 58, 237, 0.2);
  color: #ffffff;
  overflow: hidden;
}

.hud-header {
  padding: 24px 30px;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hud-status-pulse {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #22c55e;
  display: inline-block;
  box-shadow: 0 0 12px #22c55e;
  animation: hudPulse 1.8s infinite;
}

@keyframes hudPulse {
  0% { transform: scale(0.9); opacity: 0.8; }
  50% { transform: scale(1.2); opacity: 1; box-shadow: 0 0 18px #22c55e; }
  100% { transform: scale(0.9); opacity: 0.8; }
}

.hud-node-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 18px;
  transition: all 0.25s ease;
}

.hud-node-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(192, 132, 252, 0.3);
  transform: translateY(-2px);
}

.hud-metric-val {
  font-size: 24px;
  font-weight: 800;
  color: #38bdf8;
  margin: 4px 0;
}

/* ── 4. 360° ATHLETE RADAR & LIVE MATCH CONSOLE ───────── */
.radar-chart-wrap {
  position: relative;
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
}

.radar-svg {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0 15px rgba(192, 132, 252, 0.35));
}

.radar-polygon {
  fill: rgba(124, 58, 237, 0.45);
  stroke: #c084fc;
  stroke-width: 2.5;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.radar-point {
  fill: #38bdf8;
  stroke: #ffffff;
  stroke-width: 1.5;
  transition: all 0.5s ease;
}

.radar-axis-line {
  stroke: rgba(255, 255, 255, 0.15);
  stroke-dasharray: 2 2;
}

.radar-web-circle {
  fill: none;
  stroke: rgba(255, 255, 255, 0.08);
  stroke-width: 1;
}

/* Confetti Burst */
.confetti-particle {
  position: fixed;
  width: 10px;
  height: 10px;
  pointer-events: none;
  z-index: 9999999;
  animation: confettiFall 2.5s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes confettiFall {
  0% { transform: translateY(0) rotate(0deg) scale(1); opacity: 1; }
  100% { transform: translateY(80vh) rotate(720deg) scale(0.2); opacity: 0; }
}

/* ── 5. AI PROJECT SCOPE & SPRINT CONFIGURATOR 4.0 ───── */
.scope-config-card {
  background: linear-gradient(180deg, #0b0717 0%, #15092a 100%);
  border: 1.5px solid rgba(192, 132, 252, 0.25);
  border-radius: 24px;
  padding: 36px 30px;
  color: #ffffff;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.scope-tier-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 14px 18px;
  color: #cbd5e1;
  font-weight: 700;
  font-size: 13.5px;
  cursor: pointer;
  transition: all 0.2s ease;
  width: 100%;
  text-align: left;
}

.scope-tier-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(192, 132, 252, 0.4);
  color: #ffffff;
}

.scope-tier-btn.selected {
  background: linear-gradient(135deg, rgba(91, 3, 228, 0.4) 0%, rgba(124, 58, 237, 0.3) 100%);
  border-color: #c084fc;
  color: #ffffff;
  box-shadow: 0 0 20px rgba(124, 58, 237, 0.3);
}

.sprint-timeline-step {
  position: relative;
  padding-left: 28px;
  padding-bottom: 20px;
  border-left: 2px solid rgba(192, 132, 252, 0.3);
}

.sprint-timeline-step:last-child {
  border-left-color: transparent;
  padding-bottom: 0;
}

.sprint-timeline-step::before {
  content: '';
  position: absolute;
  left: -7px;
  top: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #c084fc;
  box-shadow: 0 0 10px #c084fc;
}

/* ── 6. CAREER FINDER AI DIAGNOSTIC MATCHER ──────────── */
.quiz-option-btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 18px 20px;
  color: #ffffff;
  text-align: left;
  cursor: pointer;
  transition: all 0.2s ease;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
}

.quiz-option-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(192, 132, 252, 0.4);
  transform: translateY(-2px);
}

.quiz-option-btn.selected {
  background: linear-gradient(135deg, rgba(91, 3, 228, 0.45) 0%, rgba(124, 58, 237, 0.35) 100%);
  border-color: #c084fc;
  box-shadow: 0 0 25px rgba(124, 58, 237, 0.35);
}

/* ── 7. CRYPTOGRAPHIC VERIFICATION & LINKEDIN ────────── */
.crypto-hash-box {
  background: rgba(15, 9, 35, 0.85);
  border: 1px solid rgba(192, 132, 252, 0.25);
  border-radius: 12px;
  padding: 12px 16px;
  font-family: 'Courier New', Courier, monospace;
  font-size: 12px;
  color: #38bdf8;
  word-break: break-all;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.linkedin-badge-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #0a66c2;
  color: #ffffff;
  padding: 10px 22px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 13.5px;
  text-decoration: none;
  transition: all 0.25s ease;
  border: none;
}

.linkedin-badge-btn:hover {
  background: #084d93;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(10, 102, 194, 0.4);
}

/* ── 8. MAGNETIC BUTTON CURSOR PHYSICS ───────────────── */
.magnetic-btn {
  transition: transform 0.15s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}


.system-hud-modal,
#systemHudModal {
    display: none !important;
    visibility: hidden !important;
    pointer-events: none !important;
    opacity: 0 !important;
}

/* =========================================================================
   BULLETPROOF HEADER & SINGLE-LINE NAVBAR LAYOUT WITH ADJUSTED CONTACT BUTTON
   ========================================================================= */

/* Ensure Header Container Has Full Breathing Room across all viewports */
.header-area .container,
.background-header .container {
  max-width: 96% !important;
  width: 96% !important;
  padding-left: 15px !important;
  padding-right: 15px !important;
}

@media (min-width: 1600px) {
  .header-area .container,
  .background-header .container {
    max-width: 1520px !important;
  }
}

/* Header Flex Row & Logo Auto-Sizing */
.header-area .main-nav,
.background-header .main-nav {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  flex-wrap: nowrap !important;
  width: 100% !important;
  min-height: 80px !important;
}

.header-area .main-nav .logo,
.background-header .main-nav .logo {
  flex: 0 0 auto !important; /* Only take exact logo width, release bloated 35% basis */
  margin-right: 18px !important;
  display: flex !important;
  align-items: center !important;
}

/* Desktop Nav Menu: Strictly Single Row (Never Wrap) */
@media (min-width: 992px) {
  .header-area .main-nav .nav,
  .background-header .main-nav .nav {
    flex: 1 1 auto !important;
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important; /* Strictly prevents Contact from wrapping down */
    align-items: center !important;
    justify-content: flex-end !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
    white-space: nowrap !important;
    height: 80px !important;
  }

  .header-area .main-nav .nav > li,
  .background-header .main-nav .nav > li {
    flex-shrink: 0 !important;
    padding-left: 5px !important;
    padding-right: 5px !important;
    height: 80px !important;
    display: flex !important;
    align-items: center !important;
  }

  .header-area .main-nav .nav > li > a,
  .background-header .main-nav .nav > li > a {
    font-size: 11.5px !important;
    font-weight: 700 !important;
    letter-spacing: 0.3px !important;
    text-transform: uppercase !important;
    padding: 6px 4px !important;
    white-space: nowrap !important;
    line-height: normal !important;
    height: auto !important;
    color: #ffffff !important;
  }

  /* Submenu arrow indicators */
  .header-area .main-nav .nav li.has-sub > a:after {
    margin-left: 4px !important;
    font-size: 10px !important;
  }

  /* Adjusted Contact Button in Header Only: Beautifully Fitted CTA Pill Button */
  .header-area .main-nav .nav > li.contact-nav-item,
  .background-header .main-nav .nav > li.contact-nav-item {
    padding-left: 10px !important;
    padding-right: 0 !important;
    margin-left: 4px !important;
    flex-shrink: 0 !important;
  }

  .header-area .main-nav .nav > li a.nav-contact-btn,
  .background-header .main-nav .nav > li a.nav-contact-btn {
    background: linear-gradient(135deg, #7012ce 0%, #9333ea 100%) !important;
    color: #ffffff !important;
    height: 38px !important;
    line-height: 38px !important;
    padding: 0 18px !important;
    border-radius: 20px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 11.5px !important;
    font-weight: 800 !important;
    letter-spacing: 0.8px !important;
    text-transform: uppercase !important;
    box-shadow: 0 4px 14px rgba(112, 18, 206, 0.45) !important;
    transition: all 0.25s ease !important;
    white-space: nowrap !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
  }

  .header-area .main-nav .nav > li a.nav-contact-btn:hover,
  .background-header .main-nav .nav > li a.nav-contact-btn:hover {
    background: linear-gradient(135deg, #9333ea 0%, #c084fc 100%) !important;
    color: #ffffff !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(112, 18, 206, 0.65) !important;
  }
}

/* Screens between 992px and 1250px: Compact Spacing */
@media (min-width: 992px) and (max-width: 1250px) {
  .header-area .main-nav .nav > li,
  .background-header .main-nav .nav > li {
    padding-left: 3px !important;
    padding-right: 3px !important;
  }
  .header-area .main-nav .nav > li > a,
  .background-header .main-nav .nav > li > a {
    font-size: 10.5px !important;
    letter-spacing: 0px !important;
    padding: 4px 2px !important;
  }
  .header-area .main-nav .logo span:first-child {
    font-size: 14px !important;
  }
  .header-area .main-nav .nav > li a.nav-contact-btn,
  .background-header .main-nav .nav > li a.nav-contact-btn {
    height: 34px !important;
    line-height: 34px !important;
    padding: 0 14px !important;
    font-size: 10.5px !important;
  }
}

/* ==========================================================================
   PREMIUM MOBILE RESPONSIVE UI/UX ARCHITECTURE (320px - 768px)
   ========================================================================== */

@media (max-width: 768px) {
  /* Prevent iOS Safari Auto-Zoom on Form Inputs */
  input, select, textarea,
  .neat-form-input, .neat-form-textarea,
  .contact-us-content input, .contact-us-content textarea {
    font-size: 16px !important;
    min-height: 48px;
    border-radius: 12px;
  }

  /* One-Hand Thumb Friendly Buttons & CTAs */
  .btn, .main-button a, .main-button button,
  button[type="submit"], input[type="submit"],
  .btn-enroll-trigger, .btn-primary, .btn-secondary {
    min-height: 48px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    touch-action: manipulation;
  }

  /* Full-width CTA buttons in mobile forms */
  form button[type="submit"],
  form input[type="submit"],
  .enrollment-form-card .main-button a {
    width: 100% !important;
    text-align: center !important;
  }

  /* Touch-Friendly Submenu items */
  .header-area .main-nav .nav li a,
  .background-header .main-nav .nav li a {
    min-height: 44px !important;
    padding: 12px 14px !important;
  }

  /* Floating Action Buttons: Clear bottom separation & no overlap */
  .floating-quick-widget {
    right: 14px !important;
    bottom: calc(14px + env(safe-area-inset-bottom, 0px)) !important;
    gap: 10px !important;
    z-index: 9998 !important;
  }

  .floating-quick-widget .floating-action-btn {
    width: 46px !important;
    height: 46px !important;
    font-size: 20px !important;
  }

  .ai-assistant-widget {
    left: 14px !important;
    bottom: calc(14px + env(safe-area-inset-bottom, 0px)) !important;
    z-index: 9998 !important;
  }

  .ai-assistant-trigger {
    width: 46px !important;
    height: 46px !important;
  }

  /* AEO Direct Answer Cards Mobile Padding */
  .aeo-answer-card {
    padding: 20px 18px !important;
    border-radius: 16px !important;
  }

  .aeo-answer-card h2 {
    font-size: 19px !important;
    line-height: 1.35 !important;
  }

  .aeo-answer-card p {
    font-size: 14px !important;
    line-height: 23px !important;
  }

  /* Mobile Tables Horizontal Scroll with Smooth Touch */
  .table-responsive, .data-table {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 480px) {
  /* Extra Small Devices (320px - 480px) */
  .header-area .main-nav {
    padding: 0 10px !important;
  }

  .menu-trigger {
    right: 12px !important;
    top: 14px !important;
  }

  .page-heading h1 {
    font-size: 26px !important;
    line-height: 1.25 !important;
  }

  .main-banner .header-text h1 {
    font-size: 26px !important;
    line-height: 1.25 !important;
  }

  .hero-tech-badges .badge {
    font-size: 11px !important;
    padding: 6px 10px !important;
    margin-right: 4px !important;
    margin-bottom: 4px !important;
  }

  /* Bottom sheet style for modals */
  .modal-dialog {
    margin: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    position: fixed !important;
    bottom: 0 !important;
  }

  .modal-content {
    border-radius: 20px 20px 0 0 !important;
  }
}

/* ==========================================================================
   COMMAND PALETTE OVERLAY (CTRL + K) - FIXED MODAL STYLES
   ========================================================================== */

.cmd-palette-overlay {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  background: rgba(11, 7, 23, 0.75) !important;
  backdrop-filter: blur(14px) !important;
  -webkit-backdrop-filter: blur(14px) !important;
  z-index: 999999 !important;
  display: none !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 20px !important;
  opacity: 0 !important;
  pointer-events: none !important;
  transition: opacity 0.2s ease !important;
}

.cmd-palette-overlay.open {
  display: flex !important;
  opacity: 1 !important;
  pointer-events: auto !important;
}

.cmd-palette-box {
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 20px !important;
  width: 100% !important;
  max-width: 620px !important;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45) !important;
  overflow: hidden !important;
  display: flex !important;
  flex-direction: column !important;
  animation: cmdIn 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

@keyframes cmdIn {
  from { opacity: 0; transform: translateY(-16px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.cmd-header {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  padding: 16px 20px !important;
  border-bottom: 1px solid #f1f5f9 !important;
  background: #f8fafc !important;
}

.cmd-header i {
  color: #7012ce !important;
  font-size: 16px !important;
}

.cmd-input {
  flex: 1 !important;
  border: none !important;
  background: transparent !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  color: #1e293b !important;
  outline: none !important;
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  min-height: auto !important;
  padding: 0 !important;
}

.cmd-kbd {
  font-size: 11px !important;
  font-weight: 800 !important;
  background: #f3e8ff !important;
  color: #7012ce !important;
  padding: 3px 8px !important;
  border-radius: 6px !important;
  border: 1px solid #e9d5ff !important;
}

.cmd-results {
  max-height: 380px !important;
  overflow-y: auto !important;
  padding: 10px 8px !important;
  background: #ffffff !important;
}

.cmd-group-title {
  font-size: 10.5px !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  color: #94a3b8 !important;
  padding: 10px 14px 4px !important;
}

.cmd-item {
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
  padding: 11px 14px !important;
  border-radius: 12px !important;
  cursor: pointer !important;
  transition: all 0.15s ease !important;
  color: #334155 !important;
  text-decoration: none !important;
  margin-bottom: 2px !important;
}

.cmd-item:hover, .cmd-item.selected {
  background: #faf5ff !important;
  color: #7012ce !important;
  transform: translateX(3px) !important;
}

.cmd-item-icon {
  width: 32px !important;
  height: 32px !important;
  border-radius: 8px !important;
  background: #f3e8ff !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #7012ce !important;
  font-size: 13px !important;
  flex-shrink: 0 !important;
}

.cmd-item:hover .cmd-item-icon, .cmd-item.selected .cmd-item-icon {
  background: #7012ce !important;
  color: #ffffff !important;
}

.cmd-item-text {
  flex: 1 !important;
  min-width: 0 !important;
}

.cmd-item-title {
  font-size: 13.5px !important;
  font-weight: 700 !important;
  color: inherit !important;
}

.cmd-item-desc {
  font-size: 11.5px !important;
  color: #64748b !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

.cmd-footer {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  padding: 12px 20px !important;
  border-top: 1px solid #f1f5f9 !important;
  background: #f8fafc !important;
  font-size: 11.5px !important;
  color: #64748b !important;
}

.cmd-footer kbd {
  background: #e2e8f0 !important;
  padding: 2px 6px !important;
  border-radius: 4px !important;
  font-weight: 700 !important;
  color: #334155 !important;
  font-size: 11px !important;
}

body.dark-mode .cmd-palette-box {
  background: #130d24 !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
}

body.dark-mode .cmd-header,
body.dark-mode .cmd-footer {
  background: #0b0717 !important;
  border-color: rgba(255, 255, 255, 0.08) !important;
}

body.dark-mode .cmd-input {
  color: #f1f5f9 !important;
}

body.dark-mode .cmd-results {
  background: #130d24 !important;
}

body.dark-mode .cmd-item {
  color: #cbd5e1 !important;
}

body.dark-mode .cmd-item:hover,
body.dark-mode .cmd-item.selected {
  background: rgba(112, 18, 206, 0.25) !important;
  color: #c084fc !important;
}

/* ==========================================================================
   ENTERPRISE MOBILE UI/UX MASTER ARCHITECTURE (<= 991px & <= 768px)
   ========================================================================== */

@media (max-width: 991px) {
  /* Fix Mobile Header Bar Height & Alignment */
  .header-area {
    height: 74px !important;
    background: #0f0a1e !important;
    padding: 0 16px !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 99999 !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.45) !important;
  }

  .header-area .main-nav {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    height: 74px !important;
    position: relative !important;
    overflow: visible !important;
  }

  .header-area .main-nav .logo {
    display: flex !important;
    align-items: center !important;
    margin: 0 !important;
    position: static !important;
    float: none !important;
  }

  .header-area .main-nav .logo img {
    height: 40px !important;
    width: auto !important;
    margin-right: 10px !important;
  }

  /* Hamburger Button: Clean, Minimalist 40x40 Glass Icon */
  .menu-trigger,
  .header-area .main-nav .menu-trigger {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: absolute !important;
    right: 16px !important;
    top: 17px !important;
    transform: none !important;
    width: 40px !important;
    height: 40px !important;
    border-radius: 10px !important;
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.18) !important;
    cursor: pointer !important;
    z-index: 10001 !important;
    box-sizing: border-box !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  .menu-trigger span,
  .menu-trigger span:before,
  .menu-trigger span:after {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    background-color: #ffffff !important;
    width: 20px !important;
    height: 2px !important;
    border-radius: 2px !important;
    position: absolute !important;
    left: 9px !important;
    transition: all 0.25s ease !important;
  }

  .menu-trigger span {
    top: 18px !important;
  }

  .menu-trigger span:before {
    content: '' !important;
    top: -6px !important;
    left: 0 !important;
  }

  .menu-trigger span:after {
    content: '' !important;
    top: 6px !important;
    left: 0 !important;
  }

  .menu-trigger.active span {
    background-color: transparent !important;
  }

  .menu-trigger.active span:before {
    transform: translateY(6px) rotate(45deg) !important;
  }

  .menu-trigger.active span:after {
    transform: translateY(-6px) rotate(-45deg) !important;
  }

  /* On mobile <= 768px, hide fixed dark mode button from the header bar to eliminate clutter */
  #darkModeToggle {
    display: none !important;
  }

  /* Mobile Drawer Dropdown Navigation */
  .header-area .main-nav .nav {
    display: none;
    position: absolute !important;
    top: 74px !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    background: #0d081f !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-bottom: 2px solid #7012ce !important;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.85) !important;
    padding: 12px 18px 26px !important;
    max-height: calc(100vh - 84px) !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch !important;
    z-index: 9999 !important;
    margin: 0 !important;
    flex-direction: column !important;
    height: auto !important;
    float: none !important;
  }

  .header-area .main-nav .nav li {
    display: block !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07) !important;
    height: auto !important;
    background: transparent !important;
  }

  .header-area .main-nav .nav li a {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    height: 48px !important;
    line-height: 48px !important;
    color: #f1f5f9 !important;
    font-size: 14.5px !important;
    font-weight: 600 !important;
    padding: 0 10px !important;
    background: transparent !important;
    border: none !important;
    text-transform: none !important;
    letter-spacing: 0.2px !important;
  }

  .header-area .main-nav .nav li a:hover,
  .header-area .main-nav .nav li a.active {
    color: #c084fc !important;
  }

  /* Submenus on Mobile */
  .header-area .main-nav .nav li.has-sub {
    padding-right: 0 !important;
  }

  .header-area .main-nav .nav li.has-sub:after {
    display: none !important;
  }

  .header-area .main-nav .nav li.has-sub > a:after {
    content: "\f078" !important;
    font-family: 'FontAwesome' !important;
    font-size: 11px !important;
    color: #decdfa !important;
    transition: transform 0.2s ease !important;
    margin-left: auto !important;
  }

  .header-area .main-nav .nav li.has-sub.open > a:after {
    transform: rotate(180deg) !important;
    color: #c084fc !important;
  }

  .header-area .main-nav .nav li.has-sub ul.sub-menu {
    display: none;
    position: static !important;
    width: 100% !important;
    background: rgba(255, 255, 255, 0.04) !important;
    border-radius: 12px !important;
    padding: 6px 0 !important;
    margin: 4px 0 10px !important;
    box-shadow: none !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    height: auto !important;
    visibility: visible !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .header-area .main-nav .nav li.has-sub ul.sub-menu li {
    border: none !important;
  }

  .header-area .main-nav .nav li.has-sub ul.sub-menu li a {
    height: 40px !important;
    line-height: 40px !important;
    font-size: 13.5px !important;
    padding: 0 16px !important;
    color: #cbd5e1 !important;
    font-weight: 500 !important;
  }

  .header-area .main-nav .nav li.has-sub ul.sub-menu li a:hover {
    color: #ffffff !important;
    background: rgba(112, 18, 206, 0.25) !important;
  }

  /* Contact CTA inside Mobile Drawer */
  .header-area .main-nav .nav li.contact-nav-item {
    margin-top: 14px !important;
    border-bottom: none !important;
    padding: 0 !important;
  }

  .header-area .main-nav .nav li a.nav-contact-btn {
    display: flex !important;
    width: 100% !important;
    align-items: center !important;
    justify-content: center !important;
    height: 48px !important;
    line-height: 48px !important;
    border-radius: 14px !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    background: linear-gradient(135deg, #7012ce 0%, #9333ea 100%) !important;
    color: #ffffff !important;
    box-shadow: 0 6px 20px rgba(112, 18, 206, 0.45) !important;
    margin: 0 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.8px !important;
  }
}

@media (max-width: 768px) {
  /* ==========================================================================
     1. HERO BANNER: CLEAN, COMPACT, EXECUTIVE
     ========================================================================== */
  .main-banner {
    padding-top: 90px !important;
    padding-bottom: 30px !important;
    text-align: center !important;
  }

  .header-text {
    text-align: center !important;
  }

  /* Hero Pill Innovation Badge */
  .header-text .d-inline-flex.rounded-pill {
    max-width: 100% !important;
    font-size: 11px !important;
    padding: 5px 12px !important;
    gap: 6px !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    margin: 0 auto 14px auto !important;
  }

  /* Hero Heading */
  .main-banner h1,
  .header-text h1 {
    font-size: 25px !important;
    line-height: 1.26 !important;
    letter-spacing: -0.3px !important;
    margin-bottom: 12px !important;
    text-align: center !important;
  }

  /* Hero Paragraph */
  .main-banner p {
    font-size: 13.5px !important;
    line-height: 1.55 !important;
    margin: 10px auto 16px auto !important;
    text-align: center !important;
    color: #64748b !important;
    max-width: 340px !important;
  }

  /* Hero Technology Chips */
  .hero-tech-badges {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 6px !important;
    margin-bottom: 18px !important;
  }

  .hero-tech-badges .badge {
    font-size: 11px !important;
    padding: 6px 12px !important;
    margin: 0 !important;
    border-radius: 16px !important;
  }

  /* Streamlined Hero CTA Buttons */
  .header-text .d-flex.align-items-center.flex-wrap.gap-3.mt-4 {
    flex-direction: column !important;
    width: 100% !important;
    gap: 8px !important;
    margin-top: 14px !important;
  }

  .header-text .d-flex.align-items-center.flex-wrap.gap-3.mt-4 > a.btn:first-child {
    width: 100% !important;
    height: 48px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 14.5px !important;
    font-weight: 700 !important;
    margin: 0 !important;
    border-radius: 12px !important;
    box-shadow: 0 6px 20px rgba(112, 18, 206, 0.35) !important;
  }

  .header-text .d-flex.align-items-center.flex-wrap.gap-3.mt-4 > button.btn {
    width: 100% !important;
    height: 44px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 13.5px !important;
    font-weight: 600 !important;
    margin: 0 !important;
    border-radius: 12px !important;
  }

  .header-text .d-flex.align-items-center.flex-wrap.gap-3.mt-4 > a.btn:last-child {
    display: none !important;
  }

  /* Hero VR Image Sizing */
  .hero-image-wrapper {
    margin: 15px auto 0 !important;
    max-width: 200px !important;
    display: block !important;
  }

  .hero-image-wrapper img {
    width: 100% !important;
    max-width: 200px !important;
    margin: 0 auto !important;
  }

  /* ==========================================================================
     2. MARQUEE: TIGHT & CRISP
     ========================================================================== */
  .marquee-wrapper {
    margin: 15px 0 25px 0 !important;
    padding: 10px 0 !important;
    background: #f8fafc !important;
    border-top: 1px solid #f1f5f9 !important;
    border-bottom: 1px solid #f1f5f9 !important;
  }

  .marquee-item {
    font-size: 11px !important;
    padding: 5px 12px !important;
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 16px !important;
    color: #1e293b !important;
  }

  /* ==========================================================================
     3. UNIVERSAL SECTION HEADINGS & PADDING
     ========================================================================== */
  section, .section,
  .services-section,
  .video-showcase-section,
  #future-guidance-showcase,
  #student-safety-showcase,
  #growth-calculator,
  .tech-matrix-section {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }

  section h2, .section h2,
  .section-heading h2,
  h2[data-animate] {
    font-size: 24px !important;
    line-height: 1.28 !important;
    margin-bottom: 10px !important;
    text-align: center !important;
  }

  section p, .section-heading p {
    font-size: 13.5px !important;
    line-height: 1.55 !important;
    text-align: center !important;
  }

  .line-dec {
    margin: 10px auto 16px auto !important;
    width: 60px !important;
    height: 3px !important;
  }

  /* ==========================================================================
     4. CORE SOLUTIONS & SERVICES: TANGIBLE LUXURY CARDS
     ========================================================================== */
  .services-section {
    background: #f8fafc !important;
  }

  .services-section .service-item {
    background: #ffffff !important;
    border-radius: 18px !important;
    border: 1px solid #e2e8f0 !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04) !important;
    padding: 18px !important;
    margin-bottom: 18px !important;
    text-align: center !important;
  }

  .services-section .service-item img {
    height: 150px !important;
    width: 100% !important;
    object-fit: cover !important;
    border-radius: 12px !important;
    margin-bottom: 14px !important;
  }

  .services-section .service-item h4 {
    font-size: 17px !important;
    font-weight: 800 !important;
    margin-bottom: 8px !important;
  }

  .services-section .service-item p {
    font-size: 13px !important;
    line-height: 1.5 !important;
    color: #64748b !important;
    margin-bottom: 14px !important;
  }

  .services-section .service-item a.btn {
    width: 100% !important;
    height: 42px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 10px !important;
    font-size: 13.5px !important;
    font-weight: 700 !important;
  }

  /* ==========================================================================
     5. VIDEO DEMO & PLATFORM SHOWCASE
     ========================================================================== */
  .video-card-container {
    border-radius: 14px !important;
    margin-bottom: 16px !important;
  }

  .video-card-container video,
  #techShowcaseVideo {
    height: 200px !important;
    border-radius: 14px !important;
    object-fit: cover !important;
  }

  .video-showcase-section .col-lg-4 > div > div {
    border-radius: 14px !important;
    padding: 14px 16px !important;
    margin-bottom: 10px !important;
    background: rgba(255, 255, 255, 0.06) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
  }

  /* ==========================================================================
     6. INTERNSHIP & LEARNING CARDS
     ========================================================================== */
  #learning-programs .service-item {
    border-radius: 18px !important;
    border: 1px solid #e2e8f0 !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04) !important;
    padding: 18px !important;
    margin-bottom: 16px !important;
  }

  #learning-programs .service-item a.btn,
  #learning-programs .service-item button.btn {
    width: 100% !important;
    height: 44px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 10px !important;
    font-size: 14px !important;
  }

  /* ==========================================================================
     7. FLOATING ACTION BUTTONS DOCK (CLEAN & SLEEK)
     ========================================================================== */
  .floating-quick-widget .floating-action-btn.contact {
    display: none !important;
  }

  .floating-quick-widget {
    position: fixed !important;
    bottom: calc(16px + env(safe-area-inset-bottom, 0px)) !important;
    right: 16px !important;
    z-index: 9998 !important;
    display: flex !important;
    flex-direction: column !important;
    margin: 0 !important;
  }

  .floating-quick-widget .floating-action-btn.whatsapp {
    width: 46px !important;
    height: 46px !important;
    border-radius: 50% !important;
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.45) !important;
    font-size: 22px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  #iiitihasAiWidget,
  .ai-widget-wrapper {
    position: fixed !important;
    bottom: calc(16px + env(safe-area-inset-bottom, 0px)) !important;
    left: 16px !important;
    z-index: 9998 !important;
  }

  #iiitihasAiWidget .ai-widget-btn,
  .ai-widget-btn {
    width: 46px !important;
    height: 46px !important;
    border-radius: 50% !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 6px 18px rgba(112, 18, 206, 0.45) !important;
  }

  #iiitihasAiWidget .ai-btn-label,
  .ai-btn-label {
    display: none !important;
  }

  #backToTopBtn {
    width: 38px !important;
    height: 38px !important;
    bottom: calc(70px + env(safe-area-inset-bottom, 0px)) !important;
    right: 20px !important;
    z-index: 9997 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  #backToTopBtn svg {
    width: 38px !important;
    height: 38px !important;
  }

  /* ==========================================================================
     8. FOOTER: SYMMETRICAL & SPACED
     ========================================================================== */
  footer,
  .footer-main {
    padding-top: 45px !important;
    padding-bottom: 25px !important;
    text-align: center !important;
  }

  .footer-main h5 {
    margin-top: 15px !important;
    margin-bottom: 10px !important;
  }

  .footer-bottom {
    padding-top: 15px !important;
    padding-bottom: 85px !important;
    text-align: center !important;
  }

  .footer-main .row.border-top.border-bottom .d-flex.flex-wrap {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
  }

  .footer-main .row.border-top.border-bottom .d-flex.flex-wrap > div {
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 12px !important;
    padding: 10px 8px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    font-size: 11px !important;
    line-height: 1.35 !important;
  }

  .footer-main .row.border-top.border-bottom .d-flex.flex-wrap > div img {
    height: 28px !important;
    width: auto !important;
    margin-bottom: 6px !important;
  }

  /* Ensure all animation-dependent headings/cards are 100% visible on mobile */
  .reveal,
  .reveal.active,
  .reveal-delay-1,
  .reveal-delay-2,
  .reveal-delay-3,
  .reveal-delay-4,
  .anim-hidden,
  [data-animate],
  [data-aos] {
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
    transition: none !important;
  }

  /* ==========================================================================
     9. SKILL PROGRESS BARS & TECH INFOS SECTION (ZERO OVERLAP / ZERO SMASH)
     ========================================================================== */
  .infos {
    padding: 35px 0 !important;
    margin-top: 0 !important;
    background-image: none !important;
    background: #f8fafc !important;
  }

  .infos .main-content {
    border-radius: 20px !important;
    overflow: hidden !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06) !important;
    border: 1px solid #e2e8f0 !important;
    background: #ffffff !important;
  }

  .infos .main-content .left-image {
    min-height: 180px !important;
    max-height: 220px !important;
    border-radius: 20px 20px 0 0 !important;
    overflow: hidden !important;
  }

  .infos .main-content .left-image img {
    height: 200px !important;
    object-fit: cover !important;
    border-radius: 20px 20px 0 0 !important;
  }

  .infos .main-content .section-heading {
    padding: 24px 20px 14px 20px !important;
    text-align: center !important;
  }

  .infos .main-content .section-heading h2 {
    color: #1e1b4b !important;
    font-size: 22px !important;
    font-weight: 800 !important;
    line-height: 1.3 !important;
    margin-bottom: 10px !important;
    text-align: center !important;
  }

  .infos .main-content .section-heading h2 em {
    color: #7012ce !important;
    font-style: normal !important;
  }

  .infos .main-content .section-heading p {
    color: #64748b !important;
    font-size: 13.5px !important;
    line-height: 1.55 !important;
    text-align: center !important;
  }

  .infos .main-content .skills {
    padding: 0 20px 10px 20px !important;
  }

  .infos .main-content .skill-slide,
  .video-info .skill-slide {
    position: relative !important;
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    justify-content: space-between !important;
    align-items: center !important;
    height: auto !important;
    margin-bottom: 22px !important;
    background-color: transparent !important;
    border-radius: 0 !important;
    padding-bottom: 14px !important;
  }

  .infos .main-content .skill-slide h6,
  .video-info .skill-slide h6 {
    position: static !important;
    font-size: 13.5px !important;
    font-weight: 700 !important;
    color: #1e1b4b !important;
    margin: 0 !important;
    line-height: 1.3 !important;
    max-width: 80% !important;
  }

  .infos .main-content .skill-slide span,
  .video-info .skill-slide span {
    position: static !important;
    font-size: 13.5px !important;
    font-weight: 800 !important;
    color: #7012ce !important;
    margin: 0 !important;
    right: auto !important;
    top: auto !important;
    line-height: 1.3 !important;
  }

  .infos .main-content .skill-slide:after,
  .video-info .skill-slide:after {
    content: '' !important;
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 7px !important;
    background: #f3e8ff !important;
    border-radius: 4px !important;
    z-index: 1 !important;
  }

  .infos .main-content .skill-slide .fill,
  .video-info .skill-slide .fill {
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    height: 7px !important;
    border-radius: 4px !important;
    background: linear-gradient(90deg, #7012ce, #a855f7) !important;
    z-index: 2 !important;
  }

  .infos .main-content p.more-info {
    padding: 10px 20px 24px 20px !important;
    margin-top: 0 !important;
    font-size: 12.5px !important;
    line-height: 20px !important;
    text-align: center !important;
    color: #64748b !important;
  }

  /* ==========================================================================
     10. REVIEWS & TESTIMONIALS MOBILE POLISH
     ========================================================================== */
  #reviews .section-heading p {
    color: #475569 !important;
    font-size: 13.5px !important;
    line-height: 1.55 !important;
  }

  #reviews .overall-rating-card {
    margin-bottom: 24px !important;
    padding: 20px 16px !important;
    border-radius: 18px !important;
  }

  .review-card {
    border-radius: 18px !important;
    padding: 20px !important;
    margin-bottom: 16px !important;
    border: 1px solid #f1f5f9 !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04) !important;
  }

  /* ==========================================================================
     11. CAREER GUIDANCE & SAFETY SECTIONS MOBILE POLISH
     ========================================================================== */
  #future-guidance-showcase,
  #student-safety-showcase {
    padding: 45px 0 !important;
    text-align: center !important;
  }

  #future-guidance-showcase h2,
  #student-safety-showcase h2 {
    font-size: 24px !important;
    line-height: 1.3 !important;
    text-align: center !important;
  }

  #future-guidance-showcase .d-flex.flex-wrap,
  #student-safety-showcase .d-flex.flex-wrap {
    justify-content: center !important;
    flex-direction: column !important;
    gap: 10px !important;
  }

  #future-guidance-showcase .btn,
  #student-safety-showcase .btn {
    width: 100% !important;
    height: 46px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 12px !important;
    font-size: 14px !important;
  }
}


