/* Sikkim Skill University Global External CSS */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto !important; }
  *, ::before, ::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

html, body {
  overflow-x: clip;
  max-width: 100vw !important;
  width: 100% !important;
  margin: 0;
  padding: 0;
  font-family: 'Plus Jakarta Sans', sans-serif;
  background-color: #FAFAFD;
  color: #1e293b;
}

#root {
  max-width: 100vw !important;
  width: 100% !important;
}

/* Custom Theme Variables */
:root {
  --mustard-primary: #F5B800;
  --mustard-dark: #D9A000;
  --mustard-light: #FFCF33;
  --navy-deep: #1C0B42;
  --navy-darker: #130730;
  --navy-card: #251254;
  --royal-blue: #002D62;
  --royal-blue-glow: #0047AB;
}

/* Shiny Gold Gradient Text Class */
.gold-gradient-text {
  background: linear-gradient(135deg, #FFE680 0%, #F5B800 50%, #E6A100 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Royal Blue Gradient Text Class */
.blue-gradient-text {
  background: linear-gradient(135deg, #0047AB 0%, #1C0B42 60%, #002D62 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Metallic Gold Shimmer Background */
.gold-shimmer-bg {
  background: linear-gradient(135deg, #FFF9E6 0%, #FFE49E 50%, #FFF0C2 100%);
  border: 1px solid rgba(245, 184, 0, 0.4);
}

/* Royal Blue Badge Class */
.royal-blue-badge {
  background: linear-gradient(135deg, #002D62 0%, #1C0B42 100%);
  color: #F5B800;
  border: 1px solid rgba(245, 184, 0, 0.4);
}

/* Mustard Yellow Button Class */
.btn-mustard {
  background: linear-gradient(135deg, #FFCF33 0%, #F5B800 60%, #D9A000 100%);
  color: #1C0B42;
  font-weight: 800;
  box-shadow: 0 8px 25px rgba(245, 184, 0, 0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-mustard:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 12px 35px rgba(245, 184, 0, 0.45);
}

/* Royal Blue Button Class */
.btn-royal-blue {
  background: linear-gradient(135deg, #002D62 0%, #1C0B42 100%);
  color: #F5B800;
  font-weight: 800;
  border: 1px solid #F5B800;
  box-shadow: 0 8px 25px rgba(0, 45, 98, 0.35);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-royal-blue:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 12px 35px rgba(0, 45, 98, 0.5);
  background: linear-gradient(135deg, #003B7A 0%, #251254 100%);
}

/* Card Hover Animation Class */
.card-hover-gold {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-hover-gold:hover {
  transform: translateY(-5px);
  border-color: #F5B800;
  box-shadow: 0 15px 35px rgba(28, 11, 66, 0.12);
}

/* Floating 3D Keyframe Animation */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

.animate-float {
  animation: float 4s ease-in-out infinite;
}

/* Gold Pulse Keyframe Animation */
@keyframes goldPulse {
  0%, 100% { box-shadow: 0 0 15px rgba(245, 184, 0, 0.2); }
  50% { box-shadow: 0 0 30px rgba(245, 184, 0, 0.5); }
}

.gold-glow-pulse {
  animation: goldPulse 3s infinite;
}

/* Gold Shiny Border Pill Class */
.gold-border-pill {
  border: 1px solid rgba(245, 184, 0, 0.5);
  background: rgba(245, 184, 0, 0.12);
}

/* Custom Scrollbar Styles */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #1C0B42;
}
::-webkit-scrollbar-thumb {
  background: #F5B800;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #FFCF33;
}
