/* Human & Organizational Skills - Custom Styling */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --hos-primary: #0052FF;
  --hos-primary-dark: #003ECC;
  --hos-secondary: #0A2540;
  --hos-accent: #00D4B2;
  --hos-accent-purple: #7928CA;
  --hos-dark: #0A192F;
  --hos-light: #F8FAFC;
  --hos-gray: #64748B;
}

body {
  font-family: 'Inter', sans-serif;
  color: #1E293B;
  background-color: #FAFAFC;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .font-heading {
  font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Gradient Utilities */
.bg-gradient-brand {
  background: linear-gradient(135deg, #0052FF 0%, #0A2540 100%);
}

.bg-gradient-hero {
  background: radial-gradient(circle at top right, rgba(0, 82, 255, 0.12), transparent 45%),
              radial-gradient(circle at bottom left, rgba(0, 212, 178, 0.08), transparent 40%),
              #0A2540;
}

.text-gradient {
  background: linear-gradient(135deg, #0052FF 0%, #00D4B2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-purple {
  background: linear-gradient(135deg, #7928CA 0%, #0052FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Glassmorphism */
.glass-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.glass-dark {
  background: rgba(10, 37, 64, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Floating Animation */
@keyframes floatSlow {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

.animate-float {
  animation: floatSlow 4s ease-in-out infinite;
}

/* Pulse Glow */
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 15px rgba(0, 82, 255, 0.4); }
  50% { box-shadow: 0 0 25px rgba(0, 82, 255, 0.7); }
}

.pulse-glow {
  animation: pulseGlow 3s infinite;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: #F1F5F9;
}
::-webkit-scrollbar-thumb {
  background: #CBD5E1;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #94A3B8;
}

/* Certificate Print Styling */
@media print {
  body * {
    visibility: hidden;
  }
  #certificate-print-area, #certificate-print-area * {
    visibility: visible;
  }
  #certificate-print-area {
    position: absolute;
    left: 0;
    top: 0;
    width: 100% !important;
    height: 100% !important;
    margin: 0 !important;
    padding: 20px !important;
    background: #FFFFFF !important;
    box-shadow: none !important;
    border: none !important;
  }
  @page {
    size: landscape;
    margin: 0;
  }
  .no-print {
    display: none !important;
  }
}
