/* ==========================================================================
   BAANGANGA GOLD & DIAMONDS - MASTER LUXURY DESIGN SYSTEM
   Production-Ready Design Tokens, Global Typography, Animations & Micro-Interactions
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. GLOBAL DESIGN TOKENS & SYSTEM VARIABLES
   -------------------------------------------------------------------------- */
:root {
  /* Refined Luxury Palette - Zero Red Cast, Pure Obsidian & Regal Gold */
  --color-bgdark: #120e0c;
  --color-bgdark-surface: #1a1411;
  --color-bgdark-card: #201815;
  --color-bgdark-scrolled: rgba(18, 14, 12, 0.92);
  
  --color-bggold: #c59a5f;
  --color-bggold-light: #e5c494;
  --color-bggold-dark: #966f36;
  --color-bggold-glow: rgba(197, 154, 95, 0.35);
  --color-bggold-subtle: rgba(197, 154, 95, 0.12);
  
  --color-bglight: #faf7f2;
  --color-bglight-surface: #f4efe6;
  --color-bglight-card: #ffffff;
  --color-bgmid: #dcc6a3;
  
  --color-textdark: #201815;
  --color-textmuted: #6b5c53;
  --color-textlight: #ffffff;
  --color-textlight-muted: rgba(250, 247, 242, 0.75);

  /* Unified Modern Luxury Typography - Exactly as Navigation Font */
  --font-sans: 'Plus Jakarta Sans', 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Plus Jakarta Sans', 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-serif: 'Plus Jakarta Sans', 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  /* Mathematical Animation Curves */
  --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-spring: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-luxury: cubic-bezier(0.19, 1, 0.22, 1);
}

/* --------------------------------------------------------------------------
   2. RESET & GLOBAL BASE STYLES
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body,
button,
input,
select,
textarea,
h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
a,
label,
li,
ul {
  font-family: var(--font-sans) !important;
}

body {
  margin: 0;
  padding: 0;
  background-color: var(--color-bglight);
  color: var(--color-textdark);
  font-family: var(--font-sans) !important;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Custom Gold Selection */
::selection {
  background-color: var(--color-bggold);
  color: #120e0c;
}

/* Native Browser Scrollbar enabled - No custom scrollbar */

/* --------------------------------------------------------------------------
   3. UNIFIED GLOBAL TYPOGRAPHY & TITLE SYSTEM (MAIN TITLE & DIVIDER ONLY)
   -------------------------------------------------------------------------- */
.page-title,
.hero-title {
  font-family: var(--font-sans) !important;
  font-weight: 700 !important;
  letter-spacing: -0.01em !important;
  text-transform: uppercase !important;
  line-height: 1.15 !important;
}

.section-title {
  font-family: var(--font-sans) !important;
  font-size: 24px !important;
  font-weight: 700 !important;
  color: var(--color-textdark) !important;
  letter-spacing: -0.01em !important;
  text-transform: uppercase !important;
  line-height: 1.25 !important;
  margin-bottom: 0 !important;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 34px !important;
  }
}

@media (min-width: 1024px) {
  .section-title {
    font-size: 40px !important;
  }
}

.section-paragraph {
  font-family: var(--font-sans) !important;
  font-size: 13px !important;
  line-height: 1.85 !important;
  color: var(--color-textmuted) !important;
  font-weight: 400 !important;
  letter-spacing: 0.01em !important;
}

@media (min-width: 768px) {
  .section-paragraph {
    font-size: 14px !important;
  }
}

/* Gold Title Underline Ornament */
.gold-divider {
  width: 56px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-bggold), transparent);
  margin: 14px auto 0 auto;
  border-radius: 1px;
}

.gold-divider-left {
  width: 56px;
  height: 2px;
  background: linear-gradient(90deg, var(--color-bggold), transparent);
  margin: 12px 0 0 0;
  border-radius: 1px;
}

/* --------------------------------------------------------------------------
   4. HERO VIGNETTE SYSTEM - NO RED GRADIENT
   -------------------------------------------------------------------------- */
.hero-vignette-clean {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at center, rgba(18, 14, 12, 0.15) 0%, rgba(14, 10, 8, 0.72) 100%),
    linear-gradient(180deg, rgba(14, 10, 8, 0.65) 0%, rgba(14, 10, 8, 0.1) 40%, rgba(14, 10, 8, 0.1) 60%, rgba(14, 10, 8, 0.85) 100%) !important;
  pointer-events: none;
}

.hero-vignette-subtle {
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(180deg, rgba(14, 10, 8, 0.6) 0%, rgba(14, 10, 8, 0.2) 50%, rgba(14, 10, 8, 0.85) 100%) !important;
  pointer-events: none;
}

/* --------------------------------------------------------------------------
   4b. PRELOADER LUXURY PRESENTATION
   -------------------------------------------------------------------------- */
#preloader {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

#preloader img {
  height: 180px !important;
  max-height: 220px !important;
  width: auto !important;
  object-fit: contain !important;
  margin-bottom: 2rem !important;
  filter: brightness(1.1) drop-shadow(0 8px 30px rgba(197, 154, 95, 0.25)) !important;
}

@media (max-width: 768px) {
  #preloader img {
    height: 120px !important;
    max-height: 140px !important;
    margin-bottom: 1.5rem !important;
  }
}

#preloader .preloader-shimmer-bar,
#preloader > div > div:last-child {
  width: 320px !important;
  max-width: 80vw !important;
  height: 3px !important;
}

@media (max-width: 768px) {
  #preloader .preloader-shimmer-bar,
  #preloader > div > div:last-child {
    width: 220px !important;
  }
}

/* --------------------------------------------------------------------------
   5. HEADER & LUXURY ANIMATED NAVIGATION WITH CENTER LOGO
   -------------------------------------------------------------------------- */
#main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 108px !important;
  z-index: 50;
  background: rgba(18, 14, 12, 0.65) !important;
  border-top: none !important;
  border-left: none !important;
  border-right: none !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
  outline: none !important;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.25) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  transition: height 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
              border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: height, background, backdrop-filter, border-color, box-shadow;
}

/* Scrolled State: Deep Obsidian Glassmorphism with Smooth Subtle Padding Reduction */
#main-header.scrolled-header {
  height: 90px !important;
  background: rgba(14, 10, 8, 0.94) !important;
  border-top: none !important;
  border-left: none !important;
  border-right: none !important;
  border-bottom: 1px solid rgba(197, 154, 95, 0.28) !important;
  outline: none !important;
  backdrop-filter: blur(16px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(16px) saturate(180%) !important;
  box-shadow: 0 12px 35px -5px rgba(0, 0, 0, 0.65) !important;
}

@media (max-width: 1023px) {
  #main-header {
    height: 86px !important;
  }
  #main-header.scrolled-header {
    height: 74px !important;
  }
}

/* Container and Inner Header - Strict 100% Height & Dead Center Vertical Alignment */
#main-header > div,
#main-header .max-w-7xl {
  height: 100% !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

#header-inner {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  height: 100% !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  position: relative !important;
}

/* Center Logo Container & Premium Grand Branding */
#logo-container {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  height: 100% !important;
  padding: 0 18px !important;
  margin: 0 !important;
  flex-shrink: 0 !important;
}

#logo-container a {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  height: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* Prominent luxury logo with fixed consistent size (does not shrink or distort on scroll) */
#logo-container img {
  max-height: 78px !important;
  height: auto !important;
  width: auto !important;
  object-fit: contain !important;
  filter: brightness(0) invert(1) !important;
  transition: filter 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.3s ease;
  transform-origin: center center;
}

/* Scrolled: Seamlessly removes white filter to reveal original gold branding, keeping fixed logo size */
#main-header.scrolled-header #logo-container img {
  max-height: 78px !important;
  filter: none !important;
  transform: none !important;
}

@media (max-width: 1023px) {
  #logo-container img,
  #main-header.scrolled-header #logo-container img {
    max-height: 58px !important;
  }
}

#main-header #logo-container a:hover img {
  transform: scale(1.02);
}

/* Navigation Link Wings - Extended Across the Global Max-W-7xl Guide Rails */
#nav-links-left {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  height: 100% !important;
  flex: 1 !important;
  padding-left: 0 !important;
  padding-right: 36px !important;
  margin: 0 !important;
  gap: 0 !important;
}

#nav-links-right {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  height: 100% !important;
  flex: 1 !important;
  padding-left: 36px !important;
  padding-right: 0 !important;
  margin: 0 !important;
  gap: 0 !important;
}

#nav-links-left > *,
#nav-links-right > * {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.nav-link-item,
.nav-trigger {
  color: #faf7f2 !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  line-height: 1 !important;
  gap: 4px;
  height: 100% !important;
  padding: 0 10px !important;
  margin: 0 !important;
  transition: color 0.35s cubic-bezier(0.16, 1, 0.3, 1), letter-spacing 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

/* Luxury Gold Bottom Indicator Line - Locked 100% to Exact Header Bottom */
.nav-link-item::after,
.nav-trigger::after {
  content: '' !important;
  position: absolute !important;
  bottom: 0px !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  height: 2.5px !important;
  background-color: var(--color-bggold) !important;
  box-shadow: 0 0 10px rgba(197, 154, 95, 0.4) !important;
  border-radius: 2px 2px 0 0 !important;
  transform: scaleX(0);
  transform-origin: center;
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s ease;
  z-index: 20;
}

/* Navigation Hover State */
.nav-link-item:hover,
.nav-trigger:hover,
.nav-item:hover > .nav-trigger {
  color: var(--color-bggold-light) !important;
  letter-spacing: 0.2em !important;
}

.nav-link-item:hover::after,
.nav-trigger:hover::after,
.nav-item:hover > .nav-trigger::after {
  transform: scaleX(1) !important;
  opacity: 0.85 !important;
}

/* Active Page State - Permanent Gold Bottom Indicator Line & Text Lockup */
.nav-link-item.active-nav,
.nav-trigger.active-nav {
  color: var(--color-bggold) !important;
  font-weight: 700 !important;
}

.nav-link-item.active-nav::after,
.nav-trigger.active-nav::after {
  transform: scaleX(1) !important;
  opacity: 1 !important;
}

/* --------------------------------------------------------------------------
   6. PERFECTLY ALIGNED LUXURY DROPDOWN MENUS
   -------------------------------------------------------------------------- */
.nav-item {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 100% !important;
}

/* Invisible bridge prevents closing when moving cursor from trigger to dropdown */
.nav-item::before {
  content: '';
  position: absolute;
  top: 100%;
  left: -20px;
  right: -20px;
  height: 18px;
  background: transparent;
  pointer-events: auto;
  z-index: 55;
}

.nav-item .dropdown {
  position: absolute;
  left: 50%;
  top: calc(100% + 8px);
  transform: translateX(-50%) translateY(8px);
  min-width: 230px;
  background: rgba(21, 16, 14, 0.96) !important;
  backdrop-filter: blur(24px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(24px) saturate(180%) !important;
  border: 1px solid rgba(197, 154, 95, 0.3) !important;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.65), 0 0 1px 1px rgba(197, 154, 95, 0.15) !important;
  border-radius: 4px;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s var(--ease-luxury), transform 0.3s var(--ease-luxury), visibility 0.3s ease;
  pointer-events: none;
  z-index: 60;
  padding: 6px 0;
}

.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown {
  visibility: visible;
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.dropdown a {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  padding: 11px 20px !important;
  color: #faf7f2 !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase !important;
  border-bottom: 1px solid rgba(197, 154, 95, 0.08) !important;
  position: relative;
  transition: all 0.25s var(--ease-smooth) !important;
  text-decoration: none;
}

.dropdown a::after {
  display: none !important;
}

.dropdown a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--color-bggold);
  transform: scaleY(0);
  transform-origin: center;
  transition: transform 0.25s var(--ease-spring);
}

.dropdown a:last-child {
  border-bottom: none !important;
}

.dropdown a:hover {
  background-color: rgba(197, 154, 95, 0.12) !important;
  color: var(--color-bggold-light) !important;
  padding-left: 26px !important;
}

.dropdown a:hover::before {
  transform: scaleY(1);
}

/* --------------------------------------------------------------------------
   7. ANIMATED HAMBURGER & MOBILE DRAWER (BORDERLESS & CREATIVE)
   -------------------------------------------------------------------------- */
.hamburger-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 42px;
  height: 42px;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
  cursor: pointer;
  padding: 8px;
  z-index: 70;
  transition: transform 0.3s ease, opacity 0.3s ease;
  position: relative;
}

.hamburger-btn:hover {
  background: transparent !important;
  border: none !important;
}

.hamburger-btn:hover .hamburger-line {
  background-color: var(--color-bggold-light);
}

.hamburger-line {
  width: 24px;
  height: 2px;
  background-color: var(--color-bggold);
  border-radius: 2px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s ease, background-color 0.3s ease, width 0.3s ease;
  transform-origin: center;
  display: block;
}

.hamburger-line:nth-child(1) { 
  margin-bottom: 5px; 
}
.hamburger-line:nth-child(2) { 
  margin-bottom: 5px;
  width: 24px;
}
.hamburger-line:nth-child(3) { 
  width: 24px;
}

.hamburger-btn.is-active .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  background-color: var(--color-bggold);
}
.hamburger-btn.is-active .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger-btn.is-active .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  background-color: var(--color-bggold);
}

/* Mobile Drawer Overlay Container */
#mobile-menu-overlay {
  position: fixed;
  inset: 0;
  height: 100dvh;
  width: 100vw;
  background-color: #0c0908 !important;
  background: radial-gradient(circle at top center, #191310 0%, #0c0908 80%) !important;
  backdrop-filter: blur(28px) saturate(190%) !important;
  -webkit-backdrop-filter: blur(28px) saturate(190%) !important;
  z-index: 9999;
  transform: translateX(100%);
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: transform 0.42s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease, visibility 0.42s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px 20px 24px 20px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

#mobile-menu-overlay.is-open {
  transform: translateX(0);
  visibility: visible !important;
  opacity: 1 !important;
  pointer-events: auto !important;
}

/* Ensure mobile drawer is strictly hidden on desktop screens */
@media (min-width: 1024px) {
  #mobile-menu-overlay {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
  }
}

/* Mobile Dedicated Close Button - Clean & Borderless */
.mobile-close-btn {
  width: 38px;
  height: 38px;
  border-radius: 0;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  color: #faf7f2;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 20px;
  transition: color 0.3s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 0;
}

.mobile-close-btn:hover {
  background: transparent !important;
  border: none !important;
  color: var(--color-bggold);
  transform: rotate(90deg) scale(1.15);
}

#mobile-menu-overlay nav a {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  color: #faf7f2 !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  padding: 14px 4px !important;
  border-bottom: 1px solid rgba(197, 154, 95, 0.15) !important;
  transition: all 0.22s ease !important;
}

#mobile-menu-overlay nav a:hover,
#mobile-menu-overlay nav a.active-nav,
#mobile-menu-overlay nav a.text-bggold {
  color: var(--color-bggold) !important;
  padding-left: 6px !important;
  border-bottom-color: rgba(197, 154, 95, 0.45) !important;
}

#mobile-menu-overlay nav a i {
  color: var(--color-bggold);
  font-size: 11px;
  opacity: 0.6;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

#mobile-menu-overlay nav a:hover i,
#mobile-menu-overlay nav a.active-nav i,
#mobile-menu-overlay nav a.text-bggold i {
  opacity: 1;
  transform: translateX(2px);
}

body.menu-open {
  overflow: hidden !important;
  touch-action: none;
}

/* --------------------------------------------------------------------------
   8. LUXURY CARDS & STRENGTH SYSTEM (WHY CHOOSE BAANGANGA)
   -------------------------------------------------------------------------- */
.strength-section {
  position: relative;
  background:
    radial-gradient(
      circle at 15% 20%,
      rgba(255,255,255,.95),
      transparent 30%
    ),
    radial-gradient(
      circle at 85% 75%,
      rgba(255,255,255,.75),
      transparent 32%
    ),
    linear-gradient(
      135deg,
      #eee7de 0%,
      #faf8f4 48%,
      #eee7de 100%
    );
}

.curve {
  position: absolute;
  width: 720px;
  height: 720px;
  border-radius: 50%;
  border: 1px solid rgba(197, 154, 95, 0.3);
  pointer-events: none;
}

.curve::after {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.curve-left {
  top: -450px;
  left: -350px;
  transform: rotate(-20deg);
}

.curve-right {
  right: -400px;
  bottom: -480px;
  transform: rotate(22deg);
}

.dots {
  position: absolute;
  width: 150px;
  height: 90px;
  opacity: 0.35;
  background-image: radial-gradient(circle, var(--color-bggold) 1.7px, transparent 2px);
  background-size: 25px 25px;
  pointer-events: none;
}

.dots-top {
  top: 45px;
  right: 60px;
}

.dots-bottom {
  bottom: 45px;
  left: 55px;
}

/* Google Material Symbols Outlined Global Icon Definition */
.material-symbols-outlined {
  font-family: 'Material Symbols Outlined', 'Material Icons', sans-serif !important;
  font-weight: normal;
  font-style: normal;
  font-size: 42px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: 'liga';
  font-feature-settings: 'liga';
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

.luxury-card {
  position: relative;
  background: #ffffff;
  border: 1px solid rgba(197, 154, 95, 0.2);
  border-radius: 4px;
  transition: transform 0.4s var(--ease-luxury), box-shadow 0.4s var(--ease-luxury), border-color 0.4s var(--ease-luxury);
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
}

.luxury-card:hover {
  transform: translateY(-6px);
  border-color: rgba(197, 154, 95, 0.5);
  box-shadow: 0 16px 36px -8px rgba(32, 24, 21, 0.12), 0 0 0 1px rgba(197, 154, 95, 0.2);
}

.luxury-card-dark {
  background: var(--color-bgdark-surface);
  border: 1px solid rgba(197, 154, 95, 0.22);
  color: #faf7f2;
}

.luxury-card-dark:hover {
  border-color: var(--color-bggold);
  box-shadow: 0 18px 40px -10px rgba(0, 0, 0, 0.5), 0 0 18px var(--color-bggold-glow);
}

/* Image Zoom and Depth */
.img-hover-zoom {
  overflow: hidden;
  position: relative;
}

.img-hover-zoom img,
.img-hover-zoom video {
  transition: transform 0.8s var(--ease-luxury);
  will-change: transform;
}

.group:hover .img-hover-zoom img,
.luxury-card:hover .img-hover-zoom img {
  transform: scale(1.05);
}

/* --------------------------------------------------------------------------
   9. BRAND TRUST & CLIENT LOGOS - INFINITE LUXURY LOOPING SLIDER
   -------------------------------------------------------------------------- */
.logo-slider-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 32px 0;
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.logo-slider-track {
  display: flex;
  align-items: center;
  width: max-content;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  animation: logoScrollLoop 36s linear infinite;
}

.logo-slider-container:hover .logo-slider-track {
  animation-play-state: paused;
}

@keyframes logoScrollLoop {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

.logo-slide-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  margin: 0 16px;
  min-width: 180px;
  max-width: 260px;
  height: 100px;
  background: transparent !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

@media (min-width: 640px) {
  .logo-slide-item {
    padding: 0 32px;
    margin: 0 20px;
    min-width: 210px;
    max-width: 300px;
    height: 110px;
  }
}

@media (min-width: 1024px) {
  .logo-slide-item {
    padding: 0 40px;
    margin: 0 24px;
    min-width: 240px;
    max-width: 340px;
    height: 120px;
  }
}

.logo-slide-item:hover {
  background: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
  transform: translateY(-2px);
}

.logo-slide-item img {
  max-height: 70px;
  max-width: 210px;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 0 !important;
  filter: grayscale(100%) opacity(0.65);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  image-rendering: -webkit-optimize-contrast;
}

@media (min-width: 640px) {
  .logo-slide-item img {
    max-height: 82px;
    max-width: 250px;
  }
}

@media (min-width: 1024px) {
  .logo-slide-item img {
    max-height: 94px;
    max-width: 290px;
  }
}

.logo-slide-item:hover img {
  filter: grayscale(0%) opacity(1) !important;
  transform: scale(1.08);
}

/* 3-Column Luxury Partner Grid Logos - Previous Based Filter */
.partner-logo-img {
  filter: grayscale(100%) opacity(0.65);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.group:hover .partner-logo-img,
.partner-logo-img:hover {
  filter: grayscale(0%) opacity(1) !important;
  transform: scale(1.05);
}

/* --------------------------------------------------------------------------
   10. LUXURY ICONS & BADGES SYSTEM (BORDERLESS & CLEAN SIZING)
   -------------------------------------------------------------------------- */
.gold-icon-badge {
  width: auto !important;
  height: auto !important;
  border-radius: 0 !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  color: var(--color-bggold);
  font-size: 26px !important;
  transition: transform 0.35s var(--ease-spring), color 0.3s ease;
  flex-shrink: 0;
  margin-bottom: 12px;
}

.luxury-card:hover .gold-icon-badge {
  background: transparent !important;
  color: var(--color-bggold-light);
  transform: translateY(-2px) scale(1.08);
  box-shadow: none !important;
}

/* --------------------------------------------------------------------------
   11. MINIMALIST LUXURY FOOTER SYSTEM
   -------------------------------------------------------------------------- */
footer.luxury-footer {
  background-color: var(--color-bgdark) !important;
  color: #ffffff !important;
  border-top: 1px solid rgba(197, 154, 95, 0.25) !important;
  position: relative;
  overflow: hidden;
}

footer.luxury-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-bggold), transparent);
}

footer.luxury-footer h4 {
  color: var(--color-bggold) !important;
  font-family: var(--font-sans) !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.16em !important;
  margin-bottom: 16px !important;
  font-size: 13.5px !important;
}

footer.luxury-footer ul li a {
  color: var(--color-textlight-muted) !important;
  font-size: 14.5px !important;
  font-weight: 400 !important;
  transition: all 0.2s ease !important;
  display: inline-flex;
  align-items: center;
}

footer.luxury-footer ul li a:hover {
  color: var(--color-bggold-light) !important;
  transform: translateX(4px);
}

footer.luxury-footer p {
  font-size: 13.5px !important;
  line-height: 1.65 !important;
}

.social-icon-btn {
  width: 44px;
  height: 44px;
  border-radius: 0 !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #e5e7eb;
  font-size: 24px !important;
  transition: color 0.3s ease, transform 0.3s ease;
  padding: 0 !important;
}

.social-icon-btn:hover {
  background: transparent !important;
  color: var(--color-bggold);
  transform: translateY(-2px);
  box-shadow: none !important;
}

.back-to-top-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: transparent !important;
  border: 1px solid rgba(197, 154, 95, 0.3);
  color: #faf7f2;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.25s var(--ease-spring);
}

.back-to-top-btn:hover {
  background: var(--color-bggold);
  color: #120e0c;
  border-color: var(--color-bggold);
  transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   12. PRELOADER & LENIS INTEGRATION
   -------------------------------------------------------------------------- */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background-color: var(--color-bgdark);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.8s var(--ease-spring), visibility 0.8s ease;
}

#preloader.preloader-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-pulse {
  animation: logoPulse 2s var(--ease-smooth) infinite;
}

@keyframes logoPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.75; transform: scale(0.96); }
}

.loading-bar-container {
  width: 140px;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  margin-top: 1.5rem;
}

.loading-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, transparent, var(--color-bggold), var(--color-bggold-light), transparent);
  animation: loadingBarAnim 1.6s var(--ease-smooth) infinite;
}

@keyframes loadingBarAnim {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

html.lenis { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }
.lenis.lenis-scrolling iframe { pointer-events: none; }

/* --------------------------------------------------------------------------
   14. INVESTOR RELATIONS PORTAL & SEBI DISCLOSURE MATRIX STYLES
   -------------------------------------------------------------------------- */
.ir-portal-bg {
  background-color: #faf7f2;
}

.ir-sidebar-pill {
  width: 100%;
  background-color: #f7f3ec;
  color: #2c2521;
  border-radius: 14px;
  padding: 14px 18px;
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.35;
  text-align: left;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid #ede5d8;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.ir-sidebar-pill:hover {
  background-color: #ede5da;
  border-color: #dfd4c6;
  color: #1a1614;
  transform: translateX(3px);
}

.ir-sidebar-pill .pill-icon-box {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background-color: #ffffff;
  border: 1px solid #e6ded2;
  color: #ad7b52;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 15px;
  transition: all 0.25s ease;
}

.ir-sidebar-pill .pill-text {
  flex: 1;
  text-align: left;
}

.ir-sidebar-pill .pill-arrow {
  color: #9c9186;
  font-size: 12px;
  transition: transform 0.25s ease, color 0.25s ease;
}

.ir-sidebar-pill:hover .pill-arrow {
  color: #ad7b52;
  transform: translateX(2px);
}

.ir-sidebar-pill.active {
  background: linear-gradient(135deg, #ad7b52 0%, #9a6940 100%) !important;
  color: #ffffff !important;
  font-weight: 600 !important;
  border-color: #ad7b52 !important;
  box-shadow: 0 4px 16px rgba(173, 123, 82, 0.32);
  transform: translateX(4px);
}

.ir-sidebar-pill.active .pill-icon-box {
  background-color: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.3);
  color: #ffffff;
}

.ir-sidebar-pill.active .pill-arrow {
  color: #ffffff;
  transform: translateX(2px);
}

.ir-table-wrapper {
  background-color: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(45, 34, 25, 0.05);
  border: 1px solid #e5ded4;
  overflow: hidden;
}

.ir-table-header {
  background: #c59a5f !important;
  color: #ffffff;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid rgba(142, 97, 41, 0.3);
}

.ir-table-header h3 {
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #ffffff;
  margin: 0;
  line-height: 1.4;
}

.ir-table-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  border-bottom: 1px solid #f1ece4;
  transition: background-color 0.2s ease, transform 0.2s ease;
  gap: 16px;
}

.ir-table-row:hover {
  background-color: #faf7f2;
}

.ir-table-row:last-child {
  border-bottom: none;
}

.ir-row-title-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  min-width: 0;
}

.ir-row-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background-color: #faf6f0;
  border: 1px solid #ebd9c4;
  color: #ad7b52;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 14px;
}

.ir-row-title {
  font-size: 13.5px;
  color: #2c2521;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0.005em;
}

.ir-download-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background-color: #ffffff;
  border: 1px solid #dfd6c8;
  border-radius: 8px;
  padding: 7px 14px;
  color: #2c2521;
  font-size: 12.5px;
  font-weight: 600;
  white-space: nowrap;
  transition: all 0.22s ease;
  flex-shrink: 0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
}

.ir-download-btn i {
  color: #ad7b52;
  font-size: 14px;
  transition: transform 0.2s ease;
}

.ir-download-btn:hover {
  background-color: #faf6f1;
  border-color: #ad7b52;
  color: #ad7b52;
  box-shadow: 0 2px 8px rgba(173, 123, 82, 0.15);
}

.ir-download-btn:hover i {
  transform: scale(1.1);
}

.collection-tab-btn {
  position: relative;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}

.collection-tab-btn.active {
  background-color: var(--color-bggold) !important;
  color: #ffffff !important;
  border-color: var(--color-bggold) !important;
  box-shadow: 0 4px 14px rgba(197, 154, 95, 0.3);
}

.subcat-pill {
  transition: all 0.25s ease;
  white-space: nowrap;
}

.subcat-pill.active {
  background-color: #120e0c !important;
  color: #e5c494 !important;
  border-color: var(--color-bggold) !important;
}

.product-gallery-card {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.3s ease;
  background: #ffffff;
}

.product-gallery-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px -8px rgba(32, 24, 21, 0.12), 0 0 0 1px rgba(197, 154, 95, 0.3);
  border-color: rgba(197, 154, 95, 0.6);
}

.product-gallery-card:hover .product-card-overlay {
  opacity: 1;
  pointer-events: auto;
}

.product-card-overlay {
  transition: opacity 0.35s ease;
  opacity: 0;
  pointer-events: none;
}

.modal-backdrop {
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: scale(0.96) translateY(12px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.animate-modal-in {
  animation: modalFadeIn 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Custom Horizontal Scrollbar suppression for smooth luxury pill navigation */
.no-scrollbar::-webkit-scrollbar {
  display: none;
}
.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}



/* --------------------------------------------------------------------------
   STRENGTH CARDS & SECTION LUXURY UI (Why Baanganga / Why Join Us)
   Matches exact haute-joaillerie squircle pod & watermark card mockup
   -------------------------------------------------------------------------- */
.strength-section {
  position: relative;
  background-color: #fcf8f2;
  background-image: 
    radial-gradient(ellipse at 10% 20%, rgba(248, 238, 222, 0.75) 0%, transparent 60%),
    radial-gradient(ellipse at 90% 80%, rgba(245, 233, 215, 0.65) 0%, transparent 60%);
  overflow: hidden;
}

/* Subtle luxury accent geometric hairlines on section backdrop (as in mockup) */
.strength-section::before {
  content: '';
  position: absolute;
  top: 18%;
  left: -4%;
  width: 48%;
  height: 65%;
  border-left: 1px solid rgba(197, 154, 95, 0.16);
  border-top: 1px solid rgba(197, 154, 95, 0.14);
  transform: rotate(-10deg);
  pointer-events: none;
  z-index: 1;
}

.strength-section::after {
  content: '';
  position: absolute;
  bottom: 12%;
  right: -4%;
  width: 44%;
  height: 58%;
  border-right: 1px solid rgba(197, 154, 95, 0.16);
  border-bottom: 1px solid rgba(197, 154, 95, 0.14);
  transform: rotate(7deg);
  pointer-events: none;
  z-index: 1;
}

/* --------------------------------------------------------------------------
   STRENGTH CARD - Exact haute-joaillerie card matching mockup
   -------------------------------------------------------------------------- */
.strength-card {
  position: relative;
  background: #FAF5EE;
  border-radius: 26px;
  border: 1px solid rgba(197, 154, 95, 0.22);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2.25rem 2rem 1.75rem 2rem;
  box-shadow: 0 4px 20px -4px rgba(32, 24, 18, 0.05),
              0 1px 3px rgba(0, 0, 0, 0.02);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.4s ease;
  min-height: 330px;
}

@media (max-width: 640px) {
  .strength-card {
    padding: 1.75rem 1.5rem 1.5rem 1.5rem;
    min-height: 290px;
    border-radius: 20px;
  }
}

.strength-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -10px rgba(32, 24, 18, 0.12),
              0 4px 16px rgba(197, 154, 95, 0.2);
  border-color: rgba(197, 154, 95, 0.65);
}

.strength-card-icon-badge {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #ffffff 0%, #fbf6ec 60%, #f3e9d7 100%);
  border: 1px solid rgba(197, 154, 95, 0.35);
  box-shadow: 0 4px 14px rgba(197, 154, 95, 0.16),
              inset 0 1px 2px rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a87832;
  margin-bottom: 1.5rem;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
}

.strength-card-icon-badge .material-symbols-outlined {
  font-size: 26px;
  line-height: 1;
  display: block;
}

.strength-card:hover .strength-card-icon-badge {
  transform: scale(1.1);
  border-color: #c59a5f;
  box-shadow: 0 6px 20px rgba(197, 154, 95, 0.3),
              inset 0 1px 2px rgba(255, 255, 255, 1);
  color: #8c5e1c;
}

.strength-card-art {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 48%;
  pointer-events: none;
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  overflow: hidden;
  border-top-right-radius: 26px;
  border-bottom-right-radius: 26px;
  z-index: 1;
  padding: 0;
  margin: 0;
  mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.9) 14%, black 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.9) 14%, black 100%);
}

/* Card 1, 2: Edge-to-edge full height top & bottom, 0 padding */
.strength-card-art-full {
  width: 48%;
}

.strength-card-art-full img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: right center;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.strength-card:hover .strength-card-art-full img {
  transform: scale(1.05);
}

/* Card 3: Diamond with tweezers */
.strength-card-art-contain img {
  height: 94%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: right center;
  filter: drop-shadow(0 8px 18px rgba(197, 154, 95, 0.15));
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.strength-card:hover .strength-card-art-contain img {
  transform: scale(1.06);
}

/* Card 4: Design Excellence - Diamond (Bottom-aligned, perfectly sized on the right side) */
.strength-card-art-card4 {
  width: 52%;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 0 !important;
  margin: 0 !important;
  bottom: 0 !important;
  right: 0 !important;
  mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.85) 12%, black 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.85) 12%, black 100%);
}

.strength-card-art-card4 img {
  height: 82%;
  max-height: 275px;
  width: auto;
  max-width: 105%;
  object-fit: contain;
  object-position: right bottom;
  filter: drop-shadow(0 8px 24px rgba(197, 154, 95, 0.18));
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.strength-card:hover .strength-card-art-card4 img {
  transform: scale(1.05) translateY(-2px);
}

/* Card 5: Placed more on the bottom side */
.strength-card-art-bottom {
  align-items: flex-end;
  padding-bottom: 0;
}

.strength-card-art-bottom img {
  height: 98%;
  max-height: 350px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: right bottom;
  transform: translateY(48px);
  filter: drop-shadow(0 6px 16px rgba(197, 154, 95, 0.14));
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.strength-card:hover .strength-card-art-bottom img {
  transform: translateY(40px) scale(1.04);
}

/* Card 6: BIS Hallmark emblem with stylish luxury rotation and healthy margins */
.strength-card-art-rotate {
  align-items: flex-end;
  justify-content: flex-end;
  padding-bottom: 1.25rem;
  padding-right: 1.25rem;
  mask-image: none !important;
  -webkit-mask-image: none !important;
}

.strength-card-art-rotate img {
  height: auto;
  width: 78%;
  max-width: 190px;
  max-height: 190px;
  object-fit: contain;
  object-position: right bottom;
  transform: rotate(-8deg);
  transform-origin: bottom right;
  margin-bottom: 0.5rem;
  margin-right: 0.25rem;
  filter: drop-shadow(0 12px 24px rgba(197, 154, 95, 0.26));
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.strength-card:hover .strength-card-art-rotate img {
  transform: rotate(-4deg) scale(1.06) translateY(-4px);
}

.strength-card-content {
  position: relative;
  z-index: 2;
  max-width: 64%;
}

@media (max-width: 640px) {
  .strength-card-content {
    max-width: 68%;
  }
}

.strength-card-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.28;
  color: #1a1411;
  margin-bottom: 0.75rem;
  transition: color 0.3s ease;
}

@media (max-width: 640px) {
  .strength-card-title {
    font-size: 1.125rem;
  }
}

.strength-card:hover .strength-card-title {
  color: #a87832;
}

.strength-card-desc {
  font-family: 'Outfit', sans-serif;
  font-size: 0.825rem;
  line-height: 1.6;
  color: #6b5c53;
  margin-bottom: 1.25rem;
}

.strength-card-meta {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 0.5rem;
}

.strength-card-num {
  font-family: 'Outfit', monospace;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #a87832;
}

.strength-card-line {
  width: 36px;
  height: 2px;
  background: rgba(197, 154, 95, 0.5);
  border-radius: 9999px;
  transition: width 0.35s ease, background-color 0.35s ease;
}

.strength-card:hover .strength-card-line {
  width: 52px;
  background: #c59a5f;
}

/* --------------------------------------------------------------------------
   CREATIVE LUXURY CAREER PORTAL DESIGN SYSTEM
   -------------------------------------------------------------------------- */
.bg-luxury-mesh {
  background-color: #faf7f2;
  background-image: 
    radial-gradient(circle at 85% 15%, rgba(229, 196, 148, 0.18) 0%, transparent 45%),
    radial-gradient(circle at 10% 45%, rgba(197, 154, 95, 0.12) 0%, transparent 40%),
    radial-gradient(circle at 75% 85%, rgba(197, 154, 95, 0.10) 0%, transparent 45%);
}

.text-gold-gradient {
  background: linear-gradient(135deg, #b38045 0%, #d4af37 35%, #c59a5f 70%, #966f36 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.career-card {
  background: #ffffff;
  border: 1px solid #e8e2d8;
  border-radius: 22px;
  box-shadow: 0 2px 6px rgba(18, 14, 12, 0.02), 
              0 12px 28px -4px rgba(18, 14, 12, 0.03), 
              inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.career-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(197, 154, 95, 0.6), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.career-card:hover {
  transform: translateY(-6px);
  border-color: #c59a5f;
  box-shadow: 0 20px 40px -10px rgba(197, 154, 95, 0.20), 
              0 0 0 1px rgba(197, 154, 95, 0.35);
}

.career-card:hover::before {
  opacity: 1;
}

.career-icon-pod {
  width: 46px;
  height: 50px;
  border-radius: 16px;
  background: #fffdfa;
  border: 1.5px solid #d4af37;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b88a44;
  position: relative;
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.95), 0 4px 10px -2px rgba(197, 154, 95, 0.12);
  transition: border-color 0.35s ease;
}

.career-icon-pod::after {
  content: '';
  position: absolute;
  bottom: -1.5px;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  box-shadow: 0 0 4px 1px rgba(255, 235, 175, 0.9);
  opacity: 0.95;
  pointer-events: none;
}

.career-card:hover .career-icon-pod {
  background: linear-gradient(135deg, #c59a5f, #b38045);
  color: #ffffff;
  border-color: #c59a5f;
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(197, 154, 95, 0.28);
}

.mockup-arrow-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #e2dad0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a0958b;
  background: #ffffff;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 5px rgba(0,0,0,0.02);
}

.career-card:hover .mockup-arrow-btn,
.mockup-arrow-btn:hover {
  border-color: #c59a5f;
  color: #ffffff;
  background: linear-gradient(135deg, #c59a5f, #a87832);
  transform: translateX(3px) scale(1.05);
  box-shadow: 0 4px 12px rgba(197, 154, 95, 0.3);
}

.subnav-link {
  position: relative;
  transition: color 0.3s ease;
  padding: 6px 14px;
  border-radius: 20px;
}

.subnav-link:hover {
  color: #c59a5f;
}

.subnav-link.active-subnav {
  color: #120e0c !important;
  font-weight: 700;
  background: rgba(197, 154, 95, 0.12);
}

.subnav-link.active-subnav::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #c59a5f;
  box-shadow: 0 0 8px rgba(197, 154, 95, 0.8);
}

.job-filter-pill {
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   CAREER GROWTH ASCENDING WAVE & 3D CRYSTAL ORBS (MOCKUP MATCH)
   ========================================================================== */
.growth-canvas-container {
  position: relative;
  width: 100%;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.crystal-growth-circle {
  position: absolute;
  width: 148px;
  height: 148px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 28%, #ffffff 0%, #fffbf2 50%, #f7eedb 100%);
  border: 1.5px solid rgba(212, 175, 55, 0.6);
  box-shadow: 0 12px 28px -4px rgba(197, 154, 95, 0.22),
              0 2px 6px rgba(0, 0, 0, 0.02),
              inset 0 2px 5px rgba(255, 255, 255, 0.9);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 14px;
  box-sizing: border-box;
  cursor: pointer;
  transform: translate(-50%, -50%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 20;
}

.crystal-growth-circle:hover {
  transform: translate(-50%, -54%) scale(1.04);
  border-color: #d4af37;
  box-shadow: 0 20px 40px -6px rgba(197, 154, 95, 0.35),
              0 0 0 1px rgba(212, 175, 55, 0.6);
}

.crystal-growth-circle:hover .orb-icon {
  transform: scale(1.12);
  color: #996b27;
}

.crystal-growth-circle-mob {
  width: 148px;
  height: 148px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 28%, #ffffff 0%, #fffbf2 50%, #f7eedb 100%);
  border: 1.5px solid rgba(212, 175, 55, 0.6);
  box-shadow: 0 12px 28px -4px rgba(197, 154, 95, 0.22),
              inset 0 2px 5px rgba(255, 255, 255, 0.9);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 14px;
  box-sizing: border-box;
  margin: 0 auto;
  cursor: pointer;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.crystal-growth-circle-mob:hover {
  transform: scale(1.04);
  border-color: #d4af37;
}

.crystal-growth-circle-mob:hover .orb-icon {
  transform: scale(1.1);
  color: #996b27;
}

.orb-icon {
  color: #b8863b;
  transition: transform 0.35s ease, color 0.35s ease;
}

.step-label {
  position: absolute;
  transform: translate(-50%, 0);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: #8c6d48;
  text-transform: uppercase;
  z-index: 20;
  white-space: nowrap;
}

/* Smooth flowing dash animation for dotted connecting lines */
@keyframes flowDottedLine {
  from {
    stroke-dashoffset: 24;
  }
  to {
    stroke-dashoffset: 0;
  }
}

.animated-dotted-ray {
  stroke: #d4af37;
  stroke-width: 1.5;
  stroke-dasharray: 4 4;
  stroke-linecap: round;
  animation: flowDottedLine 1.6s linear infinite;
}

.static-dotted-drop {
  stroke: #c59a5f;
  stroke-width: 1.2;
  stroke-dasharray: 3 3;
  opacity: 0.75;
}

.job-filter-pill.active-pill {
  background: linear-gradient(135deg, #c59a5f, #a87832) !important;
  color: #ffffff !important;
  box-shadow: 0 6px 16px rgba(197, 154, 95, 0.28);
  border-color: transparent !important;
}

.job-filter-pill:not(.active-pill):hover {
  border-color: #c59a5f;
  color: #c59a5f;
  background: #ffffff;
}

.stat-tile {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.35s ease;
}

.stat-tile:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(197, 154, 95, 0.4);
  transform: translateY(-2px);
}

/* Custom Utility: Hide Scrollbar for Horizontal Capsules */
.no-scrollbar::-webkit-scrollbar {
  display: none;
}
.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Modal Scale-In Animation with Luxury Spring Curve */
@keyframes modalScaleIn {
  from {
    opacity: 0;
    transform: scale(0.95) translateY(12px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.animate-scale-in {
  animation: modalScaleIn 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Subtle Clean Luxury Card Shadow */
.shadow-card-clean {
  box-shadow: 0 4px 20px -2px rgba(18, 14, 12, 0.05),
              0 0 0 1px rgba(232, 226, 216, 0.75);
}

/* Luxury Toast Notification */
.luxury-toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 100000;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 24px;
  background: #120e0c;
  color: #ffffff;
  border: 1px solid rgba(197, 154, 95, 0.45);
  border-radius: 16px;
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5),
              0 0 25px rgba(197, 154, 95, 0.25);
  transform: translateY(120px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.luxury-toast.active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

/* ==========================================================================
   3D CRYSTAL CABOCHON CONSTELLATION (Section 2 - Why Join Us)
   Exact match with master design media_1788780291764.jpg
   ========================================================================== */

/* Stage container with locked 1:1 aspect ratio for 100% true circular geometry & coordinate lock */
.constellation-stage {
  position: relative;
  width: 100%;
  max-width: 620px;
  aspect-ratio: 1 / 1;
  margin: 0 auto;
}

/* 3D Crystal Cabochon Satellite Orb - 100% True Circle with Generous Breathing Space */
.crystal-orb {
  position: absolute;
  width: 20%;
  height: 20%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: radial-gradient(circle at 45% 32%, rgba(255, 255, 255, 0.98) 0%, rgba(254, 251, 246, 0.90) 55%, rgba(240, 230, 212, 0.78) 100%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 2px solid #dfbe7d;
  box-shadow: 
    inset 0 2px 6px rgba(255, 255, 255, 1),
    inset 0 -3px 10px rgba(180, 135, 60, 0.16),
    0 0 22px rgba(224, 194, 131, 0.35),
    0 12px 28px -8px rgba(160, 120, 50, 0.22),
    0 4px 10px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6px;
  box-sizing: border-box;
  transform: translate(-50%, -50%);
  z-index: 20;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

/* Upper Curved Specular Highlight Crescent (Convex 3D Glass Lens) */
.crystal-orb::before {
  content: '';
  position: absolute;
  top: 3px;
  left: 14%;
  right: 14%;
  height: 44%;
  border-radius: 50% 50% 45% 45% / 65% 65% 30% 30%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.3) 65%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
  z-index: 6;
}

/* Bottom Specular Glint Jewel Flare */
.crystal-orb::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 0 8px 3px rgba(255, 230, 160, 1);
  pointer-events: none;
  z-index: 6;
}

.crystal-orb:hover {
  transform: translate(-50%, calc(-50% - 6px)) scale(1.06);
  border-color: #ffd885;
  box-shadow: 
    inset 0 3px 8px rgba(255, 255, 255, 1),
    0 0 28px rgba(224, 194, 131, 0.5),
    0 18px 36px -8px rgba(160, 120, 50, 0.28),
    0 6px 14px rgba(0, 0, 0, 0.05);
}

/* Center Crystal Core Medallion - 100% True Circle */
.crystal-orb-center {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 22.5%;
  height: 22.5%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 48%, rgba(255, 255, 255, 1) 0%, rgba(255, 248, 232, 0.96) 45%, rgba(245, 220, 175, 0.58) 100%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 3px solid #dfbe7d;
  box-shadow: 
    inset 0 0 0 4px rgba(255, 255, 255, 0.95),
    inset 0 0 0 6px rgba(212, 175, 55, 0.35),
    0 0 35px rgba(224, 194, 131, 0.45),
    0 18px 45px -10px rgba(150, 111, 54, 0.28);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6px;
  box-sizing: border-box;
  transform: translate(-50%, -50%);
  z-index: 25;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Center Dome Convex Highlight */
.crystal-orb-center::before {
  content: '';
  position: absolute;
  top: 4px;
  left: 15%;
  right: 15%;
  height: 42%;
  border-radius: 50% 50% 45% 45% / 65% 65% 30% 30%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.35) 60%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
  z-index: 6;
}

/* Center Dome Bottom Flare */
.crystal-orb-center::after {
  content: '';
  position: absolute;
  bottom: 7px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 0 12px 4px rgba(255, 230, 160, 1);
  pointer-events: none;
  z-index: 6;
}

.crystal-orb-center:hover {
  box-shadow: 
    inset 0 0 0 4px rgba(255, 255, 255, 1),
    inset 0 0 0 6px rgba(212, 175, 55, 0.5),
    0 0 45px rgba(224, 194, 131, 0.6),
    0 22px 50px -8px rgba(150, 111, 54, 0.35);
}

/* Center Monogram Seal */
.crystal-monogram-ring {
  width: 54%;
  height: 54%;
  border-radius: 50%;
  border: 1.5px solid #c59a5f;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: inset 0 1px 3px rgba(255, 255, 255, 1), 0 2px 8px rgba(197, 154, 95, 0.22);
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: clamp(14px, 1.6vw, 20px);
  color: #9e732b;
  letter-spacing: 0.05em;
  position: relative;
  z-index: 7;
}

/* Satellite Inside Content - Perfectly Scaled & Filled Golden Icons */
.crystal-icon {
  font-size: clamp(28px, 2.9vw, 36px) !important;
  font-variation-settings: 'FILL' 1, 'wght' 600, 'GRAD' 0, 'opsz' 36;
  color: #a87832;
  filter: drop-shadow(0 2px 4px rgba(168, 120, 50, 0.35));
  line-height: 1;
  margin-bottom: 4px;
  position: relative;
  z-index: 7;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.crystal-orb:hover .crystal-icon {
  transform: scale(1.12);
  color: #946420;
}

.crystal-title {
  font-family: 'Playfair Display', 'Cinzel', serif;
  font-size: clamp(9.5px, 0.92vw, 11px);
  font-weight: 700;
  line-height: 1.22;
  color: #1a1411;
  text-align: center;
  max-width: 92%;
  position: relative;
  z-index: 7;
}

/* Mobile & Tablet Crystal Cabochon Orbs */
.crystal-orb-mobile {
  width: 230px;
  height: 230px;
  max-width: 82vw;
  max-height: 82vw;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: radial-gradient(circle at 45% 32%, rgba(255, 255, 255, 0.98) 0%, rgba(254, 251, 246, 0.90) 55%, rgba(240, 230, 212, 0.78) 100%);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 2px solid #e0c283;
  box-shadow: 
    inset 0 2px 6px rgba(255, 255, 255, 1),
    inset 0 -3px 8px rgba(180, 135, 60, 0.15),
    0 0 24px rgba(224, 194, 131, 0.35),
    0 14px 30px -6px rgba(160, 120, 50, 0.22);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 16px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
  transition: all 0.3s ease;
}

.crystal-orb-mobile .crystal-icon {
  font-size: 36px !important;
  margin-bottom: 6px;
}

.crystal-orb-mobile::before {
  content: '';
  position: absolute;
  top: 4px;
  left: 14%;
  right: 14%;
  height: 44%;
  border-radius: 50% 50% 45% 45% / 65% 65% 30% 30%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.25) 65%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
  z-index: 6;
}

.crystal-orb-mobile::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 0 8px 3px rgba(255, 230, 160, 1);
  pointer-events: none;
  z-index: 6;
}

.crystal-orb-center-mobile {
  width: 240px;
  height: 240px;
  max-width: 85vw;
  max-height: 85vw;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 48%, rgba(255, 255, 255, 1) 0%, rgba(255, 248, 232, 0.96) 45%, rgba(245, 220, 175, 0.58) 100%);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 3px solid #dfbe7d;
  box-shadow: 
    inset 0 0 0 5px rgba(255, 255, 255, 0.95),
    inset 0 0 0 7px rgba(212, 175, 55, 0.35),
    0 0 38px rgba(224, 194, 131, 0.45),
    0 18px 40px -8px rgba(150, 111, 54, 0.28);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.crystal-orb-center-mobile::before {
  content: '';
  position: absolute;
  top: 5px;
  left: 15%;
  right: 15%;
  height: 42%;
  border-radius: 50% 50% 45% 45% / 65% 65% 30% 30%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.3) 60%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
  z-index: 6;
}

.crystal-orb-center-mobile::after {
  content: '';
  position: absolute;
  bottom: 9px;
  left: 50%;
  transform: translateX(-50%);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 0 10px 3.5px rgba(255, 230, 160, 1);
  pointer-events: none;
  z-index: 6;
}

/* Fast Streaming Crisp Animated Dotted Lines */
.dotted-connector {
  fill: none;
  stroke: #c59a5f;
  stroke-width: 1.6;
  stroke-dasharray: 4 6;
  animation: seamlessFlowFast 2.5s linear infinite;
}

.dotted-connector-rev {
  fill: none;
  stroke: #c59a5f;
  stroke-width: 1.6;
  stroke-dasharray: 4 6;
  animation: seamlessFlowFastRev 2.5s linear infinite;
}

@keyframes seamlessFlowFast {
  from { stroke-dashoffset: 0; }
  to { stroke-dashoffset: -50; }
}

@keyframes seamlessFlowFastRev {
  from { stroke-dashoffset: 0; }
  to { stroke-dashoffset: 50; }
}

/* 3D Gold Pearl Pulse / Glint Animation */
.gold-pearl {
  transform-box: fill-box;
  transform-origin: center;
  animation: pearlPulse 2.5s ease-in-out infinite;
}

@keyframes pearlPulse {
  0%, 100% {
    transform: scale(1);
    filter: drop-shadow(0 2px 3px rgba(120, 80, 20, 0.4));
  }
  50% {
    transform: scale(1.18);
    filter: drop-shadow(0 3px 6px rgba(212, 175, 55, 0.7));
  }
}


