@font-face {
  font-family: 'Inter';
  src: url('../assets/fonts/Inter-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../assets/fonts/Inter-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../assets/fonts/Inter-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../assets/fonts/Inter-ExtraBold.woff2') format('woff2');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Noto Nastaliq Urdu';
  src: url('../assets/urdu-fonts/NotoNastaliqUrdu-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Noto Nastaliq Urdu';
  src: url('../assets/urdu-fonts/NotoNastaliqUrdu-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Noto Nastaliq Urdu';
  src: url('../assets/urdu-fonts/NotoNastaliqUrdu-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Noto Nastaliq Urdu';
  src: url('../assets/urdu-fonts/NotoNastaliqUrdu-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
:root {
  --primary: #123CFF;
  --primary-dark: #071A52;
  --secondary: #18C8FF;
  --accent: #FFC83D;
  --background: #F5F8FF;
  --surface: #FFFFFF;
  --text-main: #101828;
  --text-secondary: #667085;
  --border: #DCE5F5;
  --success: #16A34A;
  --dark-bg: #030a21;
  --dark-surface: #071A52;
  --font-sans: 'Inter';
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  --container-width: 1280px;
  --border-radius-sm: 8px;
  --border-radius: 12px;
  --border-radius-lg: 24px;
  --border-radius-xl: 40px;
  --shadow-sm: 0 1px 2px rgba(16, 24, 40, 0.05);
  --shadow-md: 0 10px 30px -10px rgba(16, 24, 40, 0.1);
  --shadow-lg: 0 20px 40px -10px rgba(16, 24, 40, 0.2);
  --glow-primary: 0 0 80px rgba(18, 60, 255, 0.2);
}
html[lang="ur-PK"], html[dir="rtl"] {
  --font-sans: 'Noto Nastaliq Urdu', 'Inter', sans-serif;
}
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: var(--font-sans);
  background-color: var(--background);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}
a:hover {
  color: var(--primary-dark);
}
h1, h2, h3, h4, h5, h6 {
  color: var(--text-main);
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); margin-bottom: var(--space-md); }
h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: var(--space-md); }
h3 { font-size: 1.5rem; margin-bottom: var(--space-xs); }
h4 { font-size: 1.25rem; }
p { margin-bottom: var(--space-md); color: var(--text-secondary); font-size: 1.125rem; }
.text-primary-italic {
  color: var(--primary);
  font-style: italic;
}
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}
.section {
  padding: var(--space-3xl) 0;
}
.section-dark {
  background-color: var(--dark-bg);
  color: var(--surface);
}
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 {
  color: var(--surface);
}
.section-dark p {
  color: #A0ABBB;
}
.header {
  background-color: rgba(3, 10, 33, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: transform 0.3s ease;
}
.header.header-hidden {
  transform: translateY(-100%);
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}
.logo {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--surface);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}
.logo span { color: var(--primary); transition: color 0.2s ease; }
.header:not(.section-dark) .logo { color: var(--surface); }
.logo:hover { color: var(--secondary); }
.logo:hover span { color: var(--secondary); }
.nav-links {
  display: flex;
  gap: var(--space-lg);
  align-items: center;
}
.nav-links a {
  color: #A0ABBB;
  font-weight: 600;
  font-size: 0.9375rem;
}
.nav-links a:hover {
  color: var(--surface);
}
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-xs);
}
.hamburger svg {
  width: 28px;
  height: 28px;
  fill: var(--surface);
}
.secondary-nav {
  position: sticky;
  top: 80px;
  z-index: 90;
  background: rgba(245, 248, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 0;
  overflow-x: auto;
  white-space: nowrap;
  -ms-overflow-style: none;
  scrollbar-width: none;
  transition: top 0.3s ease;
}
.secondary-nav.nav-shifted {
  top: 0;
}
.secondary-nav::-webkit-scrollbar {
  display: none;
}
.secondary-nav-container {
  display: flex;
  justify-content: center;
  gap: var(--space-xs);
}
.secondary-nav a {
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  background-color: transparent;
}
.secondary-nav a:hover, .secondary-nav a.active {
  background-color: var(--surface);
  color: var(--text-main);
  box-shadow: var(--shadow-sm);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: var(--border-radius-sm);
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background-color: var(--primary);
  color: var(--surface);
}
.btn-primary:hover {
  background-color: var(--primary-dark);
  color: var(--surface);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}
.hero {
  position: relative;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: var(--space-lg) 0 var(--space-2xl) 0;
  background-color: var(--dark-bg);
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
}
.hero-sm {
  min-height: 40vh;
}
.hero .container {
  display: grid;
  grid-template-columns: 4fr 7fr;
  gap: var(--space-xl);
  align-items: center;
  position: relative;
  z-index: 10;
}
.hero-sm .container {
  grid-template-columns: 1fr;
  justify-items: center;
}
.hero-bg-orbs {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  overflow: hidden;
  z-index: 1;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.5;
  animation: floatOrb 20s infinite ease-in-out alternate;
}
.orb-1 {
  width: 500px; height: 500px;
  background: var(--primary);
  top: -100px; left: -100px;
}
.orb-2 {
  width: 400px; height: 400px;
  background: var(--secondary);
  bottom: -100px; right: -50px;
  animation-delay: -5s;
}
.orb-3 {
  width: 300px; height: 300px;
  background: #7B61FF;
  top: 40%; left: 40%;
  animation-delay: -10s;
}
@keyframes floatOrb {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(50px, 50px) scale(1.1); }
  100% { transform: translate(-30px, 80px) scale(0.9); }
}
.glass-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 1rem;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: var(--space-lg);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--surface);
  box-shadow: 0 4px 24px -1px rgba(0, 0, 0, 0.2);
}
.pulse-dot {
  width: 8px; height: 8px;
  background-color: var(--success);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.7);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(22, 163, 74, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(22, 163, 74, 0); }
}
.hero-title {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--surface);
  margin-bottom: var(--space-md);
  white-space: nowrap;
}
.text-gradient {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
.hero-subtitle {
  font-size: 1.25rem;
  color: #B0B8C4;
  max-width: 90%;
  line-height: 1.7;
}
.hero-ctas {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-top: var(--space-xl);
}
.btn-glow {
  position: relative;
  background: linear-gradient(135deg, var(--primary) 0%, #3B5BFF 100%);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.05),
    0 10px 30px -10px rgba(18, 60, 255, 0.5);
}
.shadow-hover:hover {
  transform: translateY(-3px);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.1),
    0 20px 40px -10px rgba(18, 60, 255, 0.6);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  border-radius: var(--border-radius-sm);
  font-weight: 700;
  text-decoration: none;
  background: rgba(255,255,255,0.05);
  color: var(--surface);
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.3s ease;
}
.btn-outline:hover {
  color: var(--surface);
}
.glass-hover:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}
.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-top: var(--space-xl);
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #A0ABBB;
}
.hero-feature-item svg {
  width: 20px; height: 20px;
  stroke: var(--secondary);
  fill: none;
}
.hero-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-image-glow {
  position: absolute;
  width: 120%;
  height: 120%;
  background: conic-gradient(from 180deg at 50% 50%, var(--secondary) 0deg, var(--primary) 180deg, var(--secondary) 360deg);
  filter: blur(80px);
  opacity: 0.15;
  border-radius: 50%;
  z-index: 1;
  animation: spinGlow 10s linear infinite;
}
@keyframes spinGlow {
  100% { transform: rotate(360deg); }
}
.hero-image {
  position: relative;
  z-index: 2;
  border-radius: var(--border-radius-xl);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.1),
    0 30px 60px -15px rgba(0, 0, 0, 0.6);
}
.float-animation {
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
  100% { transform: translateY(0px); }
}
.animate-fade-in-up {
  opacity: 0;
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: var(--delay, 0s);
}
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}
.trust-banner {
  background-color: var(--surface);
  padding: var(--space-xl) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.trust-banner-grid {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}
.trust-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  padding: var(--space-md);
  border-radius: var(--border-radius-lg);
  border: 1px solid transparent;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}
.trust-item:hover {
  background-color: var(--background);
  border-color: var(--border);
}
.trust-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trust-icon.primary { background-color: rgba(18, 60, 255, 0.1); color: var(--primary); }
.trust-icon.success { background-color: rgba(22, 163, 74, 0.1); color: var(--success); }
.trust-icon.accent { background-color: rgba(255, 200, 61, 0.1); color: #D97706; }
.trust-icon svg { width: 24px; height: 24px; stroke: currentColor; fill: none; }
.trust-text h3 { font-size: 1.125rem; margin-bottom: 0.25rem; }
.trust-text p { font-size: 0.875rem; margin-bottom: 0; }
.table-wrapper {
  background: rgba(18, 60, 255, 0.03);
  border: 1px solid rgba(18, 60, 255, 0.1);
  border-radius: var(--border-radius-lg);
  overflow-x: auto;
  overflow-y: hidden;
  margin: var(--space-lg) auto 0;
  max-width: 800px;
}
table {
  width: 100%;
  border-collapse: collapse;
}
tr {
  border-bottom: 1px solid rgba(18, 60, 255, 0.05);
  transition: background-color 0.2s ease;
}
tr:hover {
  background-color: rgba(18, 60, 255, 0.05);
}
tr:last-child {
  border-bottom: none;
}
th, td {
  padding: var(--space-md);
  text-align: left;
}
th {
  width: 40%;
  font-weight: 700;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}
th svg {
  width: 18px;
  height: 18px;
  stroke: var(--primary);
  fill: none;
}
td {
  color: var(--text-secondary);
}
.feature-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}
.feature-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}
.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: var(--space-lg);
  border-radius: var(--border-radius-lg);
  transition: all 0.3s ease;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}
.feature-card .icon-box {
  width: 48px;
  height: 48px;
  border-radius: var(--border-radius-sm);
  background-color: rgba(18, 60, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
}
.feature-card .icon-box svg {
  width: 24px;
  height: 24px;
  fill: var(--primary);
}
.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}
.feature-card p {
  font-size: 1rem;
  margin-bottom: 0;
}
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}
.split-content p:last-of-type {
  margin-bottom: var(--space-lg);
}
.split-image img {
  border-radius: var(--border-radius-xl);
  box-shadow: var(--shadow-lg);
}
.quote-section {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.quote-section blockquote {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin: var(--space-lg) 0;
  line-height: 1.3;
}
.faq-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--border-radius);
  overflow: hidden;
}
.faq-item summary {
  padding: var(--space-md);
  font-weight: 700;
  font-size: 1.125rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-main);
  transition: background-color 0.2s ease;
}
.faq-item summary:hover {
  background-color: var(--background);
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::after {
  content: "";
  width: 24px;
  height: 24px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="%23123CFF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m6 9 6 6 6-6"/></svg>');
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.3s ease;
}
.faq-item[open] summary::after {
  transform: rotate(180deg);
}
.faq-content {
  padding: 0 var(--space-md) var(--space-md);
  color: var(--text-secondary);
  border-top: 1px solid transparent;
}
.faq-item[open] .faq-content {
  border-top-color: var(--border);
  padding-top: var(--space-md);
}
.faq-content p:last-child {
  margin-bottom: 0;
}
.footer {
  background-color: var(--dark-bg);
  color: var(--surface);
  padding: var(--space-3xl) 0 var(--space-lg);
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-nav-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: var(--space-xl);
  margin-bottom: var(--space-3xl);
}
.footer-nav-row a {
  color: var(--surface);
  font-weight: 700;
  font-size: 1.125rem;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-nav-row a:hover {
  color: var(--secondary);
}
.footer-giant-text {
  font-size: clamp(2rem, 12vw, 10rem);
  font-weight: 900;
  line-height: 0.8;
  letter-spacing: -0.05em;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  margin-bottom: var(--space-xl);
  background: linear-gradient(to bottom, rgba(255,255,255,0.15), rgba(255,255,255,0.02));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  pointer-events: none;
  user-select: none;
}
.footer-bottom {
  text-align: center;
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255,255,255,0.1);
  color: #A0ABBB;
  font-size: 0.875rem;
}
@media (min-width: 768px) {
  .trust-banner-grid {
    flex-direction: row;
    justify-content: space-between;
  }
  .trust-item {
    flex: 1;
  }
}
@media (max-width: 1024px) {
  .hero .container, .split-layout {
    grid-template-columns: 1fr;
  }
  .hero-content {
    text-align: center;
    order: 1;
  }
  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-ctas {
    justify-content: center;
  }
  .hero-features {
    justify-content: center;
  }
  .hero-image-wrapper {
    order: 2;
  }
  .split-content {
    order: 2;
  }
  .split-image {
    order: 1;
  }
}
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--dark-bg);
    flex-direction: column;
    padding: var(--space-lg) 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .nav-links.active {
    display: flex;
  }
  .hamburger {
    display: block;
  }
  .secondary-nav-container {
    justify-content: flex-start;
  }
  .feature-grid-3, .feature-grid-4 {
    grid-template-columns: 1fr;
  }
  .footer-nav-row {
    gap: var(--space-md);
  }
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}
.blog-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}
.blog-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background-color: var(--border);
}
.blog-content {
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.blog-tag {
  align-self: flex-start;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--primary);
  background-color: rgba(18, 60, 255, 0.1);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  margin-bottom: var(--space-sm);
}
.blog-title {
  font-size: 1.25rem;
  margin-bottom: var(--space-xs);
  color: var(--text-main);
  line-height: 1.3;
}
.blog-excerpt {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-md);
  flex-grow: 1;
}
.blog-read-more {
  font-weight: 700;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}
.blog-read-more svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  transition: transform 0.2s ease;
}
.blog-read-more:hover svg {
  transform: translateX(4px);
}
@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}
.article-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.article-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
  color: #A0ABBB;
  font-size: 0.875rem;
}
.article-body {
  max-width: 768px;
  margin: 0 auto;
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
}
.article-body h2, .article-body h3 {
  color: var(--text-main);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-sm);
  line-height: 1.3;
}
.article-body p {
  margin-bottom: var(--space-md);
}
.article-body ul {
  margin-bottom: var(--space-md);
  padding-left: var(--space-lg);
}
.article-body li {
  margin-bottom: var(--space-sm);
}
.back-to-blog {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  margin-bottom: var(--space-xl);
}
.back-to-blog:hover {
  text-decoration: underline;
}
.article-table-wrapper {
  overflow-x: auto;
  margin-bottom: var(--space-xl);
}
.article-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  min-width: 600px;
}
.article-table th, .article-table td {
  padding: 16px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
.article-table th {
  background-color: var(--surface-alt);
  font-weight: 700;
  color: var(--text-main);
  border-bottom: 2px solid var(--border);
  text-align: left;
  display: table-cell;
  width: auto;
  white-space: normal;
}
.custom-checklist {
  list-style-type: none;
  padding-left: 0;
}
.custom-checklist li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
}
.custom-checklist svg {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  fill: var(--primary);
  margin-top: 2px;
}
.tooltip-container {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-left: 0.35rem;
  cursor: help;
  vertical-align: middle;
}
.tooltip-container svg {
  width: 1.25em;
  height: 1.25em;
  fill: #ffffff;
  opacity: 0.7;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.tooltip-container:hover svg {
  opacity: 1;
  transform: scale(1.1);
}
.tooltip-text {
  visibility: hidden;
  width: max-content;
  max-width: 250px;
  background-color: var(--dark-surface);
  color: var(--surface);
  text-align: center;
  border-radius: 6px;
  padding: 0.75rem;
  position: absolute;
  z-index: 100;
  bottom: 150%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  font-size: 0.875rem;
  line-height: 1.4;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  pointer-events: none;
  font-weight: 400;
}
.tooltip-text::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: var(--dark-surface) transparent transparent transparent;
}
.tooltip-container:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
html[lang="ur-PK"] *, html[dir="rtl"] * {
  letter-spacing: normal !important;
}
html[lang="ur-PK"] body, html[dir="rtl"] body,
html[lang="ur-PK"] p, html[dir="rtl"] p,
html[lang="ur-PK"] li, html[dir="rtl"] li {
  line-height: 2.2 !important;
}
html[lang="ur-PK"] h1, html[dir="rtl"] h1,
html[lang="ur-PK"] h2, html[dir="rtl"] h2,
html[lang="ur-PK"] h3, html[dir="rtl"] h3,
html[lang="ur-PK"] .blog-title, html[dir="rtl"] .blog-title {
  line-height: 1.6 !important;
}
html[lang="ur-PK"] .footer-giant-text, html[dir="rtl"] .footer-giant-text {
  line-height: 1.2 !important;
}
.breadcrumbs {
    padding: var(--space-md) 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
}
.breadcrumbs a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.2s ease;
}
.breadcrumbs a:hover {
    color: var(--text-primary);
}
.games-hero {
    padding: var(--space-xl) 0 var(--space-2xl);
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    align-items: center;
}
@media (min-width: 992px) {
    .games-hero {
        grid-template-columns: 1fr 1fr;
    }
}
.games-hero-visual {
    position: relative;
    aspect-ratio: 1/1;
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at center, rgba(18, 60, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}
.game-composition {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}
.composition-card {
    background: linear-gradient(145deg, #1e293b, #0f172a);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 120px;
}
.composition-card:nth-child(1) { transform: rotate(-15deg) translateY(10px); }
.composition-card:nth-child(2) { transform: translateY(-20px); z-index: 3; border-color: var(--primary); }
.composition-card:nth-child(3) { transform: rotate(15deg) translateY(10px); }
.category-nav-wrapper {
    position: sticky;
    top: 70px;
    z-index: 40;
    background-color: rgba(10, 15, 36, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 1rem 0;
    margin-bottom: var(--space-xl);
    transition: top 0.3s ease;
}
.category-nav-wrapper.nav-shifted {
    top: 0 !important;
}
.category-nav {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scrollbar-width: none;
    padding-bottom: 0.25rem;
}
.category-nav::-webkit-scrollbar {
    display: none;
}
.cat-btn {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 0.6rem 1.25rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s ease;
}
.cat-btn:hover {
    border-color: rgba(255,255,255,0.3);
    color: var(--text-primary);
}
.cat-btn.active {
    background-color: var(--primary);
    color: white;
    border-color: var(--primary);
    box-shadow: 0 4px 15px rgba(18, 60, 255, 0.4);
}
.game-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    transition: opacity 0.3s ease;
}
@media (min-width: 768px) {
    .game-grid { grid-template-columns: repeat(2, 1fr); }
opacity: 1;
  transform: scale(1.1);
}
.tooltip-text {
  visibility: hidden;
  width: max-content;
  max-width: 250px;
  background-color: var(--dark-surface);
  color: var(--surface);
  text-align: center;
  border-radius: 6px;
  padding: 0.75rem;
  position: absolute;
  z-index: 100;
  bottom: 150%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  font-size: 0.875rem;
  line-height: 1.4;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  pointer-events: none;
  font-weight: 400;
}
.tooltip-text::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: var(--dark-surface) transparent transparent transparent;
}
.tooltip-container:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
html[lang="ur-PK"] *, html[dir="rtl"] * {
  letter-spacing: normal !important;
}
html[lang="ur-PK"] body, html[dir="rtl"] body,
html[lang="ur-PK"] p, html[dir="rtl"] p,
html[lang="ur-PK"] li, html[dir="rtl"] li {
  line-height: 2.2 !important;
}
html[lang="ur-PK"] h1, html[dir="rtl"] h1,
html[lang="ur-PK"] h2, html[dir="rtl"] h2,
html[lang="ur-PK"] h3, html[dir="rtl"] h3,
html[lang="ur-PK"] .blog-title, html[dir="rtl"] .blog-title {
  line-height: 1.6 !important;
}
html[lang="ur-PK"] .footer-giant-text, html[dir="rtl"] .footer-giant-text {
  line-height: 1.2 !important;
}
.breadcrumbs {
    padding: var(--space-md) 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
}
.breadcrumbs a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.2s ease;
}
.breadcrumbs a:hover {
    color: var(--text-primary);
}
.games-hero {
    padding: var(--space-xl) 0 var(--space-2xl);
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    align-items: center;
}
@media (min-width: 992px) {
    .games-hero {
        grid-template-columns: 1fr 1fr;
    }
}
.games-hero-visual {
    position: relative;
    aspect-ratio: 1/1;
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at center, rgba(18, 60, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}
.game-composition {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}
.composition-card {
    background: linear-gradient(145deg, #1e293b, #0f172a);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 120px;
}
.composition-card:nth-child(1) { transform: rotate(-15deg) translateY(10px); }
.composition-card:nth-child(2) { transform: translateY(-20px); z-index: 3; border-color: var(--primary); }
.composition-card:nth-child(3) { transform: rotate(15deg) translateY(10px); }
.category-nav-wrapper {
    position: sticky;
    top: 70px;
    z-index: 40;
    background-color: rgba(10, 15, 36, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 1rem 0;
    margin-bottom: var(--space-xl);
    transition: top 0.3s ease;
}
.category-nav-wrapper.nav-shifted {
    top: 0 !important;
}
.category-nav {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scrollbar-width: none;
    padding-bottom: 0.25rem;
}
.category-nav::-webkit-scrollbar {
    display: none;
}
.cat-btn {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 0.6rem 1.25rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s ease;
}
.cat-btn:hover {
    border-color: rgba(255,255,255,0.3);
    color: var(--text-primary);
}
.cat-btn.active {
    background-color: var(--primary);
    color: white;
    border-color: var(--primary);
    box-shadow: 0 4px 15px rgba(18, 60, 255, 0.4);
}
.game-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    transition: opacity 0.3s ease;
}
@media (min-width: 768px) {
    .game-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
    .game-grid { grid-template-columns: repeat(3, 1fr); }
}
.game-card {
    background-color: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    height: 100%;
    box-shadow: var(--shadow-sm);
}
.game-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}
.game-card-img-wrapper {
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, #0f172a, #1e293b);
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    overflow: hidden;
}
.game-card-img-wrapper img {
    width: 80px;
    opacity: 0.6;
    transition: transform 0.5s ease, opacity 0.3s ease;
}
.game-card:hover .game-card-img-wrapper img {
    transform: scale(1.1);
    opacity: 0.9;
}
.game-card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.game-badge {
    display: inline-block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 0.75rem;
}
.game-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}
.game-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}
.game-action {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    color: var(--primary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}
.game-action svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 0.2s ease;
}
.game-card:hover .game-action {
    color: var(--primary-dark);
}
.game-card:hover .game-action svg {
    transform: translateX(4px);
}
.empty-state {
    text-align: center;
    padding: 4rem 1rem;
    color: var(--text-secondary);
    background-color: var(--background);
    border-radius: var(--border-radius-lg);
    border: 1px dashed var(--border);
}
.feature-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: var(--space-xl);
}
@media (min-width: 768px) {
    .feature-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
    .feature-grid { grid-template-columns: repeat(4, 1fr); }
}
.feature-card {
    background-color: var(--surface);
    border: 1px solid var(--border);
    padding: 2rem 1.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-sm);
}
.feature-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(18, 60, 255, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 1.25rem;
}
.feature-icon svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.step-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: var(--space-xl);
}
@media (min-width: 768px) {
    .step-container { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
}
.step-card {
    position: relative;
    padding: 2rem;
    background-color: var(--surface);
    border-radius: var(--border-radius-lg);
    border-top: 3px solid var(--border);
    transition: border-color 0.3s ease;
    box-shadow: var(--shadow-md);
}
.step-card:hover {
    border-top-color: var(--primary);
}
.step-number {
    font-size: 3rem;
    font-weight: 800;
    color: rgba(18, 60, 255, 0.05);
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    line-height: 1;
}
.screenshot-carousel {
  display: flex;
  gap: var(--space-md);
  overflow-x: auto;
  padding: 1rem 0 2rem 0;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.screenshot-carousel::-webkit-scrollbar {
  display: none;
}
.screenshot-item {
  scroll-snap-align: center;
  flex: 0 0 auto;
  width: 400px;
  height: auto;
  aspect-ratio: 16 / 9;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  object-fit: cover;
  transition: transform 0.3s ease;
  border: 1px solid rgba(18, 60, 255, 0.1);
}
.screenshot-item:hover {
  transform: translateY(-5px);
}
.carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  margin: 0 -1rem;
}
.screenshot-carousel {
  padding: 1rem 3rem 2rem 3rem;
}
.carousel-btn {
  position: absolute;
  top: calc(50% - 1rem);
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.2s ease;
}
.carousel-btn:hover {
  background: var(--primary);
  color: var(--surface);
  border-color: var(--primary);
}
.carousel-btn svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}
.prev-btn {
  left: 0;
}
.next-btn {
  right: 0;
}
