/* ============================================================
   DOIT INDUSTRIES - PREMIUM BLUE THEME
   Color Palette: White / Light Blue / Dark Blue
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400&family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
  --gold:          #009CD9;
  --gold-deep:     #009CD9;
  --gold-light:    #009CD9;
  --gold-shine:    #E3F4FB;
  --gold-ultra:    #E3F4FB;
  --cream:         #E3F4FB;
  --cream-2:       #E3F4FB;
  --dark:          #000066;
  --dark-2:        #000066;
  --charcoal:      #000066;
  --warm-gray:     #36516F;
  --light-gray:    #B8DDED;
  --white:         #FFFFFF;
  --shadow-gold:   0 8px 40px rgba(0,156,217,0.22);
  --shadow-card:   0 4px 24px rgba(0,0,102,0.10);
  --grad-gold:     linear-gradient(135deg, #009CD9 0%, #2DB9EA 55%, #009CD9 100%);
  --grad-gold-v:   linear-gradient(180deg, #009CD9 0%, #0088BF 100%);
  --grad-dark:     linear-gradient(135deg, #000066 0%, #00004D 100%);
  --radius:        12px;
  --radius-lg:     20px;
  --transition:    all 0.35s cubic-bezier(0.4,0,0.2,1);
  --font-heading:  'Playfair Display', Georgia, serif;
  --font-body:     'Poppins', sans-serif;
}

/* â”€â”€â”€ RESET & BASE â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: #e3f4fb;
  color: var(--dark);
  overflow-x: hidden;
  line-height: 1.7;
}

h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-heading);
  color: var(--dark);
  line-height: 1.25;
}

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

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

/* â”€â”€â”€ UTILITY CLASSES â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.text-gold      { color: var(--gold) !important; }
.text-gold-deep { color: var(--gold-deep) !important; }
.bg-gold        { background: var(--grad-gold) !important; }
.bg-dark        { background: var(--dark) !important; }
.bg-cream       { background: var(--cream) !important; }
.section-pad    { padding: 90px 0; }
.section-pad-sm { padding: 60px 0; }

.gold-line {
  display: inline-block;
  width: 60px; height: 3px;
  background: var(--grad-gold);
  border-radius: 2px;
  margin-bottom: 16px;
}

.gold-divider {
  width: 80px; height: 4px;
  background: var(--grad-gold);
  border-radius: 2px;
  margin: 12px auto 0;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(29,114,210,0.12);
  color: var(--gold-deep);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  border: 1px solid rgba(29,114,210,0.3);
  margin-bottom: 16px;
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--grad-gold);
  color: var(--dark) !important;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  padding: 13px 32px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(29,114,210,0.4);
  text-decoration: none;
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(29,114,210,0.55);
  color: var(--dark) !important;
}

.btn-gold-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--gold) !important;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 12px 30px;
  border-radius: 50px;
  border: 2px solid var(--gold);
  cursor: pointer;
  transition: var(--transition);
}
.btn-gold-outline:hover {
  background: var(--grad-gold);
  color: var(--dark) !important;
  transform: translateY(-2px);
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--dark) !important;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 13px 32px;
  border-radius: 50px;
  border: none;
  transition: var(--transition);
  box-shadow: var(--shadow-card);
}
.btn-white:hover { background: var(--gold-ultra); transform: translateY(-2px); }

/* â”€â”€â”€ PRELOADER â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
#preloader {
  position: fixed; inset: 0;
  background: var(--dark);
  z-index: 99999;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
  gap: 24px;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
#preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.preloader-logo {
  width: 120px;
  filter: brightness(0) invert(1);
  animation: pulse 1.5s ease-in-out infinite;
}

.preloader-bar {
  width: 200px; height: 3px;
  background: rgba(255,255,255,0.15);
  border-radius: 2px;
  overflow: hidden;
}
.preloader-bar::after {
  content: '';
  display: block;
  width: 40%;
  height: 100%;
  background: var(--grad-gold);
  border-radius: 2px;
  animation: loading 1.2s ease-in-out infinite;
}
@keyframes loading {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(350%); }
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.7; transform: scale(0.97); }
}

/* â”€â”€â”€ TOP BAR â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.top-bar {
  background: var(--dark);
  padding: 8px 0;
  font-size: 0.78rem;
  font-family: var(--font-body);
  position: relative;
  z-index: 1001;
}
.top-bar .container {
  display: flex;
  justify-content: flex-end !important;
  align-items: center;
  gap: 24px;
}
.top-bar .clock-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.75);
  flex: 0 0 146px;
  justify-content: flex-start;
  margin-left: 0;
  white-space: nowrap;
}
.top-bar .clock-item img.flg {
  width: 18px;
  height: auto;
  border-radius: 2px;
  display: inline;
  flex: 0 0 18px;
}
.top-bar .clock-item span {
  color: #ffffff !important;
  font-weight: 500;
  width: 122px;
  text-align: left;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1, "lnum" 1;
}

/* â”€â”€â”€ HEADER / STICKY NAV â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(29,114,210,0.2);
  transition: var(--transition);
  box-shadow: 0 2px 24px rgba(7,43,95,0.08);
}
.site-header.scrolled {
  background: rgba(255,255,255,0.98);
  box-shadow: 0 4px 30px rgba(7,43,95,0.12);
}
.site-header > .container {
  width: 100%;
  max-width: 1440px;
  padding-left: 24px;
  padding-right: 24px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 10px 0;
  column-gap: 14px;
  row-gap: 8px;
  min-width: 0;
}

.header-logo {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  order: 1;
  margin-right: auto;
}
.header-logo img {
  height: 48px;
  width: auto;
  transition: var(--transition);
}
.header-logo:hover img { opacity: 0.85; }

.header-app-badges {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: max-content;
  order: 2;
}
.header-app-badges a {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}
.header-app-badges img {
  height: 34px;
  width: auto;
  max-width: none;
  transition: var(--transition);
  display: block;
  object-fit: contain;
}
.header-app-badges a:hover img { opacity: 0.92; transform: scale(1.03); }

/* â”€â”€â”€ NAVIGATION â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.main-nav {
  order: 5;
  flex: 0 0 100%;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding-top: 8px;
  margin-top: 2px;
  border-top: 1px solid rgba(29,114,210,0.12);
}

.main-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  font-size: 0.79rem;
  font-weight: 600;
  color: var(--dark);
  padding: 8px 10px;
  border-radius: 8px;
  transition: var(--transition);
  white-space: nowrap;
  position: relative;
  line-height: 1.1;
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 12px; right: 12px;
  height: 2px;
  background: var(--grad-gold);
  border-radius: 1px;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.main-nav a:hover::after,
.main-nav a.active::after { transform: scaleX(1); }
.main-nav a:hover { color: var(--gold-deep); background: rgba(29,114,210,0.08); }
.main-nav a.active { color: var(--gold-deep); }

/* Dropdown */
.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.nav-dropdown > a::before {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  order: 2;
  margin-left: 8px;
  vertical-align: middle;
  flex: 0 0 auto;
}
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 2px);
  left: 50%;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 8px 40px rgba(7,43,95,0.15);
  border: 1px solid rgba(29,114,210,0.15);
  min-width: 190px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 8px);
  transition: var(--transition);
  z-index: 100;
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1; visibility: visible; transform: translate(-50%, 0);
}
.nav-dropdown-menu a {
  display: flex;
  justify-content: flex-start;
  width: 100%;
  min-height: 38px;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.83rem;
  color: var(--dark);
  text-align: left;
}
.nav-dropdown-menu a:hover {
  background: rgba(29,114,210,0.1);
  color: var(--gold-deep);
}
.nav-dropdown-menu a::after { display: none; }

.header-login-btn {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  order: 3;
  gap: 7px;
  background: var(--grad-gold);
  color: var(--dark) !important;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.5px;
  padding: 9px 18px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 3px 15px rgba(29,114,210,0.4);
  white-space: nowrap;
  line-height: 1;
  text-align: center;
  vertical-align: middle;
}
.header-login-btn i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: currentColor;
  font-size: 0.9rem;
  line-height: 1;
}
.header-login-btn:hover {
  background: var(--dark);
  color: var(--gold-light) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(7,43,95,0.22);
}
.header-login-btn::after { display: none !important; }

/* â”€â”€â”€ MOBILE HAMBURGER â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.nav-toggle {
  display: none;
  flex-direction: column;
  order: 4;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1100;
}
.nav-toggle span {
  width: 26px; height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
  display: block;
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* â”€â”€â”€ HERO SECTION â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex; align-items: center;
  overflow: hidden;
  background: var(--dark);
}
#particles-js {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero-swiper {
  position: absolute; inset: 0;
  z-index: 1;
}
.hero-swiper .swiper-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.45);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg,
    rgba(7,43,95,0.75) 0%,
    rgba(7,43,95,0.45) 50%,
    rgba(29,114,210,0.15) 100%);
  z-index: 2;
}
.hero-content {
  position: relative;
  z-index: 3;
  padding: 60px 0;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(29,114,210,0.18);
  backdrop-filter: blur(8px);
  color: var(--gold-light);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 7px 20px;
  border-radius: 50px;
  border: 1px solid rgba(29,114,210,0.4);
  margin-bottom: 28px;
}
.hero-badge i { font-size: 0.9rem; }

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 6vw, 5rem);
  color: var(--white) !important;
  font-weight: 700;
  line-height: 1.12;
  margin-bottom: 24px;
  text-shadow: 0 2px 30px rgba(0,0,0,0.4);
}
.hero-title .gold-word { color: var(--gold); }

.hero-subtitle {
  font-size: 1.08rem;
  color: var(--white) !important;
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.8;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 56px; }

.hero-stats {
  display: flex; flex-wrap: wrap; gap: 32px;
  padding-top: 40px;
  border-top: 1px solid rgba(29,114,210,0.25);
}
.hero-stat-item { text-align: left; }
.hero-stat-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white) !important;
  line-height: 1;
}
.hero-stat-num i { color: var(--white) !important; }
.hero-stat-label {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--white) !important;
  letter-spacing: 0.5px;
  margin-top: 4px;
}

/* Floating card on hero right */
.hero-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(29,114,210,0.25);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  z-index: 3;
  animation: floatCard 4s ease-in-out infinite;
}
@keyframes floatCard {
  0%,100% { transform: translateY(0px); }
  50%      { transform: translateY(-12px); }
}
.hero-card-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 20px;
  text-align: center;
}
.rate-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(29,114,210,0.15);
}
.rate-row:last-child { border-bottom: none; }
.rate-metal { font-size: 0.85rem; color: rgba(255,255,255,0.8); font-weight: 500; }
.rate-value { font-size: 1rem; font-weight: 700; color: var(--gold-light); font-family: var(--font-heading); }
.rate-change { font-size: 0.75rem; padding: 3px 8px; border-radius: 20px; font-weight: 600; }
.rate-change.up   { background: rgba(72,199,142,0.2); color: #48C78E; }
.rate-change.down { background: rgba(255,107,107,0.2); color: #FF6B6B; }

/* Swiper pagination override */
.hero-swiper .swiper-pagination-bullet { background: rgba(255,255,255,0.5); }
.hero-swiper .swiper-pagination-bullet-active { background: var(--gold); }

/* â”€â”€â”€ TICKER â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.ticker-bar {
  background: var(--dark-2);
  padding: 10px 0;
  overflow: hidden;
  position: relative;
  z-index: 10;
  border-top: 2px solid var(--gold);
}
.ticker-label {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  background: var(--grad-gold);
  color: var(--dark);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: flex; align-items: center;
  padding: 0 20px;
  z-index: 2;
}
.ticker-track {
  display: flex;
  animation: tickerScroll 30s linear infinite;
  gap: 0;
}
.ticker-bar:hover .ticker-track { animation-play-state: paused; }
.ticker-item {
  white-space: nowrap;
  padding: 0 40px;
  color: rgba(255,255,255,0.85);
  font-size: 0.83rem;
  display: flex; align-items: center; gap: 8px;
}
.ticker-item .t-metal { color: var(--gold-light); font-weight: 600; }
.ticker-item .t-val   { color: var(--white); font-weight: 700; }
.ticker-item .t-up    { color: #48C78E; }
.ticker-item .t-down  { color: #FF6B6B; }
@keyframes tickerScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* â”€â”€â”€ ABOUT SECTION â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.about-section { background: var(--white); }

.about-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-gold);
  width: 100%;
  max-width: 100%;
  background: var(--white);
}
.about-image-wrapper img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: contain;
  object-position: center;
}
.about-image-badge {
  position: absolute;
  bottom: 28px; left: 28px;
  background: var(--grad-gold);
  color: var(--dark);
  border-radius: var(--radius);
  padding: 16px 24px;
  font-weight: 700;
  text-align: center;
  font-family: var(--font-heading);
  box-shadow: 0 4px 20px rgba(29,114,210,0.5);
}
.about-image-badge .num { font-size: 2rem; line-height: 1; display: block; }
.about-image-badge .lbl { font-size: 0.8rem; font-weight: 600; margin-top: 2px; }

.about-text h2 { font-size: 2.3rem; margin-bottom: 16px; }
.about-text p  { color: var(--warm-gray); font-size: 0.96rem; margin-bottom: 16px; }

.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 28px 0; }
.about-feature {
  display: flex; align-items: flex-start; gap: 12px;
  background: var(--cream);
  border-radius: var(--radius);
  padding: 16px;
  border: 1px solid rgba(29,114,210,0.15);
  transition: var(--transition);
}
.about-feature:hover { box-shadow: var(--shadow-gold); transform: translateY(-2px); }
.about-feature-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(29,114,210,0.15);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--gold-deep);
  font-size: 1.1rem;
}
.about-feature-text h5 { font-size: 0.88rem; font-weight: 600; margin-bottom: 2px; }
.about-feature-text p  { font-size: 0.78rem; color: var(--warm-gray); margin: 0; }

/* â”€â”€â”€ PRODUCTS SECTION â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.products-section {
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.products-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(29,114,210,0.12) 0%, transparent 70%);
  border-radius: 50%;
}
.products-swiper .swiper-wrapper {
  align-items: stretch;
}
.products-swiper .swiper-slide {
  height: auto;
  display: flex;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(29,114,210,0.12);
  transition: var(--transition);
  position: relative;
  cursor: pointer;
  min-width: 0;
  min-height: 390px;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-gold);
  border-color: rgba(29,114,210,0.4);
}
.product-card-img {
  position: relative;
  overflow: hidden;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
}
.product-card-img img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
}
.product-card:hover .product-card-img img { transform: scale(1.02); }
.product-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(7,43,95,0.7) 0%, transparent 60%);
  display: flex; align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: var(--transition);
}
.product-card:hover .product-card-overlay { opacity: 1; }
.product-card-overlay .btn-gold { font-size: 0.8rem; padding: 9px 20px; }

.product-card-body {
  padding: 20px;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.product-card-body h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--dark);
}
.product-card-body p {
  font-size: 0.82rem;
  color: var(--warm-gray);
  margin: 0;
}
.product-badge {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--grad-gold);
  color: var(--dark);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.5px;
}

/* â”€â”€â”€ STATS / COUNTERS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.stats-section {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(29,114,210,0.12) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 50%, rgba(29,114,210,0.08) 0%, transparent 60%);
}

.stat-card {
  text-align: center;
  padding: 40px 24px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(29,114,210,0.15);
  transition: var(--transition);
}
.stat-card:hover {
  background: rgba(29,114,210,0.08);
  border-color: rgba(29,114,210,0.35);
  transform: translateY(-4px);
}
.stat-icon {
  width: 64px; height: 64px;
  border-radius: 16px;
  background: rgba(29,114,210,0.15);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.6rem;
  color: var(--gold);
}
.stat-number {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}
.stat-suffix { font-size: 1.5rem; }
.stat-label {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  font-weight: 400;
}

/* â”€â”€â”€ CONTACT INFO CARDS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.contact-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(29,114,210,0.12);
  transition: var(--transition);
  min-height: 270px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
  border-color: rgba(29,114,210,0.4);
}
.contact-card-icon {
  width: 72px; height: 72px;
  background: var(--grad-gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.6rem;
  color: var(--dark);
  box-shadow: 0 6px 20px rgba(29,114,210,0.4);
}
.contact-card h4 { font-size: 1.05rem; margin-bottom: 8px; }
.contact-card p  {
  font-size: 0.88rem;
  color: var(--warm-gray);
  margin: 0;
  line-height: 1.7;
  margin-top: auto;
}
.contact-card a  { color: var(--gold-deep); font-weight: 600; }
.contact-card a:hover { color: var(--gold); }
.section-pad.bg-cream .row.g-4 > [class*="col-"] {
  display: flex;
}
.section-pad.bg-cream .row.g-4 .contact-card {
  width: 100%;
}

/* â”€â”€â”€ NEWS SECTION â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.news-section { background: var(--white); }

.news-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(29,114,210,0.12);
  transition: var(--transition);
}
.news-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-gold); }

.news-card-header {
  background: var(--grad-gold);
  padding: 12px 20px;
  display: flex; align-items: center; gap: 8px;
}
.news-card-header i { font-size: 1rem; color: var(--dark); }
.news-card-header span { font-weight: 700; font-size: 0.85rem; color: var(--dark); }

.news-card-body { padding: 20px; }
.news-item { padding: 12px 0; border-bottom: 1px solid rgba(29,114,210,0.15); }
.news-item:last-child { border-bottom: none; }
.news-item .n-date { font-size: 0.73rem; color: var(--warm-gray); }
.news-item .n-title { font-size: 0.88rem; font-weight: 600; color: var(--dark); margin: 4px 0 0; line-height: 1.5; }

/* Message page */
.premium-message-list {
  display: grid;
  gap: 18px;
}

.premium-message-card {
  overflow: hidden;
  border: 1px solid rgba(29,114,210,0.18);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 4px 18px rgba(7,43,95,0.08);
}

.premium-message-text {
  padding: 22px 24px;
  color: var(--dark);
  font-size: 0.96rem;
  line-height: 1.75;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

.premium-message-date {
  padding: 11px 24px;
  background: var(--grad-gold);
  color: var(--dark);
  font-size: 0.78rem;
  font-weight: 700;
  font-style: italic;
  text-align: right;
}

.message-empty-state {
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  text-align: center;
  color: var(--warm-gray);
}

.message-empty-state i {
  color: var(--gold);
  font-size: 2rem;
}

.message-empty-state h3 {
  margin: 0;
  color: var(--dark);
  font-size: 1.2rem;
}

.message-empty-state p {
  margin: 0;
  max-width: 360px;
  font-size: 0.9rem;
}

/* â”€â”€â”€ TREND SECTION â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.trend-section { background: var(--cream-2); }
.trend-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid rgba(29,114,210,0.2);
  box-shadow: 0 8px 40px rgba(0,0,0,0.3);
}

.trend-card #div2 {
  text-align: center;
}

.trend-card #div2 .progressbar {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 0 auto 14px;
}

.trend-card #div2 .circle {
  position: relative;
  display: block;
  width: 120px;
  height: 120px;
  margin: 0 auto;
}

.trend-card #div2 .circle canvas {
  display: block;
  margin: 0 auto;
}

.trend-card #div2 .circle > div {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
}

.trend-card #div2 .indicator,
.trend-card #div2 .green.indicator,
.trend-card #div2 .Disclaimerr {
  display: block;
  max-width: 520px;
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
}

.trend-card #div2 .label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.trend-card #div2 table {
  margin-left: auto;
  margin-right: auto;
  table-layout: fixed;
}

.trend-card #div2 table td:first-child,
.trend-card #div2 table td.title {
  width: 50% !important;
  text-align: right !important;
  padding-right: 12px !important;
}

.trend-card #div2 table td.value {
  width: 50% !important;
  text-align: left !important;
  padding-left: 12px !important;
}

.trend-section,
.trend-section .section-badge,
.trend-section h1,
.trend-section h2,
.trend-section h3,
.trend-section p,
.trend-section span,
.trend-section a,
.trend-section i,
.trend-card,
.trend-card #div2,
.trend-card #div2 :is(div, span, p, a, table, tbody, tr, td, th, small, strong),
.trend-card #div2 [style*="color:#fff"],
.trend-card #div2 [style*="color: #fff"],
.trend-card #div2 [style*="color:#FFF"],
.trend-card #div2 [style*="color: #FFF"],
.trend-card #div2 [style*="color:white"],
.trend-card #div2 [style*="color: white"],
.trend-section .text-gold,
.trend-section .text-gold-deep {
  color: #000 !important;
}

/* â”€â”€â”€ APP DOWNLOAD SECTION â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.app-section {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.app-section::before {
  content: '';
  position: absolute; inset: 0;
  background: url('../img/mnk_assets/1.jpg') center/cover no-repeat;
  opacity: 0.12;
  z-index: 0;
}
.app-content { position: relative; z-index: 1; }
.app-section h2 { color: var(--white); }
.app-section p  { color: rgba(255,255,255,0.7); }

.app-badge-btn {
  display: inline-flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  padding: 12px 24px;
  color: var(--white);
  transition: var(--transition);
  backdrop-filter: blur(8px);
}
.app-badge-btn:hover { background: rgba(29,114,210,0.15); border-color: var(--gold); color: var(--white); }
.app-badge-btn img { height: 36px; width: auto; display: inline; }
.app-dashboard-image {
  display: block;
  width: min(100%, 520px);
  max-width: 100%;
  height: auto;
  max-height: 400px;
  margin: 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(29,114,210,0.3));
}

/* â”€â”€â”€ CTA SECTION â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.cta-section {
  background: var(--grad-gold);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at top right, rgba(255,255,255,0.18) 0%, transparent 60%);
}
.cta-section h2 { color: var(--dark); }
.cta-section p  { color: rgba(7,43,95,0.75); }

/* â”€â”€â”€ PAGE HERO (inner pages) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.page-hero {
  background: var(--dark);
  padding: 64px 0 48px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(29,114,210,0.15) 0%, transparent 65%);
}
.page-hero-content {
  position: relative;
  z-index: 1;
  text-align: left !important;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
}
.page-hero .section-badge {
  margin-left: 0 !important;
  margin-right: auto !important;
  border-radius: 8px;
}
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 12px;
  text-align: left !important;
  letter-spacing: 0;
}
.page-hero h1 span { color: var(--gold-light) !important; }
.page-hero p  {
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  display: block;
  text-align: left !important;
  max-width: 680px;
  margin-left: 0 !important;
  margin-right: auto !important;
  margin-bottom: 0;
}
.breadcrumb-gold {
  display: flex;
  align-items: center;
  justify-content: flex-start !important;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
  text-align: left !important;
}
.breadcrumb-gold a { color: var(--gold); font-size: 0.85rem; font-weight: 500; }
.breadcrumb-gold span { color: rgba(255,255,255,0.5); font-size: 0.85rem; }
.breadcrumb-gold .sep { color: rgba(29,114,210,0.6); }
.breadcrumb-gold .current,
.breadcrumb-gold span:last-child {
  color: rgba(255,255,255,0.72);
}

/* â”€â”€â”€ CONTACT FORM â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(29,114,210,0.12);
}
.form-group { margin-bottom: 22px; }
.form-group label {
  display: block;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
}
.form-control-gold {
  width: 100%;
  padding: 13px 18px;
  border: 1.5px solid var(--light-gray);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--dark);
  background: var(--cream);
  transition: var(--transition);
  outline: none;
}
.form-control-gold:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(29,114,210,0.12);
}
textarea.form-control-gold { resize: vertical; min-height: 120px; }

select.form-control-gold {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%231D72D2' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
  cursor: pointer;
}

/* KYC page */
.kyc-form-card {
  padding: 40px;
}

.kyc-premium-form fieldset {
  border: 1px solid rgba(29,114,210,0.18);
  border-radius: var(--radius);
  padding: 24px;
  margin: 0 0 24px;
  background: rgba(29,114,210,0.04);
}

.kyc-premium-form legend {
  float: none;
  width: auto;
  margin: 0 0 18px;
  padding: 0 8px;
  color: var(--gold-deep);
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
}

.kyc-premium-form label {
  display: block;
  margin-bottom: 8px;
  color: var(--dark);
  font-size: 0.84rem;
  font-weight: 600;
}

.kyc-premium-form label span {
  color: #b42318;
}

.kyc-premium-form.is-disabled {
  opacity: 0.72;
}

.kyc-document-preview {
  display: none;
  width: 100%;
  min-height: 180px;
  max-height: 260px;
  object-fit: contain;
  margin-top: 12px;
  border: 1px solid rgba(29,114,210,0.2);
  border-radius: var(--radius);
  background: var(--cream);
}

.kyc-document-preview[src] {
  display: block;
}

.kyc-actions {
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.kyc-status {
  display: none;
  margin-bottom: 20px;
  padding: 12px 16px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 600;
}

.kyc-status.success {
  display: block;
  background: rgba(25,135,84,0.12);
  color: #146c43;
  border: 1px solid rgba(25,135,84,0.24);
}

.kyc-status.error {
  display: block;
  background: rgba(180,35,24,0.1);
  color: #b42318;
  border: 1px solid rgba(180,35,24,0.22);
}

.kyc-notice {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding: 18px;
  border: 1px solid rgba(29,114,210,0.24);
  border-radius: var(--radius);
  background: var(--gold-ultra);
}

.kyc-notice i {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--grad-gold);
  color: var(--dark);
}

.kyc-notice h3 {
  margin: 0 0 2px;
  font-size: 1rem;
}

.kyc-notice p {
  margin: 0;
  color: var(--warm-gray);
  font-size: 0.88rem;
}

/* â”€â”€â”€ TABLE STYLES â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.premium-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.premium-table thead th {
  background: var(--dark);
  color: var(--gold);
  font-size: 0.83rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 14px 18px;
  text-align: left;
}
.premium-table thead th:first-child { border-radius: var(--radius) 0 0 0; }
.premium-table thead th:last-child  { border-radius: 0 var(--radius) 0 0; }
.premium-table tbody tr { border-bottom: 1px solid rgba(29,114,210,0.08); }
.premium-table tbody tr:last-child { border-bottom: none; }
.premium-table tbody tr:hover { background: var(--gold-ultra); }
.premium-table tbody td { padding: 13px 18px; font-size: 0.88rem; color: var(--dark); }

/* â”€â”€â”€ LIVE RATES PAGE â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.rates-page-wrapper {
  min-height: 80vh;
  background: var(--cream);
  padding: 48px 0;
}
.rates-header-card {
  background: var(--dark);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 32px;
  border: 1px solid rgba(29,114,210,0.2);
  box-shadow: 0 8px 40px rgba(0,0,0,0.2);
}
.rates-header-card h1 { color: var(--gold); margin-bottom: 4px; }
.rates-header-card p  { color: rgba(255,255,255,0.6); font-size: 0.9rem; margin: 0; }

/* â”€â”€â”€ MODAL PREMIUM â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.modal-gold .modal-content {
  border: 1px solid rgba(29,114,210,0.3);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.modal-gold .modal-header {
  background: var(--dark);
  color: var(--gold);
  border-bottom: 1px solid rgba(29,114,210,0.2);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.modal-gold .modal-header .modal-title { font-family: var(--font-heading); }
.modal-gold .modal-header .btn-close { filter: invert(1) sepia(1) saturate(2) hue-rotate(0deg); }
.modal-gold .modal-footer { border-top: 1px solid rgba(29,114,210,0.15); }

/* â”€â”€â”€ FOOTER â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.site-footer {
  background: #000066;
  color: rgba(255,255,255,0.7);
  padding: 72px 0 0;
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-gold);
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1.15fr) minmax(160px, 0.8fr) minmax(170px, 0.85fr) minmax(300px, 1.45fr);
  gap: 34px;
  align-items: start;
}
.footer-col { min-width: 0; }
.footer-logo img { height: 60px; filter: brightness(0) invert(1); }
.footer-logo p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  margin-top: 16px;
  line-height: 1.8;
  max-width: 280px;
}
.footer-heading {
  font-family: var(--font-heading);
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}
.footer-heading::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 36px; height: 2px;
  background: var(--grad-gold);
  border-radius: 1px;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  transition: var(--transition);
  display: flex; align-items: center; gap: 8px;
}
.footer-links a::before {
  content: '';
  width: 7px;
  height: 7px;
  border-top: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
  transform: rotate(45deg);
  color: var(--gold);
  flex-shrink: 0;
}
.footer-links a:hover { color: var(--gold); padding-left: 4px; }

.footer-contact-item {
  display: flex; align-items: flex-start; gap: 12px;
  margin-bottom: 16px;
  font-size: 0.88rem;
}
.footer-grid .footer-contact-item {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  column-gap: 12px;
  align-items: start;
  line-height: 1.65;
}
.footer-contact-item i { color: var(--gold); margin-top: 3px; flex-shrink: 0; }
.footer-grid .footer-contact-item i {
  width: 18px;
  text-align: center;
  margin-top: 4px;
}
.footer-contact-item span,
.footer-contact-item a {
  overflow-wrap: anywhere;
}
.footer-contact-item a { color: rgba(255,255,255,0.7); }
.footer-contact-item a:hover { color: var(--gold); }

.footer-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin: 48px 0 0;
}
.footer-bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.45); margin: 0; }
.footer-bottom a { color: var(--gold); }

/* â”€â”€â”€ WHATSAPP FLOAT â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-size: 1.5rem;
  z-index: 9999;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  transition: var(--transition);
  animation: waBounce 2s ease-in-out infinite;
}
.whatsapp-float:hover {
  background: #128C7E;
  transform: scale(1.1);
  color: white;
  box-shadow: 0 8px 30px rgba(37,211,102,0.6);
}
@keyframes waBounce {
  0%,100% { transform: scale(1); }
  50%      { transform: scale(1.06); }
}
.whatsapp-float:hover { animation: none; }

/* â”€â”€â”€ SCROLL TO TOP â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
#scrollTop {
  position: fixed;
  bottom: 96px; right: 28px;
  width: 44px; height: 44px;
  background: var(--grad-gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--dark);
  font-size: 1rem;
  z-index: 9999;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(29,114,210,0.4);
  opacity: 0; visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  border: none;
}
#scrollTop.visible { opacity: 1; visibility: visible; transform: translateY(0); }
#scrollTop:hover { transform: translateY(-3px); }

/* â”€â”€â”€ AOS OVERRIDES â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
[data-aos] { pointer-events: none !important; }
[data-aos].aos-animate { pointer-events: auto !important; }

/* â”€â”€â”€ RESPONSIVE â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (max-width: 1320px) {
  .site-header > .container {
    padding-left: 18px;
    padding-right: 18px;
  }
  .header-inner {
    column-gap: 10px;
    row-gap: 8px;
  }
  .main-nav a {
    font-size: 0.76rem;
    padding: 8px 9px;
  }
  .header-app-badges img { height: 31px; }
  .header-login-btn {
    font-size: 0.76rem;
    padding: 8px 14px;
  }
}

@media (max-width: 1199px) {
  .header-app-badges { display: none; }
  .main-nav a {
    font-size: 0.76rem;
    padding: 8px 8px;
  }
}

@media (max-width: 991px) {
  .site-header > .container {
    padding-left: 16px;
    padding-right: 16px;
  }
  /* header-inner stays static so nav.open is positioned by .site-header (sticky) */
  .header-inner {
    flex-wrap: nowrap;
    row-gap: 0;
    position: static;
    align-items: center;
  }
  .header-logo {
    flex-shrink: 0;
    margin-right: auto;
  }
  .header-logo img { height: 42px; }
  .main-nav {
    display: none;
    flex-direction: column;
    gap: 4px;
    order: 10;
    flex: 0 0 auto;
    padding-top: 0;
    margin-top: 0;
    border-top: 0;
  }
  /* dropdown is now full-width — positioned relative to .site-header */
  .main-nav.open {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--white);
    padding: 12px 16px;
    border-top: 2px solid rgba(29,114,210,0.2);
    border-bottom: 1px solid rgba(29,114,210,0.15);
    box-shadow: 0 8px 30px rgba(7,43,95,0.14);
    z-index: 1200;
    align-items: stretch;
  }
  .main-nav a {
    display: flex;
    justify-content: flex-start;
    width: 100%;
    padding: 10px 16px;
    border-radius: 8px;
  }
  .nav-dropdown {
    display: block;
    width: 100%;
  }
  .nav-dropdown > a::before {
    margin-left: auto;
  }
  .nav-dropdown-menu {
    position: static;
    opacity: 1; visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: rgba(29,114,210,0.05);
    margin-top: 4px;
    border-radius: 8px;
    display: none;
    width: 100%;
    min-width: 0;
    padding: 6px;
  }
  .nav-dropdown:hover .nav-dropdown-menu {
    transform: none;
  }
  .nav-dropdown-menu a {
    min-height: 36px;
    padding: 9px 14px;
  }
  .nav-dropdown.open .nav-dropdown-menu { display: block; }
  /* hamburger: always visible, never shrunk, 44×44 touch target */
  .nav-toggle {
    display: flex;
    flex-shrink: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
    padding: 8px;
    margin-left: 6px;
    z-index: 1300;
  }
  .header-app-badges { display: none; }
  /* login button: compact on tablet */
  .header-login-btn {
    flex-shrink: 0;
    font-size: 0.78rem;
    padding: 8px 14px;
    white-space: nowrap;
  }

  .hero-title { font-size: 2.2rem; }
  .hero-card { display: none; }
  .about-features { grid-template-columns: 1fr; }
  .contact-form { padding: 32px 24px; }
}

@media (max-width: 767px) {
  .section-pad  { padding: 60px 0; }
  .hero { min-height: 80vh; }
  .hero-title   { font-size: 1.9rem; }
  .hero-stats   { gap: 20px; }
  .about-image-wrapper img { height: auto; }
  .product-card-img { height: 190px; }
  .product-card { min-height: 340px; }
  .app-dashboard-image { max-height: 320px; }
  .stats-section .row > div { margin-bottom: 16px; }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-bottom {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
  .top-bar .container { gap: 12px; }
  .top-bar .clock-item {
    flex-basis: 126px;
    margin-left: 0;
    font-size: 0.7rem;
  }
  .top-bar .clock-item span { width: 106px; }
  .top-bar .clock-item:last-child { display: none; }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* ≤575px — login becomes icon-only to free space for hamburger */
@media (max-width: 575px) {
  .header-logo img { height: 38px; }
  /* hide login/logout text; keep icon visible */
  .header-login-btn {
    font-size: 0 !important;
    padding: 8px 10px;
    min-width: 40px;
    min-height: 40px;
    justify-content: center;
    gap: 0;
  }
  .header-login-btn i {
    font-size: 1rem;
    margin: 0 !important;
  }
}

@media (max-width: 480px) {
  .hero-cta { flex-direction: column; }
  .hero-cta .btn-gold, .hero-cta .btn-white { width: 100%; justify-content: center; }
  .header-logo img { height: 34px; }
  .nav-toggle { min-width: 40px; min-height: 40px; }
}

/* â”€â”€â”€ SHIMMER GOLD ANIMATION â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@keyframes goldShimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
.gold-shimmer {
  background: linear-gradient(90deg, var(--gold-deep) 0%, var(--gold-shine) 50%, var(--gold-deep) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: goldShimmer 3s linear infinite;
}

/* â”€â”€â”€ WOW ANIMATION SUPPORT â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.wow { visibility: hidden; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   LIVE RATES TABLE PREMIUM STYLING
   Targets all classes injected by LiveRates3.js / TemplateID.Chirayu.js
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* â”€â”€â”€ Splide / Tab container â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
#splide-liverate { background: transparent; }
.splide__slide { padding: 0; }

/* Custom tab buttons */
.swiper-pagination1 {
  display: flex !important;
  gap: 0;
  flex-wrap: nowrap;
  margin-bottom: 0;
  background: var(--dark);
  overflow-x: auto;
}
.swiper-pagination1 .swiper-pagination-bullet {
  background: transparent;
  color: rgba(255,255,255,0.65);
  border: none;
  border-right: 1px solid rgba(255,255,255,0.08);
  border-radius: 0;
  padding: 12px 22px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  opacity: 1;
  transition: background 0.2s, color 0.2s, border-bottom 0.2s;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.swiper-pagination1 .swiper-pagination-bullet:hover {
  background: rgba(29,114,210,0.15);
  color: var(--gold);
  border-bottom: 3px solid var(--gold);
}
.swiper-pagination1 .swiper-pagination-bullet-active {
  background: rgba(29,114,210,0.15);
  color: var(--gold);
  border-bottom: 3px solid var(--gold);
}

/* â”€â”€â”€ Outer wrappers â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.Trending_Table_Root {
  overflow-x: auto;
  overflow-y: visible;
  border-radius: 0;
  margin-bottom: 0;
  -webkit-overflow-scrolling: touch;
  width: 100%;
}
.bloc_GS {
  overflow-x: auto;
  overflow-y: visible;
  border-radius: 0;
  margin-bottom: 8px;
  width: 100%;
}

/* â”€â”€â”€ Base table: table1001 (main live rates grid) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
table.table1001 {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  background: var(--white);
  border: 1.5px solid rgba(29,114,210,0.3);
  border-radius: 0;
  font-family: var(--font-body);
  font-size: 0.88rem;
  box-shadow: none;
  color: var(--dark);
}
table.table1001 thead tr,
table.table1001 tr.heading {
  background: var(--dark) !important;
}
table.table1001 thead th,
table.table1001 tr.heading td,
table.table1001 tr.heading th {
  color: var(--gold) !important;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 12px 14px;
  white-space: nowrap;
  border: none;
}
table.table1001 tbody tr {
  transition: background 0.18s;
  border-bottom: 1px solid rgba(29,114,210,0.1);
}
table.table1001 tbody tr:nth-child(odd)  { background: var(--white); }
table.table1001 tbody tr:nth-child(even) { background: #F5FAFF; }
table.table1001 tbody tr:hover { background: rgba(29,114,210,0.07); }
table.table1001 tbody td {
  padding: 10px 14px;
  color: var(--dark);
  vertical-align: middle;
  white-space: nowrap;
  border: none;
}

/* â”€â”€â”€ Goldd table (primary rate display) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
table.goldd {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  background: #072B5F;
  border: 1px solid rgba(29,114,210,0.35);
  font-family: var(--font-body);
  box-shadow: 0 4px 18px rgba(7,43,95,0.15);
  transition: box-shadow 0.25s;
  color: rgba(255,255,255,0.88);
}
table.goldd:hover {
  box-shadow: 0 8px 32px rgba(29,114,210,0.22);
}
table.goldd td {
  border: none;
  color: rgba(255,255,255,0.88);
  padding: 9px 13px;
}
table.goldd tr:hover td { background: rgba(29,114,210,0.08); }
table.goldd thead td,
table.goldd thead th,
table.goldd tr.heading td {
  color: var(--gold) !important;
  background: rgba(0,0,0,0.35) !important;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* â”€â”€â”€ Box1: individual rate card â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.Box1 {
  margin-bottom: 12px;
  border: 1px solid rgba(29,114,210,0.2);
}
.Box1 table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  color: var(--dark);
}
.Box1 td.sell,
.Box1 th.sell {
  background: var(--grad-gold) !important;
  color: var(--dark) !important;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.05em;
  padding: 10px 14px;
  text-transform: uppercase;
}
.Box1 td {
  padding: 9px 14px;
  font-family: var(--font-body);
  color: var(--dark);
  border-bottom: 1px solid rgba(29,114,210,0.1);
}

/* â”€â”€â”€ Top 3 / Top 5 rate display â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
span.top5span,
span.top55span {
  display: inline-block;
  min-width: 62px;
  padding: 3px 10px;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.02em;
  color: var(--dark);
}

/* UP â€” JS injects: background-color:green;color:#FFF */
span.top5span[style*="background-color:green"],
span.top55span[style*="background-color:green"] {
  background-color: #0D6E3E !important;
  color: #fff !important;
}

/* DOWN â€” JS injects: background-color:red;color:#FFF */
span.top5span[style*="background-color:red"],
span.top55span[style*="background-color:red"] {
  background-color: #B83232 !important;
  color: #fff !important;
}

/* NEUTRAL â€” JS injects: color:#010066 (dark blue â€” invisible on dark bg) */
span.top5span[style*="#010066"],
span.top55span[style*="#010066"],
span.top5span[style*="#1f0954"],
span.top55span[style*="#1f0954"] {
  color: #555 !important;
  background: transparent !important;
}

/* NEUTRAL inside dark-bg goldd table â†’ use cream/light */
table.goldd span.top5span[style*="#010066"],
table.goldd span.top55span[style*="#010066"],
table.goldd span.top5span[style*="#1f0954"],
table.goldd span.top55span[style*="#1f0954"] {
  color: rgba(255,255,255,0.75) !important;
}

/* â”€â”€â”€ Heading row inside rate tables â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
tr.heading {
  background: var(--dark) !important;
}
tr.heading td,
tr.heading th {
  background: var(--dark) !important;
  padding: 10px 14px;
}
span.mainheading {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--gold) !important;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* â”€â”€â”€ Buy / Sell label chips â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
span.buy_sell_label,
.buy_sell_label1 {
  display: inline-block;
  padding: 3px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
span.buy_sell_label[style*="color:green"],
.buy_sell_label1.buy {
  background: rgba(13,110,62,0.12);
  color: #0D6E3E !important;
  border: 1px solid rgba(13,110,62,0.3);
}
span.buy_sell_label[style*="color:red"],
.buy_sell_label1.sell {
  background: rgba(192,57,43,0.1);
  color: #C0392B !important;
  border: 1px solid rgba(192,57,43,0.25);
}
span.sell {
  display: inline-block;
  font-weight: 700;
  font-size: 0.82rem;
}

/* â”€â”€â”€ Responsive mobile font table â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
table.res_mob_font_width {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  background: var(--white);
  border: 1px solid rgba(29,114,210,0.25);
  font-family: var(--font-body);
  font-size: 0.83rem;
  color: var(--dark);
}
table.res_mob_font_width thead tr,
table.res_mob_font_width tr:first-child {
  background: var(--dark) !important;
}
table.res_mob_font_width thead th,
table.res_mob_font_width tr:first-child td {
  color: var(--gold) !important;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 10px 12px;
  border: none;
}
table.res_mob_font_width tbody tr { border-bottom: 1px solid rgba(29,114,210,0.1); }
table.res_mob_font_width tbody tr:nth-child(odd)  { background: var(--white); }
table.res_mob_font_width tbody tr:nth-child(even) { background: rgba(29,114,210,0.04); }
table.res_mob_font_width tbody tr:hover           { background: rgba(29,114,210,0.09); }
table.res_mob_font_width tbody td {
  padding: 9px 12px;
  color: var(--dark);
  vertical-align: middle;
  border: none;
}

/* â”€â”€â”€ TT_33 trending table â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
table.tt_33 {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  background: var(--white);
  border: 1px solid rgba(29,114,210,0.25);
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--dark);
}
table.tt_33 tr.heading td { background: var(--dark) !important; padding: 10px 14px; }
table.tt_33 tbody tr:nth-child(odd)  { background: var(--white); }
table.tt_33 tbody tr:nth-child(even) { background: rgba(29,114,210,0.04); }
table.tt_33 tbody tr:hover           { background: rgba(29,114,210,0.09); }
table.tt_33 td { padding: 10px 14px; border: none; color: var(--dark); }

/* â”€â”€â”€ Global link color override inside ALL rate tables â”€â”€â”€â”€â”€â”€â”€ */
table.table1001 a, table.table1001 a:visited,
table.goldd a, table.goldd a:visited,
table.res_mob_font_width a, table.res_mob_font_width a:visited,
table.tt_33 a, table.tt_33 a:visited,
.Trending_Table_Root a, .Trending_Table_Root a:visited,
.Trending_Table_Child1 a, .Trending_Table_Child1 a:visited,
.bloc_GS a, .bloc_GS a:visited {
  color: var(--dark) !important;
  text-decoration: none !important;
}
table.goldd a, table.goldd a:visited {
  color: rgba(255,255,255,0.85) !important;
}

/* â”€â”€â”€ News table (Messages.Chirayu.js injects into #mytable.News_Class) */
table.News_Class {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--dark);
}
table.News_Class tr { border-bottom: 1px solid rgba(29,114,210,0.12); }
table.News_Class tr:hover { background: rgba(29,114,210,0.06); }
table.News_Class td {
  padding: 12px 16px;
  vertical-align: top;
  color: var(--dark);
}
table.News_Class a { color: var(--dark) !important; text-decoration: none; }
table.News_Class a:hover { color: var(--gold) !important; }
table.News_Class tr:first-child td {
  background: var(--dark);
  color: var(--gold);
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

/* â”€â”€â”€ Center message / empty state â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.center-message {
  text-align: center;
  padding: 48px 24px;
  color: rgba(7,43,95,0.45);
  font-family: var(--font-body);
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}

/* â”€â”€â”€ Watermark overlay â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.bgWaterMark {
  position: relative;
  overflow: hidden;
}
.bgWaterMark::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../img/logo.png') center/180px no-repeat;
  opacity: 0.04;
  pointer-events: none;
  z-index: 0;
}
.bgWaterMark > * { position: relative; z-index: 1; }

/* â”€â”€â”€ Inline style overrides (JS-injected colors) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
[style*="background-color:blue"]  { background-color: #0D6E3E !important; }
[style*="background-color: blue"] { background-color: #0D6E3E !important; }
[style*="background-color:green"] { background-color: #1A9154 !important; }
[style*="background-color:red"]   { background-color: #A93226 !important; }
[style*="background-color: red"]  { background-color: #A93226 !important; }
[style*="color:green"]            { color: #0D6E3E !important; }
[style*="color:red"]              { color: #C0392B !important; }

/* â”€â”€â”€ Marquee ticker strip â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
#marqueeData,
#marqueeData table {
  width: 100%;
  background: var(--dark);
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border: none;
  padding: 0;
}
#marqueeData td {
  padding: 8px 18px;
  color: var(--gold);
  white-space: nowrap;
}
#marqueeData .marquee-up   { color: #4CAF50 !important; }
#marqueeData .marquee-down { color: #E74C3C !important; }

/* â”€â”€â”€ Popup modal for rate detail â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
#gvDataPopup,
#gvDataPopup table {
  font-family: var(--font-body);
  font-size: 0.87rem;
}
#gvDataPopup .modal-header {
  background: var(--dark);
  color: var(--gold);
  border-bottom: 1px solid rgba(29,114,210,0.3);
}
#gvDataPopup .modal-body {
  background: var(--cream);
}
#gvDataPopup table {
  width: 100%;
  border-collapse: collapse;
}
#gvDataPopup table td,
#gvDataPopup table th {
  padding: 9px 14px;
  border-bottom: 1px solid rgba(29,114,210,0.1);
  color: var(--dark);
}
#gvDataPopup table thead th {
  background: var(--dark);
  color: var(--gold);
  font-weight: 700;
}

/* â”€â”€â”€ Net position / summary bar â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
#netPositionDiv,
#netPositionDiv table {
  font-family: var(--font-body);
  font-size: 0.85rem;
}
#netPositionDiv table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 1.5px solid rgba(29,114,210,0.25);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(7,43,95,0.07);
}
#netPositionDiv thead th {
  background: var(--dark);
  color: var(--gold);
  padding: 10px 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
}
#netPositionDiv tbody td {
  padding: 9px 14px;
  border-bottom: 1px solid rgba(29,114,210,0.1);
  color: var(--dark);
}
#netPositionDiv tbody tr:hover { background: rgba(29,114,210,0.06); }

/* â”€â”€â”€ Section heading above each tab panel â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.live-rates-section .section-title,
.live-rates-section .section-label {
  font-family: var(--font-heading);
  color: var(--dark);
  margin-bottom: 8px;
}
.live-rates-section .section-label::after {
  background: var(--grad-gold);
}

/* â”€â”€â”€ Scrollbar styling for rate tables â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.Trending_Table_Root::-webkit-scrollbar,
.bloc_GS::-webkit-scrollbar {
  height: 5px;
}
.Trending_Table_Root::-webkit-scrollbar-track,
.bloc_GS::-webkit-scrollbar-track {
  background: rgba(29,114,210,0.06);
  border-radius: 10px;
}
.Trending_Table_Root::-webkit-scrollbar-thumb,
.bloc_GS::-webkit-scrollbar-thumb {
  background: rgba(29,114,210,0.45);
  border-radius: 10px;
}

/* â”€â”€â”€ Responsive adjustments â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (max-width: 767px) {
  table.table1001,
  table.goldd,
  table.res_mob_font_width,
  table.tt_33 {
    font-size: 0.78rem;
  }
  table.table1001 thead th,
  table.table1001 tr.heading td,
  table.res_mob_font_width thead th,
  table.tt_33 tr.heading td {
    font-size: 0.72rem;
    padding: 9px 10px;
  }
  table.table1001 tbody td,
  table.res_mob_font_width tbody td,
  table.tt_33 td {
    padding: 8px 10px;
  }
  span.top5span,
  span.top55span {
    min-width: 50px;
    font-size: 0.75rem;
    padding: 3px 7px;
  }
  .swiper-pagination1 .swiper-pagination-bullet {
    padding: 9px 14px;
    font-size: 0.76rem;
  }
}

html,
body,
.body,
main,
#main,
#content,
.main,
.content,
.page-content,
.page-wrapper,
section,
section.section,
.section,
.section-pad,
.section-pad-sm,
.about-section,
.news-section,
.ui-page,
.ui-overlay-a,
.ui-page-theme-a,
.ui-content,
[data-role="page"],
[data-role="content"] {
  background: #e3f4fb !important;
  background-color: #e3f4fb !important;
}

#footer,
.site-footer,
footer.site-footer {
  background: #000066 !important;
  background-color: #000066 !important;
}

h1, h2, h3, h4, h5, h6,
.heading,
.section-title,
.page-title,
.main-nav a,
.nav-dropdown-menu a,
.footer-heading,
.footer-contact-item i,
.contact-card-icon,
.stat-icon,
i[class*="fa-"] {
  color: #000066 !important;
}

a,
a:hover,
.text-gold,
.text-gold-deep,
.breadcrumb-gold a,
.footer-links a:hover,
.footer-contact-item a:hover,
.footer-bottom a,
.swiper-pagination1 .swiper-pagination-bullet-active,
.swiper-pagination1 .swiper-pagination-bullet:hover {
  color: #009CD9 !important;
}

.btn-gold,
.header-login-btn,
button,
input[type="button"],
input[type="submit"],
.ui-btn-active,
#scrollTop {
  background: #009CD9 !important;
  background-color: #009CD9 !important;
  border-color: #009CD9 !important;
  color: #ffffff !important;
}

.btn-gold:hover,
.header-login-btn:hover,
button:hover,
input[type="button"]:hover,
input[type="submit"]:hover,
#scrollTop:hover {
  background: #0088BF !important;
  background-color: #0088BF !important;
  border-color: #0088BF !important;
  color: #ffffff !important;
}

.btn-gold-outline,
.btn-white,
.btn-secondary,
button.secondary,
input.secondary {
  background: #ffffff !important;
  background-color: #ffffff !important;
  border-color: #000066 !important;
  color: #000066 !important;
}

.btn-gold-outline:hover,
.btn-white:hover,
.btn-secondary:hover,
button.secondary:hover,
input.secondary:hover {
  background: #009CD9 !important;
  background-color: #009CD9 !important;
  border-color: #009CD9 !important;
  color: #ffffff !important;
}

.main-nav a:hover,
.main-nav a.active,
.nav-dropdown-menu a:hover,
.nav-dropdown-menu a.active {
  color: #009CD9 !important;
}

.footer-heading,
.footer-contact-item i,
#footer a:hover,
.site-footer a:hover {
  color: #009CD9 !important;
}

.site-footer::before,
.footer-heading::after,
.gold-line,
.gold-divider,
.section-badge,
.active-mark {
  background: #009CD9 !important;
  background-color: #009CD9 !important;
}

body :is(.body, main, #main, #content, .main, .content, .page-content, .page-wrapper, section, .section, .section-pad, .section-pad-sm, .ui-page, .ui-content) :is(.text-white, .color-white, [style*="color:#fff"], [style*="color: #fff"], [style*="color:#FFF"], [style*="color: #FFF"], [style*="color:white"], [style*="color: white"]) {
  color: #000066 !important;
}

body :is(.body, main, #main, #content, .main, .content, .page-content, .page-wrapper, section, .section, .section-pad, .section-pad-sm, .ui-page, .ui-content) :is(p, span, div, li, label, td, th, small, strong):not(.btn):not(.ui-btn):not(.pageHeaders):not(.footer-heading):not(.footer-contact-item):not([class*="btn"]):not([style*="background"]):not([style*="color:red"]):not([style*="color:green"]) {
  color: #000066 !important;
}

#header :is(.text-white, .color-white, [style*="color:#fff"], [style*="color: #fff"]),
#footer :is(.text-white, .color-white, [style*="color:#fff"], [style*="color: #fff"]),
.site-footer :is(.text-white, .color-white, [style*="color:#fff"], [style*="color: #fff"]),
.page-hero :is(.text-white, .color-white, [style*="color:#fff"], [style*="color: #fff"]),
.hero-section :is(.text-white, .color-white, [style*="color:#fff"], [style*="color: #fff"]),
.btn,
button,
input[type="button"],
input[type="submit"],
.ui-btn-active,
.pageHeaders,
#tblHeader,
tr.heading,
tr.heading td,
tr.heading th {
  color: #ffffff !important;
}

.trend-section,
.trend-section .section-badge,
.trend-section h1,
.trend-section h2,
.trend-section h3,
.trend-section p,
.trend-section span,
.trend-section a,
.trend-section i,
.trend-section .text-gold,
.trend-section .text-gold-deep,
.trend-card,
.trend-card #div2,
.trend-card #div2 *,
.trend-card #div2 .text-white,
.trend-card #div2 .color-white,
.trend-card #div2 [style*="color:#fff"],
.trend-card #div2 [style*="color: #fff"],
.trend-card #div2 [style*="color:#FFF"],
.trend-card #div2 [style*="color: #FFF"],
.trend-card #div2 [style*="color:white"],
.trend-card #div2 [style*="color: white"] {
  color: #000000 !important;
}

/* Final index hero stat color override */
.hero .hero-stats,
.hero .hero-stats *,
.hero .hero-stat-num,
.hero .hero-stat-num i,
.hero .hero-stat-label,
.hero .hero-stat-label * {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

.hero .hero-badge,
.hero .hero-badge *,
.hero .hero-badge i {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

/* Final index hero title color override */
.hero .hero-title {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

.hero .hero-title .gold-word,
.hero .hero-title .gold-word.gold-shimmer {
  color: var(--gold) !important;
  -webkit-text-fill-color: transparent !important;
}

/* Final index hero subtitle color override */
.hero .hero-subtitle,
.hero p.hero-subtitle {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

/* Final contact/footer icon contrast override */
.contact-card-icon,
.contact-card-icon i,
.contact-card .contact-card-icon,
.contact-card .contact-card-icon i {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

.site-footer .footer-contact-item i,
footer .footer-contact-item i,
.footer-contact-item i {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

/* Final clock and scroll-top color consistency */
.top-bar .clock-item span,
.top-bar .clock-item span[id^="clock_"] {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

#scrollTop,
#scrollTop,
html .scroll-to-top,
.scroll-to-top {
  background: #009CD9 !important;
  background-color: #009CD9 !important;
  border-color: #009CD9 !important;
  color: #ffffff !important;
}

#scrollTop i,
#scrollTop i,
html .scroll-to-top i,
.scroll-to-top i {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

#scrollTop:hover,
#scrollTop:hover,
html .scroll-to-top:hover,
.scroll-to-top:hover {
  background: #0088BF !important;
  background-color: #0088BF !important;
  border-color: #0088BF !important;
  color: #ffffff !important;
}

/* Final top-bar clock alignment across all pages */
.top-bar > .container,
.top-bar .container {
  width: 100% !important;
  max-width: 1440px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 24px !important;
  padding-right: 24px !important;
  display: flex !important;
  justify-content: flex-end !important;
  align-items: center !important;
  gap: 24px !important;
}

.top-bar .clock-item {
  flex: 0 0 146px !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  justify-content: flex-start !important;
}

.top-bar .clock-item:last-child {
  margin-right: 0 !important;
}

/* Final modal close button design */
.modal .btn-close,
.modal-gold .modal-header .btn-close {
  width: 34px !important;
  height: 34px !important;
  min-width: 34px !important;
  min-height: 34px !important;
  padding: 0 !important;
  margin: 0 0 0 auto !important;
  border: 1px solid rgba(0, 0, 102, 0.12) !important;
  border-radius: 50% !important;
  background-color: #ffffff !important;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000066'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293A1 1 0 0 1 .293 14.293L6.586 8 .293 1.707A1 1 0 0 1 .293.293z'/%3e%3c/svg%3e") !important;
  background-size: 12px 12px !important;
  background-position: center !important;
  box-shadow: 0 8px 20px rgba(0, 0, 102, 0.18) !important;
  opacity: 1 !important;
  filter: none !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease !important;
}

.modal .btn-close:hover,
.modal-gold .modal-header .btn-close:hover {
  background-color: #e3f4fb !important;
  box-shadow: 0 10px 24px rgba(0, 156, 217, 0.24) !important;
  transform: translateY(-1px) !important;
  opacity: 1 !important;
}

.modal .btn-close:focus,
.modal-gold .modal-header .btn-close:focus {
  box-shadow: 0 0 0 3px rgba(0, 156, 217, 0.28), 0 8px 20px rgba(0, 0, 102, 0.18) !important;
  outline: none !important;
}

/* Absolute final scroll-top position and icon alignment */
#scrollTop,
#scrollTop,
html .scroll-to-top,
.scroll-to-top {
  position: fixed !important;
  bottom: 96px !important;
  right: 28px !important;
  width: 44px !important;
  height: 44px !important;
  min-width: 44px !important;
  min-height: 44px !important;
  padding: 0 !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  line-height: 1 !important;
  text-align: center !important;
}

#scrollTop i,
#scrollTop i,
html .scroll-to-top i,
.scroll-to-top i {
  display: block !important;
  position: static !important;
  top: auto !important;
  margin: 0 !important;
  line-height: 1 !important;
  font-size: 1rem !important;
}

/* Final clock and scroll-top color consistency */
.top-bar .clock-item span,
.top-bar .clock-item span[id^="clock_"] {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

#scrollTop {
  background: #009CD9 !important;
  background-color: #009CD9 !important;
  border-color: #009CD9 !important;
  color: #ffffff !important;
  position: fixed !important;
  bottom: 96px !important;
  right: 28px !important;
  width: 44px !important;
  height: 44px !important;
  min-width: 44px !important;
  min-height: 44px !important;
  padding: 0 !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  line-height: 1 !important;
  text-align: center !important;
}

#scrollTop i {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  display: block !important;
  position: static !important;
  top: auto !important;
  margin: 0 !important;
  line-height: 1 !important;
  font-size: 1rem !important;
}

#scrollTop:hover {
  background: #0088BF !important;
  background-color: #0088BF !important;
  border-color: #0088BF !important;
  color: #ffffff !important;
}

/* Final contact/footer icon contrast override */
.contact-card-icon,
.contact-card-icon i,
.contact-card .contact-card-icon,
.contact-card .contact-card-icon i {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

.site-footer .footer-contact-item i,
footer .footer-contact-item i,
.footer-contact-item i {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

.hero .hero-stats,
.hero .hero-stats *,
.hero .hero-stat-num,
.hero .hero-stat-num i,
.hero .hero-stat-label {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

.page-hero .section-badge,
.page-hero .section-badge i {
  color: var(--gold-light) !important;
}

.page-hero .section-badge,
.page-hero .section-badge i {
  color: var(--gold-light) !important;
}

.page-hero .section-badge,
.page-hero .section-badge i {
  color: var(--gold-light) !important;
}

.page-hero .section-badge {
  background: rgba(29,114,210,0.15) !important;
  border-color: rgba(29,114,210,0.4) !important;
}

.trend-section,
.trend-section .section-badge,
.trend-section h1,
.trend-section h2,
.trend-section h3,
.trend-section p,
.trend-section span,
.trend-section a,
.trend-section i,
.trend-card,
.trend-card #div2,
.trend-card #div2 div,
.trend-card #div2 span,
.trend-card #div2 p,
.trend-card #div2 a,
.trend-card #div2 table,
.trend-card #div2 tbody,
.trend-card #div2 tr,
.trend-card #div2 td,
.trend-card #div2 th,
.trend-card #div2 small,
.trend-card #div2 strong,
.trend-card #div2 .text-white,
.trend-card #div2 .color-white,
.trend-card #div2 [style*="color:#fff"],
.trend-card #div2 [style*="color: #fff"],
.trend-card #div2 [style*="color:#FFF"],
.trend-card #div2 [style*="color: #FFF"],
.trend-card #div2 [style*="color:white"],
.trend-card #div2 [style*="color: white"],
.trend-section .text-gold,
.trend-section .text-gold-deep {
  color: #000000 !important;
}

.trend-section,
.trend-section .section-badge,
.trend-section h1,
.trend-section h2,
.trend-section h3,
.trend-section p,
.trend-section span,
.trend-section a,
.trend-section i,
.trend-card,
.trend-card #div2,
.trend-card #div2 div,
.trend-card #div2 span,
.trend-card #div2 p,
.trend-card #div2 a,
.trend-card #div2 table,
.trend-card #div2 tbody,
.trend-card #div2 tr,
.trend-card #div2 td,
.trend-card #div2 th,
.trend-card #div2 small,
.trend-card #div2 strong,
.trend-card #div2 [style*="color:#fff"],
.trend-card #div2 [style*="color: #fff"],
.trend-card #div2 [style*="color:#FFF"],
.trend-card #div2 [style*="color: #FFF"],
.trend-card #div2 [style*="color:white"],
.trend-card #div2 [style*="color: white"],
.trend-section .text-gold,
.trend-section .text-gold-deep {
  color: #000000 !important;
}

.body .text-white,
.body .color-white,
main .text-white,
main .color-white,
#content .text-white,
#content .color-white,
.content .text-white,
.content .color-white,
.section .text-white,
.section .color-white,
.ui-content .text-white,
.ui-content .color-white,
[data-role="content"] .text-white,
[data-role="content"] .color-white {
  color: #000066 !important;
}

#header .text-white,
#header .color-white,
#footer .text-white,
#footer .color-white,
.site-footer .text-white,
.site-footer .color-white,
.btn,
button,
input[type="button"],
input[type="submit"],
.ui-btn-active,
.pageHeaders,
#tblHeader,
tr.heading,
tr.heading td,
tr.heading th {
  color: #ffffff !important;
}

.trend-section,
.trend-section .section-badge,
.trend-section h1,
.trend-section h2,
.trend-section h3,
.trend-section p,
.trend-section span,
.trend-section a,
.trend-section i,
.trend-section .text-gold,
.trend-section .text-gold-deep,
.trend-card,
.trend-card #div2,
.trend-card #div2 *,
.trend-card #div2 .text-white,
.trend-card #div2 .color-white,
.trend-card #div2 [style*="color:#fff"],
.trend-card #div2 [style*="color: #fff"],
.trend-card #div2 [style*="color:#FFF"],
.trend-card #div2 [style*="color: #FFF"],
.trend-card #div2 [style*="color:white"],
.trend-card #div2 [style*="color: white"] {
  color: #000000 !important;
}

/* Final index hero stat color override */
.hero .hero-stats,
.hero .hero-stats *,
.hero .hero-stat-num,
.hero .hero-stat-num i,
.hero .hero-stat-label,
.hero .hero-stat-label * {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

/* Final index hero badge color override */
.hero .hero-badge,
.hero .hero-badge *,
.hero .hero-badge i {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

/* Final index hero title color override */
.hero .hero-title {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

.hero .hero-title .gold-word,
.hero .hero-title .gold-word.gold-shimmer {
  color: var(--gold) !important;
  -webkit-text-fill-color: transparent !important;
}

/* Final index hero subtitle color override */
.hero .hero-subtitle,
.hero p.hero-subtitle {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

/* Final contact/footer icon contrast override */
.contact-card-icon,
.contact-card-icon i,
.contact-card .contact-card-icon,
.contact-card .contact-card-icon i {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

.site-footer .footer-contact-item i,
footer .footer-contact-item i,
.footer-contact-item i {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

/* Final clock and scroll-top color consistency */
.top-bar .clock-item span,
.top-bar .clock-item span[id^="clock_"] {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

#scrollTop {
  background: #009CD9 !important;
  background-color: #009CD9 !important;
  border-color: #009CD9 !important;
  color: #ffffff !important;
}

#scrollTop i {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

#scrollTop:hover {
  background: #0088BF !important;
  background-color: #0088BF !important;
  border-color: #0088BF !important;
  color: #ffffff !important;
}

/* Final generated scroll-to-top button for theme.js pages */
#scrollTop,
html .scroll-to-top,
.scroll-to-top {
  background: #009CD9 !important;
  background-color: #009CD9 !important;
  border-color: #009CD9 !important;
  color: #ffffff !important;
  position: fixed !important;
  bottom: 96px !important;
  right: 28px !important;
  width: 44px !important;
  height: 44px !important;
  min-width: 44px !important;
  min-height: 44px !important;
  padding: 0 !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  line-height: 1 !important;
  text-align: center !important;
}

#scrollTop i,
html .scroll-to-top i,
.scroll-to-top i {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  display: block !important;
  position: static !important;
  top: auto !important;
  margin: 0 !important;
  line-height: 1 !important;
  font-size: 1rem !important;
}

#scrollTop:hover,
html .scroll-to-top:hover,
.scroll-to-top:hover {
  background: #0088BF !important;
  background-color: #0088BF !important;
  border-color: #0088BF !important;
  color: #ffffff !important;
}

/* Final top-bar clock edge alignment across all pages */
.top-bar > .container,
.top-bar .container {
  width: 100% !important;
  max-width: 1440px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 24px !important;
  padding-right: 24px !important;
  display: flex !important;
  justify-content: flex-end !important;
  align-items: center !important;
  gap: 24px !important;
}

.top-bar .clock-item {
  flex: 0 0 146px !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  justify-content: flex-start !important;
}

.top-bar .clock-item:last-child {
  margin-right: 0 !important;
}

/* Final modal close button design */
.modal .btn-close,
.modal-gold .modal-header .btn-close {
  width: 34px !important;
  height: 34px !important;
  min-width: 34px !important;
  min-height: 34px !important;
  padding: 0 !important;
  margin: 0 0 0 auto !important;
  border: 1px solid rgba(0, 0, 102, 0.12) !important;
  border-radius: 50% !important;
  background-color: #ffffff !important;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000066'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293A1 1 0 0 1 .293 14.293L6.586 8 .293 1.707A1 1 0 0 1 .293.293z'/%3e%3c/svg%3e") !important;
  background-size: 12px 12px !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  box-shadow: 0 8px 20px rgba(0, 0, 102, 0.18) !important;
  opacity: 1 !important;
  filter: none !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease !important;
}

.modal .btn-close:hover,
.modal-gold .modal-header .btn-close:hover {
  background-color: #e3f4fb !important;
  box-shadow: 0 10px 24px rgba(0, 156, 217, 0.24) !important;
  transform: translateY(-1px) !important;
  opacity: 1 !important;
}

.modal .btn-close:focus,
.modal-gold .modal-header .btn-close:focus {
  box-shadow: 0 0 0 3px rgba(0, 156, 217, 0.28), 0 8px 20px rgba(0, 0, 102, 0.18) !important;
  outline: none !important;
}
