/* Kingdom Kudos Color Palette */
:root {
  /* Background Colors */
  --bg-primary: #0f172a;        /* slate-900 */
  --bg-secondary: #1e293b;      /* slate-800 */
  --bg-tertiary: #334155;       /* slate-700 */
  
  /* Text Colors */
  --text-primary: #f1f5f9;      /* slate-100 */
  --text-secondary: #cbd5e1;    /* slate-300 */
  --text-muted: #94a3b8;        /* slate-400 */
  
  /* Brand Colors */
  --cyan-primary: #22d3ee;      /* cyan-400 */
  --purple-primary: #a855f7;    /* purple-500 */
  --pink-primary: #ec4899;      /* pink-500 */
  --amber-primary: #fbbf24;     /* amber-400 */
  --green-primary: #22c55e;     /* green-500 */
  
  /* Border & Divider */
  --border-color: #334155;      /* slate-700 */
  --border-light: #475569;      /* slate-600 */
  
  /* Radius */
  --radius-sm: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  
  /* Shadows */
  --shadow-cyan: 0 0 20px rgba(34, 211, 238, 0.1);
  --shadow-purple: 0 0 20px rgba(168, 85, 247, 0.1);
  --shadow-pink: 0 0 20px rgba(236, 72, 153, 0.1);
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-secondary);
  line-height: 1.6;
  min-height: 100vh;
  /* Kingdom Kudos signature gradient background */
  background-image: 
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(56, 189, 248, 0.1), transparent),
    radial-gradient(ellipse 80% 50% at 50% 120%, rgba(192, 132, 252, 0.1), transparent);
  background-attachment: fixed;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

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

::-webkit-scrollbar-thumb {
  background: var(--cyan-primary);
  border-radius: 10px;
}

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

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

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

/* Kingdom Kudos Gradient Text */
.gradient-text {
  background: linear-gradient(to right, var(--cyan-primary), var(--purple-primary), var(--pink-primary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}

.gradient-text-cyan-purple {
  background: linear-gradient(to right, var(--cyan-primary), var(--purple-primary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Buttons */
.btn {
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-primary {
  background: linear-gradient(to right, var(--cyan-primary), var(--purple-primary));
  color: var(--bg-primary);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-cyan);
}

.btn-secondary {
  background: var(--bg-secondary);
  color: var(--text-primary);
  border: 2px solid var(--border-color);
}

.btn-secondary:hover {
  border-color: var(--cyan-primary);
  color: var(--cyan-primary);
}

/* Cards */
.card {
  background: rgba(30, 41, 59, 0.5);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all 0.3s ease;
}

.card:hover {
  border-color: var(--cyan-primary);
  box-shadow: var(--shadow-cyan);
  transform: translateY(-4px);
}

.card-gradient {
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.8), rgba(139, 92, 246, 0.2));
  border: 2px solid rgba(168, 85, 247, 0.3);
}

/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
}

.badge-cyan {
  background: rgba(34, 211, 238, 0.2);
  color: var(--cyan-primary);
  border: 1px solid rgba(34, 211, 238, 0.3);
}

.badge-purple {
  background: rgba(168, 85, 247, 0.2);
  color: var(--purple-primary);
  border: 1px solid rgba(168, 85, 247, 0.3);
}

.badge-amber {
  background: rgba(251, 191, 36, 0.2);
  color: var(--amber-primary);
  border: 1px solid rgba(251, 191, 36, 0.3);
}

.badge-green {
  background: rgba(34, 197, 94, 0.2);
  color: var(--green-primary);
  border: 1px solid rgba(34, 197, 94, 0.3);
}

/* Container */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Header/Logo Style */
.logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-icon {
  position: relative;
  width: 3rem;
  height: 3rem;
  color: var(--cyan-primary);
}

.logo-sparkle {
  position: absolute;
  top: -0.25rem;
  right: -0.25rem;
  width: 1rem;
  height: 1rem;
  color: var(--pink-primary);
  animation: pulse 2s ease-in-out infinite;
}

.logo-text h1 {
  font-size: 1.5rem;
  margin-bottom: 0;
  color: var(--text-primary);
}

.logo-tagline {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Animations */
@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.1);
  }
}

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

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* Utility Classes */
.text-center { text-align: center; }
.text-cyan { color: var(--cyan-primary); }
.text-purple { color: var(--purple-primary); }
.text-amber { color: var(--amber-primary); }
.text-muted { color: var(--text-muted); }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-4 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 2rem; }

.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.gap-2 { gap: 1rem; }
.gap-4 { gap: 2rem; }

.zphero h1, .zphero h2, .zphero h3, .zphero h4, .zphero h5, .zphero h6 { line-height: 1.2; color: #0F4C8A; }

.zshero-banner-style-02 .zshero-slide-box { padding: 25px; border: 1px solid rgba(255, 255, 255, 0.65); }

@media all and (min-width: 992px) { .zphero h2 { font-size: 4.3em; font-weight: bold; } }

@media all and (min-width: 992px) { .zshero-banner-style-02 { position: relative; }
  .zshero-banner-style-02:before { content: ''; width: 50%; background: #dff2f9; height: 100%; position: absolute; }
  .zshero-banner-style-02 .zshero-slide-box { padding: 45px; padding-top: 80px; margin-top: -70px; margin-left: 80px; } }

.theme-footer-area.zpdark-section { font-size: 14px; color: rgba(255, 255, 255, 0.6); }

/* Import Poppins Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700;800&display=swap');

