@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&family=Syne:wght@700;800&family=Caveat:wght@400;700&display=swap');


:root {
  --kt-turquoise: #00f2fe;
  --kt-blue: #0076ff;
  --kt-green: #00f5a0;
  --kt-purple: #9b51e0;
  --kt-pink: #ff007f;
  --kt-midnight: #060913;
  --kt-slate: #0d1222;
  --kt-slate-hover: #161f38;
  --kt-muted: #8295a5;
  --kt-glass: rgba(255, 255, 255, 0.03);
  --kt-glass-border: rgba(255, 255, 255, 0.06);
  --kt-glass-hover: rgba(255, 255, 255, 0.06);
  --kt-radius: 16px;
  --kt-glow-blue: rgba(0, 118, 255, 0.2);
  --kt-glow-turquoise: rgba(0, 242, 254, 0.2);
  --kt-glow-purple: rgba(155, 81, 224, 0.2);
  --header-h: 88px;

  /* Obsidian Koyu Tema (Default) */
  --kt-bg-color: #060913;
  --kt-bg-gradient: radial-gradient(circle at 50% 0%, #0d162d 0%, #050811 65%, #020408 100%);
  --kt-text-color: #e2eaf4;
  --kt-card-bg: rgba(255, 255, 255, 0.015);
  --kt-card-border: rgba(255, 255, 255, 0.05);
  --kt-card-hover-border: rgba(255, 255, 255, 0.1);
  --kt-header-bg: rgba(6, 9, 19, 0.3);
  --kt-header-scrolled: rgba(6, 9, 19, 0.85);
  --kt-footer-bg: rgba(6, 9, 19, 0.95);
  --kt-input-bg: rgba(5, 8, 17, 0.65);
  --kt-input-border: rgba(255, 255, 255, 0.08);
  --kt-input-focus-bg: rgba(5, 8, 17, 0.85);
  --kt-input-text: #fff;
  --kt-dropdown-bg: rgba(13, 18, 34, 0.95);
  --kt-dropdown-item-hover: rgba(255, 255, 255, 0.06);
  --kt-list-item-bg: rgba(255, 255, 255, 0.01);
  --kt-list-item-border: rgba(255, 255, 255, 0.03);
  --kt-list-item-hover: rgba(255, 255, 255, 0.02);
  --kt-list-item-hover-border: rgba(255, 255, 255, 0.08);
  --kt-progress-bg: rgba(255, 255, 255, 0.1);
  --kt-progress-fill: #fff;
}

body.light-theme {
  --kt-bg-color: #f8fafc;
  --kt-bg-gradient: radial-gradient(circle at 50% 0%, #f1f5f9 0%, #e2e8f0 70%, #cbd5e1 100%);
  --kt-text-color: #000000;
  --kt-card-bg: rgba(255, 255, 255, 0.7);
  --kt-card-border: rgba(0, 0, 0, 0.06);
  --kt-card-hover-border: rgba(0, 0, 0, 0.12);
  --kt-header-bg: rgba(248, 250, 252, 0.4);
  --kt-header-scrolled: rgba(248, 250, 252, 0.9);
  --kt-footer-bg: #f1f5f9;
  --kt-input-bg: #fff;
  --kt-input-border: rgba(0, 0, 0, 0.12);
  --kt-input-focus-bg: #fff;
  --kt-input-text: #000000;
  --kt-dropdown-bg: rgba(255, 255, 255, 0.98);
  --kt-dropdown-item-hover: rgba(0, 0, 0, 0.04);
  --kt-list-item-bg: rgba(255, 255, 255, 0.8);
  --kt-list-item-border: rgba(0, 0, 0, 0.05);
  --kt-list-item-hover: rgba(255, 255, 255, 0.95);
  --kt-list-item-hover-border: rgba(0, 0, 0, 0.08);
  --kt-progress-bg: rgba(0, 0, 0, 0.08);
  --kt-progress-fill: var(--kt-blue);
  --kt-midnight: #fff;
  --kt-slate: #f1f5f9;
  --kt-slate-hover: #e2e8f0;
  --kt-muted: #334155;
  --kt-glass: rgba(0, 0, 0, 0.02);
  --kt-glass-border: rgba(0, 0, 0, 0.05);
  --kt-glass-hover: rgba(0, 0, 0, 0.04);
}

* { box-sizing: border-box; }

body {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  background: var(--kt-bg-gradient);
  color: var(--kt-text-color);
  min-height: 100vh;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  transition: background 0.3s ease, color 0.3s ease;
}

h1, h2, h3, h4, h5, h6, .hero-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
}

/* ── Globals for Dashboard Page Heros (Aimo Clones) ── */
.dash-hero {
  text-align: center;
  margin-bottom: 2.5rem;
}
.dash-hero-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--kt-text-color);
  margin: 0 0 0.5rem;
}
.dash-hero-sub {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.92rem;
  color: var(--kt-muted);
  margin: 0;
  font-weight: 400;
  opacity: 0.8;
}

a { 
  color: var(--kt-turquoise); 
  text-decoration: none; 
  transition: color 0.2s ease, opacity 0.2s ease;
}
a:hover { 
  color: var(--kt-green); 
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: #050811;
}
::-webkit-scrollbar-thumb {
  background: #161f38;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--kt-turquoise);
}

::selection {
  background: rgba(0, 242, 254, 0.25);
  color: #fff;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: var(--header-h);
  z-index: 1030;
  transition: all 0.3s ease;
  background: rgba(6, 9, 19, 0.55);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.site-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(0, 118, 255, 0.25) 25%, rgba(0, 242, 254, 0.35) 50%, rgba(0, 118, 255, 0.25) 75%, transparent 100%);
  opacity: 0.85;
  z-index: 2;
  transition: all 0.3s ease;
}

.site-header.is-scrolled {
  background: rgba(6, 9, 19, 0.85);
  border-bottom-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.site-header.is-scrolled::after {
  background: linear-gradient(90deg, transparent 0%, rgba(0, 118, 255, 0.45) 20%, rgba(0, 242, 254, 0.6) 50%, rgba(0, 118, 255, 0.45) 80%, transparent 100%);
  opacity: 1;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 1rem;
}

.brand-logo {
  height: 38px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.2));
  transition: transform 0.3s ease;
}
body.light-theme .brand-logo {
  filter: none;
}
.brand-logo:hover {
  transform: scale(1.03);
}

.nav-main .nav-link {
  color: var(--kt-muted) !important;
  font-weight: 600;
  padding: 0.5rem 0.25rem;
  margin: 0 0.85rem;
  transition: all 0.25s ease;
  font-size: 0.92rem;
  letter-spacing: 0.03em;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  position: relative;
}

.nav-main .nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--kt-blue), var(--kt-turquoise));
  transform: scaleX(0);
  transition: transform 0.25s ease;
  transform-origin: center;
  border-radius: 2px;
}

.nav-main .nav-link:hover {
  color: var(--kt-text-color) !important;
}

.nav-main .nav-link:hover::after {
  transform: scaleX(1);
}

.nav-main .nav-link.active {
  color: #fff !important;
}

.nav-main .nav-link.active::after {
  transform: scaleX(1);
  background: linear-gradient(90deg, var(--kt-blue), var(--kt-turquoise));
  box-shadow: 0 0 8px rgba(0, 242, 254, 0.5);
}

.header-user-panel {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.notify-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--kt-glass);
  border: 1px solid var(--kt-glass-border);
  color: #c5d6e8;
  cursor: pointer;
  transition: all 0.25s ease;
}

.notify-wrap:hover {
  color: #fff;
  background: var(--kt-glass-hover);
  border-color: rgba(255,255,255,0.15);
  transform: translateY(-1px);
}

.notify-badge {
  position: absolute;
  top: -3px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  font-size: 0.65rem;
  font-weight: 800;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  border: 2px solid #060913;
}

.notify-badge--left {
  left: -3px;
  background: linear-gradient(135deg, #ff3b3b, #e60026);
  color: #fff;
}

.notify-badge--right {
  right: -3px;
  background: linear-gradient(135deg, var(--kt-turquoise), var(--kt-green));
  color: #060913;
}

.user-chip {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.4rem 1rem 0.4rem 0.4rem;
  border-radius: 50px;
  background: var(--kt-glass);
  border: 1px solid rgba(0, 118, 255, 0.2);
  transition: all 0.25s ease;
}

.user-chip:hover {
  background: var(--kt-glass-hover);
  border-color: var(--kt-turquoise);
  box-shadow: 0 0 15px var(--kt-glow-turquoise);
}

.user-chip .avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--kt-blue) 0%, var(--kt-purple) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
  color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

main.site-main { padding-top: var(--header-h); }

/* Hero Section */
.hero-section {
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 4rem 0;
}

.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.25;
  pointer-events: none;
  mix-blend-mode: screen;
}

.hero-glow--1 { 
  background: radial-gradient(circle, var(--kt-blue) 0%, transparent 70%); 
  top: -150px; 
  right: 5%; 
  animation: float-slow 15s infinite alternate ease-in-out;
}
.hero-glow--2 { 
  background: radial-gradient(circle, var(--kt-purple) 0%, transparent 70%); 
  bottom: -150px; 
  left: -5%; 
  animation: float-slow 12s infinite alternate-reverse ease-in-out;
}
.hero-glow--3 { 
  background: radial-gradient(circle, var(--kt-turquoise) 0%, transparent 70%); 
  top: 30%; 
  left: 45%; 
  opacity: 0.15; 
  animation: float-slow 20s infinite alternate ease-in-out;
}

@keyframes float-slow {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(50px, 40px) scale(1.15); }
}

.hero-title {
  font-size: clamp(2.25rem, 6vw, 3.75rem);
  font-weight: 800;
  line-height: 1.1;
  background: linear-gradient(135deg, #fff 20%, var(--kt-turquoise) 60%, var(--kt-green) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}

/* Premium Buttons */
.btn-kt-primary {
  background: var(--kt-text-color) !important;
  color: var(--kt-bg-color) !important;
  border: 1px solid var(--kt-text-color) !important;
  border-radius: 100px !important;
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-weight: 700 !important;
  font-size: 0.76rem !important;
  padding: 6px 18px !important;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  text-decoration: none;
}

.btn-kt-primary:hover {
  background: transparent !important;
  color: var(--kt-text-color) !important;
  border-color: var(--kt-text-color) !important;
  transform: translateY(-1.5px) !important;
  box-shadow: 0 4px 12px rgba(255,255,255,0.05) !important;
}

.btn-kt-primary:active {
  transform: translateY(0) !important;
}

.btn-kt-outline {
  background: transparent !important;
  color: var(--kt-muted) !important;
  border: 1px solid var(--kt-glass-border) !important;
  border-radius: 100px !important;
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-weight: 600 !important;
  font-size: 0.76rem !important;
  padding: 6px 18px !important;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  text-decoration: none;
}

.btn-kt-outline:hover {
  background: var(--kt-glass-hover) !important;
  color: var(--kt-text-color) !important;
  border-color: var(--kt-card-hover-border) !important;
  transform: translateY(-1.5px) !important;
}

.btn-kt-outline:active {
  transform: translateY(0) !important;
}

.btn-kt-primary i, .btn-kt-outline i, .btn-kt-danger i {
  transition: transform 0.2s ease !important;
}
.btn-kt-primary:hover i, .btn-kt-outline:hover i, .btn-kt-danger:hover i {
  transform: translateX(2px) !important;
}

/* Feature Cards */
.feature-card {
  background: rgba(13, 18, 34, 0.45);
  border: 1px solid var(--kt-glass-border);
  border-radius: var(--kt-radius);
  padding: 2rem;
  height: 100%;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--kt-blue), var(--kt-turquoise));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  background: rgba(18, 25, 47, 0.7);
  border-color: rgba(0, 242, 254, 0.3);
  box-shadow: 0 20px 40px rgba(0,0,0,0.45), 0 0 25px rgba(0, 242, 254, 0.06);
}

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

.feature-card i {
  display: inline-block;
  margin-bottom: 0.5rem;
  transition: transform 0.3s ease;
}
.feature-card:hover i {
  transform: scale(1.1) rotate(5deg);
}

/* Footer */
.site-footer {
  margin-top: 0;
  padding: 4rem 0 2rem;
  background: rgba(4, 6, 12, 0.95);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  color: var(--kt-muted);
  font-size: 0.9rem;
}

.footer-tree h6 {
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.2rem;
}

.footer-tree ul { list-style: none; padding: 0; margin: 0; }
.footer-tree li { margin-bottom: 0.65rem; }
.footer-tree a { 
  color: var(--kt-muted); 
  transition: all 0.2s ease;
}
.footer-tree a:hover { 
  color: var(--kt-turquoise); 
  padding-left: 2px;
}

/* Premium Unified Auth Styling */
.auth-page-wrap {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 4rem 0;
}

.auth-grid-overlay {
  position: absolute;
  inset: 0;
  background-size: 50px 50px;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.012) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.012) 1px, transparent 1px);
  pointer-events: none;
  z-index: 0;
}
body.light-theme .auth-grid-overlay {
  background-image:
    linear-gradient(to right, rgba(0, 0, 0, 0.015) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.015) 1px, transparent 1px);
}

.auth-glow-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(130px);
  opacity: 0.15;
  pointer-events: none;
  z-index: 0;
}
.auth-glow-blob-1 {
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, var(--kt-blue) 0%, transparent 70%);
  top: -50px;
  left: -50px;
}
.auth-glow-blob-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--kt-purple) 0%, transparent 70%);
  bottom: -50px;
  right: -50px;
}

/* Card container for rotating forms */
.auth-card-container {
  position: relative;
  width: 100%;
  max-width: 460px;
  min-height: 400px;
  z-index: 2;
  will-change: height;
  perspective: 1500px;
}

/* Individual form card faces */
.auth-form-face {
  width: 100%;
  background: rgba(13, 18, 34, 0.65);
  border: 1px solid var(--kt-glass-border);
  border-radius: var(--kt-radius);
  padding: 2.5rem;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
  display: none;
  opacity: 0;
  transform-origin: center center;
  will-change: transform, opacity;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform-style: preserve-3d;
}

.auth-form-face.active {
  display: block;
  opacity: 1;
  position: relative;
}

/* Auth links styling */
.auth-link {
  color: var(--kt-muted) !important;
  transition: color 0.2s ease;
  font-weight: 500;
}
.auth-link:hover {
  color: var(--kt-turquoise) !important;
}
body.light-theme .auth-link {
  color: #475569 !important;
}
body.light-theme .auth-link:hover {
  color: var(--kt-blue) !important;
}

/* Traditional auth-card style fallback/support */
.auth-card {
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
  background: rgba(13, 18, 34, 0.65);
  border: 1px solid var(--kt-glass-border);
  border-radius: var(--kt-radius);
  padding: 2.5rem;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
  position: relative;
  z-index: 2;
}

/* 3D horizontal Y-axis flip keyframe animations */
@keyframes flipOutLeft3D {
  0% {
    transform: rotateY(0deg) scale(1);
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
  100% {
    transform: rotateY(-180deg) scale(0.75);
    opacity: 0;
  }
}

@keyframes flipInRight3D {
  0% {
    transform: rotateY(180deg) scale(0.75);
    opacity: 0;
  }
  50% {
    opacity: 0.3;
  }
  100% {
    transform: rotateY(0deg) scale(1);
    opacity: 1;
  }
}

@keyframes flipOutRight3D {
  0% {
    transform: rotateY(0deg) scale(1);
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
  100% {
    transform: rotateY(180deg) scale(0.75);
    opacity: 0;
  }
}

@keyframes flipInLeft3D {
  0% {
    transform: rotateY(-180deg) scale(0.75);
    opacity: 0;
  }
  50% {
    opacity: 0.3;
  }
  100% {
    transform: rotateY(0deg) scale(1);
    opacity: 1;
  }
}

.flip-out-left-3d {
  animation: flipOutLeft3D 0.8s cubic-bezier(0.34, 1.45, 0.64, 1) forwards !important;
  pointer-events: none !important;
  position: absolute !important;
  top: 0;
  left: 0;
}

.flip-in-right-3d {
  animation: flipInRight3D 0.8s cubic-bezier(0.34, 1.45, 0.64, 1) forwards !important;
}

.flip-out-right-3d {
  animation: flipOutRight3D 0.8s cubic-bezier(0.34, 1.45, 0.64, 1) forwards !important;
  pointer-events: none !important;
  position: absolute !important;
  top: 0;
  left: 0;
}

.flip-in-left-3d {
  animation: flipInLeft3D 0.8s cubic-bezier(0.34, 1.45, 0.64, 1) forwards !important;
}

/* Legal Pages */
.legal-page {
  max-width: 860px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
  line-height: 1.85;
  color: #b0c2d3;
}

.legal-page h1 {
  font-size: clamp(2.25rem, 5vw, 3rem);
  background: linear-gradient(135deg, #fff 10%, var(--kt-turquoise) 80%, var(--kt-green) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 2.5rem;
  letter-spacing: -0.01em;
}

.legal-page h2 {
  font-size: 1.45rem;
  color: #fff;
  margin-top: 2.5rem;
  margin-bottom: 1.2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding-bottom: 0.6rem;
}

.legal-page p {
  margin-bottom: 1.5rem;
}

.legal-page ul, .legal-page ol {
  margin-bottom: 2rem;
  padding-left: 1.5rem;
}

.legal-page li {
  margin-bottom: 0.75rem;
}

.legal-page strong {
  color: #fff;
}

/* Dashboard Layout */
.dashboard-body {
  background: radial-gradient(circle at 50% 0%, #0a1122 0%, #03050b 75%, #010204 100%);
}

.dashboard-layout {
  display: block;
  flex: 1 0 auto;
  padding-top: var(--header-h);
}

.dash-sidebar {
  display: none !important;
}

.dash-content {
  padding: 3rem 1.5rem;
  max-width: 1300px;
  margin: 0 auto;
  width: 100%;
}

.badge-role-manager { background: rgba(249, 115, 22, 0.15); color: #f97316; border: 1px solid rgba(249, 115, 22, 0.3); }
.badge-role-support { background: rgba(168, 85, 247, 0.15); color: #a855f7; border: 1px solid rgba(168, 85, 247, 0.3); }

@keyframes shake-app {
  0% { transform: translate(0, 0) rotate(0deg); }
  10% { transform: translate(-2px, -1px) rotate(-0.5deg); }
  20% { transform: translate(-1px, 1px) rotate(0.5deg); }
  30% { transform: translate(1px, -1px) rotate(-0.5deg); }
  40% { transform: translate(-1px, 2px) rotate(0deg); }
  50% { transform: translate(2px, 1px) rotate(0.5deg); }
  60% { transform: translate(-2px, -1px) rotate(-0.5deg); }
  70% { transform: translate(-1px, 1px) rotate(0.5deg); }
  80% { transform: translate(1px, -1px) rotate(-0.5deg); }
  90% { transform: translate(-1px, 2px) rotate(0deg); }
  100% { transform: translate(0, 0) rotate(0deg); }
}
.shake-element {
  animation: shake-app 0.5s ease-in-out;
}

.dash-card {
  background: rgba(13, 18, 34, 0.45);
  border: 1px solid var(--kt-glass-border);
  border-radius: var(--kt-radius);
  padding: 1.75rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.3s ease;
  height: 100%;
}

.dash-card:hover {
  border-color: rgba(0, 118, 255, 0.25);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
  transform: translateY(-2px);
}

.dash-card h3, .dash-card .card-label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--kt-muted);
  text-transform: uppercase;
  margin-bottom: 0.6rem;
  font-weight: 700;
}

.stat-pill {
  font-size: 2.25rem;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, #fff 30%, var(--kt-turquoise) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

/* Badges */
.badge {
  padding: 0.45em 0.8em;
  font-weight: 600;
  border-radius: 6px;
}

.badge-role-super { background: rgba(232, 121, 249, 0.15); color: #e879f9; border: 1px solid rgba(232, 121, 249, 0.3); }
.badge-role-admin { background: rgba(96, 165, 250, 0.15); color: #60a5fa; border: 1px solid rgba(96, 165, 250, 0.3); }
.badge-role-editor { background: rgba(74, 222, 128, 0.15); color: #4ade80; border: 1px solid rgba(74, 222, 128, 0.3); }
.badge-role-cs { background: rgba(251, 191, 36, 0.15); color: #fbbf24; border: 1px solid rgba(251, 191, 36, 0.3); }
.badge-role-user { background: rgba(148, 163, 184, 0.15); color: #94a3b8; border: 1px solid rgba(148, 163, 184, 0.3); }

.badge-status-active { background: rgba(0, 245, 160, 0.12); color: var(--kt-green); border: 1px solid rgba(0, 245, 160, 0.25); }
.badge-status-planned { background: rgba(0, 118, 255, 0.12); color: var(--kt-blue); border: 1px solid rgba(0, 118, 255, 0.25); }
.badge-status-open { background: rgba(0, 118, 255, 0.12); color: var(--kt-blue); border: 1px solid rgba(0, 118, 255, 0.25); }
.badge-status-closed { background: rgba(130, 149, 165, 0.12); color: var(--kt-muted); border: 1px solid rgba(130, 149, 165, 0.25); }

/* Tables */
.table-kt {
  --bs-table-bg: transparent;
  --bs-table-color: #d8e2ee;
  --bs-table-border-color: rgba(255, 255, 255, 0.05);
}

.table-kt th {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--kt-muted);
  padding: 1.1rem 0.9rem;
  border-bottom: 1.5px solid rgba(255,255,255,0.08) !important;
}

.table-kt td {
  padding: 1.25rem 0.9rem;
  vertical-align: middle;
  border-bottom: 1px solid rgba(255,255,255,0.04) !important;
}

.table-kt tr {
  transition: background-color 0.25s ease;
}

.table-kt tr:hover td {
  background-color: rgba(255, 255, 255, 0.015) !important;
  color: #fff;
}

/* Modals */
.modal-content {
  background: rgba(13, 18, 34, 0.95);
  border: 1px solid var(--kt-glass-border);
  border-radius: var(--kt-radius);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  color: #e2eaf4;
}

.modal-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.modal-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.modal-content .form-control, .modal-content .form-select {
  background: rgba(5, 8, 17, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  border-radius: 10px;
}

.modal-content .form-control:focus, .modal-content .form-select:focus {
  border-color: var(--kt-turquoise);
  box-shadow: 0 0 10px rgba(0, 242, 254, 0.25);
  background: rgba(5, 8, 17, 0.9);
}

/* Responsive Overrides */
@media (max-width: 991px) {
  .dash-sidebar { display: none; }
  .nav-main { display: none !important; }
}

/* --- Theme Readability & Global Control Modernization Overrides --- */

/* Global Input & Form Styles */
.form-control, .form-select, textarea {
  background: rgba(5, 8, 17, 0.65) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  color: #fff !important;
  border-radius: 10px !important;
  padding: 0.7rem 1.1rem !important;
  transition: all 0.25s ease !important;
}

.form-control:focus, .form-select:focus, textarea:focus {
  border-color: var(--kt-turquoise) !important;
  background: rgba(5, 8, 17, 0.85) !important;
  box-shadow: 0 0 12px rgba(0, 242, 254, 0.25) !important;
  color: #fff !important;
}

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

/* Color input overrides */
.form-control-color {
  padding: 0.375rem 0.75rem !important;
  height: 46px !important;
  cursor: pointer;
}

/* Global Labels & Form Helper Text */
label, .form-label, .form-check-label {
  color: #c5d6e8 !important;
  font-weight: 600 !important;
  font-size: 0.85rem !important;
  margin-bottom: 0.4rem !important;
}

.text-muted {
  color: #8295a5 !important;
}

/* Alert Overrides */
.alert {
  border-radius: 10px !important;
  font-weight: 500;
  border: 1px solid transparent !important;
}
.alert-success {
  background: rgba(0, 245, 160, 0.1) !important;
  color: var(--kt-green) !important;
  border-color: rgba(0, 245, 160, 0.2) !important;
}
.alert-danger {
  background: rgba(255, 0, 127, 0.1) !important;
  color: var(--kt-pink) !important;
  border-color: rgba(255, 0, 127, 0.2) !important;
}

/* Dropdown Menu Global Overrides */
.dropdown-menu {
  background: rgba(13, 18, 34, 0.95) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5) !important;
  padding: 0.5rem 0 !important;
}

.dropdown-item {
  color: #c5d6e8 !important;
  font-weight: 500 !important;
  transition: all 0.2s ease !important;
  padding: 0.5rem 1.25rem !important;
}

.dropdown-item:hover {
  background: rgba(255, 255, 255, 0.06) !important;
  color: #fff !important;
}

.dropdown-divider {
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
  margin: 0.5rem 0 !important;
}

.dropdown-item-text {
  color: #8295a5 !important;
  font-size: 0.8rem;
  padding: 0.25rem 1.25rem !important;
}

/* List Group Global Overrides */
.list-group-item {
  background-color: rgba(13, 18, 34, 0.45) !important;
  border-color: rgba(255, 255, 255, 0.06) !important;
  color: #e2eaf4 !important;
  transition: all 0.25s ease !important;
}
.list-group-item-action:hover {
  background-color: rgba(255, 255, 255, 0.04) !important;
  color: #fff !important;
  border-color: rgba(0, 242, 254, 0.2) !important;
}
.list-group-item-action.active {
  background: linear-gradient(135deg, var(--kt-blue) 0%, var(--kt-turquoise) 100%) !important;
  color: #030811 !important;
  border-color: transparent !important;
}

/* Table Text Visiblity */
.table-kt {
  color: #e2eaf4 !important;
}
.table-kt th {
  color: #8295a5 !important;
}
.table-kt td {
  color: #e2eaf4 !important;
}

/* Modal Content & Header overrides */
.modal-content.bg-dark {
  background: rgba(13, 18, 34, 0.95) !important;
  color: #e2eaf4 !important;
}
.modal-header.bg-success {
  background: rgba(0, 245, 160, 0.1) !important;
  border-bottom: 1px solid rgba(0, 245, 160, 0.2) !important;
  color: var(--kt-green) !important;
}

/* Calendar Grid Layout styling */
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}
.calendar-header-day {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #8295a5;
  padding: 0.5rem 0;
  letter-spacing: 0.05em;
}
.calendar-day {
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  background: rgba(13, 18, 34, 0.3);
  padding: 0.75rem;
  aspect-ratio: 1 / 1;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.25s ease;
  overflow: hidden;
}
.calendar-day:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(0, 242, 254, 0.35);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}
.calendar-day.today {
  background: rgba(0, 242, 254, 0.12);
  border-color: var(--kt-turquoise);
  box-shadow: 0 0 20px rgba(0, 242, 254, 0.2);
}
.calendar-day.empty {
  border-color: transparent;
  background: transparent;
  pointer-events: none;
  aspect-ratio: 1 / 1;
}

/* Page loading slide/fade-in animation & Sticky Footer spacing */
.site-main, .dash-content, .auth-card, .legal-page {
  animation: pageFadeIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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

/* Premium footer styling */
.site-footer {
  background: rgba(6, 9, 19, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 4rem 0 3rem 0;
  color: var(--kt-muted);
  flex-shrink: 0;
}
.site-footer h6 {
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}
.site-footer ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
.site-footer ul li {
  margin-bottom: 0.75rem;
}
.site-footer ul li a {
  color: var(--kt-muted) !important;
  font-size: 0.875rem;
  transition: all 0.2s ease;
  display: inline-block;
}
.site-footer ul li a:hover {
  color: var(--kt-turquoise) !important;
  transform: translateX(4px);
}
.site-footer p {
  color: var(--kt-muted);
}
.footer-tree {
  margin-bottom: 3rem;
}

/* --- Premium Minimalist Dashboard Styling --- */
.cyber-card {
  background: rgba(255, 255, 255, 0.015) !important;
  border: 1px solid rgba(255, 255, 255, 0.05) !important;
  border-radius: 16px !important;
  padding: 1.5rem !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  transition: all 0.25s ease !important;
}
.cyber-card:hover {
  border-color: rgba(255, 255, 255, 0.1) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2) !important;
  transform: translateY(-2px) !important;
}

/* --- Premium Table of Contents Sidebar --- */
.toc-sidebar .list-group-item {
  background: transparent !important;
  color: var(--kt-muted) !important;
  border-left: 2px solid transparent !important;
  border-radius: 0 !important;
  padding: 0.6rem 1rem !important;
  font-size: 0.88rem;
  font-weight: 500;
  transition: all 0.25s ease !important;
}
.toc-sidebar .list-group-item:hover {
  color: var(--kt-turquoise) !important;
  background: rgba(255, 255, 255, 0.02) !important;
  border-left-color: var(--kt-turquoise) !important;
  padding-left: 1.25rem !important;
}
.toc-sidebar .list-group-item.active {
  color: #fff !important;
  font-weight: 700;
  border-left-color: var(--kt-turquoise) !important;
  background: rgba(255, 255, 255, 0.04) !important;
}

body.light-theme .toc-sidebar .list-group-item {
  color: #475569 !important;
}
body.light-theme .toc-sidebar .list-group-item:hover {
  color: var(--kt-blue) !important;
  background: rgba(0, 118, 255, 0.05) !important;
  border-left-color: var(--kt-blue) !important;
}
body.light-theme .toc-sidebar .list-group-item.active {
  color: #000000 !important;
  background: rgba(0, 118, 255, 0.08) !important;
  border-left-color: var(--kt-blue) !important;
}

.cyber-card[id] {
  scroll-margin-top: calc(var(--header-h) + 20px);
}

.task-item-wrap {
  background: rgba(255, 255, 255, 0.01) !important;
  border: 1px solid rgba(255, 255, 255, 0.03) !important;
  padding: 0.85rem 1rem !important;
  transition: all 0.2s ease;
  border-radius: 12px;
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.task-item-wrap:hover {
  background-color: rgba(255, 255, 255, 0.02) !important;
  border-color: rgba(255, 255, 255, 0.08) !important;
}

/* Curated Random Premium Color Borders for Tasks */
.task-accent-0 { border-left: 3px solid #6366f1 !important; } /* Indigo */
.task-accent-1 { border-left: 3px solid #3b82f6 !important; } /* Blue */
.task-accent-2 { border-left: 3px solid #10b981 !important; } /* Emerald */
.task-accent-3 { border-left: 3px solid #8b5cf6 !important; } /* Purple */
.task-accent-4 { border-left: 3px solid #f59e0b !important; } /* Amber */
.task-accent-5 { border-left: 3px solid #ec4899 !important; } /* Pink */
.task-accent-6 { border-left: 3px solid #06b6d4 !important; } /* Cyan */
.task-accent-7 { border-left: 3px solid #f43f5e !important; } /* Rose */

.shoot-item-wrap {
  background: rgba(255, 255, 255, 0.01) !important;
  border: 1px solid rgba(255, 255, 255, 0.04) !important;
  border-radius: 12px !important;
  padding: 0.85rem 1rem !important;
  transition: all 0.2s ease !important;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
}
.shoot-item-wrap:hover {
  background: rgba(255, 255, 255, 0.02) !important;
  border-color: rgba(255, 255, 255, 0.08) !important;
}

.cyber-banner {
  background: rgba(255, 255, 255, 0.015) !important;
  border: 1px solid rgba(255, 255, 255, 0.05) !important;
  border-radius: 16px !important;
}

/* Custom Minimalist Checkbox */
.cyber-checkbox {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  outline: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  background: transparent;
}
.cyber-checkbox:hover {
  border-color: #fff;
}
.cyber-checkbox:checked {
  background: #fff;
  border-color: #fff;
}
.cyber-checkbox:checked::after {
  content: '\F26E'; /* Bootstrap icons check-lg icon unicode */
  font-family: 'bootstrap-icons';
  font-size: 10px;
  color: #000;
  font-weight: 900;
  display: block;
}

.text-line-through-fade {
  text-decoration: line-through;
  opacity: 0.4;
  color: var(--kt-muted) !important;
}

.quick-shortcut-btn {
  border: 1px solid rgba(255, 255, 255, 0.04) !important;
  background: rgba(255, 255, 255, 0.01) !important;
  border-radius: 12px !important;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.quick-shortcut-btn:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.03) !important;
  border-color: rgba(255, 255, 255, 0.08) !important;
}

/* Scroll Progress Floating Button */
.scroll-progress-wrap {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--kt-bg-color);
  border: 1px solid var(--kt-card-border);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1040;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px) scale(0.9);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}
.scroll-progress-wrap.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}
.scroll-progress-wrap:hover {
  transform: translateY(-2px) scale(1.05);
  border-color: var(--kt-card-hover-border);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35);
}
.scroll-progress-wrap svg.scroll-progress-circle {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}
.scroll-progress-wrap svg circle {
  fill: none;
  stroke-width: 2.5;
}
.scroll-progress-wrap svg circle.bg {
  stroke: var(--kt-card-border);
}
.scroll-progress-wrap svg circle.progress {
  stroke: var(--kt-blue);
  stroke-dasharray: 120;
  stroke-dashoffset: 120;
  stroke-linecap: round;
  transition: stroke-dashoffset 0.1s linear;
}
.scroll-progress-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  padding: 2px;
  border: 1px solid var(--kt-card-border);
}
.scroll-brand-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}

/* Light Theme Color Swaps for elements */
body.light-theme .site-footer {
  background: #f1f5f9 !important;
}
body.light-theme .nav-main .nav-link:hover {
  background: rgba(0, 0, 0, 0.04) !important;
}
body.light-theme .nav-main .nav-link.active {
  background: rgba(0, 118, 255, 0.08) !important;
  color: var(--kt-blue) !important;
}
body.light-theme .cyber-checkbox:checked {
  background: var(--kt-blue) !important;
  border-color: var(--kt-blue) !important;
}
body.light-theme .cyber-checkbox:checked::after {
  color: #fff !important;
}
body.light-theme .quick-shortcut-btn {
  background: #fff !important;
}
body.light-theme .quick-shortcut-btn:hover {
  background: rgba(0, 0, 0, 0.02) !important;
}
body.light-theme .btn-kt-primary {
  background: #000000 !important;
  color: #ffffff !important;
  border-color: #000000 !important;
  box-shadow: none !important;
}
body.light-theme .btn-kt-primary:hover {
  background: transparent !important;
  color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05) !important;
}
body.light-theme .btn-kt-outline {
  border-color: rgba(0, 0, 0, 0.1) !important;
  color: #475569 !important;
  background: transparent !important;
}
body.light-theme .btn-kt-outline:hover {
  background: rgba(0, 0, 0, 0.02) !important;
  color: #000000 !important;
  border-color: rgba(0, 0, 0, 0.2) !important;
}
body.light-theme .user-chip {
  background: #fff !important;
  border-color: rgba(0, 0, 0, 0.08) !important;
}
body.light-theme .user-chip .avatar {
  background: var(--kt-blue) !important;
}
body.light-theme .user-chip span.d-md-inline {
  color: var(--kt-text-color) !important;
}
body.light-theme .notify-wrap {
  background: #fff !important;
  border-color: rgba(0, 0, 0, 0.08) !important;
  color: var(--kt-text-color) !important;
}
body.light-theme .notify-wrap:hover {
  border-color: rgba(0, 0, 0, 0.15) !important;
}
body.light-theme .notify-badge--right {
  color: #fff !important;
}

/* Page Preloader Screen */
.site-preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--kt-bg-color);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 1;
  visibility: visible;
}
.site-preloader.is-loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.preloader-inner {
  display: flex;
  align-items: center;
  justify-content: center;
}
.preloader-logo-wrap {
  position: relative;
  width: 96px;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.preloader-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  animation: preloaderPulse 1.8s infinite ease-in-out;
  z-index: 2;
}
.preloader-spinner {
  position: absolute;
  width: 80px;
  height: 80px;
  border: 2px solid var(--kt-card-border);
  border-top-color: var(--kt-blue);
  border-radius: 50%;
  animation: preloaderSpin 1s infinite linear;
  z-index: 1;
}

@keyframes preloaderSpin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
@keyframes preloaderPulse {
  0%, 100% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.05); opacity: 1; }
}



/* ============================================================
   LIGHT THEME — COMPREHENSIVE LEGIBILITY OVERRIDES
   Tüm text, başlık, kart, form ve tablo elemanlarının
   light modda okunabilir renklere sahip olmasını sağlar.
   ============================================================ */

/* --- Temel Yazı & Başlıklar --- */
body.light-theme,
body.light-theme p,
body.light-theme span,
body.light-theme li,
body.light-theme small,
body.light-theme div {
  color: #000000;
}

body.light-theme h1,
body.light-theme h2,
body.light-theme h3,
body.light-theme h4,
body.light-theme h5,
body.light-theme h6 {
  color: #000000 !important;
  -webkit-text-fill-color: #000000 !important;
  background: none !important;
  background-clip: unset !important;
  -webkit-background-clip: unset !important;
}

/* hero-title gradient light modda iptal */
body.light-theme .hero-title {
  background: linear-gradient(135deg, #000000 0%, #0076ff 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

/* stat-pill gradient light modda */
body.light-theme .stat-pill {
  background: linear-gradient(135deg, #000000 30%, #0076ff 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

/* --- text-white, text-light overrides --- */
body.light-theme .text-white,
body.light-theme .text-light {
  color: #000000 !important;
}

body.light-theme .text-white-50 {
  color: rgba(0, 0, 0, 0.6) !important;
}

body.light-theme .text-muted {
  color: #334155 !important;
}

body.light-theme .text-secondary {
  color: #1a202c !important;
}

body.light-theme .text-info {
  color: #0284c7 !important;
}

body.light-theme .text-success {
  color: #16a34a !important;
}

body.light-theme .text-danger {
  color: #dc2626 !important;
}

body.light-theme .text-warning {
  color: #d97706 !important;
}

/* --- Labels --- */
body.light-theme label,
body.light-theme .form-label,
body.light-theme .form-check-label {
  color: #000000 !important;
}

/* --- Form Controls --- */
body.light-theme .form-control,
body.light-theme .form-select,
body.light-theme textarea {
  background: #ffffff !important;
  border: 1px solid #cbd5e1 !important;
  color: #000000 !important;
}

body.light-theme .form-control:focus,
body.light-theme .form-select:focus,
body.light-theme textarea:focus {
  background: #ffffff !important;
  border-color: #0076ff !important;
  box-shadow: 0 0 12px rgba(0, 118, 255, 0.2) !important;
  color: #000000 !important;
}

body.light-theme .form-control::placeholder,
body.light-theme textarea::placeholder {
  color: #64748b !important;
}

/* --- Navbar & Link --- */
body.light-theme .nav-main .nav-link {
  color: #334155 !important;
}

body.light-theme .nav-main .nav-link:hover {
  color: #000000 !important;
}

body.light-theme .nav-main .nav-link.active {
  color: #0076ff !important;
}

/* --- Cards --- */
body.light-theme .dash-card,
body.light-theme .cyber-card,
body.light-theme .cyber-banner {
  background: rgba(255, 255, 255, 0.85) !important;
  border-color: rgba(0, 0, 0, 0.08) !important;
  color: #000000 !important;
}

body.light-theme .dash-card h3,
body.light-theme .cyber-card h3,
body.light-theme .dash-card .card-label,
body.light-theme .cyber-card .card-label {
  color: #334155 !important;
}

body.light-theme .dash-card:hover,
body.light-theme .cyber-card:hover {
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1) !important;
  border-color: rgba(0, 118, 255, 0.2) !important;
}

/* Auth Card & Faces Light Theme Overrides */
body.light-theme .auth-card,
body.light-theme .auth-form-face {
  background: rgba(255, 255, 255, 0.95) !important;
  border-color: rgba(0, 0, 0, 0.08) !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1) !important;
}

body.light-theme .auth-card .form-control,
body.light-theme .auth-form-face .form-control {
  background: #f8fafc !important;
  border-color: #cbd5e1 !important;
  color: #000000 !important;
}

body.light-theme .auth-card h1,
body.light-theme .auth-form-face h1 {
  color: #000000 !important;
  -webkit-text-fill-color: #000000 !important;
  background: none !important;
}

/* --- Tables --- */
body.light-theme .table-kt {
  color: #000000 !important;
  --bs-table-color: #000000 !important;
  --bs-table-border-color: rgba(0, 0, 0, 0.07) !important;
}

body.light-theme .table-kt th {
  color: #334155 !important;
  border-bottom-color: rgba(0, 0, 0, 0.1) !important;
}

body.light-theme .table-kt td {
  color: #000000 !important;
  border-bottom-color: rgba(0, 0, 0, 0.05) !important;
}

body.light-theme .table-kt tr:hover td {
  background-color: rgba(0, 0, 0, 0.02) !important;
  color: #000000 !important;
}

body.light-theme .fw-semibold.text-white,
body.light-theme td.fw-semibold {
  color: #000000 !important;
}

/* --- Modals --- */
body.light-theme .modal-content,
body.light-theme .modal-content.bg-dark {
  background: #ffffff !important;
  border-color: rgba(0, 0, 0, 0.1) !important;
  color: #000000 !important;
}

body.light-theme .modal-header {
  border-bottom-color: rgba(0, 0, 0, 0.08) !important;
}

body.light-theme .modal-footer {
  border-top-color: rgba(0, 0, 0, 0.08) !important;
}

body.light-theme .modal-title,
body.light-theme .modal-content .form-label,
body.light-theme .modal-content label {
  color: #000000 !important;
}

body.light-theme .modal-content .form-control,
body.light-theme .modal-content .form-select {
  background: #f8fafc !important;
  border-color: #cbd5e1 !important;
  color: #000000 !important;
}

body.light-theme .modal-content .text-light,
body.light-theme .modal-content .text-white {
  color: #000000 !important;
}

body.light-theme .btn-close-white {
  filter: invert(1) !important;
}

/* --- Dropdowns --- */
body.light-theme .dropdown-menu {
  background: rgba(255, 255, 255, 0.98) !important;
  border-color: rgba(0, 0, 0, 0.1) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12) !important;
}

body.light-theme .dropdown-item {
  color: #000000 !important;
}

body.light-theme .dropdown-item:hover {
  background: rgba(0, 0, 0, 0.04) !important;
  color: #000000 !important;
}

body.light-theme .dropdown-divider {
  border-top-color: rgba(0, 0, 0, 0.08) !important;
}

body.light-theme .dropdown-item-text {
  color: #334155 !important;
}

/* --- Badges --- */
body.light-theme .badge-status-active {
  background: rgba(22, 163, 74, 0.12) !important;
  color: #15803d !important;
  border-color: rgba(22, 163, 74, 0.25) !important;
}

body.light-theme .badge-status-planned {
  background: rgba(0, 118, 255, 0.1) !important;
  color: #0064d6 !important;
  border-color: rgba(0, 118, 255, 0.2) !important;
}

body.light-theme .badge-status-open {
  background: rgba(0, 118, 255, 0.1) !important;
  color: #0064d6 !important;
  border-color: rgba(0, 118, 255, 0.2) !important;
}

body.light-theme .badge-status-closed {
  background: rgba(100, 116, 139, 0.12) !important;
  color: #475569 !important;
  border-color: rgba(100, 116, 139, 0.25) !important;
}

/* --- Alerts --- */
body.light-theme .alert-success {
  background: rgba(22, 163, 74, 0.1) !important;
  color: #15803d !important;
  border-color: rgba(22, 163, 74, 0.2) !important;
}

body.light-theme .alert-danger {
  background: rgba(220, 38, 38, 0.08) !important;
  color: #b91c1c !important;
  border-color: rgba(220, 38, 38, 0.2) !important;
}

body.light-theme .alert-warning {
  background: rgba(217, 119, 6, 0.08) !important;
  color: #b45309 !important;
  border-color: rgba(217, 119, 6, 0.2) !important;
}

/* --- List Groups --- */
body.light-theme .list-group-item {
  background-color: #ffffff !important;
  border-color: rgba(0, 0, 0, 0.07) !important;
  color: #000000 !important;
}

body.light-theme .list-group-item-action:hover {
  background-color: rgba(0, 0, 0, 0.03) !important;
  color: #000000 !important;
  border-color: rgba(0, 118, 255, 0.15) !important;
}

/* --- Dashboard banner and welcome text --- */
body.light-theme .cyber-banner h1,
body.light-theme .cyber-banner p,
body.light-theme .cyber-banner span,
body.light-theme .cyber-banner strong {
  color: #0d1222 !important;
}

body.light-theme .cyber-banner .text-muted,
body.light-theme .cyber-banner p.text-muted {
  color: #64748b !important;
}

/* --- Dashboard stats and progress bar --- */
.stat-pill {
  color: #ffffff !important;
}
body.light-theme .stat-pill {
  color: #0d1222 !important;
}

.cyber-banner .progress-bar {
  background-image: linear-gradient(90deg, #00f5a0 0%, #00f2fe 100%) !important;
  background-color: #00f5a0 !important;
}
body.light-theme .cyber-banner .progress {
  background-color: rgba(0, 0, 0, 0.08) !important;
}
body.light-theme .cyber-banner .progress-bar {
  background-image: linear-gradient(90deg, #0076ff 0%, #00f2fe 100%) !important;
  background-color: #0076ff !important;
}


/* --- Task & Shoot items --- */
body.light-theme .task-item-wrap,
body.light-theme .shoot-item-wrap {
  background: rgba(255, 255, 255, 0.9) !important;
  border-color: rgba(0, 0, 0, 0.06) !important;
}

body.light-theme .task-item-wrap:hover,
body.light-theme .shoot-item-wrap:hover {
  background: #ffffff !important;
  border-color: rgba(0, 0, 0, 0.1) !important;
}

body.light-theme .task-content-text {
  color: #000000 !important;
}

/* --- Quick Shortcuts --- */
body.light-theme .quick-shortcut-btn {
  background: #ffffff !important;
  border-color: rgba(0, 0, 0, 0.08) !important;
}

body.light-theme .quick-shortcut-btn span.text-white {
  color: #000000 !important;
}

body.light-theme .quick-shortcut-btn i {
  color: #334155 !important;
}

/* --- Footer --- */
body.light-theme .site-footer h6 {
  color: #000000 !important;
}

body.light-theme .site-footer ul li a {
  color: #334155 !important;
}

body.light-theme .site-footer ul li a:hover {
  color: #0076ff !important;
}

/* --- Header & Scroll --- */
body.light-theme .site-header {
  background: rgba(248, 250, 252, 0.8) !important;
  border-bottom-color: rgba(0, 0, 0, 0.07) !important;
}

body.light-theme .site-header.is-scrolled {
  background: rgba(248, 250, 252, 0.96) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
}

/* --- Offcanvas (Mobile Nav) --- */
body.light-theme #mobileNav {
  background: #f8fafc !important;
  border-right-color: rgba(0, 0, 0, 0.08) !important;
}

body.light-theme #mobileNav .text-light {
  color: #000000 !important;
}

body.light-theme #mobileNav .text-muted {
  color: #334155 !important;
}

body.light-theme #mobileNav .nav-link:hover {
  background: rgba(0, 0, 0, 0.04) !important;
}

/* --- Calendar --- */
body.light-theme .calendar-day {
  background: rgba(255, 255, 255, 0.9) !important;
  border-color: rgba(0, 0, 0, 0.07) !important;
}

body.light-theme .calendar-day:hover {
  background: #ffffff !important;
  border-color: rgba(0, 118, 255, 0.3) !important;
}

body.light-theme .calendar-day.today {
  background: rgba(0, 118, 255, 0.08) !important;
  border-color: #0076ff !important;
}

body.light-theme .calendar-header-day {
  color: #334155 !important;
}

/* --- Legal Pages --- */
body.light-theme .legal-page {
  color: #000000 !important;
}

body.light-theme .legal-page h1 {
  background: linear-gradient(135deg, #000000 0%, #0076ff 80%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

body.light-theme .legal-page h2 {
  color: #000000 !important;
  border-bottom-color: rgba(0, 0, 0, 0.08) !important;
}

body.light-theme .legal-page strong {
  color: #000000 !important;
}

/* --- Scroll Progress --- */
body.light-theme .scroll-progress-wrap {
  background: #ffffff !important;
  border-color: rgba(0, 0, 0, 0.1) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1) !important;
}

/* --- Preloader in light mode --- */
body.light-theme .site-preloader {
  background: #f8fafc !important;
}

/* --- Progress Bar --- */
body.light-theme #task-progress-bar {
  background-image: linear-gradient(90deg, #0076ff 0%, #00f2fe 100%) !important;
  background-color: #0076ff !important;
}

body.light-theme #task-progress-text {
  color: #000000 !important;
}

/* --- Progress Bar Enhancement & Glowing Effects --- */
.cyber-banner .progress-bar {
  background-image: linear-gradient(90deg, #00f5a0 0%, #00f2fe 100%) !important;
  background-color: #00f5a0 !important;
  box-shadow: 0 0 12px rgba(0, 245, 160, 0.6) !important;
}
#task-progress-text {
  color: #00f5a0 !important;
  font-weight: 700 !important;
  text-shadow: 0 0 8px rgba(0, 245, 160, 0.2);
}

/* --- Custom Status Select Dropdowns (Dark & Light Theme) --- */
.task-status-select, .shoot-status-select {
  background-color: rgba(255, 255, 255, 0.05) !important;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e") !important;
}
.task-status-select:focus, .shoot-status-select:focus {
  background-color: rgba(255, 255, 255, 0.08) !important;
  border-color: #00f2fe !important;
  color: #ffffff !important;
  box-shadow: 0 0 0 0.25rem rgba(0, 242, 254, 0.15) !important;
}
.task-status-select option, .shoot-status-select option {
  background-color: #0d1222 !important;
  color: #ffffff !important;
}

body.light-theme .task-status-select, body.light-theme .shoot-status-select {
  background-color: #ffffff !important;
  color: #0f172a !important;
  border: 1px solid rgba(0, 0, 0, 0.15) !important;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23334155' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e") !important;
}
body.light-theme .task-status-select:focus, body.light-theme .shoot-status-select:focus {
  background-color: #ffffff !important;
  border-color: #0076ff !important;
  color: #0f172a !important;
  box-shadow: 0 0 0 0.25rem rgba(0, 118, 255, 0.15) !important;
}
body.light-theme .task-status-select option, body.light-theme .shoot-status-select option {
  background-color: #ffffff !important;
  color: #0f172a !important;
}

/* --- Aesthetic Hızlı Kısayollar Buttons hover effects --- */
.quick-shortcut-btn {
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  cursor: pointer;
}
.quick-shortcut-btn:hover {
  background: rgba(255, 255, 255, 0.07) !important;
  border-color: rgba(0, 242, 254, 0.25) !important;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25) !important;
}
.quick-shortcut-btn:hover .shortcut-icon-wrap {
  background: rgba(255, 255, 255, 0.08) !important;
  transform: scale(1.08);
}
body.light-theme .quick-shortcut-btn {
  background: rgba(0, 0, 0, 0.02) !important;
  border-color: rgba(0, 0, 0, 0.06) !important;
}
body.light-theme .quick-shortcut-btn:hover {
  background: #ffffff !important;
  border-color: rgba(0, 118, 255, 0.2) !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06) !important;
}

/* --- Cyber Checkbox light --- */
body.light-theme .cyber-checkbox {
  border-color: rgba(0, 0, 0, 0.25) !important;
}

body.light-theme .cyber-checkbox:hover {
  border-color: #0076ff !important;
}

/* --- bg-dark Bootstrap override in light mode --- */
body.light-theme .bg-dark {
  background-color: #f1f5f9 !important;
}

/* --- border-secondary override in light mode --- */
body.light-theme .border-secondary {
  border-color: rgba(0, 0, 0, 0.1) !important;
}

/* --- text-line-through in light mode --- */
body.light-theme .text-line-through-fade {
  color: #94a3b8 !important;
}

/* ══════════════════════════════════════════════════════════════════════
   PROFESSIONAL NOTIFICATION PAGE  (notifications.php)
   ══════════════════════════════════════════════════════════════════════ */

/* Page header */
.notif-page-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1.75rem;
}

/* Main two-column layout */
.notif-main {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 1.25rem;
  align-items: start;
}
@media (max-width: 767px) {
  .notif-main {
    grid-template-columns: 1fr;
  }
}

/* ── Tab Navigation ───────────────────────────────────────────────── */
.notif-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  background: var(--kt-card-bg);
  border: 1px solid var(--kt-card-border);
  border-radius: 16px;
  padding: 0.75rem;
}
@media (max-width: 767px) {
  .notif-nav {
    flex-direction: row;
    overflow-x: auto;
  }
}

.notif-tab-btn {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1rem;
  border: none;
  border-radius: 10px;
  background: transparent;
  color: var(--kt-muted);
  font-size: 0.875rem;
  font-weight: 500;
  text-align: left;
  width: 100%;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
}
.notif-tab-btn i {
  font-size: 1rem;
  flex-shrink: 0;
}
.notif-tab-btn:hover {
  background: var(--kt-glass-hover);
  color: var(--kt-text-color);
}
.notif-tab-btn.active {
  background: linear-gradient(135deg, rgba(0, 118, 255, 0.15), rgba(0, 242, 254, 0.08));
  color: var(--kt-turquoise);
  border: 1px solid rgba(0, 242, 254, 0.2);
}

.notif-tab-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  border-radius: 10px;
  font-size: 0.65rem;
  font-weight: 800;
  margin-left: auto;
  flex-shrink: 0;
}
.notif-tab-badge--green {
  background: linear-gradient(135deg, #00f2fe, #00f5a0);
  color: #060913;
}
.notif-tab-badge--red {
  background: linear-gradient(135deg, #ff3b3b, #e60026);
  color: #fff;
}

/* ── Content Panel ─────────────────────────────────────────────────── */
.notif-panel {
  background: var(--kt-card-bg);
  border: 1px solid var(--kt-card-border);
  border-radius: 16px;
  overflow: hidden;
  min-height: 420px;
}

.notif-panel-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--kt-card-border);
  font-size: 0.875rem;
  color: var(--kt-text-color);
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* ── Notification Items ────────────────────────────────────────────── */
.notif-list {
  display: flex;
  flex-direction: column;
}

.notif-item {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--kt-card-border);
  transition: background 0.2s ease, opacity 0.2s ease;
  position: relative;
  animation: slideInLeft 0.25s ease both;
}
.notif-item:last-child { border-bottom: none; }
.notif-item:hover { background: var(--kt-glass-hover); }
.notif-item.is-read { opacity: 0.55; }

/* Item icon bubble */
.notif-item-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  background: linear-gradient(135deg, rgba(0, 118, 255, 0.2), rgba(0, 242, 254, 0.1));
  color: var(--kt-turquoise);
}
.notif-item-icon.muted {
  background: rgba(255,255,255,0.04);
  color: var(--kt-muted);
}
.notif-item-icon.support {
  background: linear-gradient(135deg, rgba(255, 59, 59, 0.2), rgba(230, 0, 38, 0.1));
  color: #ff3b3b;
}

/* Item body */
.notif-item-body {
  flex: 1;
  min-width: 0;
}
.notif-item-title {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--kt-text-color);
  margin-bottom: 0.15rem;
}
.notif-item-text {
  font-size: 0.8rem;
  color: var(--kt-muted);
  margin-bottom: 0.35rem;
  line-height: 1.5;
  word-break: break-word;
}
.notif-item-time {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.7rem;
  color: var(--kt-muted);
}

/* Item action buttons */
.notif-item-actions {
  display: flex;
  gap: 0.4rem;
  align-items: center;
  flex-shrink: 0;
}

.notif-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  border: 1px solid transparent;
  background: transparent;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.18s ease;
  text-decoration: none;
}
.notif-btn:disabled { opacity: 0.4; cursor: not-allowed; }

.notif-btn-read {
  color: var(--kt-turquoise);
  border-color: rgba(0, 242, 254, 0.2);
}
.notif-btn-read:hover {
  background: rgba(0, 242, 254, 0.1);
  border-color: var(--kt-turquoise);
}

.notif-btn-delete {
  color: #ff3b3b;
  border-color: rgba(255, 59, 59, 0.2);
}
.notif-btn-delete:hover {
  background: rgba(255, 59, 59, 0.1);
  border-color: #ff3b3b;
}

.notif-btn-view {
  color: var(--kt-muted);
  border-color: rgba(255, 255, 255, 0.1);
}
.notif-btn-view:hover {
  background: var(--kt-glass-hover);
  color: var(--kt-text-color);
  border-color: rgba(255, 255, 255, 0.2);
}

/* Status pills */
.notif-status-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.55rem;
  border-radius: 20px;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.pill-open {
  background: rgba(255, 59, 59, 0.15);
  color: #ff3b3b;
  border: 1px solid rgba(255, 59, 59, 0.3);
}
.pill-closed {
  background: rgba(0, 245, 160, 0.1);
  color: var(--kt-green);
  border: 1px solid rgba(0, 245, 160, 0.25);
}
.pill-code {
  background: rgba(255, 255, 255, 0.05);
  color: var(--kt-muted);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-family: monospace;
  letter-spacing: 0.06em;
}

/* Toolbar action buttons */
.btn-action-xs {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.75rem;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 500;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.18s ease;
  text-decoration: none;
  white-space: nowrap;
  background: transparent;
}
.btn-outline-muted {
  color: var(--kt-muted);
  border-color: rgba(255, 255, 255, 0.1);
}
.btn-outline-muted:hover {
  background: var(--kt-glass-hover);
  color: var(--kt-text-color);
  border-color: rgba(255, 255, 255, 0.2);
}
.btn-outline-danger {
  color: #ff3b3b;
  border-color: rgba(255, 59, 59, 0.25);
}
.btn-outline-danger:hover {
  background: rgba(255, 59, 59, 0.1);
  border-color: #ff3b3b;
}

/* Empty state */
.notif-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  color: var(--kt-muted);
  text-align: center;
}
.notif-empty i {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  opacity: 0.4;
}
.notif-empty p { margin: 0; font-size: 0.875rem; }

/* Animations */
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-12px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes slideOutRight {
  from { opacity: 1; transform: translateX(0); max-height: 120px; }
  to   { opacity: 0; transform: translateX(24px); max-height: 0; padding: 0; margin: 0; }
}

/* ── Light theme overrides for notification page ─────────────────── */
body.light-theme .notif-nav {
  background: #fff;
  border-color: rgba(0,0,0,0.08);
}
body.light-theme .notif-tab-btn {
  color: #475569;
}
body.light-theme .notif-tab-btn:hover {
  background: rgba(0,0,0,0.04);
  color: #1e293b;
}
body.light-theme .notif-tab-btn.active {
  background: linear-gradient(135deg, rgba(0,118,255,0.08), rgba(0,242,254,0.05));
  color: #0076ff;
  border-color: rgba(0,118,255,0.25);
}
body.light-theme .notif-panel {
  background: #fff;
  border-color: rgba(0,0,0,0.08);
}
body.light-theme .notif-panel-toolbar {
  border-color: rgba(0,0,0,0.07);
  color: #1e293b;
}
body.light-theme .notif-item {
  border-color: rgba(0,0,0,0.05);
}
body.light-theme .notif-item:hover {
  background: rgba(0,0,0,0.02);
}
body.light-theme .notif-item-icon {
  background: rgba(0,118,255,0.08);
  color: #0076ff;
}
body.light-theme .notif-item-icon.muted {
  background: rgba(0,0,0,0.04);
  color: #94a3b8;
}
body.light-theme .notif-item-icon.support {
  background: rgba(255,59,59,0.08);
  color: #e60026;
}
body.light-theme .notif-item-title { color: #1e293b; }
body.light-theme .notif-item-text  { color: #475569; }
body.light-theme .notif-item-time  { color: #94a3b8; }
body.light-theme .notif-btn-view {
  color: #64748b;
  border-color: rgba(0,0,0,0.12);
}
body.light-theme .notif-btn-view:hover {
  background: rgba(0,0,0,0.04);
  color: #1e293b;
}
body.light-theme .btn-outline-muted {
  color: #64748b;
  border-color: rgba(0,0,0,0.12);
}
body.light-theme .btn-outline-muted:hover {
  background: rgba(0,0,0,0.04);
  color: #1e293b;
}
body.light-theme .pill-code {
  background: rgba(0,0,0,0.04);
  color: #64748b;
  border-color: rgba(0,0,0,0.1);
}
body.light-theme .notif-empty { color: #94a3b8; }
body.light-theme .notify-badge--right { border-color: #f8fafc; }
body.light-theme .notify-badge--left  { border-color: #f8fafc; }

/* --- Premium Homepage Redesign Custom Styles --- */
.home-grid-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 50px 50px;
  background-position: center top;
  mask-image: radial-gradient(ellipse at 50% 50%, black 50%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 50%, black 50%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}
body.light-theme .home-grid-backdrop {
  background-image: linear-gradient(rgba(0, 0, 0, 0.02) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(0, 0, 0, 0.02) 1px, transparent 1px);
}

.ambient-glow-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.15;
  pointer-events: none;
  mix-blend-mode: screen;
  z-index: 0;
  transition: all 0.5s ease;
}
body.light-theme .ambient-glow-blob {
  mix-blend-mode: multiply;
  opacity: 0.08;
  filter: blur(120px);
}

.elementor-extended-row {
  --bs-gutter-x: 2.5rem;
  --bs-gutter-y: 2.5rem;
  position: relative;
  z-index: 1;
}
@media (min-width: 992px) {
  .elementor-extended-row {
    --bs-gutter-x: 4.5rem;
    --bs-gutter-y: 0;
  }
}

/* Premium Hero Layout Styles (Redesigned) */
.hero-premium-wrap {
  text-align: center;
  position: relative;
  padding: 6.5rem 0 0;
  background: var(--kt-bg-gradient);
  color: var(--kt-text-color);
  overflow: visible;
}
.hero-premium-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background-size: 50px 50px;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  pointer-events: none;
  z-index: 0;
}

/* Orbit Lines Decoration */
.orbit-container {
  position: absolute;
  top: 8%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 380px;
  pointer-events: none;
  z-index: 0;
}
.orbit-ellipse {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  transform: rotate(-12deg);
}
.orbit-dot {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(140, 61, 244, 0.6);
}
.orbit-dot-1 {
  top: 30%;
  left: 6%;
  background-color: #3ddb8c;
  box-shadow: 0 0 12px rgba(61, 219, 140, 0.7);
}
.orbit-dot-2 {
  bottom: 22%;
  right: 18%;
  background-color: #3d8cff;
  box-shadow: 0 0 12px rgba(61, 140, 255, 0.7);
}
.orbit-dot-3 {
  top: 15%;
  right: 30%;
  background-color: #8c3df4;
  box-shadow: 0 0 12px rgba(140, 61, 244, 0.7);
}

.hero-premium-wrap .hero-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.6rem, 5.5vw, 4.4rem);
  font-weight: 800;
  line-height: 1.25;
  color: var(--kt-text-color) !important;
  background: none !important;
  -webkit-text-fill-color: initial !important;
  max-width: 950px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  letter-spacing: -0.01em;
}

.hero-script {
  font-family: 'Caveat', cursive !important;
  color: #00f2fe !important;
  -webkit-text-fill-color: #00f2fe !important;
  font-weight: 700;
  font-size: 1.15em;
  position: relative;
  display: inline-block;
  padding: 0 10px;
  transform: rotate(-2deg);
}

.hero-script::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 5%;
  width: 90%;
  height: 12px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 10' preserveAspectRatio='none'><path d='M1 7 C20 2, 40 2, 60 4 C80 6, 95 3, 99 5 C80 8, 40 8, 20 7 C10 6.5, 3 7, 1 7 Z' fill='%2300f2fe'/></svg>");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  pointer-events: none;
}

.hero-gradient-text {
  color: #00f2fe !important;
  background: linear-gradient(135deg, #00f2fe 0%, #00f5a0 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  display: inline-block;
}


.hero-services-btn {
  display: inline-flex;
  align-items: center;
  background-color: #8c3df4;
  border: none;
  border-radius: 8px;
  padding: 8px 18px 8px 8px;
  color: #fff !important;
  font-weight: 700;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  text-decoration: none;
  margin-top: 1.5rem;
  position: relative;
  z-index: 1;
}
.hero-services-btn:hover {
  background-color: #7b32df;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(140, 61, 244, 0.3);
  color: #fff !important;
}
.hero-services-btn .icon-box {
  width: 28px;
  height: 28px;
  background-color: #fff;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  color: #000;
  font-size: 0.8rem;
}

/* Infinite Horizontal Slider Layout Styles */
.slider-infinite-viewport {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
  margin-top: 3.5rem;
  margin-bottom: -210px; /* overlaps curved dome section */
  z-index: 10;
  cursor: grab;
  user-select: none;
  touch-action: pan-y;
  
  /* Fade boundaries effect (baştaki ve sondaki yavaş yavaş saydamlaşsın) */
  mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
}
.slider-infinite-viewport:active {
  cursor: grabbing;
}

.slider-infinite-container {
  display: flex;
  gap: 3.5rem; /* Spacious spacing between cards */
  position: absolute;
  left: 0;
  top: 60px; /* space for cards to rise up on hover */
  height: 460px;
  will-change: transform;
}

.slider-card-wrap {
  flex: 0 0 280px; /* Larger cards width */
  width: 280px;
  height: 380px;
  display: flex;
  align-items: flex-end;
  will-change: transform;
}

.fan-card-img {
  width: 100%;
  height: 350px; /* Larger cards height */
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.22);
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.3s ease;
  background-color: var(--kt-card-bg);
  border: 1px solid var(--kt-card-border);
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
}
.fan-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none; /* Disables mouse interaction on image itself, preventing native dragging */
  user-drag: none;
  -webkit-user-drag: none;
  user-select: none;
  -webkit-user-select: none;
}
.fan-card-img:hover {
  transform: scale(1.05) translateY(-20px) !important;
  box-shadow: 0 30px 60px rgba(140, 61, 244, 0.4);
}

@media (max-width: 991px) {
  .slider-infinite-viewport {
    height: 480px;
    margin-bottom: -160px;
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  }
  .slider-infinite-container {
    gap: 2.5rem;
    height: 380px;
    top: 40px;
  }
  .slider-card-wrap {
    flex: 0 0 210px;
    width: 210px;
    height: 290px;
  }
  .fan-card-img {
    height: 265px;
    border-radius: 20px;
  }
}

@media (max-width: 576px) {
  .slider-infinite-viewport {
    height: 360px;
    margin-bottom: -110px;
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  }
  .slider-infinite-container {
    gap: 1.5rem;
    height: 280px;
    top: 25px;
  }
  .slider-card-wrap {
    flex: 0 0 150px;
    width: 150px;
    height: 210px;
  }
  .fan-card-img {
    height: 190px;
    border-radius: 14px;
  }
}

/* New Dome curved bottom section */
.dome-section {
  background-color: var(--kt-bg-color);
  border-top-left-radius: 50% 120px;
  border-top-right-radius: 50% 120px;
  padding: 180px 0 100px;
  position: relative;
  z-index: 12; /* Sits above the card marquee */
  color: var(--kt-text-color);
  border-top: 1px solid var(--kt-glass-border);
}

/* Dome Typography & Columns Layout */
.ai-studio-title-wrap {
  font-family: 'Outfit', sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  max-width: 1000px;
  margin: 0 auto;
}
.ai-studio-title-wrap h2 {
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 800;
  margin: 0;
  line-height: 1.1;
  color: var(--kt-text-color) !important;
}
.ai-studio-row-1 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}
.ai-play-badge {
  width: 140px;
  height: 96px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  border: 3px solid var(--kt-glass-border);
  cursor: pointer;
}
.ai-play-badge img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ai-play-badge .play-icon-overlay {
  position: absolute;
  width: 48px;
  height: 48px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 1.3rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

.ai-studio-row-2 {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 30px;
  width: 100%;
  max-width: 800px;
  margin-top: 5px;
}
.ai-studio-row-2 .title-part {
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 800;
  white-space: nowrap;
  text-align: right;
  color: var(--kt-text-color) !important;
}
.ai-studio-row-2 .desc-part {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--kt-text-color) !important;
  opacity: 0.8;
  max-width: 380px;
  text-align: left;
  margin: 0;
  font-weight: 500;
}

.ai-studio-row-3 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 35px;
  width: 100%;
  flex-wrap: wrap;
  margin-top: 5px;
}
.ai-studio-row-3 .title-part {
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 800;
  margin: 0;
  color: var(--kt-text-color) !important;
}

.ai-trusted-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.ai-avatar-group {
  display: flex;
  align-items: center;
}
.ai-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid #f7f3ff;
  margin-left: -8px;
  overflow: hidden;
  background-color: #ddd;
}
.ai-avatar:first-child {
  margin-left: 0;
}
.ai-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ai-trusted-text {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--kt-text-color) !important;
  opacity: 0.85;
  line-height: 1.25;
  text-align: left;
}
.ai-trusted-text span {
  color: #8c3df4 !important;
  font-weight: 800;
}

.btn-purple-action {
  display: inline-flex;
  align-items: center;
  background-color: #8c3df4;
  border: none;
  border-radius: 8px;
  padding: 8px 8px 8px 20px;
  color: #fff !important;
  font-weight: 700;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  text-decoration: none;
}
.btn-purple-action:hover {
  background-color: #7b32df;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(140, 61, 244, 0.3);
  color: #fff !important;
}
.btn-purple-action .icon-box {
  width: 28px;
  height: 28px;
  background-color: #fff;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 15px;
  color: #000;
  font-size: 0.8rem;
}

@media (max-width: 991px) {
  .fanned-cards-wrap {
    height: 380px;
    margin-bottom: -100px;
  }
  .fanned-card {
    width: 145px;
    height: 195px;
    border-radius: 18px;
  }
  .card-1 {
    transform: rotate(-18deg) translate3d(-200px, 30px, 0);
  }
  .card-2 {
    transform: rotate(-9deg) translate3d(-105px, -2px, 0);
  }
  .card-3 {
    transform: rotate(0deg) translate3d(0, -15px, 0);
  }
  .card-4 {
    transform: rotate(9deg) translate3d(105px, -2px, 0);
  }
  .card-5 {
    transform: rotate(18deg) translate3d(200px, 30px, 0);
  }
  .dome-section {
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
    padding: 120px 0 60px;
  }
  .ai-studio-row-2 {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 15px;
    justify-items: center;
  }
  .ai-studio-row-2 .title-part {
    text-align: center;
  }
  .ai-studio-row-2 .desc-part {
    text-align: center;
    max-width: 100%;
  }
}

@media (max-width: 576px) {
  .fanned-cards-wrap {
    height: 270px;
    margin-bottom: -60px;
  }
  .fanned-card {
    width: 95px;
    height: 130px;
    border-radius: 12px;
  }
  .card-1 {
    transform: rotate(-15deg) translate3d(-125px, 20px, 0);
  }
  .card-2 {
    transform: rotate(-7deg) translate3d(-65px, -2px, 0);
  }
  .card-3 {
    transform: rotate(0deg) translate3d(0, -10px, 0);
  }
  .card-4 {
    transform: rotate(7deg) translate3d(65px, -2px, 0);
  }
  .card-5 {
    transform: rotate(15deg) translate3d(125px, 20px, 0);
  }
}

.pulse-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(0, 242, 254, 0.06);
  border: 1px solid rgba(0, 242, 254, 0.2);
  border-radius: 50px;
  color: var(--kt-turquoise);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  box-shadow: 0 0 15px rgba(0, 242, 254, 0.05);
}
body.light-theme .pulse-badge {
  background: rgba(0, 118, 255, 0.04);
  border-color: rgba(0, 118, 255, 0.15);
  color: var(--kt-blue);
}
.pulse-badge .dot {
  width: 6px;
  height: 6px;
  background-color: var(--kt-turquoise);
  border-radius: 50%;
  position: relative;
}
body.light-theme .pulse-badge .dot {
  background-color: var(--kt-blue);
}
.pulse-badge .dot::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: inherit;
  border-radius: inherit;
  animation: badge-pulse 1.8s infinite ease-out;
}
@keyframes badge-pulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(3.5); opacity: 0; }
}

.process-step-wrap {
  position: relative;
  padding-left: 2.25rem;
  margin-bottom: 2rem;
}
.process-step-wrap::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 24px;
  bottom: -24px;
  width: 2px;
  background: linear-gradient(180deg, var(--kt-blue) 0%, rgba(255, 255, 255, 0.02) 100%);
}
body.light-theme .process-step-wrap::before {
  background: linear-gradient(180deg, var(--kt-blue) 0%, rgba(0, 0, 0, 0.05) 100%);
}
.process-step-wrap:last-child::before {
  display: none;
}
.process-step-icon {
  position: absolute;
  left: 0;
  top: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--kt-bg-color);
  border: 2px solid var(--kt-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 2;
}
.process-step-wrap:hover .process-step-icon {
  transform: scale(1.25);
  border-color: var(--kt-turquoise);
  box-shadow: 0 0 10px var(--kt-glow-turquoise);
}

.glow-border-card {
  position: relative;
  background: rgba(13, 18, 34, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 20px;
  padding: 2.25rem 2rem;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 1;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
body.light-theme .glow-border-card {
  background: rgba(255, 255, 255, 0.65);
  border-color: rgba(0, 0, 0, 0.06);
}
.glow-border-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 1.5px;
  background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.01) 50%, rgba(255,255,255,0.04) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.glow-border-card:hover {
  transform: translateY(-8px);
  background: rgba(13, 18, 34, 0.55);
}
body.light-theme .glow-border-card:hover {
  background: rgba(255, 255, 255, 0.9);
}
.glow-border-card.accent-turquoise:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45), 0 0 25px rgba(0, 242, 254, 0.15);
  border-color: rgba(0, 242, 254, 0.3) !important;
}
.glow-border-card.accent-green:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45), 0 0 25px rgba(0, 245, 160, 0.15);
  border-color: rgba(0, 245, 160, 0.3) !important;
}
.glow-border-card.accent-purple:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45), 0 0 25px rgba(155, 81, 224, 0.15);
  border-color: rgba(155, 81, 224, 0.3) !important;
}
.glow-border-card.accent-blue:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45), 0 0 25px rgba(0, 118, 255, 0.15);
  border-color: rgba(0, 118, 255, 0.3) !important;
}

.glow-border-card .card-icon-wrap {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.4s ease;
  position: relative;
}
.glow-border-card:hover .card-icon-wrap {
  transform: scale(1.1) rotate(5deg);
}

.avatar-group {
  display: inline-flex;
  align-items: center;
}
.avatar-group .avatar-item {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--kt-bg-color);
  background: linear-gradient(135deg, var(--kt-blue) 0%, var(--kt-purple) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  color: #fff;
  margin-left: -8px;
}
.avatar-group .avatar-item:first-child {
  margin-left: 0;
}
body.light-theme .avatar-group .avatar-item {
  border-color: #fff;
}

/* FAQ Section Styles */
.faq-section {
  padding: 6rem 0;
  position: relative;
  border-top: 1px solid var(--kt-card-border);
  background: rgba(6, 9, 19, 0.2);
}

.faq-title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 3rem;
}

.faq-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  font-family: 'Syne', sans-serif;
  color: #fff;
  margin: 0;
}
body.light-theme .faq-title {
  color: #000;
}

.faq-title-lines {
  width: 40px;
  height: 6px;
  border-top: 2px solid var(--kt-turquoise);
  border-bottom: 2px solid var(--kt-turquoise);
  opacity: 0.8;
}

.faq-accordion {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.faq-item {
  border-radius: 18px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  user-select: none;
}

/* Closed Item State */
.faq-item.closed {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: #fff;
}
body.light-theme .faq-item.closed {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.06);
  color: #000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.faq-item.closed:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.12);
  transform: translateY(-1px);
}
body.light-theme .faq-item.closed:hover {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.12);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.faq-header {
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.faq-question {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.4;
}

.faq-toggle-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid currentColor;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

/* Opened Item State */
.faq-item.opened {
  background: linear-gradient(135deg, var(--kt-blue) 0%, var(--kt-turquoise) 100%);
  color: #fff;
  border: 1px solid transparent;
  box-shadow: 0 20px 45px rgba(0, 118, 255, 0.25);
}
body.light-theme .faq-item.opened {
  box-shadow: 0 20px 45px rgba(0, 118, 255, 0.4);
}

.faq-body {
  padding: 0 2rem 2rem 2rem;
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  animation: faqFadeIn 0.4s ease;
}

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

.faq-thumb {
  width: 140px;
  height: 85px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.faq-answer-text {
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.9;
  margin: 0;
}

@media (max-width: 767px) {
  .faq-body {
    flex-direction: column;
    gap: 1.25rem;
    padding: 0 1.5rem 1.5rem 1.5rem;
  }
  .faq-header {
    padding: 1.25rem 1.5rem;
  }
  .faq-thumb {
    width: 100%;
    height: 120px;
  }
  .faq-question {
    font-size: 1rem;
  }
}


/* ──────────────────────────────────────────────
   BLOG PREVIEW CARDS (Homepage Section)
   ────────────────────────────────────────────── */
.blog-preview-card {
  background: var(--kt-card-bg);
  border: 1px solid var(--kt-card-border);
  border-radius: var(--kt-radius);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.blog-preview-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--kt-turquoise), var(--kt-blue), var(--kt-purple));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.blog-preview-card:hover {
  transform: translateY(-6px);
  border-color: var(--kt-card-hover-border);
  box-shadow: 0 16px 40px rgba(0, 118, 255, 0.12), 0 4px 12px rgba(0, 0, 0, 0.2);
}

.blog-preview-card:hover::before {
  opacity: 1;
}

.blog-preview-category-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.85rem;
}

.blog-preview-category {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.2rem 0.55rem;
  border-radius: 6px;
  background: linear-gradient(135deg, rgba(0, 242, 254, 0.12), rgba(0, 118, 255, 0.12));
  color: var(--kt-turquoise);
  border: 1px solid rgba(0, 242, 254, 0.15);
}

.blog-preview-date {
  font-size: 0.65rem;
  color: var(--kt-muted);
  font-weight: 500;
}

.blog-preview-title {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.6rem;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.3s ease;
}

.blog-preview-card:hover .blog-preview-title {
  color: var(--kt-turquoise);
}

.blog-preview-excerpt {
  font-size: 0.8rem;
  color: var(--kt-muted);
  line-height: 1.6;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 1rem;
}

.blog-preview-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0.75rem;
  border-top: 1px solid var(--kt-card-border);
}

.blog-preview-author {
  font-size: 0.7rem;
  color: var(--kt-muted);
  font-weight: 500;
}

.blog-preview-read-more {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--kt-turquoise);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.3s ease;
}

.blog-preview-card:hover .blog-preview-read-more {
  gap: 8px;
}

/* Light theme overrides */
body.light-theme .blog-preview-title {
  color: #1a1a2e;
}
body.light-theme .blog-preview-card:hover .blog-preview-title {
  color: var(--kt-blue);
}

/* Responsive: 2 columns on tablet, 1 on small mobile */
@media (max-width: 767.98px) {
  .blog-preview-card {
    padding: 1.25rem;
  }
  .blog-preview-title {
    font-size: 0.95rem;
  }
}

/* ──────────────────────────────────────────────
   BLOG PAGE — Full Redesign
   ────────────────────────────────────────────── */

/* Hero Header */
.blog-hero-header {
  padding: 120px 0 40px 0;
  position: relative;
  z-index: 1;
}
.blog-hero-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.1;
  background: linear-gradient(135deg, #fff 30%, var(--kt-turquoise) 70%, var(--kt-purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
}
.blog-hero-subtitle {
  color: var(--kt-muted);
  font-size: 1rem;
  max-width: 500px;
  margin-bottom: 0;
}

/* Grid Section */
.blog-grid-section {
  padding: 30px 0 80px 0;
  position: relative;
  z-index: 1;
}

/* ── Featured Card ────────────────────────── */
.blog-featured-card {
  background: var(--kt-card-bg);
  border: 1px solid var(--kt-card-border);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.blog-featured-card:hover {
  border-color: rgba(0, 242, 254, 0.15);
  box-shadow: 0 20px 60px rgba(0, 118, 255, 0.1), 0 8px 20px rgba(0, 0, 0, 0.15);
}
.blog-featured-img-wrap {
  position: relative;
  height: 100%;
  min-height: 280px;
  overflow: hidden;
}
.blog-featured-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.blog-featured-card:hover .blog-featured-img {
  transform: scale(1.04);
}
.blog-featured-img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(0, 118, 255, 0.08) 0%, rgba(155, 81, 224, 0.08) 100%);
  font-size: 4rem;
  color: rgba(255, 255, 255, 0.1);
}
.blog-featured-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.3rem 0.75rem;
  border-radius: 8px;
  backdrop-filter: blur(8px);
}
.blog-featured-content {
  padding: 2rem 2.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}
.blog-featured-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.75rem;
  color: var(--kt-muted);
  margin-bottom: 1rem;
}
.blog-featured-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 0.85rem;
  transition: color 0.3s ease;
}
.blog-featured-card:hover .blog-featured-title {
  color: var(--kt-turquoise);
}
.blog-featured-excerpt {
  color: var(--kt-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  flex: 1;
  margin-bottom: 1.25rem;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-featured-actions {
  display: flex;
  align-items: center;
}

/* ── Grid Card ────────────────────────────── */
.blog-card {
  background: var(--kt-card-bg);
  border: 1px solid var(--kt-card-border);
  border-radius: var(--kt-radius);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
}
.blog-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--kt-turquoise), var(--kt-blue), var(--kt-purple));
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 2;
}
.blog-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 242, 254, 0.12);
  box-shadow: 0 18px 50px rgba(0, 118, 255, 0.12), 0 6px 16px rgba(0, 0, 0, 0.2);
}
.blog-card:hover::before {
  opacity: 1;
}

/* Card Image */
.blog-card-img-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.blog-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.blog-card:hover .blog-card-img {
  transform: scale(1.06);
}
.blog-card-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(0, 118, 255, 0.06) 0%, rgba(155, 81, 224, 0.06) 100%);
  font-size: 2.5rem;
  color: rgba(255, 255, 255, 0.08);
}
.blog-card-category {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.2rem 0.6rem;
  border-radius: 6px;
  backdrop-filter: blur(8px);
}

/* Card Body */
.blog-card-body {
  padding: 1.25rem 1.25rem 0.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-card-meta {
  display: flex;
  gap: 0.75rem;
  font-size: 0.68rem;
  color: var(--kt-muted);
  margin-bottom: 0.65rem;
}
.blog-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.35;
  margin-bottom: 0.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.3s ease;
}
.blog-card:hover .blog-card-title {
  color: var(--kt-turquoise);
}
.blog-card-excerpt {
  font-size: 0.8rem;
  color: var(--kt-muted);
  line-height: 1.6;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Card Footer */
.blog-card-footer {
  padding: 0.85rem 1.25rem;
  border-top: 1px solid var(--kt-card-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.blog-card-read-btn {
  background: none;
  border: none;
  color: var(--kt-turquoise);
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.3s ease, color 0.3s ease;
}
.blog-card-read-btn:hover {
  gap: 8px;
  color: #fff;
}

/* ── Empty State ──────────────────────────── */
.blog-empty-state {
  text-align: center;
  padding: 80px 20px;
}
.blog-empty-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(0, 118, 255, 0.1), rgba(155, 81, 224, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: var(--kt-turquoise);
}
.blog-empty-state h3 {
  color: #fff;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.blog-empty-state p {
  color: var(--kt-muted);
  font-size: 0.95rem;
}

/* ── Modal Styles ─────────────────────────── */
.blog-modal-content {
  background: var(--kt-slate) !important;
  border: 1px solid var(--kt-card-border) !important;
  border-radius: 20px !important;
  color: #fff;
}
.blog-modal-header {
  border-bottom: 1px solid var(--kt-card-border) !important;
  padding: 1.25rem 1.5rem;
}
.blog-modal-body {
  padding: 1.5rem;
}
.blog-modal-footer {
  border-top: 1px solid var(--kt-card-border) !important;
  padding: 1rem 1.5rem;
}
.blog-input {
  background: var(--kt-input-bg) !important;
  border: 1px solid var(--kt-input-border) !important;
  color: var(--kt-input-text) !important;
  border-radius: 12px !important;
  padding: 0.65rem 1rem;
  font-size: 0.9rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.blog-input:focus {
  background: var(--kt-input-focus-bg) !important;
  border-color: var(--kt-turquoise) !important;
  box-shadow: 0 0 0 3px rgba(0, 242, 254, 0.1) !important;
}
.blog-textarea {
  min-height: 250px;
  resize: vertical;
  line-height: 1.7;
}

/* Cover Image Upload Area */
.blog-cover-upload-wrap {
  border-radius: 16px;
  overflow: hidden;
}
.blog-cover-upload-area {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 180px;
  border: 2px dashed var(--kt-card-border);
  border-radius: 16px;
  cursor: pointer;
  transition: border-color 0.3s ease, background 0.3s ease;
  position: relative;
  overflow: hidden;
}
.blog-cover-upload-area:hover {
  border-color: var(--kt-turquoise);
  background: rgba(0, 242, 254, 0.03);
}
.blog-cover-upload-content {
  text-align: center;
  padding: 2rem;
}
.blog-cover-preview {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 14px;
}

/* Read Modal */
.blog-read-cover-wrap {
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 1.5rem;
}
.blog-read-cover-img {
  width: 100%;
  max-height: 380px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}
.blog-read-meta-line {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.blog-read-category-badge {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.25rem 0.7rem;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(0, 242, 254, 0.12), rgba(0, 118, 255, 0.12));
  color: var(--kt-turquoise);
  border: 1px solid rgba(0, 242, 254, 0.15);
}
.blog-read-meta-item {
  font-size: 0.78rem;
  color: var(--kt-muted);
}
.blog-read-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 1.5rem;
}
.blog-read-body {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.02rem;
  line-height: 1.85;
  white-space: pre-wrap;
}

/* ── Light Theme Overrides ────────────────── */
body.light-theme .blog-hero-title {
  background: linear-gradient(135deg, #1a1a2e 30%, var(--kt-blue) 70%, var(--kt-purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
body.light-theme .blog-featured-title,
body.light-theme .blog-card-title {
  color: #1a1a2e;
}
body.light-theme .blog-featured-card:hover .blog-featured-title,
body.light-theme .blog-card:hover .blog-card-title {
  color: var(--kt-blue);
}
body.light-theme .blog-read-title {
  color: #1a1a2e;
}
body.light-theme .blog-read-body {
  color: #444;
}
body.light-theme .blog-modal-content {
  background: #fff !important;
  color: #1a1a2e;
}
body.light-theme .blog-empty-state h3 {
  color: #1a1a2e;
}

/* ── Responsive ───────────────────────────── */
@media (max-width: 991.98px) {
  .blog-hero-header {
    padding: 100px 0 30px 0;
  }
  .blog-featured-content {
    padding: 1.5rem;
  }
  .blog-featured-img-wrap {
    min-height: 220px;
  }
  .blog-featured-excerpt {
    -webkit-line-clamp: 3;
  }
}

@media (max-width: 767.98px) {
  .blog-hero-header {
    padding: 90px 0 20px 0;
  }
  .blog-hero-title {
    font-size: 1.75rem;
  }
  .blog-hero-subtitle {
    font-size: 0.85rem;
  }
  .blog-featured-card .row {
    flex-direction: column;
  }
  .blog-featured-img-wrap {
    min-height: 180px;
    height: 180px;
  }
  .blog-featured-content {
    padding: 1.25rem;
  }
  .blog-featured-title {
    font-size: 1.2rem;
  }
  .blog-featured-excerpt {
    font-size: 0.82rem;
    -webkit-line-clamp: 3;
  }
  .blog-card-img-wrap {
    height: 160px;
  }
  .blog-card-body {
    padding: 1rem 1rem 0.5rem;
  }
  .blog-card-title {
    font-size: 0.95rem;
  }
  .blog-card-footer {
    padding: 0.75rem 1rem;
  }
  .blog-grid-section {
    padding: 20px 0 50px 0;
  }
  .blog-read-cover-img {
    max-height: 200px;
  }
  .blog-read-title {
    font-size: 1.3rem;
  }
  .blog-read-body {
    font-size: 0.92rem;
  }
  .blog-cover-preview {
    height: 160px;
  }
}

/* ============================================================
   KREATURK PREMIUM ADDITIONS
   ============================================================ */

/* Global Page & Component Animations */
.site-main, .dash-content, .auth-card, .legal-page {
  animation: pageFadeInUpPremium 0.75s cubic-bezier(0.16, 1, 0.3, 1) forwards !important;
}

@keyframes pageFadeInUpPremium {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.99);
    filter: blur(4px);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

/* Card Hover Scale and Depth Adjustments */
.cyber-card, .blog-card, .dash-card, .feature-card {
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.cyber-card:hover, .blog-card:hover, .dash-card:hover {
  transform: translateY(-6px) scale(1.008) !important;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45) !important;
}

/* Premium Danger & Delete Buttons */
.btn-kt-danger {
  background: rgba(239, 68, 68, 0.08) !important;
  color: #ef4444 !important;
  border: 1px solid rgba(239, 68, 68, 0.2) !important;
  border-radius: 100px !important;
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-weight: 600 !important;
  font-size: 0.76rem !important;
  padding: 6px 18px !important;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  text-decoration: none;
}

.btn-kt-danger:hover {
  background: rgba(239, 68, 68, 0.16) !important;
  border-color: #ef4444 !important;
  color: #ef4444 !important;
  transform: translateY(-1.5px) !important;
}

.btn-kt-danger:active {
  transform: translateY(0) !important;
}

/* Make outline-danger default to premium styling as well */
.btn-outline-danger {
  border-color: rgba(255, 0, 127, 0.3) !important;
  color: var(--kt-pink) !important;
  background: transparent !important;
  transition: all 0.3s ease !important;
}
.btn-outline-danger:hover {
  color: #fff !important;
  box-shadow: 0 6px 15px rgba(255, 0, 127, 0.25) !important;
}

/* ==========================================================================
   Premium Footer & Support Chat Widget
   ========================================================================== */

.site-footer {
  position: relative;
  background: #09090d;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  padding: 80px 0 0 0 !important;
  overflow: hidden;
}

.footer-glow-blob-1 {
  position: absolute;
  top: -100px;
  left: -150px;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(0, 242, 254, 0.1) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.footer-glow-blob-2 {
  position: absolute;
  bottom: -50px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 179, 255, 0.05) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.clapping-badge {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  transform: rotate(-10deg);
  animation: badgePulse 3s infinite ease-in-out;
}

@keyframes badgePulse {
  0%, 100% { transform: scale(1) rotate(-10deg); }
  50% { transform: scale(1.06) rotate(-5deg); }
}

.badge-emoji {
  font-size: 24px;
}

.footer-headline {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-family: 'Outfit', sans-serif;
  background: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0.85) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-desc {
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 480px;
  color: rgba(255, 255, 255, 0.5) !important;
}

/* Social media icon buttons */
.social-box-link {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6) !important;
  font-size: 1.2rem;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
}

.social-box-link:hover {
  background: rgba(0, 242, 254, 0.08) !important;
  border-color: rgba(0, 242, 254, 0.45) !important;
  color: var(--kt-turquoise) !important;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 242, 254, 0.25);
}

/* Footer form input cards */
.footer-form-card {
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  padding: 40px;
  backdrop-filter: blur(10px);
}

.form-label-custom {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 8px;
}

.form-input-custom {
  width: 100%;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  padding: 12px 16px;
  color: #fff;
  font-size: 0.95rem;
  transition: all 0.25s ease;
}

.form-input-custom::placeholder {
  color: rgba(255, 255, 255, 0.2);
}

.form-input-custom:focus {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(0, 242, 254, 0.5) !important;
  outline: none;
  box-shadow: 0 0 15px rgba(0, 242, 254, 0.2) !important;
}

.form-input-custom.textarea {
  resize: none;
}

.btn-kt-send-project {
  background: linear-gradient(135deg, var(--kt-blue) 0%, var(--kt-turquoise) 100%);
  border: none;
  border-radius: 8px;
  padding: 14px 28px;
  color: #030811;
  font-size: 0.95rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 6px 20px var(--kt-glow-turquoise);
}

.btn-kt-send-project:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #0088ff 0%, #00ffff 100%);
  color: #030811;
  box-shadow: 0 10px 30px rgba(0, 242, 254, 0.35);
}

.btn-kt-send-project:hover i {
  transform: translateX(3px);
}

.btn-kt-send-project i {
  transition: transform 0.2s ease;
}

/* Download store buttons */
.btn-download-store {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  padding: 10px 16px;
  color: #fff !important;
  text-decoration: none;
  transition: all 0.25s ease;
  width: fit-content;
  min-width: 175px;
}

.btn-download-store:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

.btn-download-store .store-text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.btn-download-store .store-sub {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.btn-download-store .store-title {
  font-size: 0.95rem;
  font-weight: 600;
}

/* Company links list */
.footer-links-list a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s ease, padding-left 0.2s ease;
  display: inline-block;
}

.footer-links-list a:hover {
  color: var(--kt-turquoise) !important;
  padding-left: 4px;
}

/* Newsletter styling */
.newsletter-bell-badge {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--kt-blue) 0%, var(--kt-turquoise) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px var(--kt-glow-turquoise);
}

.newsletter-input-group {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  padding: 4px 4px 4px 14px;
  transition: border-color 0.25s ease;
}

.newsletter-input-group:focus-within {
  border-color: rgba(0, 242, 254, 0.5);
  box-shadow: 0 0 15px rgba(0, 242, 254, 0.15);
}

.newsletter-input {
  flex: 1;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 0.9rem;
  outline: none;
  padding: 8px 0;
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.newsletter-submit-btn {
  width: 38px;
  height: 38px;
  border-radius: 6px;
  background: var(--kt-blue);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.newsletter-submit-btn:hover {
  background: var(--kt-turquoise);
  transform: scale(1.05);
}

.form-check-input-custom {
  appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  cursor: pointer;
  outline: none;
  transition: all 0.2s ease;
}

.form-check-input-custom:checked {
  background: var(--kt-blue);
  border-color: var(--kt-blue);
}

.form-check-input-custom:checked::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 10px;
  color: #fff;
  font-weight: bold;
}

.newsletter-terms-label {
  line-height: 1.3;
  cursor: pointer;
  user-select: none;
}

/* Thin bottom strip */
.footer-bottom-strip {
  background: linear-gradient(90deg, #1e40af 0%, #6d28d9 50%, #7c3aed 100%) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
  color: #ffffff !important;
}

.footer-bottom-strip .footer-copyright,
.footer-bottom-strip .footer-copyright a,
.footer-bottom-strip .footer-bottom-links a {
  color: #ffffff !important;
  font-weight: 500;
  transition: opacity 0.2s ease;
}

.footer-bottom-strip .footer-copyright a:hover,
.footer-bottom-strip .footer-bottom-links a:hover {
  opacity: 0.8;
  color: #ffffff !important;
}

.footer-terms-link {
  color: #ffffff !important;
  font-weight: 600;
  transition: opacity 0.2s ease;
}

.footer-terms-link:hover {
  opacity: 0.8;
  color: #ffffff !important;
}

/* ── Floating Combo: Scroll Progress + Support Toggle ────── */
.floating-combo-wrap {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 54px;
  height: 54px;
  z-index: 1040;
  cursor: pointer;
  /* inherit scroll-progress-wrap visibility behavior */
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px) scale(0.9);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
  border-radius: 50%;
  background: var(--kt-bg-color, #0d0d12);
  border: 1.5px solid rgba(255,255,255,0.08);
}
.floating-combo-wrap.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}
.floating-combo-wrap:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
  border-color: rgba(255,255,255,0.15);
}

/* SVG progress ring */
.floating-combo-wrap svg.scroll-progress-circle {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}
.floating-combo-wrap svg circle {
  fill: none;
  stroke-width: 2.5;
}
.floating-combo-wrap svg circle.bg {
  stroke: rgba(255,255,255,0.06);
}
.floating-combo-wrap svg circle.progress {
  stroke: var(--kt-blue, #0076ff);
  stroke-linecap: round;
  transition: stroke-dashoffset 0.1s linear;
}

/* Center logo icon */
.floating-combo-wrap .scroll-progress-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
}
.floating-combo-wrap .scroll-brand-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 3px;
}

/* ── Support mini-toggle (overlaid top-left of combo) ────── */
.support-mini-toggle {
  position: absolute;
  top: -6px;
  left: -6px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--kt-turquoise, #00f2fe), var(--kt-blue, #0076ff));
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  color: #fff;
  font-size: 0.65rem;
  border: 2px solid var(--kt-bg-color, #0d0d12);
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(0,118,255,0.35);
}
.support-mini-toggle:hover {
  transform: scale(1.15);
  box-shadow: 0 4px 12px rgba(0,242,254,0.5);
}

/* Notification badge on support toggle */
.support-toggle-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--kt-pink, #ff2d75);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--kt-bg-color, #0d0d12);
  animation: badge-pulse 2s infinite;
}

@keyframes badge-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 45, 117, 0.5); }
  50% { box-shadow: 0 0 0 6px rgba(255, 45, 117, 0); }
}

/* Support chat pop-up window – positioned to LEFT of combo */
.support-chat-widget {
  position: fixed;
  bottom: 24px;
  right: 90px;
  width: 360px;
  border-radius: 16px;
  background: rgba(13, 13, 18, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.08);
  z-index: 1050;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateX(20px) scale(0.95);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.support-chat-widget.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0) scale(1);
}

/* Chat message sequential animation */
.chat-msg--hidden {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.chat-msg--visible {
  opacity: 1;
  transform: translateY(0);
}

/* Chat header */
.support-chat-header {
  background: linear-gradient(135deg, rgba(0,118,255,0.12) 0%, rgba(0,242,254,0.08) 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.support-avatar-wrap {
  position: relative;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0, 118, 255, 0.12);
  border: 1px solid rgba(0, 118, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.support-avatar-img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.support-status-dot {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(13,13,18,0.97);
}
.support-status-dot.offline { background: var(--kt-pink, #ff2d75); }
.support-status-dot.online  { background: #22c55e; }

.support-chat-title {
  font-size: 0.88rem;
  font-weight: 600;
  color: #fff;
}
.support-chat-subtitle {
  font-size: 0.7rem;
  color: var(--kt-pink, #ff2d75);
  display: flex;
  align-items: center;
  gap: 4px;
}
.status-indicator {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--kt-pink, #ff2d75);
  display: inline-block;
}

.support-chat-close-btn {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.4);
  font-size: 1rem;
  padding: 4px;
  transition: color 0.2s, transform 0.2s;
}
.support-chat-close-btn:hover {
  color: #fff;
  transform: rotate(90deg);
}

/* Chat message body */
.support-chat-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-height: 340px;
  overflow-y: auto;
}

/* Chat message row */
.chat-msg {
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.chat-msg--bot {
  flex-direction: row;
}
.chat-msg-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(0, 118, 255, 0.12);
  border: 1px solid rgba(0, 118, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}
.chat-msg-avatar img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.chat-msg-content {
  flex: 1;
  min-width: 0;
}
.chat-msg-sender {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--kt-blue, #0076ff);
  margin-bottom: 3px;
}
.chat-msg-bubble {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 2px 12px 12px 12px;
  padding: 10px 13px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.8rem;
  line-height: 1.5;
}
.chat-msg-bubble--notice {
  background: rgba(255, 45, 117, 0.06);
  border-color: rgba(255, 45, 117, 0.15);
}
.chat-msg-time {
  display: block;
  font-size: 0.62rem;
  color: rgba(255,255,255,0.25);
  margin-top: 4px;
}

/* CTA button */
.support-chat-cta {
  padding-top: 4px;
}
.support-goto-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 10px 16px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--kt-turquoise, #00f2fe) 0%, var(--kt-blue, #0076ff) 100%);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 4px 15px rgba(0, 118, 255, 0.3);
}
.support-goto-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0, 118, 255, 0.45);
  color: #fff;
}

/* Typing indicator footer */
.support-chat-footer {
  padding: 10px 16px;
  border-top: 1px solid rgba(255,255,255,0.04);
  display: flex;
  align-items: center;
  gap: 8px;
}
.typing-indicator {
  display: flex;
  gap: 3px;
}
.typing-indicator span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--kt-blue, #0076ff);
  animation: typing-bounce 1.4s infinite;
}
.typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
.typing-indicator span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typing-bounce {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-4px); opacity: 1; }
}

.typing-label {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.3);
  font-style: italic;
}

/* ==========================================================================
   Support Widget Refinement
   ========================================================================== */

.floating-combo-wrap {
  width: 62px !important;
  height: 62px !important;
  right: 24px !important;
  bottom: 24px !important;
  border-radius: 22px !important;
  background:
    linear-gradient(180deg, rgba(10, 15, 29, 0.92), rgba(5, 8, 17, 0.96)) padding-box,
    linear-gradient(135deg, rgba(0, 242, 254, 0.34), rgba(0, 118, 255, 0.42), rgba(255, 255, 255, 0.08)) border-box !important;
  border: 1px solid transparent !important;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.45), 0 0 24px rgba(0, 118, 255, 0.16) !important;
  overflow: visible !important;
}

.floating-combo-wrap svg.scroll-progress-circle {
  inset: 4px !important;
  width: calc(100% - 8px) !important;
  height: calc(100% - 8px) !important;
}

.floating-combo-wrap svg circle.bg {
  stroke: rgba(255, 255, 255, 0.08) !important;
}

.floating-combo-wrap svg circle.progress {
  stroke: url(#supportProgressGradient);
  filter: drop-shadow(0 0 5px rgba(0, 118, 255, 0.7));
}

.floating-combo-wrap .scroll-progress-icon {
  width: 46px !important;
  height: 46px !important;
  overflow: visible !important;
  background: radial-gradient(circle at 35% 30%, rgba(0, 242, 254, 0.18), rgba(255, 255, 255, 0.045) 62%) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  box-shadow: inset 0 0 18px rgba(0, 118, 255, 0.16);
}

.floating-combo-wrap .scroll-brand-logo {
  padding: 2px !important;
  filter: drop-shadow(0 5px 12px rgba(0, 118, 255, 0.32));
}

.support-mini-toggle {
  top: -10px !important;
  left: -12px !important;
  width: 34px !important;
  min-width: 0 !important;
  height: 34px !important;
  padding: 0 !important;
  border-radius: 50% !important;
  gap: 0;
  background:
    linear-gradient(135deg, rgba(0, 242, 254, 0.98), rgba(0, 118, 255, 0.98)) !important;
  color: #04101d !important;
  border: 1px solid rgba(255, 255, 255, 0.22) !important;
  font-size: 0.92rem !important;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(0, 118, 255, 0.35), 0 0 0 5px rgba(0, 118, 255, 0.08) !important;
  animation: supportIconPop 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.support-mini-toggle i {
  font-size: 1rem;
  line-height: 1;
}

.support-toggle-label {
  position: absolute;
  top: 50%;
  right: calc(100% + 9px);
  display: inline-flex;
  align-items: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  color: #dffbff;
  white-space: nowrap;
  padding: 8px 11px;
  border-radius: 12px 12px 4px 12px;
  background: rgba(8, 18, 31, 0.92);
  border: 1px solid rgba(0, 242, 254, 0.18);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.32), 0 0 18px rgba(0, 118, 255, 0.14);
  opacity: 0;
  pointer-events: none;
  transform: translate(8px, -50%) scale(0.96);
  animation: supportLabelBubble 0.52s cubic-bezier(0.16, 1, 0.3, 1) 0.55s forwards;
}

.support-toggle-label::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -5px;
  width: 9px;
  height: 9px;
  background: rgba(8, 18, 31, 0.92);
  border-top: 1px solid rgba(0, 242, 254, 0.18);
  border-right: 1px solid rgba(0, 242, 254, 0.18);
  transform: translateY(-50%) rotate(45deg);
}

.support-mini-toggle:hover {
  transform: translateY(-2px) scale(1.02) !important;
  box-shadow: 0 16px 34px rgba(0, 118, 255, 0.44), 0 0 0 6px rgba(0, 242, 254, 0.1) !important;
}

.support-toggle-badge {
  top: -8px !important;
  right: -8px !important;
  width: 18px !important;
  height: 18px !important;
  color: #fff !important;
  border-color: #060913 !important;
  font-size: 0.62rem !important;
  box-shadow: 0 0 0 3px rgba(255, 0, 127, 0.18);
  animation: badge-pulse 2.4s infinite, supportBadgeShake 5.5s ease-in-out infinite !important;
}

@keyframes supportIconPop {
  0% { opacity: 0; transform: scale(0.4) rotate(-20deg); }
  62% { opacity: 1; transform: scale(1.08) rotate(6deg); }
  100% { opacity: 1; transform: scale(1) rotate(0deg); }
}

@keyframes supportLabelBubble {
  0% { opacity: 0; transform: translate(10px, -50%) scale(0.94); }
  100% { opacity: 1; transform: translate(0, -50%) scale(1); }
}

@keyframes supportBadgeShake {
  0%, 72%, 100% { transform: translate(0, 0) rotate(0deg); }
  75% { transform: translate(-1px, 0) rotate(-10deg); }
  78% { transform: translate(1px, -1px) rotate(10deg); }
  81% { transform: translate(-1px, 1px) rotate(-8deg); }
  84% { transform: translate(1px, 0) rotate(8deg); }
  87% { transform: translate(0, 0) rotate(0deg); }
}

.support-chat-widget {
  right: 104px !important;
  bottom: 28px !important;
  width: min(390px, calc(100vw - 28px)) !important;
  max-height: min(620px, calc(100vh - 48px));
  border-radius: 20px !important;
  background:
    linear-gradient(180deg, rgba(10, 15, 29, 0.96), rgba(6, 9, 19, 0.985)) padding-box,
    linear-gradient(135deg, rgba(0, 242, 254, 0.18), rgba(0, 118, 255, 0.16), rgba(255, 255, 255, 0.08)) border-box !important;
  border: 1px solid transparent !important;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.62), 0 0 44px rgba(0, 118, 255, 0.12) !important;
}

.support-chat-widget::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background:
    radial-gradient(circle at 18% 0%, rgba(0, 242, 254, 0.12), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent 42%);
}

.support-chat-header {
  position: relative;
  padding: 16px 18px !important;
  min-height: 78px;
  background: rgba(8, 18, 31, 0.88) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.support-chat-header > .d-flex {
  gap: 12px !important;
}

.support-avatar-wrap {
  width: 46px !important;
  height: 46px !important;
  border-radius: 15px !important;
  background:
    radial-gradient(circle at 36% 30%, rgba(0, 242, 254, 0.18), rgba(0, 118, 255, 0.12) 58%, rgba(255, 255, 255, 0.04)) !important;
  border: 1px solid rgba(0, 242, 254, 0.22) !important;
  box-shadow: inset 0 0 18px rgba(0, 118, 255, 0.18), 0 8px 22px rgba(0, 0, 0, 0.22);
  overflow: visible !important;
}

.support-avatar-img {
  width: 31px !important;
  height: 31px !important;
}

.support-status-dot {
  bottom: -3px !important;
  right: -3px !important;
  width: 12px !important;
  height: 12px !important;
  border-color: #08121f !important;
  box-shadow: 0 0 0 3px rgba(255, 0, 127, 0.14);
}

.support-title-wrap {
  min-width: 0;
}

.support-chat-title {
  font-size: 0.98rem !important;
  font-weight: 800 !important;
  letter-spacing: -0.01em;
}

.support-chat-subtitle {
  margin-top: 3px;
  font-size: 0.72rem !important;
  font-weight: 700;
}

.support-chat-close-btn {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.035) !important;
  border: 1px solid rgba(255, 255, 255, 0.055) !important;
}

.support-chat-close-btn:hover {
  background: rgba(255, 255, 255, 0.08) !important;
  transform: none !important;
}

.support-chat-body {
  position: relative;
  padding: 18px !important;
  gap: 16px !important;
  max-height: 380px !important;
  scrollbar-width: thin;
}

.chat-msg {
  gap: 10px !important;
  will-change: transform, opacity;
}

.chat-msg--hidden {
  opacity: 0 !important;
  transform: translateY(18px) scale(0.985) !important;
  filter: blur(3px);
  transition:
    opacity 0.62s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.62s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.62s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.chat-msg--visible {
  opacity: 1 !important;
  transform: translateY(0) scale(1) !important;
  filter: blur(0);
}

.chat-msg-avatar {
  width: 34px !important;
  height: 34px !important;
  border-radius: 12px !important;
  background: rgba(0, 118, 255, 0.12) !important;
  border: 1px solid rgba(0, 242, 254, 0.18) !important;
}

.chat-msg-avatar img {
  width: 23px !important;
  height: 23px !important;
}

.chat-msg-sender {
  color: var(--kt-turquoise, #00f2fe) !important;
  font-size: 0.72rem !important;
  font-weight: 800 !important;
  margin-bottom: 5px !important;
}

.chat-msg-bubble {
  border-radius: 14px 14px 14px 4px !important;
  padding: 12px 14px !important;
  background: rgba(255, 255, 255, 0.045) !important;
  border-color: rgba(255, 255, 255, 0.075) !important;
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 0.84rem !important;
  line-height: 1.58 !important;
}

.chat-msg-bubble--notice {
  background: rgba(255, 0, 127, 0.075) !important;
  border-color: rgba(255, 0, 127, 0.24) !important;
}

.chat-msg-bubble--notice strong {
  display: inline-flex;
  align-items: center;
  color: #fff;
  margin-bottom: 4px;
}

.chat-msg-time {
  font-size: 0.66rem !important;
  color: rgba(255, 255, 255, 0.34) !important;
  margin-top: 6px !important;
}

.support-chat-cta {
  padding-top: 2px !important;
}

.support-goto-btn {
  min-height: 46px;
  border-radius: 14px !important;
  color: #04101d !important;
  font-weight: 800 !important;
  box-shadow: 0 12px 28px rgba(0, 118, 255, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.28) !important;
}

.support-goto-btn:hover {
  color: #04101d !important;
}

.support-chat-footer {
  position: relative;
  background: rgba(255, 255, 255, 0.018);
}

@media (max-width: 575.98px) {
  .floating-combo-wrap {
    right: 16px !important;
    bottom: 16px !important;
  }

  .support-mini-toggle {
    left: -9px !important;
    min-width: 0 !important;
    padding: 0 !important;
  }

  .support-toggle-label {
    right: calc(100% + 7px);
    font-size: 0.7rem;
    padding: 8px 10px;
  }

  .support-chat-widget {
    right: 14px !important;
    bottom: 92px !important;
    width: calc(100vw - 28px) !important;
  }
}

/* ==========================================================================
   Light Theme Override Configurations
   ========================================================================== */

body.light-theme .site-footer {
  background: #f8f9fa;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

body.light-theme .footer-bottom-strip {
  background: linear-gradient(90deg, #1e40af 0%, #6d28d9 50%, #7c3aed 100%) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
  color: #ffffff !important;
}
body.light-theme .footer-bottom-strip .footer-copyright,
body.light-theme .footer-bottom-strip .footer-copyright a,
body.light-theme .footer-bottom-strip .footer-bottom-links a {
  color: #ffffff !important;
}

body.light-theme .form-input-custom {
  background: rgba(0, 0, 0, 0.015);
  border-color: rgba(0, 0, 0, 0.08);
  color: #121212;
}

body.light-theme .form-input-custom::placeholder {
  color: rgba(0, 0, 0, 0.35);
}

body.light-theme .form-input-custom:focus {
  background: #fff;
  border-color: #7828fa;
  box-shadow: 0 0 15px rgba(120, 40, 250, 0.1);
}

body.light-theme .form-label-custom {
  color: rgba(0, 0, 0, 0.7);
}

body.light-theme .footer-headline {
  background: linear-gradient(180deg, #121212 0%, rgba(0, 0, 0, 0.8) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

body.light-theme .footer-desc {
  color: rgba(0, 0, 0, 0.6) !important;
}

body.light-theme .social-box-link {
  background: rgba(0, 0, 0, 0.015);
  border-color: rgba(0, 0, 0, 0.08);
  color: rgba(0, 0, 0, 0.6) !important;
}

body.light-theme .social-box-link:hover {
  background: rgba(120, 40, 250, 0.06) !important;
  color: #7828fa !important;
}

body.light-theme .btn-download-store {
  background: rgba(0, 0, 0, 0.015);
  border-color: rgba(0, 0, 0, 0.08);
  color: #121212 !important;
}

body.light-theme .btn-download-store:hover {
  background: rgba(0, 0, 0, 0.04);
}

body.light-theme .btn-download-store .store-sub {
  color: rgba(0, 0, 0, 0.5);
}

body.light-theme .footer-links-list a {
  color: rgba(0, 0, 0, 0.6);
}

body.light-theme .newsletter-input-group {
  background: rgba(0, 0, 0, 0.015);
  border-color: rgba(0, 0, 0, 0.08);
}

body.light-theme .newsletter-input {
  color: #121212;
}

body.light-theme .newsletter-input::placeholder {
  color: rgba(0, 0, 0, 0.4);
}

body.light-theme .form-check-input-custom {
  background: rgba(0, 0, 0, 0.02);
  border-color: rgba(0, 0, 0, 0.15);
}

body.light-theme .form-check-input-custom:checked {
  background: #7828fa;
  border-color: #7828fa;
}

body.light-theme .support-chat-widget {
  background: rgba(255, 255, 255, 0.98);
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

body.light-theme .support-chat-header {
  border-bottom-color: rgba(0, 0, 0, 0.06);
}

body.light-theme .support-chat-close-btn {
  color: rgba(0, 0, 0, 0.5);
}

body.light-theme .support-chat-close-btn:hover {
  color: #121212;
}

body.light-theme .chat-message .message-content {
  background: rgba(0, 0, 0, 0.03);
  border-color: rgba(0, 0, 0, 0.05);
  color: #121212;
}

body.light-theme .chat-message .message-time {
  color: rgba(0, 0, 0, 0.4);
}

body.light-theme .support-avatar-wrap {
  border-color: rgba(120, 40, 250, 0.4);
}

body.light-theme .support-offline-alert {
  background: rgba(255, 0, 127, 0.03);
}

body.light-theme .support-status-dot {
  border-color: #fff;
}

/* ==========================================================================
   Homepage Two-Column Blog Section Redesign
   ========================================================================== */

.home-blog-header {
  position: relative;
}

.title-double-line {
  display: inline-block;
  width: 28px;
  height: 8px;
  border-top: 2px solid var(--kt-blue);
  border-bottom: 2px solid var(--kt-blue);
  vertical-align: middle;
  margin-left: 12px;
}

/* Premium blue CTA button */
.btn-kt-more-blogs {
  display: inline-flex;
  align-items: center;
  background: var(--kt-blue);
  color: #fff !important;
  text-decoration: none;
  border-radius: 10px;
  padding: 6px 22px 6px 6px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 15px var(--kt-glow-blue);
}

.btn-kt-more-blogs:hover {
  background: linear-gradient(135deg, var(--kt-blue) 0%, var(--kt-turquoise) 100%);
  color: #030811 !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--kt-glow-turquoise);
}

.btn-arrow-box {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #fff;
  color: var(--kt-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 14px;
  font-size: 1.15rem;
  transition: transform 0.25s ease;
}

.btn-kt-more-blogs:hover .btn-arrow-box {
  transform: scale(1.05);
}

.btn-kt-more-blogs:hover .btn-arrow-box i {
  animation: arrowBounce 0.5s ease infinite alternate;
}

@keyframes arrowBounce {
  0% { transform: translateX(0); }
  100% { transform: translateX(3px); }
}

/* Social Proof list */
.social-proof-avatars {
  display: flex;
  align-items: center;
}

.proof-avatar-img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid #09090d;
  margin-left: -12px;
  object-fit: cover;
  transition: transform 0.2s ease, z-index 0.2s ease;
}

.proof-avatar-img:first-child {
  margin-left: 0;
}

.proof-avatar-img:hover {
  transform: translateY(-4px) scale(1.1);
  z-index: 10;
}

.social-proof-text-wrap {
  display: flex;
  flex-direction: column;
}

.social-proof-stars {
  color: #ffc107;
  font-size: 0.95rem;
}

.social-proof-label {
  color: rgba(255, 255, 255, 0.5) !important;
  font-size: 0.8rem;
}

/* Horizontal Blog Preview Card */
.blog-horizontal-card-link {
  display: block;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-horizontal-card {
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 16px;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-horizontal-card-link:hover {
  transform: translateY(-4px);
}

.blog-horizontal-card-link:hover .blog-horizontal-card {
  background: rgba(0, 118, 255, 0.025);
  border-color: rgba(0, 118, 255, 0.25);
  box-shadow: 0 10px 30px rgba(0, 118, 255, 0.15);
}

.blog-horizontal-img-wrap {
  width: 120px;
  height: 120px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.blog-horizontal-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-horizontal-card-link:hover .blog-horizontal-img {
  transform: scale(1.05);
}

.blog-horizontal-title {
  font-size: 1.2rem;
  line-height: 1.35;
  transition: color 0.2s ease;
}

.blog-horizontal-card-link:hover .blog-horizontal-title {
  color: var(--kt-turquoise) !important;
}

.blog-horizontal-excerpt {
  color: rgba(255, 255, 255, 0.45) !important;
  line-height: 1.45;
}

.badge-kt-category {
  background: rgba(0, 118, 255, 0.15) !important;
  color: var(--kt-turquoise) !important;
  border: 1px solid rgba(0, 242, 254, 0.3);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.text-muted-custom {
  color: rgba(255, 255, 255, 0.3);
}

/* Light Theme overrides for homepage blog */
body.light-theme .blog-horizontal-card {
  background: #f4f9ff;
  border-color: rgba(0, 118, 255, 0.08);
}

body.light-theme .blog-horizontal-card-link:hover .blog-horizontal-card {
  background: #e6f0ff;
  border-color: rgba(0, 118, 255, 0.2);
  box-shadow: 0 10px 30px rgba(0, 118, 255, 0.08);
}

body.light-theme .blog-horizontal-title {
  color: #121212 !important;
}

body.light-theme .blog-horizontal-card-link:hover .blog-horizontal-title {
  color: var(--kt-blue) !important;
}

body.light-theme .blog-horizontal-excerpt {
  color: #555566 !important;
}

body.light-theme .badge-kt-category {
  background: rgba(0, 118, 255, 0.08) !important;
  color: var(--kt-blue) !important;
  border-color: rgba(0, 118, 255, 0.15);
}

body.light-theme .social-proof-label {
  color: #555566 !important;
}

body.light-theme .proof-avatar-img {
  border-color: #fff;
}

@media (max-width: 767.98px) {
  .blog-horizontal-card {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 16px !important;
  }
  .blog-horizontal-img-wrap {
    width: 100% !important;
    height: 180px !important;
  }
  .blog-horizontal-details {
    width: 100%;
  }
}

/* ==========================================================================
   Blog Listing & Sidebar Widgets
   ========================================================================== */

.blog-card-custom {
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-card-custom:hover {
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(0, 118, 255, 0.25);
  box-shadow: 0 15px 45px rgba(0, 118, 255, 0.15);
  transform: translateY(-4px);
}

.blog-card-img-container {
  height: 380px;
  overflow: hidden;
  background: #09090d;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.blog-card-cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-card-custom:hover .blog-card-cover-img {
  transform: scale(1.04);
}

.blog-card-cover-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: rgba(255, 255, 255, 0.1);
}

/* Mockup slider/play button overlay elements */
.img-overlay-slider-arrows {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  pointer-events: none;
}

.img-overlay-slider-arrows span {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(13, 13, 18, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  cursor: pointer;
  transition: all 0.2s ease;
}

.img-overlay-slider-arrows span:hover {
  background: #7828fa;
  border-color: #7828fa;
}

.img-overlay-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: #fff;
  color: #7828fa;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  padding-left: 4px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
  cursor: pointer;
  transition: all 0.25s ease;
}

.img-overlay-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.08);
  background: #7828fa;
  color: #fff;
}

.blog-card-meta-row {
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  padding-bottom: 16px;
}

.blog-card-meta-row .meta-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.blog-card-meta-row .meta-item i {
  font-size: 1.1rem;
}

.blog-card-headline {
  font-size: 1.65rem;
  line-height: 1.35;
  letter-spacing: -0.015em;
}

.blog-title-link {
  transition: color 0.2s ease;
}

.blog-title-link:hover {
  color: var(--kt-turquoise) !important;
}

.btn-read-more-link {
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.btn-read-more-link:hover {
  color: var(--kt-turquoise);
}

.read-more-arrow {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  font-size: 0.8rem;
  margin-left: 4px;
}

.btn-read-more-link:hover .read-more-arrow {
  background: #7828fa;
  border-color: #7828fa;
  color: #fff;
  transform: translateX(3px);
}

/* Sidebar Widgets */
.blog-sidebar {
  position: sticky;
  top: 100px;
}

.blog-sidebar-widget {
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  padding: 28px;
}

.blog-sidebar-widget .widget-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  border-left: 3px solid #7828fa;
  padding-left: 12px;
}

.sidebar-search-form {
  margin-top: 15px;
}

.search-input-group {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  padding: 4px;
  transition: border-color 0.2s ease;
}

.search-input-group:focus-within {
  border-color: rgba(120, 40, 250, 0.5);
}

.search-input {
  flex: 1;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 0.9rem;
  padding: 8px 12px;
  outline: none;
}

.search-input::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

.search-submit-btn {
  width: 38px;
  height: 38px;
  border-radius: 6px;
  background: #7828fa;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease;
}

.search-submit-btn:hover {
  background: #6219cc;
}

/* Sidebar Categories */
.category-item {
  transition: all 0.2s ease;
}

.category-link {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.category-bullet {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  margin-right: 12px;
  transition: all 0.2s ease;
  display: inline-block;
}

.category-item:hover .category-bullet,
.category-item.active .category-bullet {
  background: #7828fa;
  border-color: #7828fa;
  box-shadow: 0 0 10px rgba(120, 40, 250, 0.6);
}

.category-item:hover .category-name,
.category-item.active .category-name {
  color: #fff !important;
}

/* Sidebar Recent Posts */
.recent-post-item {
  transition: transform 0.2s ease;
}

.recent-post-item:hover {
  transform: translateX(4px);
}

.recent-thumb-wrap {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: #09090d;
}

.recent-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.recent-thumb-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  background: rgba(255, 255, 255, 0.02);
}

.badge-recent-cat {
  background: rgba(120, 40, 250, 0.1) !important;
  color: #b58fff !important;
  border: 1px solid rgba(120, 40, 250, 0.2);
  font-size: 0.6rem;
  letter-spacing: 0.05em;
}

.recent-post-title {
  font-size: 0.85rem;
  line-height: 1.35;
  transition: color 0.2s ease;
  color: rgba(255, 255, 255, 0.85);
}

.recent-post-item:hover .recent-post-title {
  color: var(--kt-turquoise) !important;
}

/* Tag pills */
.tag-pill {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.6) !important;
  font-size: 0.775rem;
  text-decoration: none;
  transition: all 0.2s ease;
}

.tag-pill:hover,
.tag-pill.active {
  background: #7828fa;
  border-color: #7828fa;
  color: #fff !important;
  box-shadow: 0 4px 12px rgba(120, 40, 250, 0.3);
}

/* Custom Pagination */
.pagination-custom .page-num-btn {
  width: 40px;
  height: 40px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.6) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.pagination-custom .page-num-btn:hover,
.pagination-custom .page-num-btn.active {
  background: #7828fa;
  border-color: #7828fa;
  color: #fff !important;
  box-shadow: 0 4px 12px rgba(120, 40, 250, 0.3);
}

/* ==========================================================================
   Blog Details Page Styling
   ========================================================================== */

.btn-back-to-blog {
  display: inline-flex;
  align-items: center;
  background: #7828fa;
  color: #fff !important;
  text-decoration: none;
  border-radius: 8px;
  padding: 8px 18px 8px 8px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.25s ease;
  box-shadow: 0 4px 15px rgba(120, 40, 250, 0.25);
}

.btn-back-to-blog:hover {
  background: #6219cc;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(120, 40, 250, 0.45);
}

.btn-back-arrow {
  width: 30px;
  height: 30px;
  border-radius: 6px;
  background: #fff;
  color: #7828fa;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  font-size: 1rem;
  transition: transform 0.2s ease;
}

.btn-back-to-blog:hover .btn-back-arrow {
  transform: scale(1.05);
}

.btn-back-to-blog:hover .btn-back-arrow i {
  animation: arrowBounce 0.5s ease infinite alternate;
}

.blog-detail-cover-wrap {
  height: 480px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.04);
  background: #09090d;
}

.blog-detail-cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-detail-cover-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  color: rgba(255, 255, 255, 0.08);
}

/* Article inner elements */
.blog-detail-content h1,
.blog-detail-content h2,
.blog-detail-content h3 {
  font-family: 'Syne', sans-serif;
  color: #fff;
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.blog-detail-content blockquote {
  background: rgba(120, 40, 250, 0.03);
  border-left: 4px solid #7828fa;
  padding: 24px 28px;
  margin: 2rem 0;
  border-radius: 0 16px 16px 0;
}

.blog-detail-content blockquote p {
  font-style: italic;
  color: #fff;
  margin-bottom: 0;
  font-size: 1.15rem;
  line-height: 1.6;
}

.blog-detail-list {
  list-style: none;
  padding-left: 0;
  margin: 1.5rem 0;
}

.blog-detail-list li {
  display: flex;
  align-items: start;
  margin-bottom: 0.85rem;
  font-size: 1.025rem;
}

.blog-detail-list li i {
  font-size: 1.25rem;
  margin-top: 2px;
}

/* Tag & Share bar */
.badge-tag-pill {
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.02) !important;
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.6) !important;
  font-size: 0.775rem;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.badge-tag-pill:hover {
  background: rgba(120, 40, 250, 0.1) !important;
  border-color: rgba(120, 40, 250, 0.35);
  color: #fff !important;
}

.share-icon-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.6) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  text-decoration: none;
}

.share-icon-btn:hover {
  background: #7828fa;
  border-color: #7828fa;
  color: #fff !important;
  transform: translateY(-2px);
}

/* Comment cards & comment form inputs */
.comment-card-custom {
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  transition: all 0.2s ease;
}

.comment-avatar-wrap {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.avatar-initials {
  font-size: 1.05rem;
}

.comment-reply-btn {
  color: #7828fa !important;
  font-weight: 600;
  transition: color 0.2s ease;
}

.comment-reply-btn:hover {
  color: #b58fff !important;
}

.comment-label-custom {
  display: block;
  font-size: 0.825rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.comment-input-custom {
  width: 100%;
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  padding: 12px 16px;
  color: #fff;
  font-size: 0.95rem;
  transition: all 0.25s ease;
}

.comment-input-custom::placeholder {
  color: rgba(255, 255, 255, 0.2);
}

.comment-input-custom:focus {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(120, 40, 250, 0.5);
  outline: none;
  box-shadow: 0 0 15px rgba(120, 40, 250, 0.15);
}

.comment-input-custom.textarea {
  resize: none;
}

.btn-kt-comment-submit {
  background: linear-gradient(135deg, #7828fa 0%, #5716cc 100%);
  border: none;
  border-radius: 8px;
  padding: 14px 28px;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 6px 20px rgba(120, 40, 250, 0.25);
}

.btn-kt-comment-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(120, 40, 250, 0.4);
}

.btn-kt-comment-submit:hover i {
  transform: translateX(3px);
}

.btn-kt-comment-submit i {
  transition: transform 0.2s ease;
}

/* ==========================================================================
   Light Theme overrides for Blog/Blog-details
   ========================================================================== */

body.light-theme .blog-card-custom {
  background: #fff;
  border-color: rgba(0, 0, 0, 0.06);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.015);
}

body.light-theme .blog-card-custom:hover {
  border-color: rgba(120, 40, 250, 0.2);
  box-shadow: 0 15px 45px rgba(120, 40, 250, 0.08);
}

body.light-theme .blog-sidebar-widget {
  background: #fff;
  border-color: rgba(0, 0, 0, 0.06);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.015);
}

body.light-theme .blog-sidebar-widget .widget-title {
  color: #121212;
}

body.light-theme .search-input-group {
  background: rgba(0, 0, 0, 0.015);
  border-color: rgba(0, 0, 0, 0.08);
}

body.light-theme .search-input {
  color: #121212;
}

body.light-theme .search-input::placeholder {
  color: rgba(0, 0, 0, 0.4);
}

body.light-theme .category-bullet {
  border-color: rgba(0, 0, 0, 0.25);
}

body.light-theme .category-item:hover .category-bullet,
body.light-theme .category-item.active .category-bullet {
  background: #7828fa;
  border-color: #7828fa;
}

body.light-theme .category-item:hover .category-name,
body.light-theme .category-item.active .category-name {
  color: #121212 !important;
}

body.light-theme .recent-thumb-wrap {
  border-color: rgba(0, 0, 0, 0.06);
  background: #f8f9fa;
}

body.light-theme .recent-post-title {
  color: #333 !important;
}

body.light-theme .recent-post-item:hover .recent-post-title {
  color: #7828fa !important;
}

body.light-theme .tag-pill {
  background: rgba(0, 0, 0, 0.015);
  border-color: rgba(0, 0, 0, 0.08);
  color: rgba(0, 0, 0, 0.6) !important;
}

body.light-theme .tag-pill:hover,
body.light-theme .tag-pill.active {
  background: #7828fa;
  border-color: #7828fa;
  color: #fff !important;
}

body.light-theme .pagination-custom .page-num-btn {
  background: rgba(0, 0, 0, 0.015);
  border-color: rgba(0, 0, 0, 0.08);
  color: rgba(0, 0, 0, 0.6) !important;
}

body.light-theme .pagination-custom .page-num-btn:hover,
body.light-theme .pagination-custom .page-num-btn.active {
  background: #7828fa;
  border-color: #7828fa;
  color: #fff !important;
}

body.light-theme .blog-detail-title {
  color: #121212 !important;
}

body.light-theme .blog-detail-meta-row .text-white {
  color: #121212 !important;
}

body.light-theme .blog-detail-cover-wrap {
  border-color: rgba(0, 0, 0, 0.06);
}

body.light-theme .blog-detail-content h1,
body.light-theme .blog-detail-content h2,
body.light-theme .blog-detail-content h3 {
  color: #121212;
}

body.light-theme .blog-detail-content blockquote {
  background: rgba(120, 40, 250, 0.02);
}

body.light-theme .blog-detail-content blockquote p {
  color: #121212;
}

body.light-theme .badge-tag-pill {
  background: rgba(0, 0, 0, 0.015) !important;
  border-color: rgba(0, 0, 0, 0.08);
  color: rgba(0, 0, 0, 0.6) !important;
}

body.light-theme .badge-tag-pill:hover {
  background: rgba(120, 40, 250, 0.08) !important;
  color: #7828fa !important;
}

body.light-theme .share-icon-btn {
  background: rgba(0, 0, 0, 0.015);
  border-color: rgba(0, 0, 0, 0.08);
  color: rgba(0, 0, 0, 0.6) !important;
}

body.light-theme .share-icon-btn:hover {
  background: #7828fa;
  border-color: #7828fa;
  color: #fff !important;
}

body.light-theme .comment-card-custom {
  background: rgba(0, 0, 0, 0.015);
  border-color: rgba(0, 0, 0, 0.06);
}

body.light-theme .commenter-name {
  color: #121212 !important;
}

body.light-theme .leave-comment-form-wrap {
  background: rgba(0, 0, 0, 0.01) !important;
  border-color: rgba(0, 0, 0, 0.06) !important;
}

body.light-theme .comment-label-custom {
  color: rgba(0, 0, 0, 0.6);
}

body.light-theme .comment-input-custom {
  background: rgba(0, 0, 0, 0.015);
  border-color: rgba(0, 0, 0, 0.08);
  color: #121212;
}

body.light-theme .comment-input-custom::placeholder {
  color: rgba(0, 0, 0, 0.4);
}

body.light-theme .comment-input-custom:focus {
  background: #fff;
  border-color: #7828fa;
  box-shadow: 0 0 15px rgba(120, 40, 250, 0.1);
}

/* Mobile responsiveness overrides for Blog and Details */
@media (max-width: 767.98px) {
  .blog-card-img-container {
    height: 240px !important;
  }
  .blog-detail-cover-wrap {
    height: 280px !important;
  }
  .comment-card-custom {
    padding: 1.25rem !important;
    gap: 1rem !important;
  }
  .comment-avatar-wrap {
    width: 38px !important;
    height: 38px !important;
  }
  .avatar-initials {
    font-size: 0.9rem !important;
  }
}

/* ==========================================================================
   Support Page & Calendar Revision CSS
   ========================================================================== */

/* Premium Tabs */
.kt-support-tabs {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.kt-support-tab-btn {
  color: var(--kt-muted) !important;
  font-size: 0.95rem;
  transition: all 0.25s ease;
  border: 1px solid transparent;
}

.kt-support-tab-btn:hover {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.03);
}

.kt-support-tab-btn.active {
  color: #fff !important;
  background: linear-gradient(135deg, rgba(120, 40, 250, 0.2) 0%, rgba(0, 242, 254, 0.1) 100%);
  border: 1px solid rgba(120, 40, 250, 0.3);
  box-shadow: 0 4px 15px rgba(120, 40, 250, 0.15);
}

/* Custom list items */
.kt-support-list {
  scrollbar-width: thin;
}

.kt-support-item {
  display: block;
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-left: 3px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 18px;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.kt-support-item:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(120, 40, 250, 0.25);
  border-left-color: var(--kt-turquoise);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.kt-support-item.active {
  background: rgba(120, 40, 250, 0.04) !important;
  border-color: rgba(120, 40, 250, 0.35) !important;
  border-left-color: var(--kt-purple) !important;
  box-shadow: 0 8px 30px rgba(120, 40, 250, 0.15);
}

.kt-support-item .ticket-code {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  color: var(--kt-turquoise);
  letter-spacing: 0.05em;
  background: rgba(0, 242, 254, 0.08);
  padding: 3px 8px;
  border-radius: 4px;
  border: 1px solid rgba(0, 242, 254, 0.15);
}

.kt-support-item .badge-status-open {
  background: rgba(0, 118, 255, 0.12) !important;
  color: var(--kt-blue) !important;
  border: 1px solid rgba(0, 118, 255, 0.25);
  font-size: 0.7rem;
}

.kt-support-item .badge-status-closed {
  background: rgba(130, 149, 165, 0.12) !important;
  color: var(--kt-muted) !important;
  border: 1px solid rgba(130, 149, 165, 0.25);
  font-size: 0.7rem;
}

.kt-support-item .ticket-title {
  font-size: 1.05rem;
  line-height: 1.4;
  font-weight: 700;
}

.kt-support-item .ticket-meta {
  color: var(--kt-muted);
}

.kt-support-item .app-name {
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
}

.kt-support-item .badge-votes {
  background: rgba(251, 191, 36, 0.12) !important;
  color: #fbbf24 !important;
  border: 1px solid rgba(251, 191, 36, 0.25);
  font-size: 0.7rem;
}

.kt-support-item .badge-category {
  background: rgba(255, 255, 255, 0.03) !important;
  color: var(--kt-muted) !important;
  border: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.7rem;
}

.kt-support-item .suggestion-desc {
  font-size: 0.85rem;
  color: var(--kt-muted);
}

/* Premium Contrast Action Buttons */
.btn-kt-warning {
  background: linear-gradient(135deg, #fbbf24 0%, #d97706 100%);
  color: #030811 !important;
  border: none;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-kt-warning:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(251, 191, 36, 0.45);
  background: linear-gradient(135deg, #f59e0b 0%, #b45309 100%);
  color: #030811 !important;
}

.btn-kt-success {
  background: linear-gradient(135deg, var(--kt-green) 0%, #10b981 100%);
  color: #030811 !important;
  border: none;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(0, 245, 160, 0.3);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-kt-success:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 245, 160, 0.45);
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  color: #030811 !important;
}

.btn-kt-secondary {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff !important;
  font-weight: 600;
  transition: all 0.25s ease;
}

.btn-kt-secondary:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-1px);
}

/* Empty State Styling */
.kt-support-empty-icon {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: rgba(120, 40, 250, 0.08);
  border: 1px solid rgba(120, 40, 250, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

/* Calendar enhancements */
.calendar-day:not(.empty) {
  cursor: pointer;
}

.calendar-day.today {
  border-width: 1.5px !important;
}

/* Light Theme Support Overrides */
body.light-theme .kt-support-tabs {
  background: #f1f5f9;
  border-color: rgba(0, 0, 0, 0.06);
}

body.light-theme .kt-support-tab-btn:hover {
  background: rgba(0, 0, 0, 0.03);
  color: #121212 !important;
}

body.light-theme .kt-support-tab-btn.active {
  background: #fff;
  border-color: rgba(120, 40, 250, 0.25);
  color: #7828fa !important;
  box-shadow: 0 4px 15px rgba(120, 40, 250, 0.08);
}

body.light-theme .kt-support-item {
  background: #fff;
  border-color: rgba(0, 0, 0, 0.06);
  border-left-color: rgba(0, 0, 0, 0.12);
}

body.light-theme .kt-support-item:hover {
  background: #fafafa;
  border-color: rgba(120, 40, 250, 0.15);
  border-left-color: #7828fa;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

body.light-theme .kt-support-item.active {
  background: #f5f0ff !important;
  border-color: rgba(120, 40, 250, 0.2) !important;
  border-left-color: #7828fa !important;
  box-shadow: 0 8px 25px rgba(120, 40, 250, 0.06);
}

body.light-theme .kt-support-item .ticket-code {
  background: rgba(120, 40, 250, 0.06);
  color: #7828fa;
  border-color: rgba(120, 40, 250, 0.12);
}

body.light-theme .kt-support-item .ticket-title {
  color: #121212 !important;
}

body.light-theme .kt-support-item .app-name {
  color: #121212 !important;
}

body.light-theme .btn-kt-secondary {
  background: #fff;
  border-color: rgba(0, 0, 0, 0.12);
  color: #334155 !important;
}

body.light-theme .btn-kt-secondary:hover {
  background: #f1f5f9;
  border-color: rgba(0, 0, 0, 0.2);
}

body.light-theme .kt-support-empty-icon {
  background: rgba(120, 40, 250, 0.04);
  border-color: rgba(120, 40, 250, 0.1);
}

body.light-theme .calendar-day {
  background: rgba(255, 255, 255, 0.85);
  border-color: rgba(0, 0, 0, 0.06);
}

body.light-theme .calendar-day:hover {
  background: #fff;
  border-color: rgba(120, 40, 250, 0.35);
  box-shadow: 0 8px 24px rgba(120, 40, 250, 0.08);
}


/* ══════════════════════════════════════════════════════════════════════
   KREATURK AJANS — PREMIUM MODERNIZATION & MOBILE RESPONSIVE PASS
   ══════════════════════════════════════════════════════════════════════ */

/* ── 1. GLASSMORPHISM DESIGN TOKENS ─────────────────────────────── */
.glass-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12),
              inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.glass-card:hover {
  border-color: rgba(0, 242, 254, 0.2);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2),
              inset 0 1px 0 rgba(255, 255, 255, 0.06),
              0 0 0 1px rgba(0, 242, 254, 0.08);
  transform: translateY(-4px);
}
body.light-theme .glass-card {
  background: rgba(255, 255, 255, 0.75);
  border-color: rgba(0, 0, 0, 0.06);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05),
              inset 0 1px 0 rgba(255, 255, 255, 0.8);
}
body.light-theme .glass-card:hover {
  border-color: rgba(0, 118, 255, 0.2);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08),
              inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

/* ── 2. ENHANCED MICRO-ANIMATIONS ───────────────────────────────── */

/* Subtle glow pulse for active elements */
@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 20px rgba(0, 242, 254, 0.05); }
  50% { box-shadow: 0 0 30px rgba(0, 242, 254, 0.15); }
}

/* Smooth entrance animation for page elements */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Staggered fade for child elements */
.stagger-fade > * {
  animation: fadeInUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) backwards;
}
.stagger-fade > *:nth-child(1) { animation-delay: 0.05s; }
.stagger-fade > *:nth-child(2) { animation-delay: 0.1s; }
.stagger-fade > *:nth-child(3) { animation-delay: 0.15s; }
.stagger-fade > *:nth-child(4) { animation-delay: 0.2s; }
.stagger-fade > *:nth-child(5) { animation-delay: 0.25s; }
.stagger-fade > *:nth-child(6) { animation-delay: 0.3s; }

/* Enhanced button hover micro-interactions */
.btn-kt-primary,
.btn-kt-outline {
  position: relative;
  overflow: hidden;
}
.btn-kt-primary::after,
.btn-kt-outline::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.5s ease, height 0.5s ease;
}
.btn-kt-primary:hover::after,
.btn-kt-outline:hover::after {
  width: 300px;
  height: 300px;
}

/* Smooth card shine effect on hover */
.dash-card::after,
.cyber-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    135deg,
    transparent 40%,
    rgba(255, 255, 255, 0.02) 45%,
    rgba(255, 255, 255, 0.05) 50%,
    rgba(255, 255, 255, 0.02) 55%,
    transparent 60%
  );
  transition: transform 0.6s ease;
  transform: translateX(-100%) translateY(-100%);
  pointer-events: none;
  z-index: 0;
}
.dash-card:hover::after,
.cyber-card:hover::after {
  transform: translateX(100%) translateY(100%);
}
.dash-card,
.cyber-card {
  position: relative;
  overflow: hidden;
}

/* ── 3. ENHANCED HEADER GLASSMORPHISM ───────────────────────────── */
.site-header {
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
}
.site-header.is-scrolled {
  backdrop-filter: blur(32px) saturate(200%);
  -webkit-backdrop-filter: blur(32px) saturate(200%);
}
body.light-theme .site-header {
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
}
body.light-theme .site-header::after {
  background: linear-gradient(90deg, transparent 0%, rgba(0, 118, 255, 0.15) 25%, rgba(0, 118, 255, 0.25) 50%, rgba(0, 118, 255, 0.15) 75%, transparent 100%);
}

/* ── 4. HOMEPAGE SECTION REFINEMENTS ────────────────────────────── */

/* Animated gradient for hero title */
.hero-title {
  animation: gradientShift 8s ease infinite;
  background-size: 200% 200%;
}
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Premium dome section gradient overlay */
.dome-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(180deg, rgba(0, 118, 255, 0.04) 0%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}
body.light-theme .dome-section::before {
  background: linear-gradient(180deg, rgba(0, 118, 255, 0.02) 0%, transparent 100%);
}

/* Blog section horizontal cards — enhanced */
.blog-horizontal-card {
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}
.blog-horizontal-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--kt-turquoise), var(--kt-blue));
  opacity: 0;
  transition: opacity 0.3s ease;
}
.blog-horizontal-card:hover {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(0, 242, 254, 0.15);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
  transform: translateY(-3px);
}
.blog-horizontal-card:hover::before {
  opacity: 1;
}
body.light-theme .blog-horizontal-card {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(0, 0, 0, 0.06);
}
body.light-theme .blog-horizontal-card:hover {
  background: #ffffff;
  border-color: rgba(0, 118, 255, 0.15);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.blog-horizontal-img-wrap {
  border-radius: 12px;
  overflow: hidden;
}
.blog-horizontal-img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.4s ease;
}
.blog-horizontal-card:hover .blog-horizontal-img {
  transform: scale(1.06);
}
.blog-horizontal-title {
  font-size: 1rem;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.3s ease;
}
.blog-horizontal-card:hover .blog-horizontal-title {
  color: var(--kt-turquoise) !important;
}
body.light-theme .blog-horizontal-card:hover .blog-horizontal-title {
  color: var(--kt-blue) !important;
}
.blog-horizontal-excerpt {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.badge-kt-category {
  background: linear-gradient(135deg, rgba(0, 242, 254, 0.12), rgba(0, 118, 255, 0.12));
  color: var(--kt-turquoise);
  border: 1px solid rgba(0, 242, 254, 0.15);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}
body.light-theme .badge-kt-category {
  background: rgba(0, 118, 255, 0.06);
  color: var(--kt-blue);
  border-color: rgba(0, 118, 255, 0.15);
}

/* Blog CTA Button — Premium Gradient */
.btn-kt-more-blogs {
  display: inline-flex;
  align-items: center;
  gap: 0;
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(0, 118, 255, 0.2);
}
.btn-kt-more-blogs:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 118, 255, 0.2);
  border-color: rgba(0, 118, 255, 0.35);
}
.btn-kt-more-blogs .btn-arrow-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--kt-blue) 0%, var(--kt-turquoise) 100%);
  color: #fff;
  font-size: 1rem;
  transition: transform 0.3s ease;
}
.btn-kt-more-blogs:hover .btn-arrow-box {
  transform: translateX(3px);
}
.btn-kt-more-blogs .btn-text {
  padding: 0 1.25rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--kt-text-color);
  white-space: nowrap;
}

/* Social Proof avatars — optimized */
.proof-avatar-img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--kt-bg-color);
  margin-left: -10px;
  object-fit: cover;
  transition: transform 0.2s ease;
}
.proof-avatar-img:first-child {
  margin-left: 0;
}
.proof-avatar-img:hover {
  transform: scale(1.15) translateY(-2px);
  z-index: 2;
}
body.light-theme .proof-avatar-img {
  border-color: #fff;
}

/* Home blog section title double-line */
.title-double-line {
  position: absolute;
  bottom: -8px;
  left: 0;
  right: 0;
  height: 6px;
  border-top: 2px solid var(--kt-turquoise);
  border-bottom: 2px solid var(--kt-turquoise);
  opacity: 0.6;
}
body.light-theme .title-double-line {
  border-color: var(--kt-blue);
}

/* ── 5. COMPREHENSIVE MOBILE RESPONSIVENESS ─────────────────────── */

/* Very small screens (320px-480px) */
@media (max-width: 480px) {
  :root {
    --header-h: 72px;
  }

  .brand-logo {
    height: 30px;
  }

  .hero-premium-wrap {
    padding: 3rem 0 0;
  }

  .hero-title {
    font-size: clamp(1.8rem, 7vw, 2.4rem) !important;
    padding: 0 0.5rem;
  }

  .hero-capsule-btn {
    font-size: 0.7rem;
    padding: 5px 10px;
  }



  .dome-section {
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    padding: 3rem 0 2rem;
  }

  .dome-section h2 {
    font-size: clamp(1.5rem, 6vw, 2rem) !important;
  }

  .dome-section .lead {
    font-size: 0.95rem !important;
  }

  .avatar-group .avatar-item {
    width: 26px;
    height: 26px;
    font-size: 0.55rem;
  }

  .btn-kt-primary,
  .btn-kt-outline {
    font-size: 0.82rem;
    padding: 0.65rem 1.2rem;
  }

  /* FAQ mobile improvements */
  .faq-section {
    padding: 3rem 0;
  }
  .faq-header {
    padding: 1rem 1.25rem;
  }
  .faq-question {
    font-size: 0.9rem;
  }
  .faq-toggle-btn {
    width: 28px;
    height: 28px;
    font-size: 0.9rem;
  }
  .faq-body {
    padding: 0 1.25rem 1.25rem;
  }
  .faq-thumb {
    height: 100px;
  }
  .faq-answer-text {
    font-size: 0.85rem;
  }

  /* Blog section mobile */
  .home-blog-header {
    font-size: clamp(1.5rem, 6vw, 2rem) !important;
  }
  .blog-horizontal-card {
    flex-direction: column !important;
  }
  .blog-horizontal-img-wrap {
    width: 100% !important;
    height: auto !important;
  }
  .blog-horizontal-img {
    width: 100% !important;
    height: 160px !important;
  }
  .blog-horizontal-title {
    font-size: 0.9rem !important;
  }
  .blog-horizontal-meta {
    flex-direction: column !important;
    gap: 0.35rem !important;
  }

  /* Footer mobile */
  .site-footer {
    padding: 2.5rem 0 1.5rem;
  }
  .site-footer h6 {
    font-size: 0.85rem;
    margin-bottom: 1rem;
  }

  /* Dashboard mobile */
  .dash-content {
    padding: 1.5rem 0.75rem;
  }
  .dash-card {
    padding: 1.25rem;
    border-radius: 14px;
  }
  .stat-pill {
    font-size: 1.75rem;
  }
  .cyber-card {
    padding: 1.25rem !important;
    border-radius: 14px !important;
  }
  .task-item-wrap,
  .shoot-item-wrap {
    padding: 0.65rem 0.85rem !important;
    flex-direction: column;
    align-items: flex-start !important;
    gap: 0.5rem !important;
  }
  .quick-shortcut-btn {
    padding: 0.75rem !important;
  }
}

/* Small screens (481px-767px) */
@media (min-width: 481px) and (max-width: 767px) {
  .hero-title {
    font-size: clamp(2rem, 6vw, 2.8rem) !important;
  }



  .dome-section {
    padding: 5rem 0 3rem;
  }

  .blog-horizontal-card {
    flex-direction: column !important;
  }
  .blog-horizontal-img-wrap {
    width: 100% !important;
  }
  .blog-horizontal-img {
    width: 100% !important;
    height: 180px !important;
  }

  .dash-content {
    padding: 2rem 1rem;
  }
}

/* Tablets (768px-991px) */
@media (min-width: 768px) and (max-width: 991px) {
  .dome-section {
    border-top-left-radius: 60px;
    border-top-right-radius: 60px;
    padding: 6rem 0 3rem;
  }

  .blog-horizontal-img {
    width: 100px;
    height: 100px;
  }

  .dash-content {
    padding: 2.5rem 1.25rem;
  }
}

/* ── 6. ENHANCED TOUCH TARGETS FOR MOBILE ───────────────────────── */
@media (max-width: 991px) {
  /* Bigger touch targets for navigation */
  .nav-main .nav-link {
    padding: 0.75rem 1rem !important;
    font-size: 1rem !important;
  }

  /* Mobile offcanvas nav improvements */
  #mobileNav .nav-link {
    padding: 0.85rem 1.25rem !important;
    font-size: 0.95rem;
    min-height: 48px;
    display: flex;
    align-items: center;
  }

  /* User chip bigger on mobile */
  .user-chip {
    padding: 0.5rem 0.85rem 0.5rem 0.5rem;
  }
  .user-chip .avatar {
    width: 34px;
    height: 34px;
  }

  /* Notification icons bigger touch area */
  .notify-wrap {
    width: 44px;
    height: 44px;
  }
}

/* ── 7. DARK/LIGHT THEME READABILITY ENHANCEMENT ────────────────── */

/* Ensure all text has sufficient contrast in both themes */
body:not(.light-theme) .text-secondary {
  color: #a0b4c8 !important;
}
body:not(.light-theme) .lead {
  color: #8ea3b8;
}

/* Light theme link and anchor visibility */
body.light-theme a:not(.btn-kt-primary):not(.btn-kt-outline):not(.nav-link):not(.blog-horizontal-card-link) {
  color: #0062d1;
}
body.light-theme a:not(.btn-kt-primary):not(.btn-kt-outline):not(.nav-link):not(.blog-horizontal-card-link):hover {
  color: #0047a3;
}

/* Light theme subtle shadows for depth */
body.light-theme .feature-card,
body.light-theme .blog-card,
body.light-theme .blog-featured-card {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}
body.light-theme .feature-card:hover,
body.light-theme .blog-card:hover,
body.light-theme .blog-featured-card:hover {
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 118, 255, 0.15);
}

/* ── 8. SMOOTH SCROLL & FOCUS IMPROVEMENTS ──────────────────────── */
html {
  scroll-behavior: smooth;
}

/* Focus visible styles for accessibility */
*:focus-visible {
  outline: 2px solid var(--kt-turquoise);
  outline-offset: 2px;
  border-radius: 4px;
}
body.light-theme *:focus-visible {
  outline-color: var(--kt-blue);
}

/* ── 9. ANIMATED GRADIENT BORDER FOR PREMIUM ELEMENTS ───────────── */
@keyframes borderGlow {
  0% { border-color: rgba(0, 118, 255, 0.3); }
  33% { border-color: rgba(0, 242, 254, 0.3); }
  66% { border-color: rgba(0, 245, 160, 0.3); }
  100% { border-color: rgba(0, 118, 255, 0.3); }
}

/* Apply to hero capsule for a premium feel */
.hero-capsule-btn {
  animation: borderGlow 6s infinite ease-in-out;
}

/* ── 10. LIGHT THEME FAQ SECTION ────────────────────────────────── */
body.light-theme .faq-section {
  background: rgba(0, 0, 0, 0.01);
  border-top-color: rgba(0, 0, 0, 0.06);
}

body.light-theme .faq-item.opened {
  color: #fff !important;
}
body.light-theme .faq-item.opened .faq-question {
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
}
body.light-theme .faq-item.opened .faq-answer-text {
  color: rgba(255, 255, 255, 0.92) !important;
}

/* ── 11. ENHANCED DARK THEME SCROLLBAR ──────────────────────────── */
body.light-theme ::-webkit-scrollbar-track {
  background: #f1f5f9;
}
body.light-theme ::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}
body.light-theme ::-webkit-scrollbar-thumb:hover {
  background: var(--kt-blue);
}

/* ── 12. PRINT STYLES ───────────────────────────────────────────── */
@media print {
  .site-header,
  .site-footer,
  .scroll-progress-wrap,
  .site-preloader,
  .ambient-glow-blob,
  .home-grid-backdrop {
    display: none !important;
  }
  body {
    background: #fff !important;
    color: #000 !important;
  }
  .hero-title {
    -webkit-text-fill-color: #000 !important;
    background: none !important;
  }
}

/* ── 13. ADDITIONAL LIGHT/DARK THEME OVERRIDES & DYNAMIC GRADIENTS ── */

:root {
  --hero-title-gradient: linear-gradient(135deg, #fff 30%, var(--kt-turquoise) 70%, var(--kt-blue) 100%);
}

body.light-theme {
  --hero-title-gradient: linear-gradient(135deg, #091122 30%, var(--kt-blue) 70%, var(--kt-purple) 100%);
  --kt-header-bg: rgba(248, 250, 252, 0.7);
  --kt-header-scrolled: rgba(248, 250, 252, 0.95);
}

/* Form Controls & Inputs */
body.light-theme .form-control,
body.light-theme .form-select,
body.light-theme textarea {
  background: var(--kt-input-bg) !important;
  border: 1px solid var(--kt-input-border) !important;
  color: var(--kt-input-text) !important;
}

body.light-theme .form-control:focus,
body.light-theme .form-select:focus,
body.light-theme textarea:focus {
  background: var(--kt-input-focus-bg) !important;
  color: var(--kt-input-text) !important;
  border-color: var(--kt-blue) !important;
  box-shadow: 0 0 12px rgba(0, 118, 255, 0.15) !important;
}

body.light-theme .form-control::placeholder,
body.light-theme textarea::placeholder {
  color: #64748b !important;
}

/* Header Background & Nav Links */
body.light-theme .site-header {
  background: var(--kt-header-bg) !important;
  border-bottom-color: rgba(0, 0, 0, 0.08) !important;
}

body.light-theme .site-header.is-scrolled {
  background: var(--kt-header-scrolled) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05) !important;
}

body.light-theme .nav-main .nav-link.active {
  color: #000000 !important;
}

body.light-theme .nav-main .nav-link:hover {
  color: #000000 !important;
}

/* Text and Headings Contrast */
body.light-theme .text-white,
body.light-theme .text-white-50,
body.light-theme .text-light,
body.light-theme h1:not(.hero-title),
body.light-theme h2:not(.hero-title),
body.light-theme h3,
body.light-theme h4,
body.light-theme h5,
body.light-theme h6 {
  color: #0f172a !important;
}

body.light-theme .text-muted,
body.light-theme .text-secondary {
  color: #475569 !important;
}

/* Fan Cards on Homepage */
body.light-theme .fan-card {
  background: var(--kt-card-bg) !important;
  border-color: var(--kt-card-border) !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05) !important;
}

body.light-theme .fan-card .bg-white.bg-opacity-5 {
  background-color: rgba(0, 0, 0, 0.04) !important;
  border-color: rgba(0, 0, 0, 0.06) !important;
}

body.light-theme .fan-card .text-light {
  color: #334155 !important;
}

body.light-theme .fan-card .text-muted {
  color: #64748b !important;
}

/* Blog Page Specific Overrides */
body.light-theme .blog-card-custom,
body.light-theme .blog-sidebar-widget,
body.light-theme .comment-card-custom,
body.light-theme .leave-comment-form-wrap {
  background: #ffffff !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03) !important;
}

body.light-theme .blog-card-headline a,
body.light-theme .blog-detail-title {
  color: #0f172a !important;
}

body.light-theme .blog-card-short-desc,
body.light-theme .blog-detail-content,
body.light-theme .comment-body {
  color: #334155 !important;
}

body.light-theme .category-name {
  color: #475569 !important;
}

body.light-theme .widget-title {
  color: #0f172a !important;
  border-bottom: 2px solid var(--kt-blue) !important;
}

body.light-theme .search-input {
  background: #f1f5f9 !important;
  border: 1px solid #cbd5e1 !important;
  color: #0f172a !important;
}

body.light-theme .recent-post-title {
  color: #334155 !important;
}

body.light-theme .faq-item.opened {
  background: rgba(0, 118, 255, 0.05) !important;
  border-color: rgba(0, 118, 255, 0.2) !important;
  color: #0f172a !important;
}

body.light-theme .faq-item.opened .faq-question {
  color: #0f172a !important;
  -webkit-text-fill-color: #0f172a !important;
}

body.light-theme .faq-item.opened .faq-answer-text {
  color: #334155 !important;
}

body.light-theme .avatar-item {
  border-color: #f8fafc !important;
}






/* BEGIN KREATURK CLONED HERO STYLES */
.pxl-video-player1 .pxl-overlay-color {
  z-index: 88;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.pxl-video-player1 .pxl-video--holder + .btn-video-wrap {
  position: absolute;
  z-index: 99;
  text-align: center;
}

.pxl-video-player1 .pxl-video--holder + .btn-video-wrap.p-center {
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -khtml-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.pxl-video-player1 .pxl-video--imagebg {
  position: relative;
  overflow: hidden;
}

.pxl-video-player1 .pxl-video--imagebg .bg-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: -60px;
}

.pxl-video-player1 .pxl-video--inner {
  overflow: hidden;
}

.pxl-video-player1 .pxl-video--inner .pxl-video--holder {
  width: 100%;
  height: 100%;
}

.pxl-video-player1 .pxl-video--inner img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.pxl-video-player1.pxl-video-style3 .pxl-video--inner {
  overflow: hidden;
}

.pxl-video-player1.pxl-video-style3 .pxl-video--inner .pxl-video--holder {
  width: 100%;
  height: 100%;
}

.pxl-video-player1.pxl-video-style3 .pxl-video--inner img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.pxl-video-player1.pxl-video-style3 .pxl-video--holder + .btn-video-wrap.p-center {
  top: 0;
  left: 0;
  transition: transform 0.1s;
}

.pxl-video-player1.pxl-video-style5 i {
  font-size: 42px;
  color: #fff;
}

.pxl-video-player1.style-1 {
  position: relative;
  z-index: 1;
}

.pxl-video-player1.style-1 .pxl-video--inner::before {
  position: absolute;
  content: '';
  width: calc(100% + 32px);
  height: calc(100% + 32px);
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  background: #fff;
  border-radius: inherit;
  z-index: -1;
}

.pxl-video-player1.style-2 {
  position: relative;
  z-index: 1;
}

.pxl-video-player1.style-2 .pxl-video--inner::before {
  position: absolute;
  content: '';
  width: calc(100% + 32px);
  height: calc(100% + 32px);
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  background: var(--heading-color);
  border-radius: inherit;
  z-index: -1;
}

.pxl-grid .pxl-post--featured, .pxl-post-carousel .pxl-post--featured, .pxl-post-modern .pxl-post--featured, .pxl-swiper-slider .pxl-post--featured {
  position: relative;
}

.pxl-grid .pxl-post--link, .pxl-post-carousel .pxl-post--link, .pxl-post-modern .pxl-post--link, .pxl-swiper-slider .pxl-post--link {
  z-index: 99;
}

.pxl-grid .pxl-post--image img, .pxl-post-carousel .pxl-post--image img, .pxl-post-modern .pxl-post--image img, .pxl-swiper-slider .pxl-post--image img, .pxl-grid .pxl-post--featured img, .pxl-post-carousel .pxl-post--featured img, .pxl-post-modern .pxl-post--featured img, .pxl-swiper-slider .pxl-post--featured img {
  width: 100%;
}

.pxl-grid .pxl-post--title a, .pxl-post-carousel .pxl-post--title a, .pxl-post-modern .pxl-post--title a, .pxl-swiper-slider .pxl-post--title a {
  color: inherit;
}

.pxl-grid .pxl-post--title a:hover, .pxl-post-carousel .pxl-post--title a:hover, .pxl-post-modern .pxl-post--title a:hover, .pxl-swiper-slider .pxl-post--title a:hover {
  color: inherit;
}

.pxl-grid .pxl-post--category, .pxl-post-carousel .pxl-post--category, .pxl-post-modern .pxl-post--category, .pxl-swiper-slider .pxl-post--category {
  position: relative;
}

.pxl-grid .pxl-post--category.link-none:before, .pxl-post-carousel .pxl-post--category.link-none:before, .pxl-post-modern .pxl-post--category.link-none:before, .pxl-swiper-slider .pxl-post--category.link-none:before, .pxl-grid .pxl-post--category.deactive-click:before, .pxl-post-carousel .pxl-post--category.deactive-click:before, .pxl-post-modern .pxl-post--category.deactive-click:before, .pxl-swiper-slider .pxl-post--category.deactive-click:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99;
}

.pxl-grid .pxl-post--category a, .pxl-post-carousel .pxl-post--category a, .pxl-post-modern .pxl-post--category a, .pxl-swiper-slider .pxl-post--category a {
  color: inherit;
}

.pxl-grid.pxl-grid-nogap .pxl-grid-masonry, .pxl-post-carousel.pxl-grid-nogap .pxl-grid-masonry, .pxl-post-modern.pxl-grid-nogap .pxl-grid-masonry, .pxl-swiper-slider.pxl-grid-nogap .pxl-grid-masonry {
  margin: 0 !important;
}

.pxl-grid.pxl-grid-nogap .pxl-grid-masonry .pxl-grid-item, .pxl-post-carousel.pxl-grid-nogap .pxl-grid-masonry .pxl-grid-item, .pxl-post-modern.pxl-grid-nogap .pxl-grid-masonry .pxl-grid-item, .pxl-swiper-slider.pxl-grid-nogap .pxl-grid-masonry .pxl-grid-item {
  padding: 0 !important;
}

.pxl-grid.pxl-grid-nogap .pxl-grid-masonry .pxl-post--inner, .pxl-post-carousel.pxl-grid-nogap .pxl-grid-masonry .pxl-post--inner, .pxl-post-modern.pxl-grid-nogap .pxl-grid-masonry .pxl-post--inner, .pxl-swiper-slider.pxl-grid-nogap .pxl-grid-masonry .pxl-post--inner {
  margin-bottom: 0;
}

.pxl-carousel-inner {
  overflow: hidden;
}

.pxl-swiper-container.swiper-fade .pxl-swiper-slide {
  opacity: 0 !important;
}

.pxl-swiper-container.swiper-fade .pxl-swiper-slide.swiper-slide-active {
  opacity: 1 !important;
}

.pxl-swiper-slide {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: auto;
  height: 100%;
  position: relative;
  padding: 0 15px;
}

.pxl-swiper-boxshadow .pxl-carousel-inner {
  margin: 0 -30px;
}

.pxl-swiper-boxshadow .pxl-carousel-inner .pxl-swiper-container {
  padding: 0 30px;
}

.pxl-swiper-boxshadow .pxl-swiper-slide {
  -webkit-transition: opacity 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  -khtml-transition: opacity 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  -moz-transition: opacity 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  -ms-transition: opacity 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: opacity 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: opacity 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.pxl-swiper-boxshadow .pxl-swiper-slide:not(.swiper-slide-visible) {
  opacity: 0;
}

.pxl-swiper-slider {
  position: relative;
}

.pxl-swiper-slider.pxl-swiper-arrow-show .pxl-swiper-arrow {
  opacity: 1;
  visibility: visible;
}

.pxl-swiper-nogap .pxl-swiper-container .pxl-swiper-slide {
  padding: 0;
}

.swiper-container-vertical .pxl-swiper-slide, .swiper-container-vertical .swiper-slide {
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-creative .pxl-swiper-slide {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
  transition-property: transform, opacity, height;
  transition-property: transform;
}

.swiper-3d .swiper-cube-shadow, .swiper-3d .pxl-swiper-slide {
  transform-style: preserve-3d;
}

.swiper-vertical.swiper-backface-hidden .pxl-swiper-slide {
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  height: auto !important;
}

.pxl-swiper-slider .pxl-post--image img, .pxl-swiper-slider .pxl-post--featured img {
  width: 100%;
}

.pxl-swiper-slider .pxl-post--title a, .pxl-swiper-slider .pxl-post--category a {
  color: inherit;
}

.pxl-swiper-slider .pxl-post--title a:hover, .pxl-swiper-slider .pxl-post--category a:hover {
  color: inherit;
}

.pxl-slider-carousel1 .pxl-carousel-inner {
  display: flex;
  max-width: 1560px;
  margin: 0 auto;
  cursor: pointer;
}

.pxl-slider-carousel1 .pxl-carousel-inner .pxl-swiper-thumbs {
  width: 52%;
}

.pxl-slider-carousel1 .pxl-carousel-inner .pxl-swiper-thumbs .pxl-swiper-slide .pxl-item-inner {
  height: 100%;
  display: flex;
}

.pxl-slider-carousel1 .pxl-carousel-inner .pxl-swiper-thumbs .pxl-swiper-slide .pxl-item-inner .pxl-image {
  display: flex;
  align-items: end;
}

.pxl-slider-carousel1 .pxl-carousel-inner .pxl-swiper-thumbs .pxl-swiper-slide .pxl-item-inner .pxl-image img {
  object-fit: cover;
}

.pxl-slider-carousel1 .pxl-carousel-inner .pxl-swiper-container {
  width: 48%;
}

.pxl-slider-carousel1 .pxl-carousel-inner .pxl-swiper-container .pxl-swiper-slide {
  padding: 270px 0 198px 0;
}

.pxl-slider-carousel1 .pxl-carousel-inner .pxl-swiper-container .pxl-swiper-slide .pxl-item-inner {
  height: 100%;
  display: flex;
  align-items: end;
}

.pxl-slider-carousel1 .pxl-swiper-slide .pxl-image {
  transform: scale(0.8);
  transition: all 0.9s ease-in-out;
  opacity: 0;
  transform-origin: bottom;
}

.pxl-slider-carousel1 .pxl-swiper-slide.swiper-slide-thumb-active .pxl-image {
  transform: scale(1);
  transition: all 0.9s ease-in-out;
  opacity: 1;
}

.ft-secondary, blockquote:not(.pxl-blockquote), blockquote:not(.pxl-blockquote) cite, .pxl--post-footer label, .widget_recent_comments ul, .widget_recent_comments ol, .widget_rss .rsswidget, .widget_block .wp-block-search__label, .widget_block .wp-block-group__inner-container > h2, .widget_block .wp-block-latest-posts__list, .widget_block .wp-block-latest-comments, .pxl-wg-categories .pxl-category--inner span, .pxl-contact-info-widget .pxl-phone--number, .pxl-process1 .pxl-item--number, .pxl-call-phone1.style-1 .pxl-item--number, .pxl-call-phone1.style-2 .pxl-item--number, .pxl-mailchimp-l1.style-box [type="email"], .pxl-mailchimp-l1.style-box2 [type="email"], .pxl-button-video1 .slider-video-title, .pxl-tabs1 .pxl-tab--title, .pxl-banner1 .pxl-banner-bottom .pxl-counter--bnumber, .pxl-progressbar-1.style-1 .pxl--holder, .pxl-counter1.style-1 .pxl-counter--number, .pxl-counter1.style-2 .pxl-counter--number, .pxl-recent-news1 .pxl-post--date, .pxl-contact-form .pxl-form--label, .pxl-breadcrumb, #pxl-cart-sidebar .pxl-widget-cart-sidebar .widget_shopping_title, #pxl-cart-sidebar .pxl-widget-cart-sidebar .widget_shopping_cart .widget_shopping_cart_footer p.total, .woocommerce #pxl-sidebar-area .widget_products ul li a, .woocommerce .nice-select, .woocommerce-page .nice-select, .woocommerce #respond input#submit, .woocommerce-page #respond input#submit, .woocommerce a.button, .woocommerce-page a.button, .woocommerce a.wc-forward, .woocommerce-page a.wc-forward, .woocommerce button.button, .woocommerce-page button.button, .woocommerce input.button, .woocommerce-page input.button, .woocommerce .cart button.button, .woocommerce-page .cart button.button, .woocommerce a.button.alt, .woocommerce-page a.button.alt, .woocommerce button.button:disabled, .woocommerce-page button.button:disabled, .woocommerce a.button:disabled, .woocommerce-page a.button:disabled, .woocommerce button.button:disabled[disabled], .woocommerce-page button.button:disabled[disabled], .woocommerce button.button.alt, .woocommerce-page button.button.alt, .woocommerce .woocommerce-topbar div.woocommerce-result-count, .woocommerce .woocommerce-product-inner .woocommerce-product-content .woocommerce-add-to-cart .button, .woocommerce .woocommerce-product-inner .woocommerce-product-content .woocommerce-add-to-cart .added_to_cart, .single-product .woocommerce-social-share label, .single-product #pxl-content-area div.product .entry-summary .price, .single-product > div.product .entry-summary .price, .single-product #pxl-content-area div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews .comment-reply-title, .single-product > div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews .comment-reply-title, body #yith-quick-view-modal #yith-quick-view-content .entry-summary form.cart label, .btn {
  font-family: "DM Sans", sans-serif;
}

.pxl-row-divider-wave-animation-top .pxl-row-angle {
  top: -1px;
  -webkit-transform: scaleY(-1);
  -khtml-transform: scaleY(-1);
  -moz-transform: scaleY(-1);
  -ms-transform: scaleY(-1);
  -o-transform: scaleY(-1);
  transform: scaleY(-1);
  height: 150px;
}

.pxl-row-divider-wave-animation-bottom .pxl-row-angle {
  bottom: -1px;
  height: 150px;
}

.pxl-loader {
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999999;
  transition: all 1s ease;
}

.pxl-loader.is-loaded {
  transform: translateY(-100%);
}

.pxl-loader.style-1 .pxl-loader-spinner {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -khtml-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
  width: 70px;
  text-align: center;
}

.pxl-loader.style-1 .pxl-loader-spinner > div {
  width: 18px;
  height: 18px;
  background-color: var(--primary-color);
  -webkit-border-radius: 100%;
  -khtml-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  border-radius: 100%;
  display: inline-block;
  -webkit-animation: px_bouncedelay 1.4s infinite ease-in-out both;
  animation: px_bouncedelay 1.4s infinite ease-in-out both;
}

.pxl-loader.style-1 .pxl-loader-spinner .pxl-loader-bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}

.pxl-loader.style-1 .pxl-loader-spinner .pxl-loader-bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}

.pxl-loader.style-2 {
  background-color: #000;
}

.pxl-loader.style-2 .loader-circle {
  width: 120px;
  height: 120px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  border-radius: 100%;
  direction: ltr;
}

.pxl-loader.style-2 .loader-line-mask {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 30px;
  height: 120px;
  margin-left: -60px;
  margin-top: -60px;
  overflow: hidden;
  transform-origin: 60px 60px;
  animation: pxl_spin 1.2s infinite linear;
}

.pxl-loader.style-2 .loader-line-mask .loader-line {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.44)), to(rgba(255, 255, 255, 0)));
  background-image: -webkit-linear-gradient(to bottom, rgba(255, 255, 255, 0.44), rgba(255, 255, 255, 0));
  background-image: -moz-linear-gradient(to bottom, rgba(255, 255, 255, 0.44), rgba(255, 255, 255, 0));
  background-image: -ms-linear-gradient(to bottom, rgba(255, 255, 255, 0.44), rgba(255, 255, 255, 0));
  background-image: -o-linear-gradient(to bottom, rgba(255, 255, 255, 0.44), rgba(255, 255, 255, 0));
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.44), rgba(255, 255, 255, 0));
  filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='rgba(255, 255, 255, 0.44)', endColorStr='rgba(255, 255, 255, 0)');
  background-color: transparent;
  position: relative;
}

.pxl-loader.style-2 .loader-line-mask .loader-line:before {
  content: '';
  position: absolute;
  top: 1px;
  left: 1px;
  right: 1px;
  bottom: 1px;
  background-color: #000;
  z-index: 99;
  border-radius: inherit;
}

.pxl-loader.style-2 .loader-logo {
  position: absolute;
  top: 50%;
  transform: translate(0%, -50%);
  left: 0;
  right: 0;
  text-align: center;
}

.pxl-loader.style-2 .loader-logo img {
  height: 42px;
  width: auto;
  opacity: 0.87;
}

.pxl-loader.style-rocket .loader {
  width: 32px;
  height: 70px;
  display: block;
  margin: 20px auto;
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50% 50% 0 0;
  border-bottom: 10px solid var(--primary-color);
  background-color: #c0c0c0;
  background-image: radial-gradient(ellipse at center, var(--secondary-color) 34%, var(--primary-color) 35%, var(--primary-color) 54%, #c0c0c0 55%), linear-gradient(var(--primary-color) 10px, transparent 0);
  background-size: 28px 28px;
  background-position: center 20px, center 2px;
  background-repeat: no-repeat;
  box-sizing: border-box;
  animation: animloaderBack 1s linear infinite alternate;
}

.pxl-loader.style-rocket .loader::before {
  content: '';
  box-sizing: border-box;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 64px;
  height: 44px;
  border-radius: 50%;
  box-shadow: 0px 15px var(--primary-color) inset;
  top: 67px;
}

.pxl-loader.style-rocket .loader::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 34px;
  height: 34px;
  top: 112%;
  background: radial-gradient(ellipse at center, #ffdf00 8%, rgba(249, 62, 0, 0.6) 24%, rgba(0, 0, 0, 0) 100%);
  border-radius: 50% 50% 0;
  background-repeat: no-repeat;
  background-position: -44px -44px;
  background-size: 100px 100px;
  box-shadow: 4px 4px 12px 0px rgba(255, 61, 0, 0.5);
  box-sizing: border-box;
  animation: animloader 1s linear infinite alternate;
}

.pxl-loader.style-3 #container {
  position: absolute;
  transform: scale(0.725) translate(-50%, -50%);
  top: 50%;
  left: 50%;
}

.pxl-loader.style-3 .divider {
  position: absolute;
  z-index: 2;
  bottom: 27px;
  left: 200px;
  width: 50px;
  height: 15px;
  background: #fff;
}

.pxl-loader.style-3 .loading-text {
  position: relative;
  font-size: 60px !important;
  font-weight: 300;
  margin: 25px 0 20px;
  white-space: nowrap;
}

.pxl-loader.style-3 .loading-text::before {
  position: absolute;
  content: '';
  z-index: 1;
  top: 40px;
  left: 114px;
  width: 6px;
  height: 6px;
  background: #000;
  border-radius: 50%;
  animation: dotMove 1800ms cubic-bezier(0.25, 0.25, 0.75, 0.75) infinite;
}

.pxl-loader.style-3 .loading-text .letter {
  display: inline-block;
  position: relative;
  color: #000;
  letter-spacing: 8px;
}

.pxl-loader.style-3 .loading-text .letter:nth-child(1) {
  transform-origin: 100% 70%;
  transform: scale(1, 1.275);
}

.pxl-loader.style-3 .loading-text .letter:nth-child(1)::before {
  position: absolute;
  content: '';
  top: 22px;
  left: 0;
  width: 14px;
  height: 36px;
  background: #fff;
  transform-origin: 100% 0;
  animation: lineStretch 1800ms cubic-bezier(0.25, 0.25, 0.75, 0.75) infinite;
}

.pxl-loader.style-3 .loading-text .letter:nth-child(5) {
  transform-origin: 100% 70%;
  animation: letterStretch 1800ms cubic-bezier(0.25, 0.23, 0.73, 0.75) infinite;
}

.pxl-loader.style-3 .loading-text .letter:nth-child(5)::before {
  position: absolute;
  content: '';
  top: 15px;
  left: 2px;
  width: 7px;
  height: 17px;
  background: #fff;
}

.pxl-loader.style-ai .loader--ai {
  transform: scale(0.55);
  width: 100%;
  height: 100%;
}

.pxl-loader.style-ai .sphere {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  height: 140px;
  width: 140px;
  animation: rotateSphere 2.5s linear infinite;
  transform-style: preserve-3d;
}

.pxl-loader.style-ai .sphere .plane {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0;
  margin: auto;
  height: 100%;
  width: 100%;
  list-style-type: none;
  transform-style: preserve-3d;
}

.pxl-loader.style-ai .sphere .plane li {
  position: absolute;
  height: 50%;
  width: 0;
  left: 0;
  right: 0;
  margin: auto;
  transform-origin: bottom;
  box-sizing: border-box;
  transform-style: preserve-3d;
}

.pxl-loader.style-ai .sphere .plane li::after {
  content: "";
  position: absolute;
  height: 2px;
  width: 2px;
  display: inline-block;
  top: 0;
  left: 0;
  transform: translateX(-50%) rotateX(90deg);
  border-radius: 50px;
  background-color: var(--primary-color);
}

.pxl-loader.style-ai .sphere .plane li:nth-child(1) {
  transform: rotate(10deg);
}

.pxl-loader.style-ai .sphere .plane li:nth-child(2) {
  transform: rotate(20deg);
}

.pxl-loader.style-ai .sphere .plane li:nth-child(3) {
  transform: rotate(30deg);
}

.pxl-loader.style-ai .sphere .plane li:nth-child(4) {
  transform: rotate(40deg);
}

.pxl-loader.style-ai .sphere .plane li:nth-child(5) {
  transform: rotate(50deg);
}

.pxl-loader.style-ai .sphere .plane li:nth-child(6) {
  transform: rotate(60deg);
}

.pxl-loader.style-ai .sphere .plane li:nth-child(7) {
  transform: rotate(70deg);
}

.pxl-loader.style-ai .sphere .plane li:nth-child(8) {
  transform: rotate(80deg);
}

.pxl-loader.style-ai .sphere .plane li:nth-child(9) {
  transform: rotate(90deg);
}

.pxl-loader.style-ai .sphere .plane li:nth-child(10) {
  transform: rotate(100deg);
}

.pxl-loader.style-ai .sphere .plane li:nth-child(11) {
  transform: rotate(110deg);
}

.pxl-loader.style-ai .sphere .plane li:nth-child(12) {
  transform: rotate(120deg);
}

.pxl-loader.style-ai .sphere .plane li:nth-child(13) {
  transform: rotate(130deg);
}

.pxl-loader.style-ai .sphere .plane li:nth-child(14) {
  transform: rotate(140deg);
}

.pxl-loader.style-ai .sphere .plane li:nth-child(15) {
  transform: rotate(150deg);
}

.pxl-loader.style-ai .sphere .plane li:nth-child(16) {
  transform: rotate(160deg);
}

.pxl-loader.style-ai .sphere .plane li:nth-child(17) {
  transform: rotate(170deg);
}

.pxl-loader.style-ai .sphere .plane li:nth-child(18) {
  transform: rotate(180deg);
}

.pxl-loader.style-ai .sphere .plane:nth-child(1) {
  transform: rotateY(10deg);
}

.pxl-loader.style-ai .sphere .plane:nth-child(2) {
  transform: rotateY(20deg);
}

.pxl-loader.style-ai .sphere .plane:nth-child(3) {
  transform: rotateY(30deg);
}

.pxl-loader.style-ai .sphere .plane:nth-child(4) {
  transform: rotateY(40deg);
}

.pxl-loader.style-ai .sphere .plane:nth-child(5) {
  transform: rotateY(50deg);
}

.pxl-loader.style-ai .sphere .plane:nth-child(6) {
  transform: rotateY(60deg);
}

.pxl-loader.style-ai .sphere .plane:nth-child(7) {
  transform: rotateY(70deg);
}

.pxl-loader.style-ai .sphere .plane:nth-child(8) {
  transform: rotateY(80deg);
}

.pxl-loader.style-ai .sphere .plane:nth-child(9) {
  transform: rotateY(90deg);
}

.pxl-loader.style-ai .sphere .plane:nth-child(10) {
  transform: rotateY(100deg);
}

.pxl-loader.style-ai .sphere .plane:nth-child(11) {
  transform: rotateY(110deg);
}

.pxl-loader.style-ai .sphere .plane:nth-child(12) {
  transform: rotateY(120deg);
}

.pxl-loader.style-ai .sphere .plane:nth-child(13) {
  transform: rotateY(130deg);
}

.pxl-loader.style-ai .sphere .plane:nth-child(14) {
  transform: rotateY(140deg);
}

.pxl-loader.style-ai .sphere .plane:nth-child(15) {
  transform: rotateY(150deg);
}

.pxl-loader.style-ai .sphere .plane:nth-child(16) {
  transform: rotateY(160deg);
}

.pxl-loader.style-ai .sphere .plane:nth-child(17) {
  transform: rotateY(170deg);
}

.pxl-loader.style-ai .sphere .plane:nth-child(18) {
  transform: rotateY(180deg);
}

.pxl-loader.style-ai .sphere .plane:nth-child(19) {
  transform: rotateY(190deg);
}

.pxl-loader.style-ai .sphere .plane:nth-child(20) {
  transform: rotateY(200deg);
}

.pxl-loader.style-ai .sphere .plane:nth-child(21) {
  transform: rotateY(210deg);
}

.pxl-loader.style-ai .sphere .plane:nth-child(22) {
  transform: rotateY(220deg);
}

.pxl-loader.style-ai .sphere .plane:nth-child(23) {
  transform: rotateY(230deg);
}

.pxl-loader.style-ai .sphere .plane:nth-child(24) {
  transform: rotateY(240deg);
}

.pxl-loader.style-ai .sphere .plane:nth-child(25) {
  transform: rotateY(250deg);
}

.pxl-loader.style-ai .sphere .plane:nth-child(26) {
  transform: rotateY(260deg);
}

.pxl-loader.style-ai .sphere .plane:nth-child(27) {
  transform: rotateY(270deg);
}

.pxl-loader.style-ai .sphere .plane:nth-child(28) {
  transform: rotateY(280deg);
}

.pxl-loader.style-ai .sphere .plane:nth-child(29) {
  transform: rotateY(290deg);
}

.pxl-loader.style-ai .sphere .plane:nth-child(30) {
  transform: rotateY(300deg);
}

.pxl-loader.style-ai .sphere .plane:nth-child(31) {
  transform: rotateY(310deg);
}

.pxl-loader.style-ai .sphere .plane:nth-child(32) {
  transform: rotateY(320deg);
}

.pxl-loader.style-ai .sphere .plane:nth-child(33) {
  transform: rotateY(330deg);
}

.pxl-loader.style-ai .sphere .plane:nth-child(34) {
  transform: rotateY(340deg);
}

.pxl-loader.style-ai .sphere .plane:nth-child(35) {
  transform: rotateY(350deg);
}

.pxl-loader.style-ai .sphere .plane:nth-child(36) {
  transform: rotateY(360deg);
}

.pxl-loader.style-ai *, .pxl-loader.style-ai *:before, .pxl-loader.style-ai *:after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.pxl-loader.style-ai *:before, .pxl-loader.style-ai *:after {
  content: "";
}

.pxl-loader.style-ai .sphere-rings {
  -ms-transform: rotateY(45deg);
  -webkit-transform: rotateY(45deg);
  transform: rotateY(45deg);
}

.pxl-loader.style-ai .sphere-rings, .pxl-loader.style-ai .sphere-rings *, .pxl-loader.style-ai .sphere-rings *:before, .pxl-loader.style-ai .sphere-rings *:after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.pxl-loader.style-ai .ring {
  width: 15em;
  height: 15em;
  border-radius: 50%;
}

.pxl-loader.style-ai .ring:before {
  border-style: solid;
  border-color: rgba(124, 58, 237, 0.8) rgba(124, 58, 237, 0.8) transparent transparent;
  border-radius: 100%;
}

.pxl-loader.style-ai .ring:nth-child(1) {
  -ms-transform: translateZ(-7.5em) scale(0);
  -webkit-transform: translateZ(-7.5em) scale(0);
  transform: translateZ(-7.5em) scale(0);
}

.pxl-loader.style-ai .ring:nth-child(1):before {
  -webkit-animation: ring 2s 0s linear infinite;
  animation: ring 2s 0s linear infinite;
}

.pxl-loader.style-ai .ring:nth-child(2) {
  -ms-transform: translateZ(-7.35589em) scale(0.19509);
  -webkit-transform: translateZ(-7.35589em) scale(0.19509);
  transform: translateZ(-7.35589em) scale(0.19509);
}

.pxl-loader.style-ai .ring:nth-child(2):before {
  -webkit-animation: ring 2s -0.125s linear infinite;
  animation: ring 2s -0.125s linear infinite;
}

.pxl-loader.style-ai .ring:nth-child(3) {
  -ms-transform: translateZ(-6.9291em) scale(0.38268);
  -webkit-transform: translateZ(-6.9291em) scale(0.38268);
  transform: translateZ(-6.9291em) scale(0.38268);
}

.pxl-loader.style-ai .ring:nth-child(3):before {
  -webkit-animation: ring 2s -0.25s linear infinite;
  animation: ring 2s -0.25s linear infinite;
}

.pxl-loader.style-ai .ring:nth-child(4) {
  -ms-transform: translateZ(-6.23602em) scale(0.55557);
  -webkit-transform: translateZ(-6.23602em) scale(0.55557);
  transform: translateZ(-6.23602em) scale(0.55557);
}

.pxl-loader.style-ai .ring:nth-child(4):before {
  -webkit-animation: ring 2s -0.375s linear infinite;
  animation: ring 2s -0.375s linear infinite;
}

.pxl-loader.style-ai .ring:nth-child(5) {
  -ms-transform: translateZ(-5.3033em) scale(0.70711);
  -webkit-transform: translateZ(-5.3033em) scale(0.70711);
  transform: translateZ(-5.3033em) scale(0.70711);
}

.pxl-loader.style-ai .ring:nth-child(5):before {
  -webkit-animation: ring 2s -0.5s linear infinite;
  animation: ring 2s -0.5s linear infinite;
}

.pxl-loader.style-ai .ring:nth-child(6) {
  -ms-transform: translateZ(-4.16678em) scale(0.83147);
  -webkit-transform: translateZ(-4.16678em) scale(0.83147);
  transform: translateZ(-4.16678em) scale(0.83147);
}

.pxl-loader.style-ai .ring:nth-child(6):before {
  -webkit-animation: ring 2s -0.625s linear infinite;
  animation: ring 2s -0.625s linear infinite;
}

.pxl-loader.style-ai .ring:nth-child(7) {
  -ms-transform: translateZ(-2.87013em) scale(0.92388);
  -webkit-transform: translateZ(-2.87013em) scale(0.92388);
  transform: translateZ(-2.87013em) scale(0.92388);
}

.pxl-loader.style-ai .ring:nth-child(7):before {
  -webkit-animation: ring 2s -0.75s linear infinite;
  animation: ring 2s -0.75s linear infinite;
}

.pxl-loader.style-ai .ring:nth-child(8) {
  -ms-transform: translateZ(-1.46318em) scale(0.98079);
  -webkit-transform: translateZ(-1.46318em) scale(0.98079);
  transform: translateZ(-1.46318em) scale(0.98079);
}

.pxl-loader.style-ai .ring:nth-child(8):before {
  -webkit-animation: ring 2s -0.875s linear infinite;
  animation: ring 2s -0.875s linear infinite;
}

.pxl-loader.style-ai .ring:nth-child(9) {
  -ms-transform: translateZ(0em) scale(1);
  -webkit-transform: translateZ(0em) scale(1);
  transform: translateZ(0em) scale(1);
}

.pxl-loader.style-ai .ring:nth-child(9):before {
  -webkit-animation: ring 2s -1s linear infinite;
  animation: ring 2s -1s linear infinite;
}

.pxl-loader.style-ai .ring:nth-child(10) {
  -ms-transform: translateZ(1.46318em) scale(0.98079);
  -webkit-transform: translateZ(1.46318em) scale(0.98079);
  transform: translateZ(1.46318em) scale(0.98079);
}

.pxl-loader.style-ai .ring:nth-child(10):before {
  -webkit-animation: ring 2s -1.125s linear infinite;
  animation: ring 2s -1.125s linear infinite;
}

.pxl-loader.style-ai .ring:nth-child(11) {
  -ms-transform: translateZ(2.87013em) scale(0.92388);
  -webkit-transform: translateZ(2.87013em) scale(0.92388);
  transform: translateZ(2.87013em) scale(0.92388);
}

.pxl-loader.style-ai .ring:nth-child(11):before {
  -webkit-animation: ring 2s -1.25s linear infinite;
  animation: ring 2s -1.25s linear infinite;
}

.pxl-loader.style-ai .ring:nth-child(12) {
  -ms-transform: translateZ(4.16678em) scale(0.83147);
  -webkit-transform: translateZ(4.16678em) scale(0.83147);
  transform: translateZ(4.16678em) scale(0.83147);
}

.pxl-loader.style-ai .ring:nth-child(12):before {
  -webkit-animation: ring 2s -1.375s linear infinite;
  animation: ring 2s -1.375s linear infinite;
}

.pxl-loader.style-ai .ring:nth-child(13) {
  -ms-transform: translateZ(5.3033em) scale(0.70711);
  -webkit-transform: translateZ(5.3033em) scale(0.70711);
  transform: translateZ(5.3033em) scale(0.70711);
}

.pxl-loader.style-ai .ring:nth-child(13):before {
  -webkit-animation: ring 2s -1.5s linear infinite;
  animation: ring 2s -1.5s linear infinite;
}

.pxl-loader.style-ai .ring:nth-child(14) {
  -ms-transform: translateZ(6.23602em) scale(0.55557);
  -webkit-transform: translateZ(6.23602em) scale(0.55557);
  transform: translateZ(6.23602em) scale(0.55557);
}

.pxl-loader.style-ai .ring:nth-child(14):before {
  -webkit-animation: ring 2s -1.625s linear infinite;
  animation: ring 2s -1.625s linear infinite;
}

.pxl-loader.style-ai .ring:nth-child(15) {
  -ms-transform: translateZ(6.9291em) scale(0.38268);
  -webkit-transform: translateZ(6.9291em) scale(0.38268);
  transform: translateZ(6.9291em) scale(0.38268);
}

.pxl-loader.style-ai .ring:nth-child(15):before {
  -webkit-animation: ring 2s -1.75s linear infinite;
  animation: ring 2s -1.75s linear infinite;
}

.pxl-loader.style-ai .ring:nth-child(16) {
  -ms-transform: translateZ(7.35589em) scale(0.19509);
  -webkit-transform: translateZ(7.35589em) scale(0.19509);
  transform: translateZ(7.35589em) scale(0.19509);
}

.pxl-loader.style-ai .ring:nth-child(16):before {
  -webkit-animation: ring 2s -1.875s linear infinite;
  animation: ring 2s -1.875s linear infinite;
}

.loader-dark #pxl-loadding .pxl-loader-spinner > div {
  background-color: #fff;
}

.pxl-spill, .pxl-grid .pxl-post--link, .pxl-post-carousel .pxl-post--link, .pxl-post-modern .pxl-post--link, .pxl-swiper-slider .pxl-post--link, .pxl-imgfilter-wrap .pxl-item--imgfilter:before, .pxl-gallery .pxl--item-inner.video-active:before, .pxl-wg-categories .pxl-category--inner:before, .pxl-wg-categories .pxl-category--inner a, .pxl-wg-categories .pxl-category--inner .pxl-category--img, .pxl-contact-info-widget:before, .pxl-info-box1:before, .pxl-image-effect1 .image-back, .pxl-image-effect1 .map {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.text-gradient, .swiper-filter-wrap .filter-item.active span, blockquote:not(.pxl-blockquote) cite, .pxl-pagination-wrap a:hover i, .pxl-pagination-wrap a:hover span, .pxl-contact-info-widget .pxl-item--icon i, .pxl-post-list1 .pxl-item--readmore i, .pxl-text-editor.highlight-gradient .pxl-text--highlight, .pxl-heading .px-text-gradient span, .pxl-link .pxl-type-gradient .pxl-link--icon i, .pxl-call-phone1.style-2 .pxl-item--icon i, .pxl-contact-form .pxl-form--label span, .pxl-social-icons1 a i, .pxl-contact-info1 .pxl-item--icon i, .pxl-showcase1 .pxl-item--label, .pxl-showcase2 .pxl-item--label, .pxl-btn-video.style1 i, .pxl-info-box1 .pxl-item--icon i, .pxl-icon-text2.style-1 .pxl-item--icon i, .pxl-icon-text2.style-2 .pxl-item--icon i, .single-product #pxl-content-area div.product .woocommerce-product-gallery .flex-direction-nav a:hover:before, .single-product > div.product .woocommerce-product-gallery .flex-direction-nav a:hover:before {
  background-image: -webkit-linear-gradient(-45deg, var(--primary-color) 45%, var(--secondary-color) 75%);
  background-image: -moz-linear-gradient(-45deg, var(--primary-color) 45%, var(--secondary-color) 75%);
  background-image: -ms-linear-gradient(-45deg, var(--primary-color) 45%, var(--secondary-color) 75%);
  background-image: -o-linear-gradient(-45deg, var(--primary-color) 45%, var(--secondary-color) 75%);
  background-image: linear-gradient(-45deg, var(--primary-color) 45%, var(--secondary-color) 75%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='var(--primary-color) 45%', endColorStr='var(--secondary-color) 75%');
  background-color: transparent;
  background-clip: text;
  -o-background-clip: text;
  -ms-background-clip: text;
  -moz-background-clip: text;
  -webkit-background-clip: text;
  text-fill-color: transparent;
  -o-text-fill-color: transparent;
  -ms-text-fill-color: transparent;
  -moz-text-fill-color: transparent;
  -webkit-text-fill-color: transparent;
}

.text-gradient-bottom, .pxl-heading .highlight-text-gradient .pxl-title--highlight, .pxl-counter1.style-1 .pxl-counter--icon i, .pxl-counter1.style-2 .pxl-counter--icon i {
  background-image: -webkit-gradient(linear, left top, left bottom, from(var(--gradient-color-from)), to(var(--gradient-color-to)));
  background-image: -webkit-linear-gradient(to bottom, var(--gradient-color-from), var(--gradient-color-to));
  background-image: -moz-linear-gradient(to bottom, var(--gradient-color-from), var(--gradient-color-to));
  background-image: -ms-linear-gradient(to bottom, var(--gradient-color-from), var(--gradient-color-to));
  background-image: -o-linear-gradient(to bottom, var(--gradient-color-from), var(--gradient-color-to));
  background-image: linear-gradient(to bottom, var(--gradient-color-from), var(--gradient-color-to));
  filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='var(--gradient-color-from)', endColorStr='var(--gradient-color-to)');
  background-color: transparent;
  background-clip: text;
  -o-background-clip: text;
  -ms-background-clip: text;
  -moz-background-clip: text;
  -webkit-background-clip: text;
  text-fill-color: transparent;
  -o-text-fill-color: transparent;
  -ms-text-fill-color: transparent;
  -moz-text-fill-color: transparent;
  -webkit-text-fill-color: transparent;
}

.pxl-item--archive .slick-track .pxl-swiper-slide {
  padding: 0;
}

.pxl-item--archive.pxl-item--standard .pxl-button {
  font-size: 16px;
  font-weight: 500;
  line-height: 32px;
  position: relative;
  padding-right: 40px;
  color: var(--heading-color);
}

.pxl-item--archive.pxl-item--standard .pxl-button .pxl--btn-icon {
  width: 32px;
  position: absolute;
  height: 32px;
  border-radius: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #716f73;
  right: 0;
  top: -6px;
  transition: all 0.3s;
}

.pxl-item--archive.pxl-item--standard .pxl-button .pxl--btn-text {
  transition: all 0.5s;
}

.pxl-item--archive.pxl-item--standard .pxl-button:hover .pxl--btn-icon {
  width: 100%;
}

.pxl-item--archive.pxl-item--standard .pxl-button:hover .pxl--btn-text {
  opacity: 0;
}

.pxl-gallery .pxl--item-inner .pxl-btn-video {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -khtml-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 99;
}

.pxl-process1 .pxl-item--icon i.flaticon-cloud-computing {
  font-size: 52px;
}

.pxl-text-editor .pxl-item--inner.text-gradient, .pxl-text-editor .swiper-filter-wrap .filter-item.active span.pxl-item--inner, .swiper-filter-wrap .filter-item.active .pxl-text-editor span.pxl-item--inner, .pxl-text-editor blockquote:not(.pxl-blockquote) cite.pxl-item--inner, blockquote:not(.pxl-blockquote) .pxl-text-editor cite.pxl-item--inner, .pxl-text-editor .pxl-pagination-wrap a:hover i.pxl-item--inner, .pxl-pagination-wrap a:hover .pxl-text-editor i.pxl-item--inner, .pxl-text-editor .pxl-pagination-wrap a:hover span.pxl-item--inner, .pxl-pagination-wrap a:hover .pxl-text-editor span.pxl-item--inner, .pxl-text-editor .pxl-contact-info-widget .pxl-item--icon i.pxl-item--inner, .pxl-contact-info-widget .pxl-item--icon .pxl-text-editor i.pxl-item--inner, .pxl-text-editor .pxl-post-list1 .pxl-item--readmore i.pxl-item--inner, .pxl-post-list1 .pxl-item--readmore .pxl-text-editor i.pxl-item--inner, .pxl-text-editor .pxl-text-editor.highlight-gradient .pxl-text--highlight.pxl-item--inner, .pxl-text-editor.highlight-gradient .pxl-text-editor .pxl-text--highlight.pxl-item--inner, .pxl-text-editor .pxl-heading .px-text-gradient span.pxl-item--inner, .pxl-heading .px-text-gradient .pxl-text-editor span.pxl-item--inner, .pxl-text-editor .pxl-link .pxl-type-gradient .pxl-link--icon i.pxl-item--inner, .pxl-link .pxl-type-gradient .pxl-link--icon .pxl-text-editor i.pxl-item--inner, .pxl-text-editor .pxl-call-phone1.style-2 .pxl-item--icon i.pxl-item--inner, .pxl-call-phone1.style-2 .pxl-item--icon .pxl-text-editor i.pxl-item--inner, .pxl-text-editor .pxl-contact-form .pxl-form--label span.pxl-item--inner, .pxl-contact-form .pxl-form--label .pxl-text-editor span.pxl-item--inner, .pxl-text-editor .pxl-social-icons1 a i.pxl-item--inner, .pxl-social-icons1 a .pxl-text-editor i.pxl-item--inner, .pxl-text-editor .pxl-contact-info1 .pxl-item--icon i.pxl-item--inner, .pxl-contact-info1 .pxl-item--icon .pxl-text-editor i.pxl-item--inner, .pxl-text-editor .pxl-showcase1 .pxl-item--label.pxl-item--inner, .pxl-showcase1 .pxl-text-editor .pxl-item--label.pxl-item--inner, .pxl-text-editor .pxl-showcase2 .pxl-item--label.pxl-item--inner, .pxl-showcase2 .pxl-text-editor .pxl-item--label.pxl-item--inner, .pxl-text-editor .pxl-btn-video.style1 i.pxl-item--inner, .pxl-btn-video.style1 .pxl-text-editor i.pxl-item--inner, .pxl-text-editor .pxl-info-box1 .pxl-item--icon i.pxl-item--inner, .pxl-info-box1 .pxl-item--icon .pxl-text-editor i.pxl-item--inner, .pxl-text-editor .pxl-icon-text2.style-1 .pxl-item--icon i.pxl-item--inner, .pxl-icon-text2.style-1 .pxl-item--icon .pxl-text-editor i.pxl-item--inner, .pxl-text-editor .pxl-icon-text2.style-2 .pxl-item--icon i.pxl-item--inner, .pxl-icon-text2.style-2 .pxl-item--icon .pxl-text-editor i.pxl-item--inner, .pxl-text-editor .single-product #pxl-content-area div.product .woocommerce-product-gallery .flex-direction-nav a:hover:before.pxl-item--inner, .single-product #pxl-content-area div.product .woocommerce-product-gallery .flex-direction-nav .pxl-text-editor a:hover:before.pxl-item--inner, .pxl-text-editor .single-product > div.product .woocommerce-product-gallery .flex-direction-nav a:hover:before.pxl-item--inner, .single-product > div.product .woocommerce-product-gallery .flex-direction-nav .pxl-text-editor a:hover:before.pxl-item--inner {
  background-image: -webkit-gradient(linear, left top, left bottom, from(var(--gradient-color-from)), to(var(--gradient-color-to)));
  background-image: -webkit-linear-gradient(to bottom, var(--gradient-color-from), var(--gradient-color-to));
  background-image: -moz-linear-gradient(to bottom, var(--gradient-color-from), var(--gradient-color-to));
  background-image: -ms-linear-gradient(to bottom, var(--gradient-color-from), var(--gradient-color-to));
  background-image: -o-linear-gradient(to bottom, var(--gradient-color-from), var(--gradient-color-to));
  background-image: linear-gradient(to bottom, var(--gradient-color-from), var(--gradient-color-to));
  filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='var(--gradient-color-from)', endColorStr='var(--gradient-color-to)');
}

.pxl-heading .pxl-heading--text .word {
  white-space: nowrap;
}

.pxl-heading .pxl-heading--text.pxl-heading--text-scroll > div > div.first-char {
  text-transform: capitalize;
}

.pxl-heading .pxl-heading--text.pxl-heading--text-scroll > div > div {
  text-transform: unset;
}

.pxl-heading q {
  background-image: -webkit-linear-gradient(90deg, #e900ff, var(--secondary-color));
  background-image: -moz-linear-gradient(90deg, #e900ff, var(--secondary-color));
  background-image: -ms-linear-gradient(90deg, #e900ff, var(--secondary-color));
  background-image: -o-linear-gradient(90deg, #e900ff, var(--secondary-color));
  background-image: linear-gradient(90deg, #e900ff, var(--secondary-color));
  filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#e900ff', endColorStr='var(--secondary-color)');
  -webkit-background-clip: text;
  color: transparent !important;
  quotes: none;
}

.pxl-heading q .char {
  color: transparent !important;
}

.pxl-heading cite {
  color: var(--primary-color);
  font-style: normal;
}

.pxl-heading .pxl-heading--inner {
  display: inline-block;
  position: relative;
}

.pxl-heading .pxl-text--slide {
  display: inline-block;
  vertical-align: middle;
  position: relative;
}

.pxl-heading .pxl-text--slide span {
  display: inline-block;
}

.pxl-heading h2.pxl-item--title {
  font-size: 55px;
}

.pxl-heading h3.pxl-item--title {
  font-size: 30px;
}

.pxl-heading .pxl-title--highlight {
  color: var(--primary-color);
  white-space: normal;
  display: inline;
}

.pxl-heading.highlight-text-image .pxl-title--highlight {
  background-clip: text;
  -o-background-clip: text;
  -ms-background-clip: text;
  -moz-background-clip: text;
  -webkit-background-clip: text;
  text-fill-color: transparent;
  -o-text-fill-color: transparent;
  -ms-text-fill-color: transparent;
  -moz-text-fill-color: transparent;
  -webkit-text-fill-color: transparent;
}

.pxl-heading .pxl-split-text.split-in-fade {
  visibility: hidden;
  /* Style Heading */
}

.pxl-heading .pxl-split-text.split-in-fade.active {
  visibility: visible;
}

.pxl-heading.px-sub-title-shape8-style .pxl-heading--inner {
  display: block;
}

.pxl-heading .pxl-item--title {
  /* Style Sub */
}

.pxl-heading .pxl-item--title.style-1 {
  position: relative;
}

.pxl-heading .pxl-item--title.style-1::before {
  position: absolute;
  content: '';
  width: 58px;
  height: 2px;
  background: var(--primary-color);
  top: 51%;
  right: -74px;
}

.pxl-heading .pxl-item--title.style-1::after {
  position: absolute;
  content: '';
  width: 30px;
  height: 2px;
  background: var(--primary-color);
  top: calc(50% + 12px);
  right: -46px;
}

.pxl-heading .pxl-item--title.style-2 {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  padding-bottom: 15px;
}

.pxl-heading .pxl-item--title.style-2::before {
  width: 38px;
  height: 2px;
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-image: -webkit-linear-gradient(90deg, var(--primary-color) 0%, var(--fourth-color) 48.53%, var(--third-color) 100%);
  background-image: -moz-linear-gradient(90deg, var(--primary-color) 0%, var(--fourth-color) 48.53%, var(--third-color) 100%);
  background-image: -ms-linear-gradient(90deg, var(--primary-color) 0%, var(--fourth-color) 48.53%, var(--third-color) 100%);
  background-image: -o-linear-gradient(90deg, var(--primary-color) 0%, var(--fourth-color) 48.53%, var(--third-color) 100%);
  background-image: linear-gradient(90deg, var(--primary-color) 0%, var(--fourth-color) 48.53%, var(--third-color) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='', endColorStr='');
}

.pxl-heading .px-sub-title-shape {
  font-size: 18px;
  color: #000001;
  font-weight: 700;
  margin-bottom: 4px;
}

.pxl-heading .px-sub-title-shape .pxl-item--subtext {
  display: inline-flex;
  position: relative;
}

.pxl-heading .px-sub-title-shape2 {
  font-size: 20px;
  color: #fff;
  margin-bottom: -3px;
  display: inline-flex;
  position: relative;
  align-items: center;
  font-size: 18px;
  font-weight: bold;
  line-height: 1;
  border-radius: 30px;
  padding: 14.5px 39px 14.5px 36px;
  z-index: 2;
  overflow: hidden;
}

.pxl-heading .px-sub-title-shape2::before {
  content: '';
  top: 50%;
  transform: translateY(-50%);
  left: 14px;
  width: 16px;
  height: 16px;
  background-image: url(../img/sparkle.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
}

.pxl-heading .px-sub-title-shape2::after {
  content: '';
  top: 50%;
  transform: translateY(-50%);
  right: 14px;
  width: 16px;
  height: 16px;
  background-image: url(../img/sparkle.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
}

.pxl-heading .px-sub-title-shape2 .pxl-item--subtext::before {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 0.5rem;
  background-image: linear-gradient(var(--rotate), #4a454e, #fff 5%, #4a454e 10%);
  position: absolute;
  z-index: -2;
  animation: spin 10s linear infinite;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.pxl-heading .px-sub-title-shape2 .pxl-item--subtext::after {
  content: '';
  position: absolute;
  top: 49.5%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  background-image: url(../img/Layer-3.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 30px;
  z-index: -1;
}

.pxl-heading .px-sub-title-shape2 .pxl-heading-icon {
  display: none;
}

.pxl-heading .px-sub-title-shape3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #262524;
}

.pxl-heading .px-sub-title-shape3 .pxl-item--subtext {
  display: inline-flex;
  align-items: center;
}

.pxl-heading .px-sub-title-shape3 i {
  font-size: 26px;
  color: var(--primary-color);
  margin-right: 12px;
  text-shadow: 0 3px 7px rgba(0, 0, 0, 0.36);
}

.pxl-heading .px-sub-title-shape4 .pxl-item--subtext {
  display: inline-flex;
  align-items: center;
  position: relative;
  z-index: 1;
  padding: 0 40px 0 45px;
  border: 3px solid var(--secondary-color);
  border-radius: 35px;
}

.pxl-heading .px-sub-title-shape4 .pxl-item--subtext::before {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  background-image: url(../img/sparkle-4.png);
  background-repeat: no-repeat;
  background-position: center;
  background-repeat: no-repeat;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.pxl-heading .px-sub-title-shape4 .pxl-item--subtext::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  background-image: url(../img/sparkle-4.png);
  background-repeat: no-repeat;
  background-position: center;
  background-repeat: no-repeat;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
}

.pxl-heading .px-sub-title-shape5 .pxl-item--subtext {
  position: relative;
  padding: 9px 46px 8px 50px;
}

.pxl-heading .px-sub-title-shape5 .pxl-item--subtext::before {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  background-image: url(../img/sparkle-4.png);
  background-repeat: no-repeat;
  background-position: center;
  background-repeat: no-repeat;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.pxl-heading .px-sub-title-shape5 .pxl-item--subtext::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  background-image: url(../img/sparkle-4.png);
  background-repeat: no-repeat;
  background-position: center;
  background-repeat: no-repeat;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
}

.pxl-heading .px-sub-title-shape5 .pxl-item--subtext .sub-title::before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  padding: 3px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 30px;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: add, add;
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  background: #d7d7d7;
  background-image: -webkit-linear-gradient(180deg, #a49bad, #261338);
  background-image: -moz-linear-gradient(180deg, #a49bad, #261338);
  background-image: -ms-linear-gradient(180deg, #a49bad, #261338);
  background-image: -o-linear-gradient(180deg, #a49bad, #261338);
  background-image: linear-gradient(180deg, #a49bad, #261338);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#a49bad', endColorStr='#261338');
}

.pxl-heading .px-sub-title-shape5 .pxl-heading-icon {
  height: 34px;
  width: 28px;
  position: relative;
  display: none;
}

.pxl-heading .px-sub-title-shape5 .pxl-heading-icon i {
  position: absolute;
  top: 2px;
  left: 0;
  line-height: 1;
  font-size: 24px;
  font-weight: 400;
}

.pxl-heading .px-sub-title-shape5 .pxl-heading-icon i:nth-child(1) {
  margin-top: 2px;
}

.pxl-heading .px-sub-title-shape5 .pxl-heading-icon i:nth-child(2) {
  transform: scaleY(-1);
  margin-top: -2px;
}

.pxl-heading .px-sub-title-shape6 {
  position: relative;
  padding: 0 64px;
  display: inline-flex;
}

.pxl-heading .px-sub-title-shape6::before {
  content: '';
  position: absolute;
  width: 52px;
  height: 2px;
  border-radius: 5px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0%, var(--primary-color) 100%);
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}

.pxl-heading .px-sub-title-shape6::after {
  content: '';
  position: absolute;
  width: 52px;
  height: 2px;
  border-radius: 5px;
  background: linear-gradient(90deg, var(--primary-color) 0%, rgba(255, 255, 255, 0.1) 100%);
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}

.pxl-heading .px-sub-title-shape7 {
  position: relative;
  padding: 0 0 0 64px;
  display: inline-flex;
}

.pxl-heading .px-sub-title-shape7::after {
  content: '';
  position: absolute;
  width: 52px;
  height: 2px;
  border-radius: 5px;
  background: linear-gradient(90deg, var(--primary-color) 0%, rgba(255, 255, 255, 0) 100%);
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}

.pxl-heading .px-sub-title-shape9 .pxl-item--subtext {
  position: relative;
  padding: 0 13px;
}

.pxl-heading .px-sub-title-shape9 .pxl-item--subtext::before, .pxl-heading .px-sub-title-shape9 .pxl-item--subtext::after {
  position: absolute;
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 4px;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(90deg, #6300db 0.01%, #ff2870 100%);
}

.pxl-heading .px-sub-title-shape9 .pxl-item--subtext::before {
  left: 0;
}

.pxl-heading .px-sub-title-shape9 .pxl-item--subtext::after {
  right: 4px;
}

.pxl-button-video1 {
  display: inline-flex;
  align-items: center;
}

.pxl-button-video1 .slider-video-icon {
  width: 67px;
  height: 67px;
  border-radius: 67px;
  background-color: #fff;
  font-size: 28px;
  color: #000;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}

.pxl-button-video1 .slider-video-icon i {
  margin-left: 6px;
}

.pxl-button-video1 .slider-video-icon:before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.57);
  border-radius: 50%;
  animation: pxl_pulse_border 1500ms ease-out infinite;
  -webkit-animation: pxl_pulse_border 1500ms ease-out infinite;
  z-index: -2;
  border-radius: inherit;
}

.pxl-button-video1 .slider-video-title {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  text-decoration: underline;
  margin: 0 18px;
}

.pxl-image-carousel1.style-default .pxl-carousel-inner {
  border: 1px solid #ececec;
  border-radius: 10px;
}

.pxl-image-carousel1.style-default .pxl-swiper-slide + .pxl-swiper-slide {
  border-left: 1px solid #ececec;
}

.pxl-image-carousel1.style-default .pxl-item--image {
  position: relative;
  overflow: hidden;
  line-height: 210px;
  text-align: center;
}

.pxl-image-carousel1.style-default .pxl-item--image a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  color: #fff;
  opacity: 0;
  z-index: 99;
}

.pxl-image-carousel1.style-default .pxl-item--image a:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0;
  -webkit-transition: all 300ms linear 0ms;
  -khtml-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  -o-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms;
}

.pxl-image-carousel1.style-default .pxl-item--image a:hover {
  opacity: 1;
}

.pxl-image-carousel1.style-default .pxl-item--image a:hover:before {
  opacity: 0.78;
}

.pxl-image-carousel1.style-1 .pxl-carousel-inner {
  mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 8%, #000 30%, #000 70%, rgba(0, 0, 0, 0) 96%);
}

.pxl-image-carousel1.style-1 .pxl-item--image {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 110px;
}

.pxl-image-carousel1.style-2 .pxl-item--inner {
  display: flex;
  justify-content: center;
}

.pxl-image-carousel1.style-2 .pxl-item--inner img {
  filter: grayscale(100%);
  width: 100%;
  height: auto;
  mix-blend-mode: color;
  transition: all 0.3s;
}

.pxl-image-carousel1.style-2 .pxl-item--inner img:hover {
  filter: grayscale(0%);
}

.pxl-image-carousel1.style-3 img {
  border-radius: 16px 0px 0px 16px;
  mix-blend-mode: luminosity;
  filter: grayscale(100%);
  transition: all 0.3s;
}

.pxl-image-carousel1.style-3 img:hover {
  filter: grayscale(0%);
}

.pxl-image-carousel1.style-4 .pxl-item--inner {
  display: flex;
  justify-content: center;
}

.pxl-image-carousel1.style-4 .pxl-item--inner:hover img {
  filter: grayscale(0%);
}

.pxl-image-carousel1.style-4 .pxl-item--inner img {
  filter: grayscale(100%) brightness(1000%);
  width: 100%;
  height: auto;
  mix-blend-mode: color;
  transition: all 0.3s;
}

.pxl-image-carousel1.style-5 img {
  border-radius: 16px 0px 0px 16px;
  mix-blend-mode: luminosity;
  filter: grayscale(100%) brightness(1.5);
  transition: all 0.3s;
}

.pxl-image-carousel1.style-5 img:hover {
  filter: grayscale(0%);
}

.pxl-image-carousel2 .pxl-swiper-slide {
  padding: 0 15px !important;
}

.pxl-image-carousel2 .pxl-item--image img {
  border-radius: 8px;
}

.pxl-image-carousel5 {
  position: relative;
}

.pxl-image-carousel5 .pxl-item--image a {
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
}

.pxl-image-carousel5 .pxl-swiper-container {
  border: 1px solid #d9d9d9;
}

.pxl-image-carousel5 .pxl-swiper-slide {
  padding: 32px 32px 0 32px;
}

.pxl-image-carousel5 .pxl-swiper-slide + .pxl-swiper-slide {
  border-width: 0 0 0 1px;
  border-style: solid;
  border-color: #d9d9d9;
}

.pxl-image-carousel5 .pxl-item-text {
  color: var(--heading-color);
  text-align: center;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -0.18px;
  padding: 23px 0 35px;
}

.pxl-image-carousel5 .pxl-swiper-pagination-bullets {
  margin: 40px 0 0 0;
  display: flex;
  justify-content: center;
}

.pxl-image-carousel5 .pxl-swiper-pagination-bullets .pxl-swiper-pagination-bullet.swiper-pagination-bullet-active::before, .pxl-image-carousel5 .pxl-swiper-pagination-bullets .pxl-swiper-pagination-bullet.swiper-pagination-bullet-active::after {
  display: none !important;
}

.pxl-image-carousel5 .pxl-swiper-pagination-bullets .pxl-swiper-pagination-bullet.swiper-pagination-bullet-active span {
  background-color: var(--primary-color);
}

.pxl-image-carousel5 .pxl-swiper-pagination-bullets .pxl-swiper-pagination-bullet::before, .pxl-image-carousel5 .pxl-swiper-pagination-bullets .pxl-swiper-pagination-bullet::after {
  display: none !important;
}

.pxl-image-carousel5 .pxl-swiper-pagination-bullets .pxl-swiper-pagination-bullet span {
  width: 8px;
  height: 8px;
  background-color: rgba(34, 34, 34, 0.24);
}

.pxl-btn-video .pxl-video--inner {
  position: relative;
}

.pxl-btn-video.style1 {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: inline-flex;
  background-color: #fff;
  justify-content: center;
  align-items: center;
  font-size: 20px;
}

.pxl-btn-video.style1:before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.63);
  border-radius: 50%;
  animation: pxl_pulse_border 1500ms ease-out infinite;
  -webkit-animation: pxl_pulse_border 1500ms ease-out infinite;
  z-index: -2;
  border-radius: inherit;
}

.pxl-btn-video.style2 {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: inline-flex;
  background-color: var(--gradient-color-from);
  background-image: -webkit-gradient(linear, right top, left top, from(var(--gradient-color-from)), to(var(--gradient-color-to)));
  background-image: -webkit-linear-gradient(to right, var(--gradient-color-from), var(--gradient-color-to));
  background-image: -moz-linear-gradient(to right, var(--gradient-color-from), var(--gradient-color-to));
  background-image: -ms-linear-gradient(to right, var(--gradient-color-from), var(--gradient-color-to));
  background-image: -o-linear-gradient(to right, var(--gradient-color-from), var(--gradient-color-to));
  background-image: linear-gradient(to right, var(--gradient-color-from), var(--gradient-color-to));
  filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='var(--gradient-color-from)', endColorStr='var(--gradient-color-to)', gradientType='1');
  justify-content: center;
  align-items: center;
  font-size: 20px;
  color: #fff;
}

.pxl-btn-video.style2:before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.63);
  border-radius: 50%;
  animation: pxl_pulse_border 1500ms ease-out infinite;
  -webkit-animation: pxl_pulse_border 1500ms ease-out infinite;
  z-index: -2;
  border-radius: inherit;
}

.pxl-btn-video.style2:hover, .pxl-btn-video.style2:focus {
  color: #fff;
}

.pxl-btn-video.style3 {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: inline-flex;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  justify-content: center;
  align-items: center;
  font-size: 30px;
  color: #fff;
  cursor: pointer;
  top: 0;
  left: 0;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.pxl-btn-video.style3 i {
  font-size: 22px;
}

.pxl-btn-video.style3:hover, .pxl-btn-video.style3:focus {
  color: #fff;
}

.pxl-btn-video.style6 {
  width: 55.2px;
  height: 55.2px;
  border-radius: 50%;
  display: inline-flex;
  background-color: #fff;
  justify-content: center;
  align-items: center;
  font-size: 10px;
}

.pxl-btn-video.style6 i {
  background-color: #ff4c13;
  background-image: -webkit-gradient(linear, right top, left top, from(#ff4c13), to(#fe7524));
  background-image: -webkit-linear-gradient(to right, #ff4c13, #fe7524);
  background-image: -moz-linear-gradient(to right, #ff4c13, #fe7524);
  background-image: -ms-linear-gradient(to right, #ff4c13, #fe7524);
  background-image: -o-linear-gradient(to right, #ff4c13, #fe7524);
  background-image: linear-gradient(to right, #ff4c13, #fe7524);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#ff4c13', endColorStr='#fe7524', gradientType='1');
  background-clip: text;
  -o-background-clip: text;
  -ms-background-clip: text;
  -moz-background-clip: text;
  -webkit-background-clip: text;
  text-fill-color: transparent;
  -o-text-fill-color: transparent;
  -ms-text-fill-color: transparent;
  -moz-text-fill-color: transparent;
  -webkit-text-fill-color: transparent;
  background-size: 100% 100%;
}

.pxl-btn-video.style6:before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.63);
  border-radius: 50%;
  animation: pxl_pulse_border 1500ms ease-out infinite;
  -webkit-animation: pxl_pulse_border 1500ms ease-out infinite;
  z-index: -2;
  border-radius: inherit;
}

.pxl-btn-video.style6:hover::before {
  animation-play-state: paused;
}

.pxl-video-style4 .btn-video-wrap {
  line-height: 0.8;
}

body.rtl .pxl-button-video1 .slider-video-icon i {
  margin-left: 0;
  margin-right: 6px;
}

.pxl-solution-carousel1 .pxl-carousel-inner {
  overflow: unset;
}

.pxl-solution-carousel1.style-2 .pxl-button {
  opacity: 1;
  min-width: 44.3px;
  min-height: 44.3px;
}

.pxl-solution-carousel1.style-2 .pxl-button a i {
  font-size: 22px;
}

.pxl-solution-carousel1 .pxl-item:hover .pxl-button {
  opacity: 1;
  min-width: 44.3px;
  min-height: 44.3px;
}

.pxl-solution-carousel1 .pxl-item:hover .pxl-button a i {
  font-size: 22px;
}

.pxl-solution-carousel1 .pxl-button {
  opacity: 0;
  transition: all 0.3s;
  min-width: 0;
  min-height: 0;
  border-radius: 4px;
  border: 2px solid #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--primary-color);
  position: absolute;
  right: 30px;
}

.pxl-solution-carousel1 .pxl-button a {
  display: flex;
}

.pxl-solution-carousel1 .pxl-button a i {
  transform: rotate(-45deg);
  color: #fff;
  font-size: 0;
}

.pxl-banner-edit2 .pxl-button-link {
  display: inline-flex;
  align-items: center;
  padding: 0 25px;
  gap: 13px;
  border-radius: 8px;
  background: var(--primary-color);
  justify-content: center;
}

.pxl-client-review1.style-2 .pxl-item--star {
  display: none;
}

.pxl-client-review1.style-2 .pxl-item--title {
  font-size: 16px;
  color: #a234fd;
  font-weight: bold;
  text-decoration: underline;
}

.pxl-client-review1.style-2 cite {
  display: block;
  font-style: normal;
}

.pxl-client-review1.style-3 .pxl-item--star {
  display: none;
}

.pxl-client-review1.style-3 .pxl-item--inner .pxl-item--meta .pxl-item--title {
  text-decoration: none;
  font-size: 16px;
  color: var(--primary-color);
  font-weight: bold;
  line-height: 1.3;
}

.pxl-client-review1.style-3 .pxl-item--inner .pxl-item--images .pxl-item--img {
  width: 66px;
  min-width: 66px;
  height: 66px;
  margin-left: -30px;
}

.pxl-client-review1.style-3 cite {
  display: block;
  font-style: normal;
  color: #0e0d0d;
  line-height: 1.3;
}

.pxl-client-review1 .pxl-item--inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.pxl-client-review1 .pxl-item--inner .pxl-item--images {
  display: flex;
  flex-wrap: nowrap;
  padding-left: 13px;
  margin-right: 20px;
}

.pxl-client-review1 .pxl-item--inner .pxl-item--images .pxl-item--img {
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 3px solid #fff;
  overflow: hidden;
  margin-left: -16px;
  -webkit-transition: all 220ms linear 0ms;
  -khtml-transition: all 220ms linear 0ms;
  -moz-transition: all 220ms linear 0ms;
  -ms-transition: all 220ms linear 0ms;
  -o-transition: all 220ms linear 0ms;
  transition: all 220ms linear 0ms;
}

.pxl-client-review1 .pxl-item--inner .pxl-item--images .pxl-item--img img {
  object-fit: cover;
  width: 100%;
}

.pxl-client-review1 .pxl-item--inner .pxl-item--meta {
  line-height: 42px;
  display: flex;
  flex-direction: column;
  margin-top: 5px;
}

.pxl-client-review1 .pxl-item--inner .pxl-item--meta .pxl-item--star i {
  color: #efcc4c;
}

.pxl-client-review1 .pxl-item--inner .pxl-item--meta .pxl-item--title {
  font-size: 16px;
  line-height: 1.875;
  font-weight: 500;
}

.pxl--user-count-widget1.style-1 .pxl-button {
  display: inline-flex;
  width: 77px;
  height: 77px;
  position: absolute;
  border-radius: 50%;
  background: #fff;
  top: -9px;
  right: -9px;
}

.pxl--user-count-widget1.style-1 .pxl-button:hover .pxl-item--link i {
  transform: rotate(0deg);
}

.pxl--user-count-widget1.style-1 .pxl-button:hover .pxl-item--link::before {
  width: calc(100% + 8px);
  height: calc(100% + 8px);
}

.pxl--user-count-widget1.style-1 .pxl-button .pxl-item--link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  border-radius: inherit;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.pxl--user-count-widget1.style-1 .pxl-button .pxl-item--link::before {
  position: absolute;
  content: '';
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  background-image: -webkit-linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  background-image: -moz-linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  background-image: -ms-linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  background-image: -o-linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  background-image: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='var(--primary-color)', endColorStr='var(--secondary-color)');
  border-radius: inherit;
  z-index: -2;
  transition: all 0.3s;
}

.pxl--user-count-widget1.style-1 .pxl-button .pxl-item--link::after {
  position: absolute;
  content: '';
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background-color: #fff;
  border-radius: inherit;
  z-index: -1;
}

.pxl--user-count-widget1.style-1 .pxl-button .pxl-item--link i {
  transform: rotate(-45deg);
  color: #000;
  transition: all 0.3s;
}

.pxl--user-count-widget1.style-2 .pxl-button .pxl-item--link .pxl-item--icon {
  display: flex;
  justify-content: end;
  margin-top: 38px;
}

.pxl--user-count-widget1.style-2 .pxl-button .pxl-item--link i {
  transform: rotate(-45deg);
  color: #000;
  transition: all 0.3s;
}

.pxl--user-count-widget1.style-2 .pxl-button .pxl-item--link svg {
  transition: all 0.3s;
}

.pxl--user-count-widget1.style-2 .pxl-button .pxl-item--link:hover svg {
  transform: rotate(45deg);
}

.pxl-image-split1 .pxl-heading {
  text-align: center;
  padding: 0 100px 43px 100px;
}

.pxl-image-split1 .pxl-heading .heading {
  font-size: 54.31px;
  color: #fff;
  font-weight: bold;
  line-height: 1.016;
}

.pxl-image-split1 .pxl-heading .pxl-item--subtext {
  position: relative;
  padding: 9px 46px 8px 50px;
  margin-bottom: 32px;
  display: inline-flex;
}

.pxl-image-split1 .pxl-heading .pxl-item--subtext::before {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  background-image: url(../img/sparkle-4.png);
  background-repeat: no-repeat;
  background-position: center;
  background-repeat: no-repeat;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.pxl-image-split1 .pxl-heading .pxl-item--subtext::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  background-image: url(../img/sparkle-4.png);
  background-repeat: no-repeat;
  background-position: center;
  background-repeat: no-repeat;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
}

.pxl-image-split1 .pxl-heading .pxl-item--subtext .sub-title::before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  padding: 3px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 30px;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: add, add;
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  background: #d7d7d7;
  background-image: -webkit-linear-gradient(180deg, #a49bad, #261338);
  background-image: -moz-linear-gradient(180deg, #a49bad, #261338);
  background-image: -ms-linear-gradient(180deg, #a49bad, #261338);
  background-image: -o-linear-gradient(180deg, #a49bad, #261338);
  background-image: linear-gradient(180deg, #a49bad, #261338);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#a49bad', endColorStr='#261338');
}

.pxl-process1 .pxl-heading {
  margin-bottom: 44px;
}

.pxl-process1 .pxl-heading .heading {
  font-size: 54.31px;
  color: #fff;
  font-weight: bold;
  line-height: 1.016;
}

.pxl-process1 .pxl-heading .pxl-item--subtext {
  position: relative;
  margin-bottom: 22px;
  display: inline-flex;
  padding: 5px 46px 5px 50px;
}

.pxl-process1 .pxl-heading .pxl-item--subtext::before {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  background-image: url(../img/sparkle-4.png);
  background-repeat: no-repeat;
  background-position: center;
  background-repeat: no-repeat;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.pxl-process1 .pxl-heading .pxl-item--subtext::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  background-image: url(../img/sparkle-4.png);
  background-repeat: no-repeat;
  background-position: center;
  background-repeat: no-repeat;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
}

.pxl-process1 .pxl-heading .pxl-item--subtext .sub-title::before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  padding: 3px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 30px;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: add, add;
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  background: #d7d7d7;
  background-image: -webkit-linear-gradient(180deg, #a49bad, #261338);
  background-image: -moz-linear-gradient(180deg, #a49bad, #261338);
  background-image: -ms-linear-gradient(180deg, #a49bad, #261338);
  background-image: -o-linear-gradient(180deg, #a49bad, #261338);
  background-image: linear-gradient(180deg, #a49bad, #261338);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#a49bad', endColorStr='#261338');
}

.pxl-image-marquee-vertical1 .pxl-swiper-slide + .pxl-swiper-slide {
  margin-top: 23px;
}

.pxl-image-marquee-vertical1 .pxl-carousel-inner {
  max-height: 320px;
}

.pxl-image-2d .pxl-carousel-inner {
  padding-top: 100px;
  margin-top: -100px;
}

.pxl-image-2d .container {
  box-sizing: border-box;
  position: relative;
  height: auto;
  background-color: #aac9d0;
  margin: 0;
  overflow: hidden;
  padding: 50px;
  max-height: 700px;
}

.pxl-image-2d .wrapper {
  position: relative;
  width: 100%;
  height: 500px;
  margin: 0 auto;
  padding: 0;
  padding-top: 200px;
}

.pxl-image-2d #path-svg {
  position: relative;
  width: 100%;
  height: auto;
  z-index: 1;
}

.pxl-image-2d .content {
  position: relative;
  top: 0;
  /*width: 100%;*/
  /*height: 0;*/
  left: 0;
  /*padding-bottom: 84%;*/
  overflow: visible;
  z-index: 2;
  height: 2000px;
  margin-bottom: -1245px;
}

.pxl-image-2d .content::before {
  float: left;
  padding-top: 84%;
  content: "";
}

.pxl-image-2d .content::after {
  display: block;
  content: "";
  clear: both;
}

.pxl-image-2d .track {
  border: 1px solid #708a91;
  border-radius: 50%;
  position: absolute;
  width: 100%;
  height: 100%;
  /*.pxl-item--image {
        position: relative;

        a {
            position: absolute;
            inset: 0;
        }
    }*/
}

.pxl-image-2d .item {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 40px;
  transition: width 1s, height 1s;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 356px;
  height: 396px;
  padding: 0;
  overflow: hidden;
}

.pxl-circle-svg svg {
  overflow: unset;
}

.pxl-circle-svg svg .dot {
  box-shadow: 0 4px 30px rgba(0, 255, 255, 0.60);
}

.pxl-post-carousel1 .pxl-swiper-slide {
  transition: all 0.3s;
}

.pxl-post-carousel1 .pxl-swiper-slide.swiper-slide-active {
  margin: 0 -15px 0 0;
}

.pxl-post-carousel1 .pxl-swiper-slide.swiper-slide-next {
  margin: 0 0 0 -15px;
}

.pxl-post-carousel1 .pxl-swiper-slide:nth-child(odd) .pxl-post--featured {
  order: 2;
  margin-bottom: 79px;
}

.pxl-post-carousel1 .pxl-swiper-slide:nth-child(odd) .pxl-content {
  order: 1;
  margin-top: 39px;
  margin-bottom: 63px;
  padding: 0 0 0 28px;
}

.pxl-post-carousel1 .pxl-swiper-slide:nth-child(even) .pxl-content {
  margin-top: 61px;
  padding: 0 28px;
}

.pxl-post-carousel2 .pxl-swiper-slide {
  transition: all 0.3s;
}

.pxl-post-carousel2 .pxl-swiper-slide.swiper-slide-active {
  margin: 0 -15px 0 0;
}

.pxl-post-carousel2 .pxl-swiper-slide.swiper-slide-next {
  margin: 0 0 0 -15px;
}

.pxl-service-carousel1 .pxl-swiper-slide:nth-child(2) .pxl-post--featured {
  right: -233px;
  bottom: -50px;
}

.pxl-service-carousel1 .pxl-swiper-slide:last-child .pxl-post--featured {
  right: -170px;
  bottom: -103px;
}

.pxl-service-carousel1 .pxl-carousel-inner {
  overflow: initial;
}

.pxl-service-grid-layout1 .pxl-button-holder {
  text-align: center;
  margin-top: -36px;
  width: 327px;
}

.pxl-portfolio-style2 .pxl-post--holder .pxl-button {
  max-width: 80px;
  height: 80px;
  border: 1px solid #bababa;
  background: #f8f8f8;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
}

.pxl-portfolio-style2 .pxl-post--holder .pxl-button .pxl--btn-icon {
  display: inline-flex;
  transition: all 0.3s;
}

.pxl-portfolio-style3 .pxl-post--holder .pxl-button {
  width: 52px;
  height: 52px;
  display: inline-flex;
  border-radius: 52px;
  background: #000;
  justify-content: center;
  align-items: center;
  color: #fff;
}

.pxl-post-carousel1 .pxl-swiper-slide {
  transition: all 0.3s;
}

.pxl-post-carousel1 .pxl-swiper-slide.swiper-slide-active {
  margin: 0 -15px 0 0;
}

.pxl-post-carousel1 .pxl-swiper-slide.swiper-slide-next {
  margin: 0 0 0 -15px;
}

.pxl-post-carousel1 .pxl-swiper-slide:nth-child(odd) .pxl-post--featured {
  order: 2;
  margin-bottom: 79px;
}

.pxl-post-carousel1 .pxl-swiper-slide:nth-child(odd) .pxl-content {
  order: 1;
  margin-top: 39px;
  margin-bottom: 63px;
  padding: 0 0 0 28px;
}

.pxl-post-carousel1 .pxl-swiper-slide:nth-child(even) .pxl-content {
  margin-top: 61px;
  padding: 0 28px;
}

.pxl-post-carousel2 .pxl-swiper-slide {
  transition: all 0.3s;
}

.pxl-post-carousel2 .pxl-swiper-slide.swiper-slide-active {
  margin: 0 -15px 0 0;
}

.pxl-post-carousel2 .pxl-swiper-slide.swiper-slide-next {
  margin: 0 0 0 -15px;
}

.pxl-nav-menu.fr-style-ha .pxl-menu-primary > li > a .pxl-menu-item-text .flaticon-up-right-arrow {
  font-size: 9px;
  font-weight: 400;
  color: var(--gradient-color-to);
  margin-left: 12px;
  -webkit-transition: all 300ms linear 0ms;
  -khtml-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  -o-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms;
  opacity: 0;
  transform: translateX(-10px);
}

.pxl-nav-menu.fr-style-ha .pxl-menu-primary > li > a.pxl-onepage-active .pxl-menu-item-text .flaticon-up-right-arrow, .pxl-nav-menu.fr-style-ha .pxl-menu-primary > li:hover > a .pxl-menu-item-text .flaticon-up-right-arrow, .pxl-nav-menu.fr-style-ha .pxl-menu-primary > li.current_page_item > a .pxl-menu-item-text .flaticon-up-right-arrow, .pxl-nav-menu.fr-style-ha .pxl-menu-primary > li.current-menu-item > a .pxl-menu-item-text .flaticon-up-right-arrow, .pxl-nav-menu.fr-style-ha .pxl-menu-primary > li.current_page_ancestor > a .pxl-menu-item-text .flaticon-up-right-arrow, .pxl-nav-menu.fr-style-ha .pxl-menu-primary > li.current-menu-ancestor > a .pxl-menu-item-text .flaticon-up-right-arrow {
  opacity: 1;
  transform: translateX(0px);
}

.pxl-nav-menu.fr-style-ha .pxl-menu-primary > li .sub-menu .flaticon-up-right-arrow {
  display: none;
}

.btn.btn-text-parallax .flaticon-up-right-arrow:before {
  -webkit-transition: all 300ms linear 0ms;
  -khtml-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  -o-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms;
}

.btn.btn-text-parallax:hover .flaticon-up-right-arrow:before {
  transform: rotate(45deg);
}

.pxl-contact-form1 .btn.btn-gradient-horizontal:hover i.flaticon-up-right-arrow {
  transform: rotate(45deg);
}

.pxl-team-carousel1 .pxl-swiper-slide {
  padding: 0 10px 15px 10px;
}

.pxl-team-carousel2 .pxl-swiper-slide {
  padding: 0 20px;
}

.pxl-testimonial-carousel1 .pxl-swiper-slide {
  opacity: 0.3;
}

.pxl-testimonial-carousel1 .pxl-swiper-slide.swiper-slide-next {
  opacity: 1;
}

.pxl-testimonial-carousel1 .pxl-swiper-slide.swiper-slide-next .pxl-item--avatar::before {
  opacity: 1;
}

.pxl-testimonial-carousel1 .pxl-swiper-slide.swiper-slide-next .pxl-item--avatar::after {
  opacity: 1;
}

.pxl-testimonial-carousel2 .pxl-swiper-slide {
  transition: width 1s ease;
  padding: 0 10px;
}

.pxl-testimonial-carousel5 .pxl-carousel-inner {
  padding-top: 20px;
  cursor: pointer;
}

.pxl-testimonial-carousel5 .pxl-swiper-thumbs .pxl-swiper-slide {
  opacity: 0;
  display: flex;
  align-items: center;
}

.pxl-testimonial-carousel5 .pxl-swiper-thumbs .pxl-swiper-slide.swiper-slide-visible, .pxl-testimonial-carousel5 .pxl-swiper-thumbs .pxl-swiper-slide.swiper-slide-prev, .pxl-testimonial-carousel5 .pxl-swiper-thumbs .pxl-swiper-slide.swiper-slide-next {
  opacity: 1;
}

.pxl-testimonial-carousel5 .pxl-swiper-thumbs .pxl-swiper-slide.swiper-slide-prev {
  transform: translateX(135px);
  transition: all 0.4s;
}

.pxl-testimonial-carousel5 .pxl-swiper-thumbs .pxl-swiper-slide.swiper-slide-next {
  transform: translateX(-135px);
  transition: all 0.4s;
}

.pxl-heading--text-slider {
  padding: 64px !important;
}

.pxl-heading--text-slider::before {
  position: absolute;
  content: '';
  width: 864.31px;
  height: 668.849px;
  background-image: url(../img/group-box-text-slide.webp);
  bottom: 0;
  right: 0;
  background-repeat: no-repeat;
}

.pxl-heading-liner .pxl-item--title {
  opacity: 0.36;
  background: linear-gradient(180deg, #f8b6bc 0%, #771a99 46.5%, #bd6ffd 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pxl-ft-heading .pxl-heading--text {
  white-space: nowrap;
}

.pxl-contact-form4 .pxl-heading {
  font-size: 32px;
  /* 100% */
  line-height: 1;
  letter-spacing: -1px;
  padding: 47px 52px 0px 52px;
}

.pxl-contact-form5 .pxl-heading {
  font-size: 32px;
  font-weight: 700;
  /* 115.625% */
  line-height: 1.15;
  padding: 30px 0 0 37px;
}



/* ==========================================================================
   KREATURK HERO OVERFLOW, LAYOUT & TYPOGRAPHY OVERRIDES (CLEAN REWRITE)
   ========================================================================== */

/* Set font-family globally for the hero elements to DM Sans */
.hero-section, 
.hero-section * {
    font-family: 'DM Sans', sans-serif !important;
}

/* Hero Section background grid */
.hero-section {
    overflow: visible !important;
    position: relative;
    max-width: 100vw;
    margin: 0 auto;
    padding: 65px 0 0px !important;
    background-color: #050811 !important;
    box-sizing: border-box;
    z-index: 1;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../images/bg-ss1-h1-.webp') !important;
    background-position: top center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    opacity: 0.08 !important;
    pointer-events: none;
    z-index: -2;
}

/* ---- Center main hero title ---- */
.hero-header {
    width: 100% !important;
    text-align: center !important;
    margin: 0 auto 10px !important;
    z-index: 20 !important;
    position: relative;
}

.hero-title {
    color: #ffffff !important;
    -webkit-text-stroke-color: #ffffff !important;
    font-size: 72px !important;
    font-weight: 700 !important;
    line-height: 1.0em !important;
    letter-spacing: -1.9px !important;
    margin-bottom: 0px !important;
    display: block;
}

/* ---- Center and style Services button ---- */
.hero-cta-wrap {
    text-align: center !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    margin: 25px auto 40px !important;
    width: 100% !important;
    z-index: 25 !important;
    position: relative;
}

.hero-cta-btn {
    background: #8b5cf6 !important;
    border: none !important;
    color: #ffffff !important;
    padding: 14px 28px !important;
    border-radius: 30px !important;
    font-weight: 600 !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4) !important;
}

.hero-cta-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.6) !important;
}

.hero-cta-btn .btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

/* ---- Carousel Parent Wrapper Centering & Z-Index ---- */
.hero-carousel-wrapper {
    width: 100% !important;
    max-width: 100% !important;
    margin: -100px auto 0 !important;
    display: flex !important;
    justify-content: center !important;
    position: relative !important;
    z-index: 2 !important; /* Behind the dome/curve section */
    overflow: visible !important;
}

/* Circle SVG overlay styling */
.hero-carousel .carousel-curve-svg {
    pointer-events: none;
    opacity: 0.45;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    width: 1000px;
    height: auto;
}

.hero-carousel .carousel-curve-svg svg {
    width: 100%;
    height: auto;
}

/* ---- 2D Orbit Carousel Layout ---- */
.hero-carousel {
    overflow: visible !important;
    position: relative;
    width: 100% !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    height: 520px !important;
    z-index: 2 !important;
}

.hero-carousel .carousel-track {
    overflow: visible !important;
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-carousel .carousel-slide {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 356px;
    height: 396px;
    margin-left: -178px;
    margin-top: -198px;
    will-change: transform, opacity;
    cursor: pointer;
    transition: box-shadow 0.4s ease;
}

.hero-carousel .card-inner {
    width: 100%;
    height: 100%;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.5);
    transition: box-shadow 0.4s ease, transform 0.3s ease;
}

.hero-carousel .card-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 24px;
}

.hero-carousel .carousel-slide.active .card-inner {
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(139, 92, 246, 0.15);
}

.hero-carousel .carousel-slide:hover .card-inner {
    transform: scale(1.03);
}

/* ---- Inner column curved divider section (dark mode curve) ---- */
.dome-section {
    position: relative;
    background: var(--kt-bg-color) !important;
    z-index: 12 !important; /* Stays in front of the marquee cards */
    margin-top: -260px !important; /* Controls the overlap */
    padding-top: 140px !important;
    padding-bottom: 75px !important;
}

.dome-section::before {
    display: none !important;
}

.dome-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.dome-content-grid {
    display: grid !important;
    grid-template-columns: 1fr auto 1fr !important;
    grid-template-rows: auto auto auto !important;
    gap: 30px 40px !important;
    align-items: center !important;
    width: 100% !important;
}

.item-biz {
    grid-column: 1 !important;
    grid-row: 1 !important;
    justify-self: start !important;
}
.item-yz {
    grid-column: 1 !important;
    grid-row: 2 !important;
    justify-self: start !important;
}
.item-reviews {
    grid-column: 1 !important;
    grid-row: 3 !important;
    justify-self: start !important;
}

.item-video {
    grid-column: 2 !important;
    grid-row: 1 / span 2 !important;
    justify-self: center !important;
}
.item-studyo {
    grid-column: 2 !important;
    grid-row: 3 !important;
    justify-self: center !important;
}

.item-kreatif {
    grid-column: 3 !important;
    grid-row: 1 !important;
    justify-self: end !important;
}
.item-btn {
    grid-column: 3 !important;
    grid-row: 2 !important;
    justify-self: end !important;
}
.item-desc {
    grid-column: 3 !important;
    grid-row: 3 !important;
    justify-self: end !important;
}

/* ---- Inner section headings & typography ---- */
.dome-text {
    font-size: 80px !important;
    font-weight: 800 !important;
    line-height: 1.125 !important;
    letter-spacing: -2.25px !important;
    color: #ffffff !important;
    margin: 0 !important;
    white-space: nowrap;
}

.dome-text.font-accent {
    color: #8b5cf6 !important;
}

/* ---- Video Player Styling ---- */
.dome-video-wrap {
    position: relative;
    display: inline-block;
    margin: 0;
}

.dome-video-wrap img {
    border-radius: 12px;
    display: block;
    width: 125px;
    height: 81px;
    object-fit: cover;
}

.dome-video-play-btn-wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.dome-video-play-btn {
    width: 44px;
    height: 44px;
    background: #8b5cf6 !important;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: #ffffff !important;
    font-size: 18px;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
    text-decoration: none;
    transition: all 0.3s ease;
}

.dome-video-play-btn:hover {
    background: #7c3aed !important;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.6);
}

.dome-desc-wrap {
    max-width: 450px;
}

.dome-description {
    font-size: 18px !important;
    color: rgba(255, 255, 255, 0.7) !important;
    line-height: 1.556 !important;
    font-weight: 500 !important;
    margin: 0 !important;
    text-align: left;
}

/* ---- Client Review Avatar Styling ---- */
.dome-reviews {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-avatars {
    display: flex;
    flex-direction: row-reverse;
}

.review-avatars img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid #050811;
    margin-right: -12px;
    object-fit: cover;
}

.review-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.review-meta .stars {
    display: flex;
    gap: 2px;
}

.review-meta .stars i {
    color: #fbbf24;
    font-size: 12px;
}

.review-count {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8) !important;
    font-weight: 500;
    white-space: nowrap;
}

/* ---- Dome Register Button ---- */
.dome-cta-btn-wrap {
    display: flex;
    justify-content: flex-end;
}

.dome-register-btn {
    background: #8b5cf6 !important;
    border: none !important;
    color: #ffffff !important;
    padding: 14px 28px !important;
    border-radius: 30px !important;
    font-weight: 600 !important;
    font-size: 15px !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    box-shadow: 0px 4px 15px rgba(139, 92, 246, 0.3) !important;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.dome-register-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.5) !important;
}

.dome-register-btn .btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ---- ENTRANCE ANIMATIONS ---- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.animate-fade-in-up {
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.animate-fade-in {
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
}

/* ---- RESPONSIVE MEDIA QUERIES FOR PADDING & HEIGHT ---- */
@media (max-width: 1024px) {
    .hero-section {
        padding: 50px 0 0px !important;
    }
    .hero-title {
        font-size: 54px !important;
    }
    .hero-cta-wrap {
        margin: 15px auto 25px !important;
    }
    .hero-carousel-wrapper {
        margin: -70px auto 0 !important;
    }
    .hero-carousel {
        height: 420px !important;
    }
    .hero-carousel .carousel-curve-svg {
        width: 700px !important;
    }
    .dome-section {
        margin-top: -170px !important;
        padding-top: 100px !important;
    }
    .dome-text {
        font-size: 60px !important;
        letter-spacing: -1.5px !important;
    }
    .dome-description {
        font-size: 16px !important;
    }
    .dome-content-grid {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 20px !important;
        width: 100% !important;
        height: auto !important;
    }
    .item-biz { order: 1 !important; justify-self: center !important; text-align: center !important; }
    .item-kreatif { order: 2 !important; justify-self: center !important; text-align: center !important; }
    .item-yz { order: 3 !important; justify-self: center !important; text-align: center !important; }
    .item-video { order: 4 !important; justify-self: center !important; display: block !important; margin: 10px 0 !important; }
    .item-studyo { order: 5 !important; justify-self: center !important; text-align: center !important; }
    .item-btn { order: 6 !important; justify-self: center !important; display: flex !important; justify-content: center !important; margin: 10px 0 !important; }
    .item-reviews { order: 7 !important; justify-self: center !important; display: flex !important; justify-content: center !important; margin: 10px 0 !important; }
    .item-desc { order: 8 !important; justify-self: center !important; text-align: center !important; }
}

@media (max-width: 767px) {
    .hero-section {
        padding: 30px 0 0px !important;
    }
    .hero-title {
        font-size: 38px !important;
        letter-spacing: -1px !important;
    }
    .hero-cta-wrap {
        margin: 15px auto 15px !important;
    }
    .hero-carousel-wrapper {
        margin: -50px auto 0 !important;
    }
    .hero-carousel {
        height: 320px !important;
    }
    .hero-carousel .carousel-curve-svg {
        width: 440px !important;
    }
    .dome-section {
        margin-top: -115px !important;
        padding-top: 80px !important;
    }
    .dome-text {
        font-size: 36px !important;
        letter-spacing: -1px !important;
    }
    .dome-video-wrap {
        margin: 5px 0 !important;
    }
    .dome-desc-wrap {
        margin-left: 0 !important;
        max-width: 100% !important;
    }
    .dome-description {
        text-align: center !important;
        font-size: 14px !important;
        padding: 0 10px !important;
    }
    .dome-reviews {
        margin-right: 0 !important;
        margin-bottom: 5px !important;
        flex-direction: column !important;
        gap: 8px !important;
    }
    .dome-cta-btn-wrap {
        margin-left: 0 !important;
        margin-top: 5px !important;
        justify-content: center !important;
    }
    .dome-register-btn {
        padding: 10px 20px !important;
        font-size: 14px !important;
    }
}

@media (max-width: 576px) {
    .hero-carousel .carousel-slide {
        width: 280px !important;
        height: 312px !important;
        margin-left: -140px !important;
        margin-top: -156px !important;
    }
}

/* ==========================================================================
   ❓ PREMIUM TURKISH FAQ (ACCORDION) STYLES
   ========================================================================== */

.faq-section {
    padding: 100px 0;
    background: var(--kt-footer-bg) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    position: relative;
    z-index: 5;
    transition: background 0.3s ease;
}

body.light-theme .faq-section {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.faq-title-wrap {
    margin-bottom: 4rem;
}

.faq-section-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.2rem, 5vw, 3rem);
    font-weight: 900;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #ffffff 20%, var(--kt-turquoise) 70%, var(--kt-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.faq-emoji {
    font-family: "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji", sans-serif;
    -webkit-text-fill-color: initial; /* Prevent gradient text mask on the emoji itself */
    display: inline-block;
    margin-right: 6px;
}

body.light-theme .faq-section-title {
    background: linear-gradient(135deg, #0f172a 10%, #3b82f6 70%, #00f2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.faq-accent-line {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--kt-blue), var(--kt-purple));
    margin: 1.25rem auto 0 auto;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 118, 255, 0.25);
}

.faq-accordion {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    padding: 0 1rem;
}

.faq-item {
    background: var(--kt-card-bg);
    border: 1px solid var(--kt-card-border);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

body.light-theme .faq-item {
    background: #ffffff;
    border-color: rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.faq-item:hover:not(.active) {
    transform: translateY(-1px);
    border-color: var(--kt-card-hover-border);
    background: var(--kt-glass-hover);
}

body.light-theme .faq-item:hover:not(.active) {
    background: #f8fafc;
    border-color: rgba(0, 0, 0, 0.1);
}

.faq-item.active {
    background: linear-gradient(135deg, var(--kt-blue) 0%, var(--kt-purple) 100%) !important;
    border-color: transparent !important;
    box-shadow: 0 20px 40px rgba(0, 118, 255, 0.2);
    transform: translateY(-1px);
}

.faq-header {
    padding: 1.75rem 2.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    user-select: none;
}

.faq-question {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
    color: var(--kt-text-color);
    transition: color 0.3s ease;
    line-height: 1.4;
}

body.light-theme .faq-question {
    color: #0f172a;
}

.faq-item.active .faq-question {
    color: #ffffff !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.faq-toggle-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid var(--kt-card-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--kt-text-color);
    background: rgba(255, 255, 255, 0.02);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    flex-shrink: 0;
    font-size: 1.1rem;
}

body.light-theme .faq-toggle-btn {
    border-color: rgba(0, 0, 0, 0.08);
    color: #334155;
    background: #f8fafc;
}

.faq-item.active .faq-toggle-btn {
    border-color: rgba(255, 255, 255, 0.35) !important;
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.15) !important;
    transform: rotate(45deg);
}

.faq-body-wrapper {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-body {
    padding: 0 2.25rem 2.25rem 2.25rem;
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.faq-thumb {
    width: 160px;
    height: 100px;
    flex-shrink: 0;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

body.light-theme .faq-thumb {
    border-color: rgba(0, 0, 0, 0.05);
}

.faq-item.active .faq-thumb {
    border-color: rgba(255, 255, 255, 0.2);
}

.faq-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    -webkit-user-drag: none;
    transition: transform 0.5s ease;
}

.faq-item.active .faq-thumb img {
    transform: scale(1.04);
}

.faq-content {
    flex-grow: 1;
}

.faq-answer {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0;
    color: var(--kt-muted);
    text-align: left;
}

body.light-theme .faq-answer {
    color: #475569;
}

.faq-item.active .faq-answer {
    color: rgba(255, 255, 255, 0.95) !important;
}

/* Responsive Overrides for FAQ Accordion */
@media (max-width: 767px) {
    .faq-section {
        padding: 60px 0;
    }
    .faq-title-wrap {
        margin-bottom: 2.5rem;
    }
    .faq-header {
        padding: 1.25rem 1.5rem;
        gap: 1rem;
    }
    .faq-question {
        font-size: 1.1rem;
    }
    .faq-toggle-btn {
        width: 36px;
        height: 36px;
        font-size: 0.95rem;
    }
    .faq-body {
        flex-direction: column;
        gap: 1.25rem;
        padding: 0 1.5rem 1.5rem 1.5rem;
    }
    .faq-thumb {
        width: 100%;
        height: 160px;
    }
    .faq-answer {
        font-size: 0.95rem;
        line-height: 1.6;
        text-align: left;
    }
}

/* ==========================================================================
   ✦ INFINITE SCROLLING MARQUEE RIBBON (KEMER)
   ========================================================================== */

.kemer-section {
    width: 100%;
    overflow: hidden;
    background: linear-gradient(90deg, #1e40af 0%, #6d28d9 50%, #7c3aed 100%);
    padding: 1.25rem 0;
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.kemer-track {
    display: flex;
    width: max-content;
    animation: kemer-scroll 28s linear infinite;
}

.kemer-group {
    display: flex;
    align-items: center;
    gap: 3.5rem;
    padding-right: 3.5rem;
    white-space: nowrap;
}

.kemer-group span {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.kemer-sep {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.35rem;
    line-height: 1;
}

@keyframes kemer-scroll {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

/* Responsive adjustment for the ribbon font size on mobile */
@media (max-width: 767px) {
    .kemer-section {
        padding: 0.95rem 0;
    }
    .kemer-group {
        gap: 2rem;
        padding-right: 2rem;
    }
    .kemer-group span {
        font-size: 1.05rem;
        letter-spacing: 0.05em;
    }
    .kemer-sep {
        font-size: 1.1rem;
    }
}

/* ==========================================================================
   📰 LATEST BLOG SECTION & STICKY SIDEBAR STYLES
   ========================================================================== */

.blog-section {
    padding: 100px 0 80px 0;
    position: relative;
    z-index: 5;
    background: transparent;
}

/* Parallax col wrapper — overflow:hidden sidebar taşmasını engeller */
.blog-sticky-col {
    position: relative;
    overflow: hidden;
}

/* Blog Parallax Sidebar — JS scroll'a göre translateY uygulanır */
.blog-sticky-sidebar {
    position: relative;
    padding-right: 1.5rem;
    width: 100%;
    will-change: transform;
}

/* Legal TOC col — Bootstrap flex-stretch ile sağ sütunla aynı yüksekliğe ulaşır */
.legal-toc-col {
    position: relative;
    overflow: hidden;
    /* align-self: stretch (default) — TOC sütunu sağ sütunla aynı yükseklikte olur */
}

/* Legal TOC inner wrapper — JS scroll'a göre translateY uygulanır */
.legal-toc-col .position-sticky {
    position: relative !important;
    top: auto !important;
    will-change: transform;
}


.blog-section-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.2rem, 5vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--kt-text-color);
    margin-bottom: 1.5rem;
}

body.light-theme .blog-section-title {
    color: #0f172a;
}

.blog-section-title .title-accent-lines {
    color: var(--kt-purple);
    font-weight: 300;
    margin-left: 10px;
    letter-spacing: -2px;
}

.blog-section-desc {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--kt-muted);
}

body.light-theme .blog-section-desc {
    color: #475569;
}

/* More Blogs Premium Button (mockup style) */
.btn-more-blogs {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: #8b5cf6;
    color: #ffffff !important;
    padding: 10px 24px 10px 10px;
    border-radius: 40px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
    margin-bottom: 1rem;
    text-decoration: none;
    border: none;
}

.btn-more-blogs:hover {
    background: #7c3aed;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.5);
}

.btn-more-blogs .icon-circle {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #ffffff;
    color: #8b5cf6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.btn-more-blogs:hover .icon-circle {
    transform: rotate(-45deg);
}

/* Reviews Stack Badge */
.blog-reviews-badge {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
}

body.light-theme .blog-reviews-badge {
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

/* Blog Cards Stack */
.blog-cards-stack {
    width: 100%;
}

.blog-home-card {
    background: var(--kt-card-bg);
    border: 1px solid var(--kt-card-border);
    border-radius: 24px;
    padding: 1.5rem;
    display: flex;
    gap: 2rem;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

body.light-theme .blog-home-card {
    background: #ffffff;
    border-color: rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.blog-home-card:hover {
    transform: translateY(-4px);
    border-color: var(--kt-card-hover-border);
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.25);
    background: rgba(18, 25, 47, 0.5);
}

body.light-theme .blog-home-card:hover {
    background: #f8fafc;
    border-color: rgba(0, 0, 0, 0.1);
}

.blog-card-thumb {
    width: 160px;
    height: 120px;
    border-radius: 16px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

body.light-theme .blog-card-thumb {
    border-color: rgba(0, 0, 0, 0.05);
}

.blog-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    -webkit-user-drag: none;
    transition: transform 0.5s ease;
}

.blog-home-card:hover .blog-card-thumb img {
    transform: scale(1.05);
}

.blog-card-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    min-width: 0;
}

.blog-card-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
    color: var(--kt-text-color);
    line-height: 1.35;
}

body.light-theme .blog-card-title {
    color: #0f172a;
}

.blog-card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.25s ease;
}

.blog-card-title a:hover {
    color: var(--kt-turquoise);
}

body.light-theme .blog-card-title a:hover {
    color: var(--kt-blue);
}

.blog-card-excerpt {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--kt-muted);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-align: left;
}

body.light-theme .blog-card-excerpt {
    color: #475569;
}

.blog-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 0.75rem;
    flex-wrap: wrap;
    gap: 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 0.75rem;
}

body.light-theme .blog-card-footer {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.blog-card-author-date {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--kt-muted);
}

body.light-theme .blog-card-author-date {
    color: #64748b;
}

.blog-card-author-date img {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    object-fit: cover;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
}

.author-avatar-placeholder {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--kt-muted);
    font-size: 0.85rem;
    border: 1.5px solid rgba(255, 255, 255, 0.1);
}

body.light-theme .author-avatar-placeholder {
    background: #e2e8f0;
    border-color: rgba(0, 0, 0, 0.08);
}

.blog-card-author-date .dot-sep {
    opacity: 0.5;
}

.blog-card-category-badge {
    background: rgba(139, 92, 246, 0.15);
    color: #a78bfa;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 1px solid rgba(139, 92, 246, 0.25);
}

body.light-theme .blog-card-category-badge {
    background: rgba(139, 92, 246, 0.08);
    color: #7c3aed;
    border-color: rgba(139, 92, 246, 0.15);
}

/* Star Rating & Review Count Badge */
.reviews-meta {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.stars {
    display: flex;
    align-items: center;
    gap: 3px;
    color: #f59e0b;
    font-size: 0.85rem;
}

.review-count {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--kt-muted);
    white-space: nowrap;
}

body.light-theme .review-count {
    color: #64748b;
}

/* Reveal animasyonu legal TOC sütununu etkilemesin */
.legal-toc-col.reveal-ready,
.legal-toc-col.reveal-visible,
.legal-main .col-lg-3.reveal-ready,
.legal-main .col-lg-3.reveal-visible {
    opacity: 1 !important;
}

/* Responsive Blog Section — Mobilde parallax devre dışı */
@media (max-width: 991px) {
    .blog-section {
        padding: 60px 0;
    }
    .blog-sticky-sidebar {
        /* Mobilde transform sıfırla — JS parallax devre dışı */
        transform: none !important;
        padding-right: 0;
        margin-bottom: 3rem;
        will-change: auto;
    }
    .legal-toc-col .position-sticky {
        transform: none !important;
        will-change: auto;
    }
    .blog-home-card {
        flex-direction: column;
        align-items: stretch;
        gap: 1.25rem;
        padding: 1.25rem;
    }
    .blog-card-thumb {
        width: 100%;
        height: 180px;
    }
}

/* ==========================================================================
   ✨ SCROLL-REVEAL ANIMATION SYSTEM
   ========================================================================== */

/* Native smooth scroll for anchor links / scrollTo calls */
html {
    scroll-behavior: smooth;
}

/* Hidden state — applied by JS before element enters viewport */
.reveal-ready {
    opacity: 0;
    transform: translateY(40px);
    transition:
        opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

/* Visible state — toggled by IntersectionObserver */
.reveal-ready.reveal-visible {
    opacity: 1;
    transform: none;
    will-change: auto !important;
}

/* Slightly faster + smaller shift for cards inside a list */
.faq-item.reveal-ready,
.blog-home-card.reveal-ready {
    transform: translateY(24px);
    transition-duration: 0.55s;
}

/* Respect user's motion preferences */
@media (prefers-reduced-motion: reduce) {
    .reveal-ready {
        transition: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}

/* --- Mobile Layout Alignment & Overflow Fixes --- */

/* Hide absolute orbit lines on tablet and mobile */
@media (max-width: 991px) {
  .orbit-container {
    display: none !important;
  }
  
  /* Ensure curved dome title elements wrap on tablet/mobile */
  .ai-studio-row-2 .title-part {
    white-space: normal !important;
    text-align: center !important;
  }
}

/* Ensure curved dome content fits on mobile viewports */
@media (max-width: 576px) {
  .ai-studio-title-wrap h2,
  .ai-studio-row-2 .title-part,
  .ai-studio-row-3 .title-part {
    font-size: clamp(1.4rem, 7vw, 2.2rem) !important;
  }
  
  .ai-play-badge {
    width: 100px !important;
    height: 68px !important;
    border-radius: 12px !important;
  }
  
  .ai-play-badge .play-icon-overlay {
    width: 36px !important;
    height: 36px !important;
    font-size: 1rem !important;
  }
  
  .ai-studio-row-3 {
    gap: 15px !important;
  }
}

/* Prevent header overlap at intermediate widths */
@media (min-width: 992px) and (max-width: 1200px) {
  .nav-main .nav-link {
    margin: 0 0.4rem !important;
    font-size: 0.85rem !important;
  }
  .header-user-panel {
    gap: 0.5rem !important;
  }
  .user-chip {
    padding: 0.4rem 0.6rem !important;
  }
}

/* Prevent mobile offcanvas menu from overflowing viewport */
#mobileNav {
  max-width: 85% !important;
}

/* Clip absolute ambient glow blobs in blog section to prevent page width expansion */
.blog-section {
  overflow: hidden !important;
}

/* Ensure footer newsletter input scales down in flex layout */
.newsletter-input {
  min-width: 0 !important;
  width: 100% !important;
}

/* Ensure newsletter terms label wraps text on smaller screens */
.newsletter-terms-label {
  flex: 1 !important;
  min-width: 0 !important;
}

/* ── 14. LENIS SMOOTH SCROLL COMPATIBILITY OVERRIDES ──────────────── */
html.lenis,
html.lenis-smooth {
  scroll-behavior: auto !important;
}

/* Custom spacing for legal documents to prevent touching the top menu */
main.legal-main {
  padding-top: calc(var(--header-h) + 45px) !important;
}
.cyber-card[id] {
  scroll-margin-top: calc(var(--header-h) + 45px) !important;
}

/* Modern action buttons for legal page CMS */
.legal-actions-wrap {
  display: flex;
  gap: 8px;
  align-items: center;
}
.btn-action-edit, .btn-action-delete {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(255, 255, 255, 0.08);
  cursor: pointer;
}
.btn-action-edit {
  background: rgba(0, 242, 254, 0.08) !important;
  color: var(--kt-turquoise) !important;
  border-color: rgba(0, 242, 254, 0.15) !important;
}
.btn-action-edit:hover {
  background: linear-gradient(135deg, var(--kt-blue) 0%, var(--kt-turquoise) 100%) !important;
  color: #fff !important;
  border-color: transparent !important;
  box-shadow: 0 0 15px rgba(0, 242, 254, 0.3);
  transform: translateY(-2px);
}
.btn-action-delete {
  background: rgba(220, 53, 69, 0.08) !important;
  color: #ff4a5a !important;
  border-color: rgba(220, 53, 69, 0.15) !important;
}
.btn-action-delete:hover {
  background: #ff4a5a !important;
  color: #fff !important;
  border-color: transparent !important;
  box-shadow: 0 0 15px rgba(255, 74, 90, 0.3);
  transform: translateY(-2px);
}

/* ==========================================================================
   ✨ NEW MODERN EDIT/DELETE ACTION BUTTONS & VIBRANCY HELPERS
   ========================================================================== */

/* Modern Edit Button (Large / Normal) */
.btn-action-edit-modern {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    font-size: 0.88rem;
    font-weight: 700;
    border-radius: 12px;
    background: rgba(0, 242, 254, 0.06) !important;
    color: var(--kt-turquoise) !important;
    border: 1px solid rgba(0, 242, 254, 0.18) !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
    cursor: pointer;
    text-decoration: none;
}
.btn-action-edit-modern:hover {
    background: linear-gradient(135deg, var(--kt-blue) 0%, var(--kt-turquoise) 100%) !important;
    color: #000 !important;
    border-color: transparent !important;
    transform: translateY(-2px) scale(1.02) !important;
    box-shadow: 0 8px 25px rgba(0, 242, 254, 0.35) !important;
}

/* Modern Delete Button (Large / Normal) */
.btn-action-delete-modern {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    font-size: 0.88rem;
    font-weight: 700;
    border-radius: 12px;
    background: rgba(255, 0, 127, 0.06) !important;
    color: var(--kt-pink) !important;
    border: 1px solid rgba(255, 0, 127, 0.18) !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
    cursor: pointer;
    text-decoration: none;
}
.btn-action-delete-modern:hover {
    background: linear-gradient(135deg, #ff007f 0%, #ff4a5a 100%) !important;
    color: #fff !important;
    border-color: transparent !important;
    transform: translateY(-2px) scale(1.02) !important;
    box-shadow: 0 8px 25px rgba(255, 0, 127, 0.35) !important;
}

/* Compact Small Edit Button (Sm / Inline) */
.btn-action-edit-modern-sm {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.82rem;
    background: rgba(0, 242, 254, 0.06) !important;
    color: var(--kt-turquoise) !important;
    border: 1px solid rgba(0, 242, 254, 0.15) !important;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
    cursor: pointer;
}
.btn-action-edit-modern-sm:hover {
    background: linear-gradient(135deg, var(--kt-blue) 0%, var(--kt-turquoise) 100%) !important;
    color: #000 !important;
    border-color: transparent !important;
    transform: translateY(-1px) scale(1.05) !important;
    box-shadow: 0 4px 12px rgba(0, 242, 254, 0.25) !important;
}

/* Compact Small Delete Button (Sm / Inline) */
.btn-action-delete-modern-sm {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.82rem;
    background: rgba(255, 0, 127, 0.06) !important;
    color: var(--kt-pink) !important;
    border: 1px solid rgba(255, 0, 127, 0.15) !important;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
    cursor: pointer;
}
.btn-action-delete-modern-sm:hover {
    background: linear-gradient(135deg, #ff007f 0%, #ff4a5a 100%) !important;
    color: #fff !important;
    border-color: transparent !important;
    transform: translateY(-1px) scale(1.05) !important;
    box-shadow: 0 4px 12px rgba(255, 0, 127, 0.25) !important;
}

/* Contact Page form inputs */
.glow-input {
    background: rgba(255, 255, 255, 0.02) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    color: #fff !important;
    transition: all 0.3s ease !important;
}
.glow-input:focus {
    background: rgba(255, 255, 255, 0.04) !important;
    border-color: var(--kt-turquoise) !important;
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.25) !important;
}
body.light-theme .glow-input {
    background: #fff !important;
    border-color: rgba(0, 0, 0, 0.1) !important;
    color: #0f172a !important;
}
body.light-theme .glow-input:focus {
    border-color: var(--kt-blue) !important;
    box-shadow: 0 0 15px rgba(0, 118, 255, 0.15) !important;
}

/* Workshop/Shop Card Adjustments */
.workshop-card-modern {
    background: rgba(255, 255, 255, 0.015) !important;
    border: 1px solid rgba(255, 255, 255, 0.04) !important;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.workshop-card-modern:hover {
    background: rgba(255, 255, 255, 0.035) !important;
    border-color: rgba(0, 242, 254, 0.2) !important;
    box-shadow: 0 15px 35px rgba(0, 242, 254, 0.12), 0 20px 40px rgba(0, 0, 0, 0.4) !important;
    transform: translateY(-4px) scale(1.005) !important;
}
body.light-theme .workshop-card-modern {
    background: #ffffff !important;
    border-color: rgba(0,0,0,0.05) !important;
}
body.light-theme .workshop-card-modern:hover {
    border-color: rgba(0, 118, 255, 0.2) !important;
    box-shadow: 0 15px 35px rgba(0, 118, 255, 0.06), 0 20px 40px rgba(0, 0, 0, 0.05) !important;
}

/* Tab bar modern look */
.tabs-glassmorphic {
    background: rgba(255, 255, 255, 0.02) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(10px) !important;
}
body.light-theme .tabs-glassmorphic {
    background: rgba(0, 0, 0, 0.03) !important;
    border-color: rgba(0, 0, 0, 0.06) !important;
}

/* ── Premium Global Modal Styles ── */
.modal-content {
  background: rgba(13, 18, 34, 0.85) !important;
  backdrop-filter: blur(25px) !important;
  -webkit-backdrop-filter: blur(25px) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 16px !important;
  color: var(--kt-text-color) !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5) !important;
}

.modal-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
  padding: 1.25rem 1.5rem !important;
}

.modal-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06) !important;
  padding: 1.25rem 1.5rem !important;
}

.modal-title {
  font-family: 'Outfit', sans-serif !important;
  font-weight: 700 !important;
  font-size: 1.1rem !important;
  color: var(--kt-text-color) !important;
}

.modal-body {
  padding: 1.5rem !important;
}

/* Form elements inside modal */
.modal-content .form-label {
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-size: 0.76rem !important;
  font-weight: 600 !important;
  color: var(--kt-muted) !important;
  margin-bottom: 0.4rem !important;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.modal-content .form-control, 
.modal-content .form-select {
  background: rgba(0, 0, 0, 0.25) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  color: var(--kt-text-color) !important;
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-size: 0.85rem !important;
  border-radius: 8px !important;
  padding: 0.6rem 0.8rem !important;
  transition: all 0.2s ease !important;
}

.modal-content .form-control:focus, 
.modal-content .form-select:focus {
  border-color: var(--kt-turquoise) !important;
  box-shadow: 0 0 12px rgba(0, 242, 254, 0.2) !important;
  background: rgba(0, 0, 0, 0.35) !important;
}

/* Close buttons in modal */
.modal-content .btn-close {
  background-color: transparent !important;
  opacity: 0.7 !important;
  transition: opacity 0.2s ease !important;
}
.modal-content .btn-close:hover {
  opacity: 1 !important;
}

/* Modal Buttons styling */
.modal-content .btn {
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-size: 0.8rem !important;
  font-weight: 600 !important;
  padding: 0.55rem 1.4rem !important;
  border-radius: 8px !important;
  transition: all 0.2s ease !important;
}

/* Secondary Button (Cancel) */
.modal-content .btn-secondary,
.modal-content .btn-kt-secondary {
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  color: var(--kt-muted) !important;
}
.modal-content .btn-secondary:hover,
.modal-content .btn-kt-secondary:hover {
  background: rgba(255, 255, 255, 0.08) !important;
  color: var(--kt-text-color) !important;
  border-color: rgba(255, 255, 255, 0.12) !important;
}

/* Primary Button (Action) */
.modal-content .btn-primary,
.modal-content .btn-kt-primary,
.modal-content .sp-modal-save,
.modal-content .cal-btn-primary {
  background: var(--kt-text-color) !important;
  color: var(--kt-bg-color) !important;
  border: none !important;
  font-weight: 700 !important;
}
.modal-content .btn-primary:hover,
.modal-content .btn-kt-primary:hover,
.modal-content .sp-modal-save:hover,
.modal-content .cal-btn-primary:hover {
  opacity: 0.88 !important;
}

/* ── Light Theme Global Modals ── */
body.light-theme .modal-content {
  background: rgba(248, 250, 252, 0.95) !important;
  backdrop-filter: blur(25px) !important;
  -webkit-backdrop-filter: blur(25px) !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  color: #1e293b !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12) !important;
}

body.light-theme .modal-header,
body.light-theme .modal-footer {
  border-color: rgba(0, 0, 0, 0.06) !important;
}

body.light-theme .modal-content .form-control, 
body.light-theme .modal-content .form-select {
  background: #ffffff !important;
  border-color: rgba(0, 0, 0, 0.12) !important;
  color: #1e293b !important;
}

body.light-theme .modal-content .form-control:focus, 
body.light-theme .modal-content .form-select:focus {
  border-color: var(--kt-blue) !important;
  box-shadow: 0 0 12px rgba(0, 118, 255, 0.15) !important;
}

body.light-theme .modal-content .btn-close {
  filter: invert(1) !important;
}

body.light-theme .modal-content .btn-secondary,
body.light-theme .modal-content .btn-kt-secondary {
  background: rgba(0, 0, 0, 0.02) !important;
  border-color: rgba(0, 0, 0, 0.08) !important;
  color: #475569 !important;
}
body.light-theme .modal-content .btn-secondary:hover,
body.light-theme .modal-content .btn-kt-secondary:hover {
  background: rgba(0, 0, 0, 0.05) !important;
  color: #1e293b !important;
}

body.light-theme .modal-content .btn-primary,
body.light-theme .modal-content .btn-kt-primary,
body.light-theme .modal-content .sp-modal-save,
body.light-theme .modal-content .cal-btn-primary {
  background: #0f172a !important;
  color: #ffffff !important;
}

/* ── Custom Status Dropdowns (cloning index.php select style) ── */
.form-select.form-select-sm, select.db-select {
  background-color: var(--kt-card-bg) !important;
  border: 1px solid var(--kt-glass-border) !important;
  color: var(--kt-text-color) !important;
  padding: 0.35rem 2.2rem 0.35rem 0.75rem !important;
  border-radius: 8px !important;
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-size: 0.75rem !important;
  font-weight: 600 !important;
  outline: none !important;
  cursor: pointer !important;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%238c92a6' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e") !important;
  background-repeat: no-repeat !important;
  background-position: right 0.75rem center !important;
  background-size: 10px 10px !important;
  text-align: center !important;
  display: inline-block !important;
  min-width: 135px !important;
}
.form-select.form-select-sm option, select.db-select option {
  background-color: #0d1222 !important;
  color: #e2eaf4 !important;
}
.form-select.form-select-sm:hover, select.db-select:hover {
  border-color: var(--kt-card-hover-border) !important;
  background-color: var(--kt-glass-hover) !important;
}
.form-select.form-select-sm:focus, select.db-select:focus {
  border-color: var(--kt-blue) !important;
  box-shadow: 0 0 0 3px rgba(0, 179, 255, 0.15) !important;
}
body.light-theme .form-select.form-select-sm, body.light-theme select.db-select {
  background-color: #ffffff !important;
  border-color: rgba(0, 0, 0, 0.12) !important;
  color: #1e293b !important;
}
body.light-theme .form-select.form-select-sm option, body.light-theme select.db-select option {
  background-color: #ffffff !important;
  color: #1e293b !important;
}
body.light-theme .form-select.form-select-sm:hover, body.light-theme select.db-select:hover {
  background-color: #f1f5f9 !important;
}
