/* ==========================================================================
   QCOIN CRYPTO TRADING - MODERN DARK CRYPTO DESIGN SYSTEM 2.0
   ========================================================================== */

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

:root {
  --bg-dark: #090d16;
  --bg-darker: #050810;
  --bg-card: #121828;
  --bg-card-hover: #18223c;

  --primary: #8b5cf6;
  --primary-hover: #7c3aed;
  --primary-light: #a78bfa;
  --primary-glow: rgba(139, 92, 246, 0.4);

  --cyan: #06b6d4;
  --cyan-glow: rgba(6, 182, 212, 0.35);
  --emerald: #10b981;
  --gold: #f59e0b;

  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-dim: #64748b;

  --border-light: rgba(255, 255, 255, 0.08);
  --border-primary: rgba(139, 92, 246, 0.25);
  --border-primary-hover: rgba(139, 92, 246, 0.6);

  --grad-primary: linear-gradient(135deg, #8b5cf6 0%, #6366f1 50%, #06b6d4 100%);
  --grad-btn: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
  --grad-btn-hover: linear-gradient(135deg, #7c3aed 0%, #4f46e5 100%);
  --grad-card: linear-gradient(180deg, #131b2e 0%, #0c1220 100%);
  --grad-text: linear-gradient(135deg, #a78bfa 0%, #38bdf8 50%, #818cf8 100%);

  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 10px 30px -10px rgba(0, 0, 0, 0.6), 0 0 20px -5px rgba(139, 92, 246, 0.15);
  --shadow-lg: 0 20px 40px -10px rgba(0, 0, 0, 0.8), 0 0 30px 0 rgba(139, 92, 246, 0.25);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;
}

/* Base Overrides */
html, body {
  background-color: #090d16 !important;
  color: #94a3b8 !important;
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-size: 15px;
  line-height: 1.75;
  letter-spacing: -0.01em;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

.se-pre, .se-pre-con {
  display: none !important;
}

.container-fluid {
  background-color: transparent !important;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-darker);
}
::-webkit-scrollbar-thumb {
  background: #1e293b;
  border-radius: 5px;
  border: 2px solid var(--bg-darker);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

b, strong {
  font-weight: 700;
  color: #ffffff !important;
}

.no-padding {
  padding: 0 !important;
}

a {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #ffffff;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none !important;
}

a:hover, a:focus {
  color: var(--primary-light) !important;
  text-decoration: none !important;
}

h1, h2, h3, h4, h5, h6,
h1 p, h2 p, h3 p, h4 p {
  font-family: 'Outfit', sans-serif !important;
  line-height: 1.25;
  color: #ffffff !important;
  font-weight: 700;
  letter-spacing: -0.02em;
  word-wrap: break-word;
}

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

.small_title {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  color: var(--primary-light) !important;
  display: inline-block;
  padding: 6px 16px;
  background: rgba(139, 92, 246, 0.12);
  border: 1px solid rgba(139, 92, 246, 0.25);
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

/* Visibility for animated elements */
[data-aos] {
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
  pointer-events: auto !important;
}

/* ====================== Header & Navigation =================== */
.header-bottom {
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: all 0.3s ease-in-out;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(9, 13, 22, 0.75) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.header-bottom.is-sticky {
  position: fixed;
  background: rgba(9, 13, 22, 0.95) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  padding: 12px 0;
}

.header-full {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo a.logo-a {
  display: inline-block;
  transition: transform 0.3s ease;
}

.logo a.logo-a:hover {
  transform: scale(1.03);
}

.logo img {
  max-height: 46px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(139, 92, 246, 0.25));
}

.menu-row {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.menu-row ul.menu,
.menu-row .menu-primary-menu-container > ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.menu-row ul.menu > li,
.menu-row .menu-primary-menu-container > ul > li {
  position: relative;
  margin: 0;
}

.menu-row ul.menu > li > a,
.menu-row .menu-primary-menu-container > ul > li > a {
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9) !important;
  padding: 10px 18px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  transition: all 0.25s ease;
}

.menu-row ul.menu > li > a:hover,
.menu-row .menu-primary-menu-container > ul > li > a:hover,
.menu-row ul.menu > li.current-menu-item > a,
.menu-row .menu-primary-menu-container > ul > li.current-menu-item > a {
  color: #ffffff !important;
  background: rgba(139, 92, 246, 0.22);
  box-shadow: 0 0 16px rgba(139, 92, 246, 0.25);
}

/* ====================== Modern Crypto Hero Section =================== */
.modern-hero-section {
  position: relative;
  padding-top: 140px;
  padding-bottom: 70px;
  background: radial-gradient(circle at 50% 0%, #151a30 0%, #090d16 70%) !important;
  overflow: hidden;
}

.hero-glow-1 {
  position: absolute;
  top: 10%;
  left: -10%;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.18) 0%, rgba(0,0,0,0) 70%);
  pointer-events: none;
  filter: blur(40px);
}

.hero-glow-2 {
  position: absolute;
  top: 30%;
  right: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.16) 0%, rgba(0,0,0,0) 70%);
  pointer-events: none;
  filter: blur(40px);
}

.hero-main-row {
  display: flex;
  align-items: center;
  margin-bottom: 50px;
}

.hero-left-col {
  padding-right: 30px;
}

.hero-crypto-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(139, 92, 246, 0.15);
  border: 1px solid rgba(139, 92, 246, 0.35);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  color: var(--primary-light);
  font-family: 'Outfit', sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  margin-bottom: 24px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 10px #10b981;
  display: inline-block;
  animation: pulseGlow 2s infinite ease-in-out;
}

@keyframes pulseGlow {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.6; }
}

.hero-main-heading {
  font-size: 50px;
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.03em;
  margin-top: 0;
  margin-bottom: 22px;
  color: #ffffff !important;
}

.hero-lead-text {
  font-size: 17px;
  line-height: 1.75;
  color: #94a3b8 !important;
  margin-bottom: 34px;
  max-width: 560px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.hero-btn-primary {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 700;
  padding: 16px 36px;
  border-radius: var(--radius-full);
  background: var(--grad-btn) !important;
  color: #ffffff !important;
  box-shadow: 0 8px 25px rgba(139, 92, 246, 0.45);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.hero-btn-primary:hover {
  background: var(--grad-btn-hover) !important;
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(139, 92, 246, 0.65);
  color: #ffffff !important;
}

.hero-btn-secondary {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 600;
  padding: 15px 32px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff !important;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.hero-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
  color: #ffffff !important;
}

.hero-trust-badges {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.trust-item {
  font-size: 13.5px;
  font-weight: 500;
  color: #cbd5e1;
  display: flex;
  align-items: center;
  gap: 6px;
}

.trust-item i {
  color: #10b981;
}

/* Right Live Trading Card */
.hero-trading-card {
  background: #121828;
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: 0 25px 60px -10px rgba(0, 0, 0, 0.8), 0 0 35px rgba(139, 92, 246, 0.2);
  position: relative;
  overflow: hidden;
}

.hero-trading-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad-primary);
}

.trading-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.market-live-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  color: #10b981;
  background: rgba(16, 185, 129, 0.12);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(16, 185, 129, 0.25);
  font-family: 'Outfit', sans-serif;
}

.live-dot {
  width: 6px;
  height: 6px;
  background: #10b981;
  border-radius: 50%;
  animation: pulseGlow 1.5s infinite;
}

.trading-card-time {
  font-size: 12px;
  color: #64748b;
}

.crypto-ticker-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  margin-bottom: 12px;
  background: rgba(9, 13, 22, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  transition: all 0.25s ease;
}

.crypto-ticker-row:hover {
  background: rgba(139, 92, 246, 0.1);
  border-color: rgba(139, 92, 246, 0.3);
  transform: translateX(4px);
}

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

.coin-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.coin-icon.btc {
  background: rgba(245, 158, 11, 0.15);
  color: #f59e0b;
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.coin-icon.eth {
  background: rgba(99, 102, 241, 0.15);
  color: #818cf8;
  border: 1px solid rgba(99, 102, 241, 0.3);
}

.coin-icon.sol {
  background: rgba(6, 182, 212, 0.15);
  color: #06b6d4;
  border: 1px solid rgba(6, 182, 212, 0.3);
}

.coin-name {
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  font-family: 'Outfit', sans-serif;
}

.coin-sym {
  font-size: 12px;
  color: #64748b;
}

.ticker-right {
  text-align: right;
}

.coin-price {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  font-family: 'Outfit', sans-serif;
}

.coin-change.up {
  font-size: 12px;
  font-weight: 600;
  color: #10b981;
}

.trading-card-footer {
  margin-top: 18px;
}

.quick-trade-btn {
  display: block;
  text-align: center;
  padding: 13px;
  border-radius: var(--radius-md);
  background: var(--grad-btn);
  color: #ffffff !important;
  font-family: 'Outfit', sans-serif;
  font-size: 14.5px;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
  transition: all 0.25s ease;
}

.quick-trade-btn:hover {
  background: var(--grad-btn-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(139, 92, 246, 0.5);
}

/* Stats Ticker Row */
.hero-stats-row {
  margin-top: 20px;
}

.stat-col {
  margin-bottom: 20px;
}

.stat-card {
  background: #121828;
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-primary-hover);
  box-shadow: var(--shadow-lg);
}

.stat-number {
  font-size: 32px;
  font-weight: 800;
  color: #ffffff;
  font-family: 'Outfit', sans-serif;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 13px;
  font-weight: 600;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Subpage Modern Hero */
.modern-page-hero {
  position: relative;
  padding-top: 150px;
  padding-bottom: 80px;
  background: radial-gradient(circle at 50% 0%, #151a30 0%, #090d16 80%) !important;
  text-align: center;
  border-bottom: 1px solid rgba(139, 92, 246, 0.15);
}

.page-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(139, 92, 246, 0.12);
  border: 1px solid rgba(139, 92, 246, 0.3);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  color: var(--primary-light);
  font-size: 13px;
  font-weight: 600;
  font-family: 'Outfit', sans-serif;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.page-hero-title {
  font-size: 46px;
  font-weight: 800;
  color: #ffffff !important;
  margin-top: 0;
  margin-bottom: 16px;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.page-breadcrumb-trail {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #64748b;
}

.page-breadcrumb-trail a {
  color: #94a3b8 !important;
}

.page-breadcrumb-trail a:hover {
  color: var(--primary-light) !important;
}

.page-breadcrumb-trail .sep {
  color: rgba(255, 255, 255, 0.2);
}

.page-breadcrumb-trail .current {
  color: #ffffff;
  font-weight: 600;
}

/* Halving Widget Card */
.halving-widget-container {
  margin-top: 30px;
  margin-bottom: 30px;
}

.halving-card {
  background: #121828;
  border: 1px solid rgba(139, 92, 246, 0.25);
  border-radius: var(--radius-xl);
  padding: 34px 20px 20px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.halving-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 700;
  color: #f59e0b;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.3);
  padding: 4px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
  font-family: 'Outfit', sans-serif;
}

.halving-title {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff !important;
  margin-top: 0;
  margin-bottom: 20px;
}

.halving-iframe-wrapper {
  display: flex;
  justify-content: center;
}

.halving-iframe-wrapper iframe {
  border: 0;
  border-radius: var(--radius-md);
  max-width: 100%;
}

/* Floating Telegram */
.telegram {
  position: fixed;
  right: 24px;
  bottom: 84px;
  z-index: 999;
  text-align: center;
}

.telegram a {
  display: inline-block;
  text-decoration: none !important;
}

.telegram-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #0088cc 0%, #006699 100%);
  color: #ffffff !important;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 8px 25px rgba(0, 136, 204, 0.45);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.telegram-pill i {
  font-size: 17px;
}

.telegram a:hover .telegram-pill {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 35px rgba(0, 136, 204, 0.65);
}

/* Buttons */
.custom-btn a,
a.custom-btn-link {
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--radius-full);
  background: var(--grad-btn) !important;
  color: #ffffff !important;
  box-shadow: 0 6px 20px rgba(139, 92, 246, 0.35);
  transition: all 0.3s ease;
}

.custom-btn a:hover,
a.custom-btn-link:hover {
  background: var(--grad-btn-hover) !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(139, 92, 246, 0.55);
}

/* ====================== two_box_layout =================== */
.two_box_layout {
  padding-top: 80px;
  padding-bottom: 120px;
  background-color: #090d16 !important;
}

.main_title {
  text-align: center;
  margin-bottom: 50px;
}

.main_title h1 {
  font-size: 46px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #ffffff !important;
}

.main_title p {
  font-size: 17px;
  line-height: 1.65;
  color: #94a3b8 !important;
  max-width: 680px;
  margin: 0 auto;
}

.two_column_inner {
  margin-bottom: 30px;
}

.two_box_layout .icon-bx-wraper {
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(139, 92, 246, 0.2) !important;
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  background: #121828 !important;
  display: flex;
  align-items: flex-start;
  gap: 24px;
  transition: all 0.35s ease;
  min-height: 160px;
}

.two_box_layout .icon-bx-wraper:hover {
  transform: translateY(-6px);
  border-color: var(--border-primary-hover) !important;
  box-shadow: var(--shadow-lg);
}

.icon-bx-wraper .right {
  width: 68px;
  height: 68px;
  min-width: 68px;
  border-radius: var(--radius-md);
  background: rgba(139, 92, 246, 0.15);
  border: 1px solid rgba(139, 92, 246, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
}

.icon-bx-wraper .right img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.icon-bx-wraper .left h4 {
  color: #ffffff !important;
  font-size: 22px;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 10px;
}

.icon-bx-wraper .left p {
  font-size: 15px;
  margin-bottom: 0;
  color: #94a3b8 !important;
  line-height: 1.65;
}

/* Join Us Banner */
.join_layout {
  position: relative;
  margin-top: 60px;
  margin-bottom: -60px;
  z-index: 10;
}

.join_us {
  padding: 50px 60px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, #18223c 0%, #0d1424 100%) !important;
  border: 1px solid rgba(139, 92, 246, 0.3);
  box-shadow: 0 25px 60px -10px rgba(0, 0, 0, 0.8), 0 0 40px rgba(139, 92, 246, 0.2);
  text-align: center;
}

.join_us .top h1.title {
  font-size: 40px;
  font-weight: 800;
  color: #ffffff !important;
  margin-top: 0;
  margin-bottom: 16px;
}

.join_us .top p {
  font-size: 16px;
  color: #94a3b8 !important;
  max-width: 680px;
  margin: 0 auto 30px;
  line-height: 1.7;
}

.join_layout .bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ====================== list_layout =================== */
.list_layout {
  padding-top: 130px;
  padding-bottom: 90px;
  background-color: #060911 !important;
}

.list_layout .top {
  text-align: center;
  margin-bottom: 60px;
}

.list_layout .top h1,
.list_layout .top h2 {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 12px;
  color: #ffffff !important;
}

.zp {
  margin-bottom: 60px;
}

.icon-bx-wraper.style-3 {
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(139, 92, 246, 0.2) !important;
  border-radius: var(--radius-lg);
  padding: 40px 28px 35px;
  background: #121828 !important;
  transition: all 0.35s ease;
  position: relative;
  text-align: center;
  min-height: 310px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.icon-bx-wraper.style-3:hover {
  transform: translateY(-8px);
  border-color: var(--border-primary-hover) !important;
  box-shadow: var(--shadow-lg);
}

.icon-bx-wraper.style-3 .icon-media {
  width: 86px;
  height: 86px;
  margin: -70px auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--grad-btn);
  box-shadow: 0 10px 25px rgba(139, 92, 246, 0.4);
  border-radius: var(--radius-md);
}

.icon-bx-wraper.style-3 .icon-media img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.icon-bx-wraper.style-3 .title {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff !important;
  margin-bottom: 12px;
}

.icon-bx-wraper.style-3 .icon-content p {
  font-size: 14.5px;
  color: #94a3b8 !important;
  line-height: 1.65;
  margin-bottom: 0;
}

.icon-bx-wraper.style-4 {
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  background-color: #1a1630 !important;
  min-height: 310px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.icon-bx-wraper.style-4 .btn-primary {
  background: var(--grad-btn);
  border: 0;
  padding: 12px 32px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-family: 'Outfit', sans-serif;
  color: #fff;
  box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
}

/* ====================== two_column_layout =================== */
.two_column_layout {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #090d16 !important;
}

.about__thumb-image.floating-content {
  position: relative;
  display: inline-block;
  width: 100%;
}

.about__thumb-image img {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-lg);
  width: 100%;
}

.floating-content__top-left {
  position: absolute;
  top: 30px;
  left: -15px;
  z-index: 2;
}

.floating-content__bottom-right {
  position: absolute;
  bottom: 30px;
  right: -15px;
  z-index: 2;
}

.floating-content__item {
  background: rgba(18, 24, 42, 0.95);
  border: 1px solid rgba(139, 92, 246, 0.35);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
  border-radius: var(--radius-md);
  padding: 14px 22px;
  text-align: center;
}

.floating-content__item h3 {
  font-size: 2.2rem;
  font-weight: 800;
  margin: 0;
  color: var(--primary-light) !important;
}

.floating-content__item p {
  font-size: 12px;
  font-weight: 600;
  color: #ffffff !important;
  margin: 4px 0 0;
  text-transform: uppercase;
}

.two_right {
  padding-left: 30px;
}

.two_right h1 {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.25;
  margin-top: 0;
  margin-bottom: 24px;
  color: #ffffff !important;
}

.two_right p {
  font-size: 16px;
  line-height: 1.8;
  color: #94a3b8 !important;
  margin-bottom: 30px;
}

.btn-cus a {
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 34px;
  display: inline-block;
  border-radius: var(--radius-full);
  background: var(--grad-btn);
  color: #ffffff !important;
  box-shadow: 0 6px 20px rgba(139, 92, 246, 0.35);
}

/* ====================== blog_section =================== */
.blog_section {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #060911 !important;
}

.blogleft h1 {
  font-size: 44px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 36px;
  color: #ffffff !important;
}

.dz-card.style-1.blog-half {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(139, 92, 246, 0.2);
  display: flex;
  background: #121828 !important;
  box-shadow: var(--shadow-md);
  transition: all 0.35s ease;
  margin-bottom: 24px;
}

.dz-card.style-1.blog-half:hover {
  transform: translateY(-5px);
  border-color: var(--border-primary-hover);
  box-shadow: var(--shadow-lg);
}

.dz-card.style-1.blog-half .dz-media {
  max-width: 250px;
  min-width: 250px;
  position: relative;
  overflow: hidden;
}

.dz-card.style-1.blog-half .dz-media img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.dz-card.style-1.blog-half .dz-media .dz-badge-list {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  padding: 0;
  margin: 0;
}

.dz-card.style-1.blog-half .dz-media .dz-badge-list div.dz-badge {
  background: rgba(139, 92, 246, 0.9);
  color: #ffffff;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 4px 10px;
}

.dz-card.style-1.blog-half .dz-info {
  padding: 26px 28px;
  flex: 1;
}

.dz-card.style-1.blog-half .dz-info .dz-title {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff !important;
  margin-top: 0;
  margin-bottom: 10px;
  line-height: 1.4;
}

.dz-card.style-1.blog-half .dz-info p {
  color: #94a3b8 !important;
  font-size: 14px;
  margin-bottom: 0;
}

.blogright img {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-lg);
}

/* ====================== Post & Contact Pages =================== */
.post-cus, .post-single.sin, .contact-us, .normal-templete {
  padding: 80px 0;
  background-color: #090d16 !important;
}

.post-single.sin .left {
  background: #121828;
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.post-single.sin h1 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 20px;
  color: #ffffff !important;
}

img.f-image {
  border-radius: var(--radius-md);
  margin-bottom: 30px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
}

.post-single.sin p {
  font-size: 16px;
  line-height: 1.85;
  color: #cbd5e1 !important;
  margin-bottom: 24px;
}

.related-box {
  background: #121828;
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: var(--radius-md);
  padding: 16px;
  margin-bottom: 16px;
}

.related-box h5 {
  color: #ffffff !important;
  font-size: 15px;
  font-weight: 700;
}

/* Contact Us */
.contact-box .card {
  border: 1px solid rgba(139, 92, 246, 0.25);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  background: #121828 !important;
  overflow: hidden;
}

.contact-box .card .card-body {
  padding: 50px 60px;
}

.contact-box .card .card-body h1 {
  color: #ffffff !important;
  font-size: 38px;
  font-weight: 800;
  margin-top: 0;
  margin-bottom: 8px;
}

p.mb-0.font-18.text-primary {
  color: var(--primary-light) !important;
  font-size: 16px;
  margin-bottom: 30px;
}

.card-body input,
.card-body select,
.card-body textarea {
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  padding: 14px 20px;
  font-size: 15px;
  color: #ffffff !important;
  background: #090d16 !important;
  border-radius: var(--radius-sm);
  width: 100%;
  margin-bottom: 18px;
}

.card-body input:focus,
.card-body select:focus,
.card-body textarea:focus {
  outline: none;
  border-color: var(--primary) !important;
  box-shadow: 0 0 0 3px var(--primary-glow);
}

.card-body input.wpcf7-form-control.wpcf7-submit.has-spinner {
  border: 0 !important;
  background: var(--grad-btn) !important;
  color: #ffffff !important;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 16px;
  padding: 14px 44px;
  border-radius: var(--radius-full);
  box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
  cursor: pointer;
  width: auto;
}

/* ====================== Footer =================== */
.footer-top {
  position: relative;
  padding-top: 90px;
  padding-bottom: 50px;
  background: #050810 !important;
  border-top: 1px solid rgba(139, 92, 246, 0.2);
}

.footer-top .widget-title {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff !important;
  margin-top: 0;
  margin-bottom: 24px;
  padding-bottom: 12px;
  position: relative;
}

.footer-top .widget-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 36px;
  height: 3px;
  background: var(--grad-btn);
  border-radius: 2px;
}

.info-f p {
  color: #94a3b8 !important;
  font-size: 14.5px;
  line-height: 1.7;
  margin-top: 16px;
  margin-bottom: 20px;
}

.info-f ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 10px;
}

.info-f ul li a {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff !important;
  font-size: 15px;
}

.info-f ul li a:hover {
  background: var(--grad-btn) !important;
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
}

ul#menu-information-menu,
ul#menu-footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

ul#menu-information-menu li,
ul#menu-footer-menu li {
  margin-bottom: 12px;
}

ul#menu-information-menu li a,
ul#menu-footer-menu li a {
  color: #94a3b8 !important;
  font-size: 14.5px;
  display: inline-flex;
  align-items: center;
}

ul#menu-information-menu li a:hover,
ul#menu-footer-menu li a:hover {
  color: #ffffff !important;
  padding-left: 6px;
}

.footer-top h4.dz-title {
  font-size: 14.5px;
  font-weight: 600;
  color: #ffffff !important;
  margin: 0 0 4px 0;
}

.footer-top .dz-badge {
  color: var(--primary-light) !important;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 14px;
}

.footer-top .map p {
  color: #94a3b8 !important;
  font-size: 14px;
  margin-bottom: 12px;
}

.footer-top .map img {
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
}

.footer-bottom {
  padding: 22px 0;
  text-align: center;
  background: #020408 !important;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: #64748b !important;
  font-size: 13.5px;
}

/* Back to Top */
.cd-top {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  width: 44px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  border-radius: var(--radius-full);
  background: var(--grad-btn) !important;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
  color: #ffffff;
  font-size: 0;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 998;
}

.cd-top::after {
  content: '↑';
  font-size: 20px;
  font-weight: bold;
  color: #fff;
}

.cd-top.cd-is-visible {
  visibility: visible;
  opacity: 1;
}

@media (max-width: 991px) {
  .header-bottom {
    position: relative;
    background: rgba(9, 13, 22, 0.96) !important;
  }

  .hero-main-row {
    flex-direction: column;
  }

  .hero-left-col {
    padding-right: 0;
    margin-bottom: 40px;
    text-align: center;
  }

  .hero-main-heading {
    font-size: 36px;
  }

  .hero-lead-text {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cta-group,
  .hero-trust-badges {
    justify-content: center;
  }

  .main_title h1,
  .list_layout .top h1,
  .list_layout .top h2,
  .blogleft h1,
  .join_us .top h1.title,
  .two_right h1,
  .page-hero-title {
    font-size: 32px !important;
  }

  .two_box_layout {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .join_us {
    padding: 30px 20px;
  }

  .dz-card.style-1.blog-half {
    flex-direction: column;
  }

  .dz-card.style-1.blog-half .dz-media {
    max-width: 100%;
    min-width: 100%;
    height: 180px;
  }

  .two_right {
    padding-left: 0;
    margin-top: 30px;
  }

  .floating-content__top-left,
  .floating-content__bottom-right {
    position: static;
    margin-top: 15px;
  }

  .contact-box .card .card-body {
    padding: 30px 20px;
  }
}