/* ==========================================================================
   BANDHAN PARIVAR SECURITY GUARD SERVICES - CORE STYLESHEET
   ========================================================================== */

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

/* CSS Variables Definition */
:root {
  /* Core brand identity colors (Bhagwa / Saffron & Dark Luxury) */
  --primary: #FF6B00;
  --primary-light: #F97316;
  --primary-dark: #EA580C;

  --navy: #0F172A;
  --black: #111827;
  --charcoal: #1E293B;

  --gold: #FBBF24;
  --white: #FFFFFF;
  --text: #CBD5E1;
  --muted: #94A3B8;

  --primary-gradient: linear-gradient(135deg, #FF6B00, #F97316);
  --dark-gradient: linear-gradient(135deg, #111827, #0F172A);

  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.08);

  --shadow-orange: 0 10px 40px rgba(255, 107, 0, 0.25);
  --shadow-dark: 0 10px 40px rgba(0, 0, 0, 0.5);

  /* Backwards compatibility mapping for core stylesheets */
  --color-primary: var(--black);
  --color-secondary: var(--navy);
  --color-dark: #080c14;
  --color-gold: var(--primary);
  --color-gold-light: var(--primary-light);
  --color-gold-pale: var(--gold);
  --color-white: var(--white);
  --color-text-light: var(--text);
  --color-text-muted: var(--muted);
  --color-red: #EF4444;

  --gradient-gold: var(--primary-gradient);
  --gradient-dark: var(--dark-gradient);
  --gradient-navy: linear-gradient(135deg, var(--navy), var(--black));

  --font-primary: 'Montserrat', sans-serif;
  --font-heading: 'Poppins', sans-serif;
  --font-display: 'Rajdhani', sans-serif;

  --border-glass: 1px solid var(--glass-border);
  --glass-bg-fallback: rgba(15, 23, 42, 0.85);

  --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --header-height: 80px;
}

/* ==========================================================================
   GLOBAL RESET & BASE STYLES
   ========================================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--color-gold) var(--color-primary);
}

body {
  font-family: var(--font-primary);
  background-color: var(--color-primary);
  color: var(--color-text-light);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Scrollbar styling for Webkit browsers */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--color-primary);
}
::-webkit-scrollbar-thumb {
  background: var(--color-gold);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-gold-light);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-smooth);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

section {
  padding: 100px 0;
  position: relative;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Typography elements */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.text-gold {
  color: var(--color-gold);
}

.bg-dark {
  background: radial-gradient(circle at top right, rgba(255, 107, 0, 0.05), transparent 50%),
              radial-gradient(circle at bottom left, rgba(15, 23, 42, 0.5), transparent 50%),
              var(--gradient-dark);
}

.bg-navy {
  background: radial-gradient(circle at top right, rgba(255, 107, 0, 0.05), transparent 50%),
              radial-gradient(circle at bottom left, rgba(15, 23, 42, 0.5), transparent 50%),
              var(--gradient-navy);
}

/* ==========================================================================
   PRE LOADER
   ========================================================================== */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-dark);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader-shield {
  position: relative;
  width: 80px;
  height: 90px;
  background-color: transparent;
  clip-path: polygon(50% 0%, 100% 15%, 100% 60%, 50% 100%, 0% 60%, 0% 15%);
  border: 3px solid var(--color-gold);
  display: flex;
  justify-content: center;
  align-items: center;
  animation: pulseShield 2s infinite ease-in-out;
}

.loader-shield::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--gradient-gold);
  clip-path: polygon(50% 10%, 90% 22%, 90% 58%, 50% 90%, 10% 58%, 10% 22%);
  opacity: 0.8;
  z-index: -1;
}

.loader-shield i {
  color: var(--color-primary);
  font-size: 32px;
}

.loader-text {
  margin-top: 24px;
  font-family: var(--font-heading);
  font-size: 14px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-gold-light);
  font-weight: 600;
}

@keyframes pulseShield {
  0% { transform: scale(0.9); opacity: 0.6; box-shadow: 0 0 0 0 rgba(201, 151, 58, 0.4); }
  50% { transform: scale(1.05); opacity: 1; box-shadow: 0 0 20px 10px rgba(201, 151, 58, 0.1); }
  100% { transform: scale(0.9); opacity: 0.6; box-shadow: 0 0 0 0 rgba(201, 151, 58, 0.4); }
}

.loader-logo {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 3px solid var(--color-gold);
  object-fit: cover;
  animation: pulseLogo 2s infinite ease-in-out;
}

@keyframes pulseLogo {
  0% {
    transform: scale(0.9);
    box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.4);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 20px 10px rgba(255, 107, 0, 0.2);
  }
  100% {
    transform: scale(0.9);
    box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.4);
  }
}

/* ==========================================================================
   SCROLL PROGRESS BAR
   ========================================================================== */
.scroll-progress-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.05);
  z-index: 1000;
}

.scroll-progress-bar {
  height: 100%;
  width: 0%;
  background: var(--gradient-gold);
  box-shadow: 0 0 8px var(--color-gold-light);
  transition: width 0.1s ease-out;
}

/* ==========================================================================
   TOPBAR & HEADER NAVIGATION
   ========================================================================== */
.topbar {
  background-color: var(--color-dark);
  color: var(--color-text-muted);
  font-size: 12px;
  font-weight: 500;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.topbar-cert {
  background: rgba(201, 151, 58, 0.12);
  color: var(--color-gold-light);
  padding: 2px 10px;
  border: 1px solid rgba(201, 151, 58, 0.25);
  font-weight: 600;
  font-size: 11px;
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.topbar-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.topbar-item i {
  color: var(--color-gold);
}

.topbar-item a:hover {
  color: var(--color-gold-light);
}

/* NAVBAR */
.navbar {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 999;
  border-bottom: 1px solid rgba(255, 107, 0, 0.1);
  transition: var(--transition-smooth);
}

.navbar.scrolled {
  background: rgba(15, 23, 42, 0.95);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border-bottom-color: var(--color-gold);
}

.navbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: var(--header-height);
}

.logo-block {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-shield {
  width: 50px;
  height: 55px;
  background: var(--gradient-gold);
  clip-path: polygon(50% 0%, 100% 15%, 100% 60%, 50% 100%, 0% 60%, 0% 15%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: bold;
  flex-shrink: 0;
}

.logo-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--color-gold);
}

.logo-text-block {
  line-height: 1.15;
}

.logo-main {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--color-white);
  text-transform: uppercase;
}

.logo-main span {
  color: var(--color-gold);
}

.logo-sub {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--color-text-muted);
  text-transform: uppercase;
}

.nav-links-wrapper {
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  padding: 8px 16px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-muted);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 16px;
  right: 16px;
  height: 2px;
  background-color: var(--color-gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--color-gold-light);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* HAMBURGER MENU */
.hamburger {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
  outline: none;
  padding: 8px;
  z-index: 1000;
}

.hamburger .bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  transition: var(--transition-smooth);
  background-color: var(--color-white);
  border-radius: 2px;
}

/* ==========================================================================
   BUTTONS & ACTIONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.4) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
  transition: 0.75s ease;
  z-index: -1;
}

.btn:hover::before {
  left: 125%;
}

.btn-primary {
  background: var(--primary-gradient);
  color: var(--white);
  box-shadow: var(--shadow-orange);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(255, 107, 0, 0.45);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  border-color: var(--primary-light);
  color: var(--white);
  transform: translateY(-3px);
  background: rgba(255, 107, 0, 0.1);
  box-shadow: var(--shadow-orange);
}

.btn-dark {
  background: var(--black);
  color: var(--primary);
  border: 1px solid var(--primary);
}

.btn-dark:hover {
  background: var(--primary-gradient);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-orange);
}

.btn-nav-cta {
  background: var(--primary-gradient);
  color: var(--white);
  padding: 10px 20px;
  font-size: 13px;
  margin-left: 12px;
  box-shadow: 0 4px 15px rgba(255, 107, 0, 0.2);
}

.btn-nav-cta:hover {
  box-shadow: 0 0 15px rgba(255, 107, 0, 0.4);
}

/* ==========================================================================
   GLASSMORPHISM CARDS (GLOBAL CLASSES)
   ========================================================================== */
.glass-card {
  background: rgba(15, 23, 42, 0.45);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 107, 0, 0.08);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.4);
  border-radius: 8px;
  padding: 32px;
  transition: var(--transition-smooth);
}

.glass-card:hover {
  border-color: rgba(255, 107, 0, 0.35);
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(255, 107, 0, 0.15), 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* ==========================================================================
   SECTION CONTROLS
   ========================================================================== */
.section-header {
  margin-bottom: 64px;
}

.section-header.center {
  text-align: center;
}

.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 12px;
  position: relative;
  padding-left: 20px;
}

.section-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 2px;
  background-color: var(--color-gold);
}

.section-header.center .section-label {
  padding: 0 20px;
}

.section-header.center .section-label::before {
  left: 0;
}
.section-header.center .section-label::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 2px;
  background-color: var(--color-gold);
}

.section-title {
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1.15;
  color: var(--color-white);
  margin-bottom: 20px;
}

.section-title span {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-desc {
  font-size: 16px;
  color: var(--color-text-muted);
  max-width: 600px;
  line-height: 1.7;
}

.section-header.center .section-desc {
  margin: 0 auto;
}

/* ==========================================================================
   WHY CHOOSE US & TICKER STYLE
   ========================================================================== */
.ticker {
  background: var(--gradient-gold);
  overflow: hidden;
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ticker-track {
  display: flex;
  white-space: nowrap;
}

.ticker-item {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-primary);
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.ticker-dot {
  width: 6px;
  height: 6px;
  background: var(--color-primary);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Why Us Section */
.why-section {
  background-color: var(--color-dark);
}

.why-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.why-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.why-num {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--color-gold);
  line-height: 1;
  background: rgba(201, 151, 58, 0.08);
  border: 1px solid rgba(201, 151, 58, 0.2);
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  flex-shrink: 0;
}

.why-item-content h3 {
  font-size: 18px;
  color: var(--color-white);
  margin-bottom: 6px;
}

.why-item-content p {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.why-visual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.why-stat-box {
  background: var(--glass-bg);
  border: var(--border-glass);
  padding: 32px 24px;
  text-align: center;
  border-radius: 4px;
}

.why-stat-box.highlight {
  grid-column: span 2;
  background: var(--gradient-gold);
  border: none;
}

.why-stat-box.highlight .ws-num,
.why-stat-box.highlight .ws-label {
  color: var(--color-primary);
}

.ws-num {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 800;
  color: var(--color-gold);
  line-height: 1;
  margin-bottom: 8px;
}

.ws-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

/* ==========================================================================
   CTA BANNER SECTION
   ========================================================================== */
.cta-banner {
  background: var(--gradient-gold);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(rgba(255,255,255,0.15) 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.3;
}

.cta-banner h2 {
  font-size: clamp(28px, 4vw, 42px);
  color: var(--color-primary);
  margin-bottom: 12px;
  position: relative;
}

.cta-banner p {
  font-size: 16px;
  color: rgba(7, 16, 30, 0.8);
  font-weight: 500;
  max-width: 650px;
  margin: 0 auto 36px;
  position: relative;
}

.cta-banner-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
}

/* ==========================================================================
   FOOTER SECTION
   ========================================================================== */
footer {
  background-color: var(--color-dark);
  padding: 80px 0 0;
  border-top: 2px solid rgba(201, 151, 58, 0.15);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-brand p {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin: 20px 0 28px;
}

.footer-brand .logo-block {
  margin-bottom: 8px;
}

.footer-cert-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(201, 151, 58, 0.08);
  border: 1px solid rgba(201, 151, 58, 0.2);
  padding: 8px 16px;
  border-radius: 4px;
  color: var(--color-gold-light);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.footer-col h4 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-gold);
  margin-bottom: 24px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-col ul a {
  font-size: 14px;
  color: var(--color-text-muted);
  display: inline-block;
}

.footer-col ul a:hover {
  color: var(--color-gold-light);
  transform: translateX(5px);
}

.footer-col ul i {
  color: var(--color-gold);
  margin-right: 8px;
  font-size: 12px;
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: var(--color-text-muted);
}

.footer-bottom a {
  color: var(--color-gold);
  font-weight: 600;
  transition: var(--transition-smooth);
}

.footer-bottom a:hover {
  color: var(--color-gold-pale);
  text-shadow: 0 0 10px rgba(251, 191, 36, 0.4);
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 40%;
  color: var(--color-text-muted);
}

.footer-socials a:hover {
  background: var(--gradient-gold);
  border-color: var(--color-gold);
  color: var(--color-primary);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(201, 151, 58, 0.3);
}

/* ==========================================================================
   FLOATING ELEMENTS (WHATSAPP & BACK TO TOP)
   ========================================================================== */
/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 998;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: var(--color-white);
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  font-size: 30px;
  transition: var(--transition-smooth);
}

.whatsapp-float:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

/* Floating pulse ring around WhatsApp */
.whatsapp-pulse {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #25D366;
  border-radius: 50%;
  z-index: -1;
  opacity: 0.4;
  animation: pulseOut 2s infinite ease-out;
}

@keyframes pulseOut {
  0% { transform: scale(1); opacity: 0.4; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* Back To Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 998;
  width: 50px;
  height: 50px;
  background: var(--glass-bg);
  border: var(--border-glass);
  color: var(--color-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-md);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--gradient-gold);
  color: var(--color-primary);
  border-color: var(--color-gold);
  transform: translateY(-5px);
}

/* floating ISO certification seal */
.iso-floating-badge {
  position: fixed;
  top: 150px;
  right: -80px;
  z-index: 990;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: var(--border-glass);
  padding: 8px 16px;
  border-radius: 4px 0 0 4px;
  transform: rotate(-90deg);
  transform-origin: right bottom;
  box-shadow: var(--shadow-md);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--color-gold-light);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-smooth);
}

.iso-floating-badge:hover {
  right: 0px;
  transform: rotate(0deg);
  border-radius: 4px 0 0 4px;
  background: var(--color-dark);
}
