/* ==========================================
   BAGEL 2035 FUTURISTIC DESIGN SYSTEM
   ========================================== */

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

:root {
  --bg-dark: #040711;
  --bg-card: rgba(10, 18, 36, 0.75);
  --bg-card-hover: rgba(16, 28, 56, 0.9);
  --brand-orange: #FF6B00;
  --brand-orange-hover: #FF8533;
  --brand-orange-glow: rgba(255, 107, 0, 0.4);
  --cyber-blue: #00A3FF;
  --cyber-blue-glow: rgba(0, 163, 255, 0.35);
  --text-primary: #FFFFFF;
  --text-secondary: rgba(255, 255, 255, 0.68);
  --text-muted: rgba(255, 255, 255, 0.45);
  --border-glass: rgba(255, 255, 255, 0.12);
  --border-hover: rgba(255, 107, 0, 0.5);
  --radius-pill: 9999px;
  --radius-card: 20px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Background Ambient Halos - Removed for clean theme layout */
body::before {
  content: '';
  display: none !important;
}

main {
  flex: 1;
  z-index: 1;
}

/* ==========================================
   FLOATING FUTURISTIC HEADER (NAVBAR)
   ========================================== */

.nav-wrapper {
  position: sticky;
  top: 16px;
  z-index: 1000;
  padding: 0 24px;
  margin-bottom: 24px;
}

nav.futuristic-nav {
  max-width: 1200px;
  margin: 0 auto;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
  background: rgba(8, 14, 28, 0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-pill);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
}

nav.futuristic-nav:hover {
  border-color: rgba(255, 107, 0, 0.3);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.7), 0 0 25px rgba(255, 107, 0, 0.15);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo img {
  height: 32px;
  width: auto;
  filter: drop-shadow(0 0 8px rgba(255, 107, 0, 0.5));
}

.nav-logo-text {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: #ffffff;
  letter-spacing: -0.5px;
}

.nav-center {
  display: flex;
  gap: 6px;
  list-style: none;
  align-items: center;
}

.nav-center > li {
  position: relative;
}

.nav-link, .nav-drop-btn {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  transition: all 0.3s ease;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: 1px solid transparent;
}

/* Rollover & Hover Effects with Google-style Perimeter Glow */
.nav-link:hover, .nav-drop-btn:hover, .nav-link.active {
  color: #ffffff;
  background: rgba(255, 107, 0, 0.12);
  border-color: rgba(255, 107, 0, 0.4);
  box-shadow: 0 0 15px rgba(255, 107, 0, 0.25);
}

.chev {
  font-size: 10px;
  transition: transform 0.25s ease;
}

.nav-center > li:hover .chev {
  transform: rotate(180deg);
  color: var(--brand-orange);
}

/* Dropdown Menu */
.nav-drop {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: rgba(10, 18, 36, 0.95);
  backdrop-filter: blur(24px);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  padding: 12px;
  min-width: 275px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.8), 0 0 25px rgba(255, 107, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1001;
}

.nav-center > li:hover .nav-drop {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.drop-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--cyber-blue);
  padding: 8px 14px 4px;
}

.nav-drop a {
  display: block;
  padding: 9px 13px;
  border-radius: 12px;
  font-size: 13.5px;
  color: #F8FAFC;
  text-decoration: none;
  transition: all 0.2s ease;
  font-weight: 500;
  white-space: nowrap;
  border: 1px solid transparent;
}

.nav-drop a:hover {
  background: rgba(255, 107, 0, 0.18);
  color: #FF8533;
  border-color: transparent;
}

.nav-drop a.active {
  color: #FF6B00;
  font-weight: 600;
  background: rgba(255, 107, 0, 0.02);
  border: 1px solid rgba(255, 107, 0, 0.4);
}

.nav-drop a.active:hover {
  background: rgba(255, 107, 0, 0.22);
  border-color: rgba(255, 107, 0, 0.5);
  color: #FF8533;
}

.nav-drop hr {
  border: none;
  border-top: 1px solid var(--border-glass);
  margin: 6px 0;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* PERIMETER GLOW BUTTONS (GOOGLE-LIKE AMBIENT LIGHTS) */

.btn-p {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #FF6B00 0%, #E85D00 100%);
  color: #ffffff;
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 24px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 18px rgba(255, 107, 0, 0.35);
  overflow: hidden;
}

.btn-p:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #FF8533 0%, #FF6B00 100%);
  border-color: #00F0FF;
  box-shadow: 0 0 25px rgba(255, 107, 0, 0.6);
}

.btn-b {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #00A3FF 0%, #0066FF 100%);
  color: #ffffff !important;
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 24px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 18px rgba(0, 163, 255, 0.4);
  overflow: hidden;
}

.btn-b:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #38BDF8 0%, #00A3FF 100%);
  border-color: #00A3FF;
  box-shadow: 0 0 25px rgba(0, 163, 255, 0.6);
  color: #ffffff !important;
}

.btn-o {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 107, 0, 0.08);
  color: var(--text-primary);
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  border: 1.5px solid rgba(255, 107, 0, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.btn-o:hover {
  transform: translateY(-2px);
  background: rgba(255, 107, 0, 0.2);
  border-color: #00F0FF;
  box-shadow: 0 0 20px rgba(255, 107, 0, 0.4);
}

.btn-g {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-secondary);
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  border: 1.5px solid var(--border-glass);
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-g:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.15);
}

/* ==========================================
   BALANCED CENTERED CARDS (2035 LOOK)
   ========================================== */

.card-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
}

.card-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 36px;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-card);
  padding: 32px 24px;
  text-align: center; /* Centered content inside card */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

/* Google Light Aura Rollover Border on Cards */
.card:hover {
  transform: translateY(-6px);
  background: var(--bg-card-hover);
  border-color: var(--brand-orange);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.7), 0 0 25px var(--brand-orange-glow), 0 0 35px var(--cyber-blue-glow);
}

.card-icon-box {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 107, 0, 0.2) 0%, rgba(255, 107, 0, 0.05) 70%);
  border: 1.5px solid rgba(255, 107, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  font-size: 28px;
  color: var(--brand-orange);
  box-shadow: 0 0 20px rgba(255, 107, 0, 0.25);
  transition: all 0.3s ease;
}

.card:hover .card-icon-box {
  transform: scale(1.1);
  border-color: var(--cyber-blue);
  box-shadow: 0 0 15px rgba(255, 107, 0, 0.3);
  color: #ffffff;
}

.card h3 {
  font-family: 'Sora', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
  text-align: center;
  line-height: 1.3;
}

.card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
  text-align: center;
  margin: 0 auto;
}

.card .badge {
  display: inline-block;
  background: linear-gradient(90deg, #FF6B00, #FF8533);
  color: #ffffff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
  box-shadow: 0 0 10px rgba(255, 107, 0, 0.4);
}

/* ==========================================
   HUMAN PHOTOGRAPHY SHOWCASE SECTIONS
   ========================================== */

.human-showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin: 60px 0;
}

.human-img-frame {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border-glass);
  box-shadow: 0 20px 50px rgba(0,0,0,0.8), 0 0 30px rgba(255, 107, 0, 0.2);
  transition: all 0.4s ease;
}

.human-img-frame:hover {
  border-color: var(--cyber-blue);
  box-shadow: 0 24px 60px rgba(0,0,0,0.9);
  transform: translateY(-4px);
}

.human-img-frame img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.human-img-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(8, 14, 28, 0.85);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-glass);
  border-radius: 16px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.human-img-badge .badge-icon {
  font-size: 24px;
}

.human-img-badge h4 {
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
}

.human-img-badge p {
  font-size: 12px;
  color: var(--text-secondary);
}

/* ==========================================
   PERMANENT ANCHORED BLACK FOOTER
   ========================================== */

footer.permanent-footer {
  background: #000000 !important;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding: 36px 32px 20px 32px;
  color: #ffffff !important;
  position: relative;
  width: 100%;
  z-index: 900;
  box-shadow: none !important;
  margin-top: auto;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 32px;
  margin-bottom: 24px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.footer-brand-logo img {
  height: 32px;
  width: auto;
  filter: drop-shadow(0 0 10px rgba(255, 107, 0, 0.6));
}

.footer-brand-logo span {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: #ffffff !important;
}

.footer-brand p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.72) !important;
  line-height: 1.5;
  max-width: 320px;
}

.footer-col h5 {
  font-family: 'Sora', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #FF6B00 !important;
  margin-bottom: 14px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col a {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.78) !important;
  text-decoration: none;
  transition: all 0.2s ease;
}

.footer-col a:hover {
  color: #FF6B00 !important;
  padding-left: 4px;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 107, 0, 0.1);
  border: 1px solid rgba(255, 107, 0, 0.3);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 11.5px;
  font-weight: 600;
  color: #FF6B00 !important;
  margin-top: 6px;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #FF6B00;
  box-shadow: 0 0 8px #FF6B00;
  animation: statusPulse 2s infinite;
}

@keyframes statusPulse {
  0% { opacity: 0.4; }
  50% { opacity: 1; }
  100% { opacity: 0.4; }
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.55) !important;
}

.footer-legal-links {
  display: flex;
  gap: 20px;
}

.footer-legal-links a {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.65) !important;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-legal-links a:hover {
  color: #ffffff !important;
}

/* ==========================================
   RESPONSIVE LAYOUT
   ========================================== */

@media (max-width: 1024px) {
  .card-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .human-showcase-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================
   THEME TOGGLE SWITCH (MATCHES POS & BACKEND)
   ========================================== */
.theme-toggle-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 76px;
  height: 36px;
  border-radius: var(--radius-pill);
  padding: 3px;
  background: rgba(10, 18, 36, 0.9);
  border: 1px solid var(--border-glass);
  cursor: pointer;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.4), 0 0 10px rgba(0, 240, 255, 0.05);
}

.theme-toggle-btn:hover {
  border-color: var(--brand-orange);
  box-shadow: 0 0 15px var(--brand-orange-glow);
}

.theme-toggle-thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 32px;
  height: 28px;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, #343d63 0%, #1e2540 100%);
  box-shadow: 0 2px 6px rgba(0,0,0,0.5);
  transform: translateX(36px);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), background 0.3s ease;
  z-index: 1;
}

body[data-theme="light"] .theme-toggle-thumb,
html[data-theme="light"] .theme-toggle-thumb,
[data-theme="light"] .theme-toggle-thumb {
  transform: translateX(0px) !important;
  background: linear-gradient(135deg, #FF6B00 0%, #FF8533 100%) !important;
  box-shadow: 0 2px 8px rgba(255, 107, 0, 0.5) !important;
}

body[data-theme="dark"] .theme-toggle-thumb,
html[data-theme="dark"] .theme-toggle-thumb,
[data-theme="dark"] .theme-toggle-thumb {
  transform: translateX(36px) !important;
  background: linear-gradient(135deg, #343d63 0%, #1e2540 100%) !important;
  box-shadow: 0 2px 6px rgba(0,0,0,0.5) !important;
}

.theme-toggle-icon {
  width: 32px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  z-index: 2;
  user-select: none;
  transition: color 0.3s ease, opacity 0.3s ease;
}

.theme-toggle-icon.sun {
  color: #FF6B00;
}

.theme-toggle-icon.moon {
  color: #00F0FF;
}

/* LIGHT MODE OVERRIDES - PURE METALLIC WHITE (NO GRADIENTS) */
body[data-theme="light"], html[data-theme="light"] {
  --bg-dark: #F4F6FB;
  --bg-card: #FFFFFF;
  --bg-card-hover: #FFFFFF;
  --text-primary: #0F172A;
  --text-secondary: #334155;
  --text-muted: #64748B;
  --border-glass: rgba(15, 23, 42, 0.15);
  --cyber-blue: #0284C7;
  background: #F4F6FB !important;
  background-color: #F4F6FB !important;
  background-image: none !important;
  color: #0F172A !important;
}

body[data-theme="light"]::before,
html[data-theme="light"]::before,
body[data-theme="light"]::after,
html[data-theme="light"]::after,
body[data-theme="light"] .hero-glow,
html[data-theme="light"] .hero-glow,
body[data-theme="light"] .glow-effect,
html[data-theme="light"] .glow-effect,
body[data-theme="light"] [class*="glow"],
html[data-theme="light"] [class*="glow"] {
  display: none !important;
  content: none !important;
  background: none !important;
  background-image: none !important;
}

body[data-theme="light"] *,
html[data-theme="light"] * {
  text-shadow: none !important;
}

body[data-theme="light"] h1, html[data-theme="light"] h1,
body[data-theme="light"] h2, html[data-theme="light"] h2,
body[data-theme="light"] h3, html[data-theme="light"] h3,
body[data-theme="light"] h4, html[data-theme="light"] h4 {
  color: #0F172A !important;
}

body[data-theme="light"] p, html[data-theme="light"] p {
  color: #334155 !important;
}

body[data-theme="light"] section, html[data-theme="light"] section,
body[data-theme="light"] main, html[data-theme="light"] main {
  background-color: transparent !important;
  background-image: none !important;
}

body[data-theme="light"] .card, html[data-theme="light"] .card {
  background: #FFFFFF !important;
  border-color: rgba(15, 23, 42, 0.15) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06) !important;
}

body[data-theme="light"] .card h3, html[data-theme="light"] .card h3 {
  color: #0F172A !important;
}

body[data-theme="light"] .card p, html[data-theme="light"] .card p {
  color: #475569 !important;
}

body[data-theme="light"] .card li, html[data-theme="light"] .card li {
  color: #334155 !important;
}

body[data-theme="light"] .btn-o, html[data-theme="light"] .btn-o,
body[data-theme="light"] .btn-g, html[data-theme="light"] .btn-g {
  color: #0F172A !important;
  background: rgba(255, 107, 0, 0.08) !important;
  border-color: rgba(255, 107, 0, 0.6) !important;
}

body[data-theme="light"] .btn-o:hover, html[data-theme="light"] .btn-o:hover,
body[data-theme="light"] .btn-g:hover, html[data-theme="light"] .btn-g:hover {
  background: var(--brand-orange) !important;
  color: #FFFFFF !important;
  border-color: var(--brand-orange) !important;
}

body[data-theme="light"] .btn-b, html[data-theme="light"] .btn-b {
  background: linear-gradient(135deg, #0284C7 0%, #0369A1 100%) !important;
  color: #FFFFFF !important;
  box-shadow: 0 4px 18px rgba(2, 132, 199, 0.35) !important;
}

body[data-theme="light"] .btn-b:hover, html[data-theme="light"] .btn-b:hover {
  background: linear-gradient(135deg, #0369A1 0%, #0284C7 100%) !important;
  border-color: #0284C7 !important;
  box-shadow: 0 0 25px rgba(2, 132, 199, 0.5) !important;
  color: #FFFFFF !important;
}

/* Clean Light Mode Header Pill & Dropdown */
body[data-theme="light"] nav.futuristic-nav, html[data-theme="light"] nav.futuristic-nav {
  background: rgba(255, 255, 255, 0.94) !important;
  border-color: rgba(15, 23, 42, 0.15) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08) !important;
}

body[data-theme="light"] .nav-link, html[data-theme="light"] .nav-link,
body[data-theme="light"] .nav-drop-btn, html[data-theme="light"] .nav-drop-btn {
  color: #1E293B !important;
}

body[data-theme="light"] .nav-link:hover, html[data-theme="light"] .nav-link:hover,
body[data-theme="light"] .nav-drop-btn:hover, html[data-theme="light"] .nav-drop-btn:hover,
body[data-theme="light"] .nav-link.active, html[data-theme="light"] .nav-link.active {
  color: #FF6B00 !important;
  background: rgba(255, 107, 0, 0.1) !important;
}

body[data-theme="light"] .nav-drop, html[data-theme="light"] .nav-drop {
  background: #FFFFFF !important;
  border-color: rgba(15, 23, 42, 0.15) !important;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12) !important;
}

body[data-theme="light"] .nav-drop a, html[data-theme="light"] .nav-drop a {
  color: #0F172A !important;
  font-weight: 500 !important;
  white-space: nowrap !important;
  border: 1px solid transparent !important;
}

body[data-theme="light"] .nav-drop a:hover {
  background: rgba(255, 107, 0, 0.12) !important;
  color: var(--brand-orange) !important;
  border-color: transparent !important;
}

body[data-theme="light"] .nav-drop a.active {
  color: var(--brand-orange) !important;
  font-weight: 600 !important;
  background: rgba(255, 107, 0, 0.02) !important;
  border: 1px solid rgba(255, 107, 0, 0.45) !important;
}

body[data-theme="light"] .nav-drop a.active:hover {
  background: rgba(255, 107, 0, 0.14) !important;
  border-color: rgba(255, 107, 0, 0.6) !important;
}

body[data-theme="light"] .human-img-frame, html[data-theme="light"] .human-img-frame {
  border-color: rgba(15, 23, 42, 0.15) !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08) !important;
}

body[data-theme="light"] .human-img-badge, html[data-theme="light"] .human-img-badge {
  background: rgba(255, 255, 255, 0.94) !important;
  border-color: rgba(15, 23, 42, 0.15) !important;
}

body[data-theme="light"] .human-img-badge h4, html[data-theme="light"] .human-img-badge h4 {
  color: #0F172A !important;
}

body[data-theme="light"] .human-img-badge p, html[data-theme="light"] .human-img-badge p {
  color: #475569 !important;
}

body[data-theme="light"] .theme-toggle-btn, html[data-theme="light"] .theme-toggle-btn {
  background: #E2E8F0 !important;
  border-color: #CBD5E1 !important;
}

body[data-theme="light"] .cta-band, html[data-theme="light"] .cta-band {
  background: #FFFFFF !important;
  background-image: none !important;
  border-color: rgba(255, 107, 0, 0.25) !important;
}

