@import url('country-themes.css');

/* ==========================================================================
   SGR Software Solution - Master Custom Theme & Component Styles
   Supports: Light Mode & Dark Mode with CSS Variables & Smooth Transitions
   ========================================================================== */

/* --- 1. CSS Custom Properties / Theme Tokens --- */
:root {
  /* Light Theme Color Palette */
  --bg-body: #f8fafc;
  --bg-surface: #f1f5f9;
  --bg-card: #ffffff;
  --bg-card-hover: #f8fafc;
  --text-primary: #0f172a;
  --text-secondary: #334155;
  --text-muted: #64748b;
  --border-color: #cbd5e1;

  /* Brand Accent Colors */
  --primary-blue: #2563eb;
  --primary-hover: #1d4ed8;
  --primary-light: #eff6ff;
  --accent-cyan: #06b6d4;
  --accent-indigo: #6366f1;
  --accent-emerald: #10b981;
  --accent-amber: #f59e0b;

  /* Header & Topbar (Sleek Softened Navy Palette) */
  --topbar-bg: linear-gradient(180deg, #1c94cd, #1879a8 57%);
  --topbar-text: #ffffff;
  --navbar-bg: rgba(255, 255, 255, 0.95);
  --navbar-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);

  /* Card Effects */
  --card-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.1), 0 4px 10px -2px rgba(15, 23, 42, 0.05);
  --card-shadow-hover: 0 20px 40px -10px rgba(37, 99, 235, 0.22);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --transition-speed: 0.3s ease;
}

/* Dark Theme Variables (Deep Tech Cyber Blue Palette) */
body.dark-mode,
body.sgr-dark-theme {
  --bg-body: #060a14;
  --bg-surface: #0a1128;
  --bg-card: #0f172a;
  --bg-card-hover: #1e293b;
  --text-primary: #f8fafc;
  --text-secondary: #cbd5e1;
  --text-muted: #94a3b8;
  --border-color: rgba(56, 189, 248, 0.18);

  --topbar-bg: #0e172a;
  --topbar-text: #cbd5e1;
  --navbar-bg: rgba(6, 10, 20, 0.92);
  --navbar-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);

  --card-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.6);
  --card-shadow-hover: 0 20px 40px -15px rgba(56, 189, 248, 0.3);
}

/* --- 2. Global Resets & Typography --- */
html {
  overflow-x: hidden !important;
  max-width: 100% !important;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--bg-body);
  color: var(--text-primary);
  transition: background-color var(--transition-speed), color var(--transition-speed);
  overflow-x: hidden !important;
  max-width: 100% !important;
  line-height: 1.6;
  position: relative;
}

body.dark-mode.bg-light,
body.sgr-dark-theme.bg-light {
  background-color: var(--bg-body) !important;
}

/* --- Universal Tech Grid Mesh Background (Soft Visible Tech Grid Overlay Across Entire Site) --- */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(37, 99, 235, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: 0;
  transition: background-image 0.3s ease;
}

body.dark-mode::before,
body.sgr-dark-theme::before {
  background-image:
    linear-gradient(rgba(56, 189, 248, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56, 189, 248, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
}

a {
  text-decoration: none;
  color: var(--primary-blue);
  transition: color var(--transition-speed);
}

a:hover {
  color: var(--primary-hover);
}

/* Global Primary Button Styling */
.btn-primary,
.btn-custom,
.sgr-btn,
.sgr-submit-btn,
a.btn-primary,
a.btn-custom {
  background: linear-gradient(180deg, #1c94cd, #1879a8 57%) !important;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.4) !important;
  box-shadow: 0 8px 22px rgba(28, 148, 205, 0.35) !important;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.btn-primary *,
.btn-custom *,
.sgr-btn * {
  color: #ffffff !important;
}

.btn-primary:hover,
.btn-custom:hover,
.sgr-btn:hover,
.sgr-submit-btn:hover,
a.btn-primary:hover,
a.btn-custom:hover {
  transform: translateY(-3px) scale(1.02) !important;
  background: linear-gradient(180deg, #1879a8, #1c94cd 57%) !important;
  box-shadow: 0 14px 30px rgba(28, 148, 205, 0.5), 0 0 20px rgba(245, 158, 11, 0.4) !important;
  color: #ffffff !important;
}

.sparkle-star {
  display: inline-block;
  animation: sparkleTwinkle 2s ease-in-out infinite alternate;
}

@keyframes sparkleTwinkle {
  0% {
    transform: scale(0.9) rotate(0deg);
    opacity: 0.8;
  }

  100% {
    transform: scale(1.25) rotate(20deg);
    opacity: 1;
    filter: drop-shadow(0 0 6px #f59e0b);
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--text-primary);
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* Section Title Styling */
.section-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-light);
  color: var(--primary-blue);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

/* Container Width Expansion to Remove Side Gaps */
@media (min-width: 1200px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1440px !important;
    padding-left: 24px !important;
    padding-right: 24px !important;
  }
}

body.dark-mode .section-subtitle {
  background: rgba(37, 99, 235, 0.2);
  color: #60a5fa;
}

/* --- Compact Section Padding & Universal Spacing Overrides --- */
section {
  padding-top: 55px !important;
  padding-bottom: 55px !important;
}

.section-title-wrap,
.sgr-hww-header,
.sgr-why-header,
.sgr-ind-header,
.sgr-port-header,
.sgr-testi-header {
  margin-bottom: 36px !important;
}

/* --- Universal Scroll Reveal Animation (Niche Se Uper Animating Effect) --- */
.sgr-reveal-up {
  opacity: 0 !important;
  transform: translateY(45px) scale(0.97) !important;
  filter: blur(6px) !important;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.8s ease !important;
  will-change: opacity, transform, filter;
}

.sgr-reveal-up.sgr-revealed {
  opacity: 1 !important;
  transform: translateY(0) scale(1) !important;
  filter: blur(0) !important;
}

/* Stagger Delays */
.sgr-delay-1 {
  transition-delay: 0.1s !important;
}

.sgr-delay-2 {
  transition-delay: 0.2s !important;
}

.sgr-delay-3 {
  transition-delay: 0.3s !important;
}

.sgr-delay-4 {
  transition-delay: 0.4s !important;
}

.sgr-delay-5 {
  transition-delay: 0.5s !important;
}

/* --- 3. Topbar Styling --- */
.topbar {
  background: var(--topbar-bg) !important;
  color: var(--topbar-text) !important;
  font-size: 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.topbar a {
  color: #cbd5e1;
}

.topbar a:hover {
  color: #ffffff;
}

.country-badge {
  background: rgba(255, 255, 255, 0.1);
  padding: 3px 10px;
  border-radius: 4px;
  font-weight: 500;
}

/* --- 4. Sticky Header & Navbar --- */
.sgr-navbar-header,
.navbar-custom {
  background-color: #ffffff !important;
  background: #ffffff !important;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  box-shadow: var(--navbar-shadow);
  transition: background-color var(--transition-speed), border-color var(--transition-speed);
}

/* Dark Mode Sticky Header & Navbar */
body.dark-mode .sgr-navbar-header,
body.dark-mode .navbar-custom,
body.sgr-dark-theme .sgr-navbar-header,
body.sgr-dark-theme .navbar-custom,
html[data-theme="dark"] .sgr-navbar-header,
html[data-theme="dark"] .navbar-custom {
  background-color: rgba(10, 17, 40, 0.96) !important;
  background: rgba(10, 17, 40, 0.96) !important;
  border-bottom: 1px solid rgba(56, 189, 248, 0.18) !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6) !important;
}

body.dark-mode .nav-link,
body.sgr-dark-theme .nav-link,
html[data-theme="dark"] .nav-link {
  color: #f1f5f9 !important;
}

body.dark-mode .nav-link:hover,
body.dark-mode .nav-link.active,
body.sgr-dark-theme .nav-link:hover,
body.sgr-dark-theme .nav-link.active,
html[data-theme="dark"] .nav-link:hover,
html[data-theme="dark"] .nav-link.active {
  color: #38bdf8 !important;
}

body.dark-mode .dropdown-menu,
body.sgr-dark-theme .dropdown-menu,
html[data-theme="dark"] .dropdown-menu {
  background-color: #0f172a !important;
  background: #0f172a !important;
  border: 1px solid rgba(56, 189, 248, 0.2) !important;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.6) !important;
}

body.dark-mode .dropdown-item,
body.sgr-dark-theme .dropdown-item,
html[data-theme="dark"] .dropdown-item {
  color: #cbd5e1 !important;
}

body.dark-mode .dropdown-item:hover,
body.dark-mode .dropdown-item.active,
body.sgr-dark-theme .dropdown-item:hover,
body.sgr-dark-theme .dropdown-item.active,
html[data-theme="dark"] .dropdown-item:hover,
html[data-theme="dark"] .dropdown-item.active {
  background-color: rgba(56, 189, 248, 0.12) !important;
  color: #38bdf8 !important;
}

.navbar-brand .brand-text {
  font-size: 1.35rem;
  font-weight: 800;
  background: linear-gradient(135deg, #2563eb, #06b6d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-link {
  color: var(--text-primary) !important;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  transition: color var(--transition-speed);
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-blue) !important;
}

/* Dark Mode Switcher Button */
.theme-switch-btn {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-speed);
}

.theme-switch-btn:hover {
  background: var(--primary-light);
  color: var(--primary-blue);
  transform: rotate(15deg);
}

/* Schedule A Meet CTA Button - Matches Theme Switcher Height (40px) */
.sgr-nav-cta {
  height: 40px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  line-height: 1 !important;
}

/* --- 5. Hero Carousel Section --- */
.hero-section {
  position: relative;
  background: radial-gradient(circle at 50% 0%, rgba(37, 99, 235, 0.08), transparent 70%);
  padding: 80px 0 100px;
}

.hero-slide-content {
  padding: 20px 0;
}

.hero-title {
  font-size: 3.2rem;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-title span {
  background: linear-gradient(135deg, #2563eb 0%, #06b6d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin-bottom: 30px;
}

/* Swiper Pagination & Controls */
.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: var(--primary-blue);
  opacity: 0.3;
}

.swiper-pagination-bullet-active {
  width: 32px;
  border-radius: 6px;
  opacity: 1;
}

/* --- 6. 6-Step Process Cards --- */
.process-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  position: relative;
  transition: all var(--transition-speed);
  box-shadow: var(--card-shadow);
  height: 100%;
}

.process-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--card-shadow-hover);
  border-color: var(--primary-blue);
}

.step-number {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--primary-blue);
  background: var(--primary-light);
  padding: 4px 12px;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 16px;
}

body.dark-mode .step-number {
  background: rgba(37, 99, 235, 0.2);
}

/* --- 7. Why Choose Us & Stats Counter --- */
.stat-box {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 30px 20px;
  text-align: center;
  transition: all var(--transition-speed);
}

.stat-box:hover {
  border-color: var(--primary-blue);
}

.stat-number {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--primary-blue);
  margin-bottom: 5px;
}

/* --- 8. Core Services Cards & Dark Mode Styling --- */
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: all var(--transition-speed);
  box-shadow: var(--card-shadow);
  height: 100%;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary-blue);
  box-shadow: var(--card-shadow-hover);
}

.service-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: var(--primary-light);
  color: var(--primary-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 20px;
}

body.dark-mode .service-card,
body.sgr-dark-theme .service-card {
  background: rgba(15, 23, 42, 0.85) !important;
  border-color: rgba(56, 189, 248, 0.2) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5) !important;
}

body.dark-mode .service-card:hover,
body.sgr-dark-theme .service-card:hover {
  background: rgba(15, 23, 42, 0.95) !important;
  border-color: rgba(56, 189, 248, 0.5) !important;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6), 0 0 25px rgba(6, 182, 212, 0.25) !important;
}

body.dark-mode .service-card h4,
body.sgr-dark-theme .service-card h4 {
  color: #ffffff !important;
}

body.dark-mode .service-card p,
body.sgr-dark-theme .service-card p {
  color: #cbd5e1 !important;
  /* High contrast bright silver for description text */
}

body.dark-mode .service-card a,
body.sgr-dark-theme .service-card a {
  color: #38bdf8 !important;
  /* Bright Cyber Cyan Link */
}

body.dark-mode .service-icon,
body.sgr-dark-theme .service-icon {
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.25) 0%, rgba(59, 130, 246, 0.25) 100%) !important;
  color: #38bdf8 !important;
  border: 1px solid rgba(56, 189, 248, 0.35);
  box-shadow: 0 0 15px rgba(56, 189, 248, 0.2);
}

/* Light/White Mode Only Box & Card Border Contrast Enhancements */
body:not(.dark-mode):not(.sgr-dark-theme) .service-card,
body:not(.dark-mode):not(.sgr-dark-theme) .process-card,
body:not(.dark-mode):not(.sgr-dark-theme) .stat-box,
body:not(.dark-mode):not(.sgr-dark-theme) .portfolio-card,
body:not(.dark-mode):not(.sgr-dark-theme) .testimonial-card,
body:not(.dark-mode):not(.sgr-dark-theme) .tech-pill {
  background-color: #ffffff !important;
  border: 1px solid #cbd5e1 !important;
  box-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.1), 0 4px 10px -2px rgba(15, 23, 42, 0.05) !important;
}

body:not(.dark-mode):not(.sgr-dark-theme) .service-card:hover,
body:not(.dark-mode):not(.sgr-dark-theme) .process-card:hover,
body:not(.dark-mode):not(.sgr-dark-theme) .stat-box:hover,
body:not(.dark-mode):not(.sgr-dark-theme) .portfolio-card:hover,
body:not(.dark-mode):not(.sgr-dark-theme) .testimonial-card:hover,
body:not(.dark-mode):not(.sgr-dark-theme) .tech-pill:hover {
  border-color: #2563eb !important;
  box-shadow: 0 20px 40px -10px rgba(37, 99, 235, 0.22) !important;
}

/* Global High Contrast Text Readability for Dark Mode */
body.dark-mode .text-muted,
body.sgr-dark-theme .text-muted {
  color: #94a3b8 !important;
  /* Bright readable slate gray */
}

body.dark-mode .text-dark,
body.sgr-dark-theme .text-dark {
  color: #f8fafc !important;
}

body.dark-mode h1,
body.dark-mode h2,
body.dark-mode h3,
body.dark-mode h4,
body.dark-mode h5,
body.dark-mode h6,
body.sgr-dark-theme h1,
body.sgr-dark-theme h2,
body.sgr-dark-theme h3,
body.sgr-dark-theme h4,
body.sgr-dark-theme h5,
body.sgr-dark-theme h6 {
  color: #ffffff !important;
}

/* Background Surface & Card Utility Overrides */
.bg-surface {
  background-color: var(--bg-surface) !important;
  position: relative;
  z-index: 1;
}

body.dark-mode .bg-surface,
body.sgr-dark-theme .bg-surface {
  background-color: #060a14 !important;
}

body.dark-mode .bg-card,
body.sgr-dark-theme .bg-card {
  background-color: rgba(15, 23, 42, 0.85) !important;
  border-color: rgba(56, 189, 248, 0.2) !important;
}

body.dark-mode .form-control,
body.sgr-dark-theme .form-control,
body.dark-mode .form-select,
body.sgr-dark-theme .form-select {
  background-color: #0a1128 !important;
  border-color: rgba(56, 189, 248, 0.2) !important;
  color: #f8fafc !important;
}

body.dark-mode .form-control:focus,
body.sgr-dark-theme .form-control:focus,
body.dark-mode .form-select:focus,
body.sgr-dark-theme .form-select:focus {
  border-color: #38bdf8 !important;
  box-shadow: 0 0 12px rgba(56, 189, 248, 0.3) !important;
}

/* --- 9. Tech Stack Pill Tabs --- */
.tech-pill {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  transition: all var(--transition-speed);
}

.tech-pill:hover {
  transform: scale(1.05);
  border-color: var(--primary-blue);
  color: var(--primary-blue);
}

/* --- 10. Portfolio / Case Studies --- */
.portfolio-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-speed);
  box-shadow: var(--card-shadow);
}

.portfolio-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--card-shadow-hover);
}

.portfolio-img {
  height: 220px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.portfolio-tag {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(15, 23, 42, 0.85);
  color: #ffffff;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  backdrop-filter: blur(4px);
}

/* --- 11. Testimonials Carousel --- */
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 32px;
  margin: 10px;
  box-shadow: var(--card-shadow);
}

.client-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563eb, #06b6d4);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
}

/* --- 12. Footer --- */
.footer {
  background: var(--topbar-bg);
  color: #94a3b8;
  padding-top: 80px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer h5 {
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 24px;
}

.footer a {
  color: #94a3b8;
  display: inline-block;
  margin-bottom: 10px;
  transition: color var(--transition-speed);
}

.footer a:hover {
  color: var(--primary-blue);
  transform: translateX(4px);
}

/* --- Responsive Adjustments --- */
@media (max-width: 991px) {
  .hero-title {
    font-size: 2.3rem;
  }

  .topbar {
    display: block !important;
    padding-top: 5px !important;
    padding-bottom: 5px !important;
  }

  .topbar .container-fluid {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }

  .global-offices-toggle-btn {
    padding: 4px 10px !important;
    font-size: 11.5px !important;
  }

  #sgrLangTranslatorBtn {
    padding: 4px 10px !important;
    font-size: 11.5px !important;
  }

  .sgr-inline-offices-wrap {
    overflow-x: auto !important;
    white-space: nowrap !important;
    max-width: calc(100vw - 30px) !important;
  }
}

/* --- Page Header Banner Styling for Dedicated Sub-pages --- */
.sgr-page-banner {
  position: relative !important;
  background: linear-gradient(135deg, rgba(8, 14, 28, 0.20) 0%, rgba(8, 14, 28, 0.10) 50%, rgba(15, 23, 42, 0.15) 100%),
    url('../images/company_banner_bg.jpg') center center/cover no-repeat,
    #0a192f !important;
  padding: 34px 0 28px !important;
  border-bottom: 1px solid rgba(56, 189, 248, 0.35) !important;
  overflow: hidden !important;
  box-shadow: inset 0 -15px 30px rgba(0, 0, 0, 0.35) !important;
}

.sgr-page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(56, 189, 248, 0.35) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
  z-index: 1;
  opacity: 0.35;
}

.sgr-page-banner-glow {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.2) 0%, rgba(255, 255, 255, 0) 70%);
  filter: blur(60px);
  pointer-events: none;
  z-index: 1;
}

.sgr-banner-badge {
  display: inline-flex;
  align-items: center;
  background: #eff6ff;
  border: 1px solid rgba(37, 99, 235, 0.25);
  color: #1d4ed8;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 16px;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.08);
}

body.dark-mode .sgr-page-banner,
body.sgr-dark-theme .sgr-page-banner,
html[data-theme="dark"] .sgr-page-banner,
body.dark-mode[data-country] .sgr-page-banner,
body.sgr-dark-theme[data-country] .sgr-page-banner {
  background: linear-gradient(135deg, rgba(6, 11, 25, 0.45) 0%, rgba(8, 14, 28, 0.30) 50%, rgba(15, 23, 42, 0.40) 100%),
    url('../images/company_banner_bg.jpg') center center/cover no-repeat,
    #060a14 !important;
}

body.dark-mode .sgr-page-banner h1,
body.sgr-dark-theme .sgr-page-banner h1,
html[data-theme="dark"] .sgr-page-banner h1 {
  color: #ffffff !important;
}

body.dark-mode .sgr-page-banner p,
body.sgr-dark-theme .sgr-page-banner p,
html[data-theme="dark"] .sgr-page-banner p {
  color: #ffffff !important;
  opacity: 0.95 !important;
}

body.dark-mode .sgr-banner-badge,
body.sgr-dark-theme .sgr-banner-badge,
html[data-theme="dark"] .sgr-banner-badge {
  background: rgba(6, 182, 212, 0.15);
  border-color: rgba(56, 189, 248, 0.3);
  color: #38bdf8;
}

body.dark-mode .breadcrumb,
body.sgr-dark-theme .breadcrumb {
  background: #0f172a !important;
  border-color: rgba(56, 189, 248, 0.2) !important;
}

body.dark-mode .breadcrumb-item.active,
body.sgr-dark-theme .breadcrumb-item.active {
  color: #f8fafc !important;
}

/* Premium Mega Dropdown Styling */
.sgr-mega-dropdown {
  width: 660px !important;
  max-width: 92vw !important;
  background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%) !important;
  border: 1.5px solid #dbe6f6 !important;
  border-radius: 20px !important;
  box-shadow: 0 25px 65px rgba(15, 23, 42, 0.16), 0 4px 12px rgba(30, 58, 138, 0.08) !important;
  margin-top: 10px !important;
  animation: sgrDropFadeIn 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

@keyframes sgrDropFadeIn {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.sgr-drop-grid {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 6px 12px !important;
  width: 100% !important;
}

@media (max-width: 768px) {
  .sgr-mega-dropdown {
    width: 100% !important;
  }

  .sgr-drop-grid {
    grid-template-columns: 1fr !important;
  }
}

/* Hide Scrollbars */
.sgr-drop-grid::-webkit-scrollbar {
  display: none !important;
  width: 0 !important;
}

.sgr-drop-grid::-webkit-scrollbar-track {
  background: #f1f5f9;
  border-radius: 10px;
}

.sgr-drop-grid::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #1c94cd, #1d4ed8);
  border-radius: 10px;
}

.sgr-drop-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 12px;
  border-radius: 14px;
  text-decoration: none !important;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  background: transparent;
  border: 1px solid transparent;
}

.sgr-drop-item:hover {
  background: #ffffff !important;
  border-color: rgba(28, 148, 205, 0.25) !important;
  box-shadow: 0 8px 20px rgba(28, 148, 205, 0.1) !important;
  transform: translateX(4px);
}

.sgr-drop-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  background: linear-gradient(135deg, #eff6ff 0%, #e0f2fe 100%);
  border: 1px solid rgba(28, 148, 205, 0.2);
  color: #1c94cd;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  transition: all 0.25s ease;
}

.sgr-drop-item:hover .sgr-drop-icon {
  background: linear-gradient(135deg, #1c94cd 0%, #1d4ed8 100%);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(28, 148, 205, 0.35);
  transform: scale(1.08);
}

.sgr-drop-text {
  overflow: hidden;
  flex: 1 1 0%;
  min-width: 0;
  width: 0;
}

.sgr-drop-title {
  font-size: 13px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.3;
  transition: color 0.2s ease;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sgr-drop-item:hover .sgr-drop-title {
  color: #1c94cd;
}

.sgr-drop-sub {
  font-size: 11px;
  color: #64748b;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  width: 100%;
}

/* Dark Mode Mega Dropdown */
body.dark-mode .sgr-mega-dropdown,
body.sgr-dark-theme .sgr-mega-dropdown {
  background: linear-gradient(145deg, #0f172a 0%, #090d16 100%) !important;
  border-color: rgba(255, 255, 255, 0.15) !important;
}

body.dark-mode .sgr-drop-title,
body.sgr-dark-theme .sgr-drop-title {
  color: #f8fafc !important;
}

body.dark-mode .sgr-drop-item,
body.sgr-dark-theme .sgr-drop-item,
html[data-theme="dark"] .sgr-drop-item {
  background: rgba(255, 255, 255, 0.06) !important;
  border-color: rgba(255, 255, 255, 0.12) !important;
}

body.dark-mode .sgr-drop-item:hover,
body.sgr-dark-theme .sgr-drop-item:hover,
html[data-theme="dark"] .sgr-drop-item:hover {
  background: rgba(13, 139, 185, 0.2) !important;
  border-color: rgba(56, 189, 248, 0.45) !important;
}

/* Global Offices Inline Country Badges Slide Out (Collapsed by default) */
.global-offices-slide-wrap,
.sgr-inline-offices-wrap {
  display: inline-flex !important;
  align-items: center !important;
  gap: 12px !important;
  max-width: 0px !important;
  opacity: 0 !important;
  visibility: hidden !important;
  overflow: hidden !important;
  white-space: nowrap !important;
  margin-left: 0px !important;
  transition: max-width 0.45s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease, margin 0.35s ease !important;
  vertical-align: middle !important;
}

.global-offices-slide-wrap.expanded,
.sgr-inline-offices-wrap.expanded,
.global-offices-slide-wrap.active,
.sgr-inline-offices-wrap.active {
  max-width: 1200px !important;
  opacity: 1 !important;
  visibility: visible !important;
  margin-left: 12px !important;
}

/* Premium Responsive Brand Mobile Navbar Toggler */
.navbar-toggler {
  background: linear-gradient(135deg, #0d8bb9 0%, #06283d 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.25) !important;
  color: #ffffff !important;
  border-radius: 10px !important;
  padding: 5px 10px !important;
  box-shadow: 0 4px 14px rgba(13, 139, 185, 0.35) !important;
  transition: all 0.25s ease !important;
}

.navbar-toggler:hover,
.navbar-toggler:focus {
  transform: scale(1.04) !important;
  box-shadow: 0 6px 18px rgba(13, 139, 185, 0.45) !important;
}

.navbar-toggler i {
  color: #ffffff !important;
  font-size: 1.6rem !important;
}

.navbar-toggler .navbar-toggler-icon {
  filter: brightness(0) invert(1) !important;
}

/* ========================================================== */
/* RESPONSIVE MEDIA QUERIES: DESKTOP, TABLET & MOBILE NAVBAR  */
/* ========================================================== */
/* Safe mobile drawer open state: preserve position:sticky & page scroll offsets */
body.sgr-drawer-open {
  /* DO NOT set overflow:hidden or touch-action:none on body to prevent breaking sticky header */
}

/* When mobile drawer is open, elevate header above backdrop & disable header backdrop-filter */
body.sgr-drawer-open .sgr-navbar-header {
  z-index: 1000000 !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

/* Full-Screen Smooth Dim Backdrop for Mobile Drawer (Zero Blur Lag) */
.sgr-drawer-backdrop {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  height: 100dvh !important;
  background: rgba(15, 23, 42, 0.6) !important;
  z-index: 999990 !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transition: opacity 0.28s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.28s ease !important;
  touch-action: none !important;
}

body.sgr-drawer-open .sgr-drawer-backdrop {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
}

/* Hide floating widgets (WhatsApp, Call, Brochure & Chatbot) when mobile drawer is open */
body.sgr-drawer-open .sgr-side-widget-wrap,
body.sgr-drawer-open #sgr-chatbot-widget,
body.sgr-drawer-open .sgr-side-brochure-tab,
body.sgr-drawer-open .sgr-side-phone-wrap,
body.sgr-drawer-open .sgr-side-wa-wrap,
body.sgr-drawer-open .sgr-chat-trigger-wrap {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transition: opacity 0.2s ease, visibility 0.2s ease !important;
}



@media (max-width: 991.98px) {
  .navbar-nav {
    width: 100% !important;
    gap: 2px !important;
    margin-bottom: 6px !important;
  }

  .navbar-nav .nav-link {
    padding: 7px 12px !important;
    color: #0f172a !important;
    border-radius: 8px !important;
    font-size: 13.5px !important;
    font-weight: 600 !important;
    line-height: 1.35 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    margin-bottom: 2px !important;
  }

  .navbar-nav .nav-link:hover,
  .navbar-nav .nav-link.active {
    background: #e0f2fe !important;
    color: #0284c7 !important;
  }

  .sgr-mobile-drawer-header {
    border-color: #e2e8f0 !important;
    margin-bottom: 8px !important;
    padding-bottom: 8px !important;
  }
}

/* 1-Column One-By-One Full Width Mobile Services Mega Menu */
@media (max-width: 991.98px) {

  .sgr-drop-grid,
  .navbar-collapse .sgr-drop-grid {
    display: flex !important;
    flex-direction: column !important;
    grid-template-columns: 1fr !important;
    width: 100% !important;
    gap: 8px !important;
    max-height: none !important;
    overflow: visible !important;
  }

  .sgr-drop-item,
  .navbar-collapse .sgr-drop-item {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    width: 100% !important;
    padding: 10px 14px !important;
    border-radius: 12px !important;
    background: #ffffff !important;
    border: 1.5px solid #cbd5e1 !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04) !important;
  }

  .sgr-drop-title,
  .navbar-collapse .sgr-drop-title {
    font-size: 13.5px !important;
    font-weight: 600 !important;
    color: #0f172a !important;
    white-space: normal !important;
    word-break: normal !important;
    line-height: 1.3 !important;
  }

  .sgr-drop-icon,
  .navbar-collapse .sgr-drop-icon {
    width: 26px !important;
    height: 26px !important;
    min-width: 26px !important;
    font-size: 12px !important;
    flex-shrink: 0 !important;
    border-radius: 7px !important;
    background: #e0f2fe !important;
    color: #0284c7 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
}

/* Floating Sidebars lower z-index on Mobile so drawer sits above */
#downloadBrochureBtn,
.sgr-floating-brochure,
#sgrAiFloatingWrap,
.floating-chat-wrap,
.floating-contact-btn {
  z-index: 1040 !important;
}

/* DARK MODE MOBILE DRAWER OVERRIDES (Mobile Only: <= 991.98px) */
@media (max-width: 991.98px) {
body.dark-mode .navbar-collapse,
body.sgr-dark-theme .navbar-collapse,
html[data-theme="dark"] .navbar-collapse {
  background: linear-gradient(180deg, #041a29 0%, #072e47 100%) !important;
  border-right: 1.5px solid rgba(255, 255, 255, 0.2) !important;
  box-shadow: 20px 0 60px rgba(0, 0, 0, 0.6) !important;
}

body.dark-mode .navbar-nav .nav-link,
body.sgr-dark-theme .navbar-nav .nav-link,
html[data-theme="dark"] .navbar-nav .nav-link {
  color: #ffffff !important;
}

body.dark-mode .navbar-nav .nav-link:hover,
body.dark-mode .navbar-nav .nav-link.active,
body.sgr-dark-theme .navbar-nav .nav-link:hover,
body.sgr-dark-theme .navbar-nav .nav-link.active,
html[data-theme="dark"] .navbar-nav .nav-link:hover,
html[data-theme="dark"] .navbar-nav .nav-link.active {
  background: rgba(255, 255, 255, 0.15) !important;
  color: #38bdf8 !important;
}

body.dark-mode .sgr-mobile-drawer-header,
body.sgr-dark-theme .sgr-mobile-drawer-header,
html[data-theme="dark"] .sgr-mobile-drawer-header {
  border-color: rgba(255, 255, 255, 0.15) !important;
}

body.dark-mode .sgr-mobile-drawer-header .btn-close,
body.sgr-dark-theme .sgr-mobile-drawer-header .btn-close,
html[data-theme="dark"] .sgr-mobile-drawer-header .btn-close {
  filter: invert(1) grayscale(100%) brightness(200%) !important;
}

body.dark-mode .sgr-mega-dropdown,
body.sgr-dark-theme .sgr-mega-dropdown,
html[data-theme="dark"] .sgr-mega-dropdown {
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
}

body.dark-mode .dropdown-menu,
body.sgr-dark-theme .dropdown-menu,
html[data-theme="dark"] .dropdown-menu {
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
}
}

/* DESKTOP MEGA DROPDOWN (ONLY >= 992px) */
@media (min-width: 992px) {
  .sgr-mega-dropdown {
    width: 650px !important;
    min-width: 650px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
  }

  .sgr-drop-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px 14px !important;
  }
}

.sgr-topbar-product-badge:hover {
  background: linear-gradient(135deg, rgba(13, 139, 185, 0.85) 0%, rgba(6, 40, 61, 0.95) 100%) !important;
  border-color: rgba(255, 255, 255, 0.6) !important;
  box-shadow: 0 4px 14px rgba(13, 139, 185, 0.5) !important;
  transform: translateY(-1px);
}

/* Ultra-Smooth Service Popup Modal Animation & Backdrop Blur */
#sgrServiceDetailModal.fade .modal-dialog {
  transform: scale(0.9) translateY(24px) !important;
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease-out !important;
}

#sgrServiceDetailModal.show .modal-dialog {
  transform: scale(1) translateY(0) !important;
  opacity: 1 !important;
}

.modal-backdrop.show {
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  background-color: rgba(15, 23, 42, 0.65) !important;
  transition: opacity 0.35s ease !important;
}

body.dark-mode #sgrServiceDetailModal .modal-content,
body.sgr-dark-theme #sgrServiceDetailModal .modal-content {
  background: #0f172a !important;
  color: #f8fafc !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
}

body.dark-mode #sgrServiceDetailModal .modal-header,
body.sgr-dark-theme #sgrServiceDetailModal .modal-header {
  background: #1e293b !important;
}

body.dark-mode #sgrServiceDetailModal .text-dark,
body.sgr-dark-theme #sgrServiceDetailModal .text-dark {
  color: #f8fafc !important;
}

body.dark-mode #sgrServiceDetailModal .text-muted,
body.sgr-dark-theme #sgrServiceDetailModal .text-muted {
  color: #94a3b8 !important;
}

/* Ultra-Premium Country Switcher Card Hover & Styling */
.sgr-country-card-item {
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.sgr-country-card-item:hover {
  background: linear-gradient(135deg, #eff6ff 0%, #e0f2fe 100%) !important;
  border-color: rgba(28, 148, 205, 0.35) !important;
  box-shadow: 0 4px 12px rgba(28, 148, 205, 0.12) !important;
  transform: translateX(3px) !important;
}

/* ==========================================================================
   High-Contrast Crystal Clear Footer Typography & Link Styling
   ========================================================================== */
footer,
.footer {
  color: #334155;
  background: #ffffff;
}

.footer-contact-title {
  color: #0f172a !important;
  font-weight: 700 !important;
  font-size: 13px !important;
  letter-spacing: 0.3px !important;
}

.footer-contact-text {
  color: #475569 !important;
  font-weight: 500 !important;
  font-size: 13px !important;
  line-height: 1.5 !important;
}

.footer-contact-link {
  color: #334155 !important;
  font-weight: 600 !important;
  font-size: 13px !important;
  transition: color 0.2s ease !important;
}

.footer-contact-link:hover {
  color: #0284c7 !important;
  text-decoration: none !important;
}

#footerPhoneLink {
  color: #0f172a !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  letter-spacing: 0.2px !important;
}

#footerPhoneLink:hover {
  color: #0284c7 !important;
}

.footer-column-title {
  color: #0f172a !important;
  font-weight: 800 !important;
  font-size: 0.88rem !important;
  letter-spacing: 0.8px !important;
  text-transform: uppercase !important;
  margin-left: 0 !important;
  margin-bottom: 11px !important;
  position: relative !important;
  padding-bottom: 5px !important;
  display: block !important;
}

.footer-column-title::after {
  content: '' !important;
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 24px !important;
  height: 3px !important;
  background: #0066cc !important;
  border-radius: 2px !important;
}

.footer-links li {
  margin-bottom: 7px !important;
}

.footer-links a {
  color: #475569 !important;
  font-size: 0.88rem !important;
  font-weight: 500 !important;
  line-height: 1.35 !important;
  text-decoration: none !important;
  transition: all 0.25s ease !important;
  display: inline-block !important;
}

.footer-links a:hover {
  color: #0066cc !important;
  transform: translateX(4px) !important;
}

.footer-bottom-text {
  color: #475569 !important;
  font-size: 0.8rem !important;
}

.footer-company-name {
  color: #0f172a !important;
  font-weight: 700 !important;
}

.footer-sublink {
  color: #64748b !important;
  font-weight: 500 !important;
  font-size: 12.5px !important;
  transition: color 0.2s ease !important;
  text-decoration: none !important;
}

.footer-sublink:hover {
  color: #0284c7 !important;
}

/* Dark Mode Footer Contrast Overrides */
body.dark-mode footer,
body.sgr-dark-theme footer {
  background-color: #0b1329 !important;
  color: #f1f5f9 !important;
}

body.dark-mode .footer-contact-title,
body.sgr-dark-theme .footer-contact-title,
body.dark-mode .footer-column-title,
body.sgr-dark-theme .footer-column-title,
body.dark-mode .footer-company-name,
body.sgr-dark-theme .footer-company-name {
  color: #f8fafc !important;
}

body.dark-mode .footer-contact-text,
body.sgr-dark-theme .footer-contact-text,
body.dark-mode .footer-links a,
body.sgr-dark-theme .footer-links a,
body.dark-mode .footer-bottom-text,
body.sgr-dark-theme .footer-bottom-text {
  color: #cbd5e1 !important;
}

body.dark-mode .footer-contact-link,
body.sgr-dark-theme .footer-contact-link {
  color: #38bdf8 !important;
}

body.dark-mode .footer-social-pill,
body.sgr-dark-theme .footer-social-pill {
  background: #1e293b !important;
  border-color: #334155 !important;
  color: #f8fafc !important;
}

/* ==========================================================================
     Mobile Region Dropdown 100% Flush Right Offcanvas Drawer
     ========================================================================== */
@media (max-width: 991px) {

  .sgr-mobile-region-menu,
  div.dropdown-menu.sgr-mobile-region-menu[style],
  div.dropdown-menu.sgr-mobile-region-menu.show[style] {
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    left: auto !important;
    bottom: 0 !important;
    height: 100vh !important;
    width: 86vw !important;
    max-width: 340px !important;
    transform: none !important;
    inset: 0px 0px auto auto !important;
    margin: 0 !important;
    background: linear-gradient(165deg, #ffffff 0%, #f8fafc 100%) !important;
    border: none !important;
    border-left: 1.5px solid #dbe6f6 !important;
    border-radius: 24px 0 0 24px !important;
    padding: 24px 18px !important;
    box-shadow: -20px 0 50px rgba(15, 23, 42, 0.45) !important;
    z-index: 2000000000 !important;
    max-height: 100vh !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch !important;
    scroll-behavior: smooth !important;
    overscroll-behavior: contain !important;
  }

  .sgr-mobile-region-menu.show,
  .sgr-country-card-item {
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04) !important;
  }

  .sgr-country-card-item:hover,
  .sgr-country-card-item:active {
    background: #ffffff !important;
    border-color: #0d8bb9 !important;
    transform: translateX(-3px) !important;
    box-shadow: 0 6px 20px rgba(13, 139, 185, 0.18) !important;
  }
}

@keyframes sgrMobileRegionSlideRight {
  0% {
    opacity: 0;
    transform: translateX(100%) !important;
  }

  100% {
    opacity: 1;
    transform: translateX(0) !important;
  }
}
}

/* ==========================================================================
   High-Tech IT Banner Background System - All Pages, All Countries, Light & Dark Mode
   ========================================================================== */
.sgr-page-banner,
body[data-country] .sgr-page-banner,
body.country-in .sgr-page-banner,
body.country-gb .sgr-page-banner,
body.country-uk .sgr-page-banner,
body.country-us .sgr-page-banner,
body.country-ca .sgr-page-banner,
body.country-sg .sgr-page-banner,
body.country-ae .sgr-page-banner,
body.country-au .sgr-page-banner {
  position: relative !important;
  background: linear-gradient(135deg, rgba(8, 14, 28, 0.20) 0%, rgba(8, 14, 28, 0.10) 50%, rgba(15, 23, 42, 0.15) 100%),
    url('../images/company_banner_bg.jpg') center center/cover no-repeat !important;
  padding: 34px 0 28px !important;
  overflow: hidden !important;
  border-bottom: 1px solid rgba(56, 189, 248, 0.35) !important;
  box-shadow: inset 0 -15px 30px rgba(0, 0, 0, 0.35) !important;
}

body.dark-mode .sgr-page-banner,
body.sgr-dark-theme .sgr-page-banner,
html[data-theme="dark"] .sgr-page-banner,
body.dark-mode[data-country] .sgr-page-banner,
body.sgr-dark-theme[data-country] .sgr-page-banner,
body.dark-mode.country-in .sgr-page-banner,
body.dark-mode.country-gb .sgr-page-banner,
body.dark-mode.country-uk .sgr-page-banner,
body.dark-mode.country-us .sgr-page-banner,
body.dark-mode.country-ca .sgr-page-banner,
body.dark-mode.country-sg .sgr-page-banner,
body.dark-mode.country-ae .sgr-page-banner,
body.dark-mode.country-au .sgr-page-banner {
  background: linear-gradient(135deg, rgba(6, 11, 25, 0.45) 0%, rgba(8, 14, 28, 0.30) 50%, rgba(15, 23, 42, 0.40) 100%),
    url('../images/company_banner_bg.jpg') center center/cover no-repeat,
    #060a14 !important;
}

.sgr-page-banner h1,
.sgr-page-banner h1.text-dark,
.sgr-page-banner .display-4,
.sgr-page-banner .display-5,
.sgr-page-banner .display-6,
body.dark-mode .sgr-page-banner h1,
body.sgr-dark-theme .sgr-page-banner h1,
body[data-country] .sgr-page-banner h1,
body.dark-mode[data-country] .sgr-page-banner h1 {
  color: #ffffff !important;
  font-weight: 800 !important;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.9) !important;
}

.sgr-page-banner p,
.sgr-page-banner p.text-muted,
.sgr-page-banner p.text-light,
body.dark-mode .sgr-page-banner p,
body.sgr-dark-theme .sgr-page-banner p,
body[data-country] .sgr-page-banner p,
body.dark-mode[data-country] .sgr-page-banner p {
  color: #ffffff !important;
  font-weight: 500 !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9) !important;
  opacity: 0.96 !important;
}

.sgr-page-banner .breadcrumb {
  background: rgba(255, 255, 255, 0.16) !important;
  backdrop-filter: blur(14px) !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
}

.sgr-page-banner .breadcrumb-item,
.sgr-page-banner .breadcrumb-item a,
.sgr-page-banner .breadcrumb-item.active {
  color: #ffffff !important;
  font-weight: 700 !important;
}

/* Custom Glassmorphism Banner Breadcrumb Pill Component */
.sgr-banner-breadcrumb-pill {
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  padding: 6px 18px !important;
  border-radius: 50px !important;
  background: rgba(255, 255, 255, 0.14) !important;
  border: 1px solid rgba(255, 255, 255, 0.28) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25) !important;
  font-size: 13px !important;
}

.sgr-bc-link {
  color: #ffffff !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  transition: all 0.2s ease !important;
  display: inline-flex !important;
  align-items: center !important;
}

.sgr-bc-link:hover {
  color: #38bdf8 !important;
  text-shadow: 0 0 8px rgba(56, 189, 248, 0.5) !important;
}

.sgr-bc-divider {
  color: rgba(255, 255, 255, 0.45) !important;
  font-weight: 400 !important;
  font-size: 12px !important;
  user-select: none !important;
}

.sgr-bc-current {
  color: #38bdf8 !important;
  font-weight: 800 !important;
  letter-spacing: 0.3px !important;
}

/* Elegant High-Contrast Eyebrow Badge System */
.sgr-page-banner .sgr-banner-badge,
.sgr-banner-badge {
  background: rgba(255, 255, 255, 0.15) !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  color: #ffffff !important;
  font-weight: 700 !important;
  letter-spacing: 0.6px !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25) !important;
}

.sgr-page-banner .sgr-banner-badge i,
.sgr-banner-badge i {
  color: #38bdf8 !important;
}

/* ==========================================================================
   Ultra-Professional Smooth Opening Navbar & Dropdown Menu System
   ========================================================================== */

/* Navbar Container Backdrop & Sticky Styling */
.sgr-navbar-header {
  background: rgba(255, 255, 255, 0.96) !important;
  border-bottom: 1px solid rgba(226, 232, 240, 0.8) !important;
  transition: background 0.25s ease, box-shadow 0.25s ease !important;
}

@media (min-width: 992px) {
  .sgr-navbar-header {
    background: rgba(255, 255, 255, 0.88) !important;
    backdrop-filter: blur(14px) !important;
    -webkit-backdrop-filter: blur(14px) !important;
  }
}

/* Desktop Nav Links & Right-Aligned Header Layout */
@media (min-width: 992px) {
  .sgr-navbar-header .navbar-collapse {
    display: flex !important;
    justify-content: flex-end !important;
    align-items: center !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
  }

  .sgr-navbar-header .navbar-nav {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    margin-left: auto !important;
    margin-right: 16px !important;
    width: auto !important;
    gap: 4px !important;
  }

  .navbar-nav .nav-link {
    color: #334155 !important;
    font-weight: 700 !important;
    font-size: 14.5px !important;
    padding: 8px 16px !important;
    border-radius: 20px !important;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
  }

  .navbar-nav .nav-link:hover {
    color: #0d8bb9 !important;
    background: rgba(13, 139, 185, 0.08) !important;
    transform: translateY(-1px) !important;
  }

  .navbar-nav .nav-link.active {
    color: #0d8bb9 !important;
    background: rgba(13, 139, 185, 0.12) !important;
    font-weight: 800 !important;
  }

  /* Butter-Smooth Dropdown Opening ONLY ON CLICK (No Hover Open) */
  .navbar-nav .dropdown .dropdown-menu.show,
  .navbar-nav .dropdown.show>.dropdown-menu {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) scale(1) !important;
    pointer-events: auto !important;
  }

  .navbar-nav .dropdown>.dropdown-menu {
    display: block !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateY(12px) scale(0.96) !important;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
    pointer-events: none !important;
  }
}

/* Smooth Animated Caret for Dropdown Toggles */
.navbar-nav .dropdown-toggle::after {
  display: inline-block !important;
  margin-left: 6px !important;
  vertical-align: 0.15em !important;
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.navbar-nav .dropdown.show .dropdown-toggle::after,
.navbar-nav .dropdown-toggle[aria-expanded="true"]::after {
  transform: rotate(180deg) !important;
}

/* Mega Dropdown & Standard Dropdown Styling */
.sgr-mega-dropdown,
.navbar-nav .dropdown-menu {
  background: #ffffff !important;
  border: 1.5px solid #dbe6f6 !important;
  border-radius: 18px !important;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.16), 0 4px 14px rgba(0, 0, 0, 0.05) !important;
}

.sgr-drop-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.sgr-drop-item {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  padding: 10px 14px !important;
  border-radius: 12px !important;
  border: 1px solid #e2e8f0 !important;
  background: #f8fafc !important;
  text-decoration: none !important;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.sgr-drop-item:hover {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%) !important;
  border-color: rgba(13, 139, 185, 0.35) !important;
  box-shadow: 0 4px 14px rgba(13, 139, 185, 0.15) !important;
  transform: translateX(4px) !important;
}

.sgr-drop-icon {
  width: 28px !important;
  height: 28px !important;
  min-width: 28px !important;
  border-radius: 8px !important;
  background: linear-gradient(135deg, #0d8bb9 0%, #1d4ed8 100%) !important;
  color: #ffffff !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 13px !important;
  box-shadow: 0 2px 6px rgba(13, 139, 185, 0.25) !important;
  flex-shrink: 0 !important;
  transition: transform 0.25s ease !important;
}

.sgr-drop-item:hover .sgr-drop-icon {
  transform: scale(1.1) rotate(-4deg) !important;
}

.sgr-drop-title {
  color: #0f172a !important;
  font-weight: 700 !important;
  font-size: 13.5px !important;
  line-height: 1.3 !important;
  transition: color 0.2s ease !important;
}

.sgr-drop-item:hover .sgr-drop-title {
  color: #0d8bb9 !important;
}

/* Dark Mode Mega Dropdown Cards & Text */
body.dark-mode .sgr-mega-dropdown,
body.sgr-dark-theme .sgr-mega-dropdown,
html[data-theme="dark"] .sgr-mega-dropdown {
  background: linear-gradient(145deg, #0b132b 0%, #060c1a 100%) !important;
  border-color: rgba(56, 189, 248, 0.25) !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6) !important;
}

body.dark-mode .sgr-drop-header span,
body.sgr-dark-theme .sgr-drop-header span,
html[data-theme="dark"] .sgr-drop-header span {
  color: #ffffff !important;
}

body.dark-mode .sgr-drop-item,
body.sgr-dark-theme .sgr-drop-item,
html[data-theme="dark"] .sgr-drop-item {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

body.dark-mode .sgr-drop-title,
body.sgr-dark-theme .sgr-drop-title,
html[data-theme="dark"] .sgr-drop-title {
  color: #ffffff !important;
}

body.dark-mode .sgr-drop-item:hover,
body.sgr-dark-theme .sgr-drop-item:hover,
html[data-theme="dark"] .sgr-drop-item:hover {
  background: rgba(13, 139, 185, 0.2) !important;
  border-color: rgba(56, 189, 248, 0.45) !important;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3) !important;
}

body.dark-mode .sgr-drop-item:hover .sgr-drop-title,
body.sgr-dark-theme .sgr-drop-item:hover .sgr-drop-title,
html[data-theme="dark"] .sgr-drop-item:hover .sgr-drop-title {
  color: #38bdf8 !important;
}

/* Mobile Drawer Menu Styling, Smooth Momentum Scrolling & Animation */
@media (max-width: 991.98px) {
  .sgr-navbar-header .navbar-collapse {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    bottom: 0 !important;
    height: 100vh !important;
    height: 100dvh !important;
    width: 86vw !important;
    max-width: 325px !important;
    background: #ffffff !important;
    border: none !important;
    border-right: 1.5px solid #dbe6f6 !important;
    border-radius: 0 20px 20px 0 !important;
    padding: 14px 14px 16px !important;
    margin: 0 !important;
    box-shadow: 20px 0 50px rgba(15, 23, 42, 0.35) !important;
    z-index: 1000000 !important;
    max-height: 100vh !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch !important;
    scroll-behavior: smooth !important;
    overscroll-behavior: contain !important;
    touch-action: pan-y !important;
    display: block !important;

    /* Pure horizontal 60fps physical slide - 100% solid, crisp, and clear always */
    transform: translate3d(-100%, 0, 0) !important;
    opacity: 1 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1),
      visibility 0.28s ease !important;
    will-change: transform !important;
  }

  body.dark-mode .sgr-navbar-header .navbar-collapse,
  body.sgr-dark-theme .sgr-navbar-header .navbar-collapse,
  html[data-theme="dark"] .sgr-navbar-header .navbar-collapse {
    background: linear-gradient(165deg, #0b1329 0%, #060a14 100%) !important;
    border-right: 1.5px solid rgba(56, 189, 248, 0.2) !important;
    box-shadow: 20px 0 50px rgba(0, 0, 0, 0.7) !important;
  }

  body.dark-mode .navbar-nav .nav-link,
  body.sgr-dark-theme .navbar-nav .nav-link,
  html[data-theme="dark"] .navbar-nav .nav-link {
    color: #f1f5f9 !important;
  }

  /* Sleek custom scrollbar for mobile drawer */
  .sgr-navbar-header .navbar-collapse::-webkit-scrollbar {
    width: 4px;
  }

  .sgr-navbar-header .navbar-collapse::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.03);
    border-radius: 10px;
  }

  .sgr-navbar-header .navbar-collapse::-webkit-scrollbar-thumb {
    background: rgba(13, 139, 185, 0.35);
    border-radius: 10px;
  }

  /* When drawer is opening (.collapsing with sgr-drawer-open) or open (.show) */
  body.sgr-drawer-open .sgr-navbar-header .navbar-collapse,
  .sgr-navbar-header .navbar-collapse.show {
    transform: translate3d(0, 0, 0) !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }

  /* Prevent Bootstrap height animation from interfering with horizontal drawer slide */
  .sgr-navbar-header .navbar-collapse.collapsing {
    height: 100vh !important;
    height: 100dvh !important;
    max-height: 100vh !important;
    display: block !important;
    opacity: 1 !important;
    transform: translate3d(-100%, 0, 0);
    transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1),
      visibility 0.28s ease !important;
  }

  body.sgr-drawer-open .sgr-navbar-header .navbar-collapse.collapsing {
    transform: translate3d(0, 0, 0) !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  .navbar-nav {
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    width: 100% !important;
    gap: 2px !important;
    margin-bottom: 6px !important;
  }

  .navbar-nav .nav-link {
    padding: 7px 12px !important;
    border-radius: 8px !important;
    font-size: 13.5px !important;
    font-weight: 600 !important;
    line-height: 1.35 !important;
    color: #0f172a !important;
    transition: all 0.2s ease !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    margin-bottom: 2px !important;
    margin-left: 0 !important;
    width: 100% !important;
  }

  .navbar-nav .nav-link:hover,
  .navbar-nav .nav-link.active {
    background: linear-gradient(135deg, #0d8bb9 0%, #1d4ed8 100%) !important;
    color: #ffffff !important;
    box-shadow: 0 3px 10px rgba(13, 139, 185, 0.25) !important;
    transform: none !important;
  }

  /* Compact Scrollable Service Capability Grid on Mobile */
  .sgr-drop-grid {
    grid-template-columns: 1fr !important;
    gap: 6px !important;
    max-height: 280px !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch !important;
    padding-right: 4px !important;
  }

  .sgr-drop-grid::-webkit-scrollbar {
    width: 3.5px;
  }

  .sgr-drop-grid::-webkit-scrollbar-thumb {
    background: rgba(13, 139, 185, 0.4);
    border-radius: 10px;
  }

  .sgr-drop-item {
    padding: 6px 10px !important;
    border-radius: 8px !important;
  }

  .sgr-drop-icon {
    width: 24px !important;
    height: 24px !important;
    min-width: 24px !important;
    border-radius: 6px !important;
    font-size: 11px !important;
  }

  .sgr-drop-title {
    font-size: 12px !important;
  }

  .navbar-nav .dropdown-menu {
    border-radius: 10px !important;
    background: #ffffff !important;
    border: 1.5px solid #e2e8f0 !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08) !important;
    margin-top: 4px !important;
    padding: 6px !important;
  }

  /* Compact Mobile Drawer Action Area & Footer */
  .sgr-mobile-drawer-actions {
    margin-top: 6px !important;
    padding-top: 6px !important;
    gap: 8px !important;
  }

  .sgr-mobile-drawer-actions .theme-switch-btn {
    width: 36px !important;
    height: 36px !important;
    min-width: 36px !important;
    padding: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 14px !important;
  }

  .sgr-mobile-drawer-actions .sgr-nav-cta {
    height: 36px !important;
    padding: 0 14px !important;
    font-size: 13px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .sgr-mobile-drawer-footer {
    margin-top: 8px !important;
    padding-top: 8px !important;
  }

  .sgr-mobile-drawer-footer a {
    padding: 2px 0 !important;
    font-size: 12.5px !important;
    line-height: 1.4 !important;
  }

  body.dark-mode .sgr-mobile-drawer-footer a,
  body.sgr-dark-theme .sgr-mobile-drawer-footer a,
  html[data-theme="dark"] .sgr-mobile-drawer-footer a {
    color: #cbd5e1 !important;
  }
  body.dark-mode .sgr-mobile-drawer-footer a.sgr-mobile-drawer-brochure-btn,
  body.sgr-dark-theme .sgr-mobile-drawer-footer a.sgr-mobile-drawer-brochure-btn,
  html[data-theme="dark"] .sgr-mobile-drawer-footer a.sgr-mobile-drawer-brochure-btn {
    color: #38bdf8 !important;
    border-color: rgba(56, 189, 248, 0.4) !important;
    background: rgba(56, 189, 248, 0.1) !important;
  }

  body.dark-mode .sgr-mobile-drawer-footer .text-muted,
  body.sgr-dark-theme .sgr-mobile-drawer-footer .text-muted,
  html[data-theme="dark"] .sgr-mobile-drawer-footer .text-muted {
    color: #94a3b8 !important;
  }

  body.dark-mode .sgr-mobile-drawer-footer,
  body.sgr-dark-theme .sgr-mobile-drawer-footer,
  html[data-theme="dark"] .sgr-mobile-drawer-footer {
    border-color: rgba(255, 255, 255, 0.12) !important;
  }
}


/* ==========================================================================
   Comprehensive Global Mobile & Tablet Responsiveness Engine
   ========================================================================== */

/* 1. Global Viewport Safety & Zero Horizontal Scrollbar */
html,
body {
  max-width: 100vw !important;
  overflow-x: clip !important;
}

/* 2. Responsive Page Banner (`.sgr-page-banner`) */
@media (max-width: 768px) {
  .sgr-page-banner {
    padding: 24px 14px 20px !important;
  }

  .sgr-page-banner h1,
  .sgr-page-banner .display-4,
  .sgr-page-banner .display-5,
  .sgr-page-banner .display-6 {
    font-size: 1.55rem !important;
    line-height: 1.3 !important;
    margin-bottom: 8px !important;
  }

  .sgr-page-banner p {
    font-size: 0.9rem !important;
    line-height: 1.45 !important;
    margin-bottom: 12px !important;
  }

  .sgr-banner-breadcrumb-pill {
    padding: 5px 14px !important;
    font-size: 11.5px !important;
    gap: 6px !important;
  }
}

/* 3. Company Overview & Subpage Section Responsiveness */
@media (max-width: 991px) {
  .sgr-company-wrap {
    padding: 30px 15px !important;
  }

  .sgr-company-heading {
    font-size: 1.65rem !important;
    line-height: 1.3 !important;
  }

  .sgr-history-card h3 {
    font-size: 1.35rem !important;
  }

  .sgr-metrics-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }
}

@media (max-width: 576px) {
  .sgr-metrics-grid {
    grid-template-columns: 1fr !important;
  }

  .sgr-metric-box {
    padding: 16px !important;
  }

  .sgr-mv-header h3 {
    font-size: 1.25rem !important;
  }

  .sgr-company-pill {
    font-size: 11px !important;
    padding: 6px 12px !important;
  }
}

/* 4. Global Media Safety & Mobile Layout Optimizations */
@media (max-width: 768px) {

  iframe,
  video {
    max-width: 100% !important;
    height: auto !important;
  }

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

  .container,
  .container-fluid {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}

/* Topbar Country Badge Text Color */
.sgr-topbar-office-badge,
.sgr-topbar-office-badge span {
  color: #ffffff !important;
}

/* ==========================================================================
   Mega-Menu Global Offices Dropdown
   ========================================================================== */
.sgr-mega-offices-menu {
  border: 1px solid rgba(226, 232, 240, 0.9) !important;
  transform-origin: top left !important;
  animation: sgrMegaSlideIn 0.28s cubic-bezier(0.16, 1, 0.3, 1) forwards !important;
}

@keyframes sgrMegaSlideIn {
  0% {
    opacity: 0;
    transform: translateY(12px) scale(0.97);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.sgr-pulse-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  animation: sgrPulseDot 1.8s infinite;
}

@keyframes sgrPulseDot {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 6px rgba(16, 185, 129, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

.sgr-card-flag-box {
  width: 34px;
  height: 24px;
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8fafc;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
  border: 1px solid #e2e8f0;
  flex-shrink: 0;
}

.sgr-card-flag-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sgr-mega-office-card {
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  transition: all 0.24s cubic-bezier(0.16, 1, 0.3, 1) !important;
  cursor: pointer;
}

.sgr-mega-office-card:hover {
  background: #ffffff !important;
  border-color: #38bdf8 !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px -4px rgba(13, 139, 185, 0.18) !important;
}

.sgr-mega-office-card:hover .sgr-card-arrow-icon {
  color: #0d8bb9 !important;
  transform: translateX(3px);
}

.sgr-card-arrow-icon {
  font-size: 13px;
  transition: transform 0.2s ease, color 0.2s ease;
}

.sgr-mega-office-card.active {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%) !important;
  border: 1.5px solid #0284c7 !important;
  box-shadow: 0 4px 14px rgba(2, 132, 199, 0.16) !important;
}

.sgr-card-country-name {
  font-size: 13px;
  font-weight: 800;
  color: #0f172a;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.sgr-mega-office-card.active .sgr-card-country-name {
  color: #0369a1 !important;
}

.sgr-card-city-text {
  font-size: 10.5px;
  font-weight: 500;
  color: #64748b;
}

.sgr-card-badge-code {
  font-size: 10px;
  font-weight: 800;
  padding: 3px 6px;
  border-radius: 6px;
  background: #e2e8f0;
  color: #475569;
}

.sgr-mega-office-card.active .sgr-card-badge-code {
  background: #0284c7;
  color: #ffffff;
}

.sgr-card-sub-desk {
  font-size: 10.5px;
  font-weight: 600;
  color: #0d8bb9;
}

.sgr-mega-office-card:not(.active) .sgr-card-sub-desk {
  color: #64748b;
}

/* ==========================================================================
   Career Page & Job Openings Master Styles
   ========================================================================== */
.sgr-career-wrap {
  position: relative;
  padding: 70px 0 100px;
  background: #f8fafc;
  background-image:
    linear-gradient(rgba(2, 132, 199, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(2, 132, 199, 0.04) 1px, transparent 1px);
  background-size: 36px 36px;
  overflow: hidden;
}

.sgr-career-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  background: rgba(2, 132, 199, 0.08);
  border: 1px solid rgba(2, 132, 199, 0.22);
  border-radius: 9999px;
  color: #0284c7;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.sgr-career-eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #0284c7;
  box-shadow: 0 0 10px rgba(2, 132, 199, 0.8);
  animation: sgrPulseDot 1.8s infinite;
}

@keyframes sgrPulseDot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.45;
    transform: scale(1.25);
  }
}

.sgr-career-heading {
  font-size: 2.5rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.025em;
  line-height: 1.25;
}

.sgr-career-heading span {
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sgr-benefit-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 28px 24px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.03);
  height: 100%;
}

.sgr-benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(2, 132, 199, 0.12);
  border-color: rgba(2, 132, 199, 0.35);
}

.sgr-benefit-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(2, 132, 199, 0.1) 0%, rgba(14, 165, 233, 0.16) 100%);
  color: #0284c7;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.55rem;
  margin-bottom: 20px;
  border: 1px solid rgba(2, 132, 199, 0.15);
}

.sgr-pulse-green {
  width: 8px;
  height: 8px;
  background: #10b981;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 8px #10b981;
  animation: sgrPulseDot 1.6s infinite;
}

.sgr-filter-pill {
  appearance: none;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  color: #475569;
  padding: 7px 16px;
  border-radius: 9999px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.sgr-filter-pill:hover {
  background: #f1f5f9;
  color: #0f172a;
  border-color: #cbd5e1;
}

.sgr-filter-pill.active {
  background: #0284c7 !important;
  color: #ffffff !important;
  border-color: #0284c7 !important;
  box-shadow: 0 4px 14px rgba(2, 132, 199, 0.28) !important;
}

.sgr-search-input-wrap {
  position: relative;
  min-width: 260px;
}

.sgr-search-input-wrap input {
  border-radius: 9999px;
  padding-left: 38px;
  padding-right: 36px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  font-size: 0.88rem;
}

.sgr-search-input-wrap input:focus {
  background: #ffffff;
  border-color: #0284c7;
  box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.15);
}

.sgr-search-input-wrap .search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
  pointer-events: none;
}

.sgr-search-input-wrap .clear-btn {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #94a3b8;
  cursor: pointer;
}

.sgr-job-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  margin-bottom: 14px;
  width: 100% !important;
}

.sgr-job-card:hover {
  border-color: #bae6fd;
  box-shadow: 0 10px 30px rgba(2, 132, 199, 0.08);
  transform: translateY(-2px);
}

.sgr-job-card-header {
  padding: 22px 24px;
  cursor: pointer;
  user-select: none;
  background: #ffffff;
  transition: background 0.2s ease;
}

.sgr-job-card-header:hover {
  background: #fafcff;
}

.sgr-job-icon-frame {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(2, 132, 199, 0.08) 0%, rgba(14, 165, 233, 0.14) 100%);
  color: #0284c7;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  border: 1px solid rgba(2, 132, 199, 0.18);
}

.sgr-chevron-icon {
  transition: transform 0.25s ease;
}

.sgr-job-card-header[aria-expanded="true"] .sgr-chevron-icon {
  transform: rotate(180deg);
  color: #0284c7;
}

.sgr-skill-chip {
  display: inline-flex;
  align-items: center;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  color: #475569;
  font-size: 0.76rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 8px;
}

.sgr-btn-wa {
  background: #25d366;
  color: #ffffff !important;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 8px 18px;
  border-radius: 9999px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
  transition: all 0.2s ease;
}

.sgr-btn-wa:hover {
  background: #1eb956;
  transform: translateY(-1px);
}

.sgr-btn-apply {
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  color: #ffffff !important;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 8px 20px;
  border-radius: 9999px;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.25);
  transition: all 0.2s ease;
}

.sgr-btn-apply:hover {
  opacity: 0.95;
  transform: translateY(-1px);
}

.sgr-career-apply-card {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0369a1 100%);
  border-radius: 28px;
  padding: 46px 40px;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.2);
}

.sgr-cv-dropzone {
  border: 2px dashed #cbd5e1;
  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;
  background: #ffffff;
  cursor: pointer;
  transition: all 0.2s ease;
}

.sgr-cv-dropzone:hover {
  border-color: #0284c7;
  background: #f0f9ff;
}

/* Dark theme overrides */
body.dark-mode .sgr-career-wrap {
  background: #060a14;
}

body.dark-mode .sgr-career-heading {
  color: #f8fafc;
}

body.dark-mode .sgr-benefit-card,
body.dark-mode .sgr-job-card,
body.dark-mode .sgr-card-container {
  background: #0f172a !important;
  border-color: rgba(56, 189, 248, 0.18) !important;
}

body.dark-mode .sgr-job-card-header {
  background: #0f172a !important;
}

body.dark-mode .sgr-filter-pill {
  background: #1e293b;
  border-color: rgba(255, 255, 255, 0.1);
  color: #cbd5e1;
}

body.dark-mode .sgr-search-input-wrap input {
  background: #1e293b;
  border-color: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

body.dark-mode .sgr-skill-chip {
  background: #1e293b;
  border-color: rgba(255, 255, 255, 0.1);
  color: #f8fafc;
}

.sgr-banner-eyebrow-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 9999px;
  color: #38bdf8 !important;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  margin-bottom: 12px;
}

.sgr-bottom-apply-banner .d-flex {
  gap: 16px !important;
}

.sgr-banner-btn-wa {
  background: #25d366;
  color: #ffffff !important;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 9px 22px;
  border-radius: 9999px;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
  transition: all 0.2s ease;
}

.sgr-banner-btn-wa:hover {
  background: #1eb956;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.45);
}

.sgr-banner-btn-cv {
  background: #ffffff;
  color: #0284c7 !important;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 9px 22px;
  border-radius: 9999px;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
  transition: all 0.2s ease;
}

.sgr-banner-btn-cv:hover {
  background: #f0f9ff;
  color: #0369a1 !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

/* Strip Apply Button (Schedule A Meet Theme Gradient) */
.sgr-btn-apply-strip {
  background: linear-gradient(180deg, #1c94cd, #1879a8 57%) !important;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.4) !important;
  font-size: 13px;
  font-weight: 700;
  padding: 7px 22px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-block;
  min-width: 84px;
  text-align: center;
  box-shadow: 0 4px 14px rgba(28, 148, 205, 0.35);
}

.sgr-btn-apply-strip:hover {
  background: linear-gradient(180deg, #1879a8, #1c94cd 57%) !important;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(28, 148, 205, 0.5);
}

.sgr-btn-next-page {
  background: linear-gradient(180deg, #1c94cd, #1879a8 57%) !important;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  padding: 7px 22px;
  font-size: 13px;
  font-weight: 700;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(28, 148, 205, 0.35);
}

.sgr-btn-next-page:hover {
  background: linear-gradient(180deg, #1879a8, #1c94cd 57%) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(28, 148, 205, 0.45);
}

/* Enhanced Job Drawer Styles */
.sgr-row-details-body {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  margin-top: 22px;
  padding: 34px 38px;
  box-shadow: 0 10px 30px -5px rgba(15, 23, 42, 0.05);
}

.sgr-drawer-overview-box {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  border: 1px solid #bae6fd;
  border-radius: 14px;
  padding: 22px 26px;
  margin-bottom: 32px;
}

.sgr-drawer-overview-box p {
  line-height: 1.75;
  font-size: 0.95rem;
  color: #334155;
  margin-top: 10px;
}

.sgr-drawer-section-title {
  font-size: 0.84rem;
  font-weight: 700;
  color: #1e293b;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.sgr-drawer-section-resp {
  margin-bottom: 32px;
}

.sgr-resp-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (max-width: 768px) {
  .sgr-resp-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .sgr-row-details-body {
    padding: 22px 18px !important;
  }

  .sgr-drawer-overview-box {
    padding: 16px 18px !important;
    margin-bottom: 24px !important;
  }
}

.sgr-resp-item-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 16px 20px;
  min-height: 72px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: all 0.2s ease;
}

.sgr-resp-item-card:hover {
  background: #ffffff;
  border-color: #cbd5e1;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.04);
}

.sgr-check-capsule {
  width: 24px;
  height: 24px;
  min-width: 24px;
  border-radius: 50%;
  background: #ecfdf5;
  color: #059669;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 2px;
}

.sgr-resp-item-card .sgr-resp-text {
  line-height: 1.6;
  font-size: 0.89rem;
  font-weight: 500;
  color: #334155;
}

.sgr-drawer-section-tech {
  margin-bottom: 26px;
}

.sgr-drawer-tech-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 10px;
}

.sgr-drawer-tech-pill {
  display: inline-flex;
  align-items: center;
  background: #ffffff;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  padding: 4px 11px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #1f2937;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
  transition: all 0.16s ease;
}

.sgr-drawer-tech-pill i {
  margin-right: 6px;
  font-size: 0.86rem;
  color: #0284c7 !important;
  flex-shrink: 0;
}

.sgr-drawer-tech-pill:hover {
  border-color: #0284c7;
  background: #f0f9ff;
  transform: translateY(-1px);
  box-shadow: 0 2px 6px rgba(2, 132, 199, 0.1);
}

.sgr-drawer-footer-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 26px;
  margin-top: 28px;
  border-top: 1px dashed #cbd5e1;
}

.sgr-drawer-footer-note {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: #475569;
}

.sgr-drawer-footer-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sgr-drawer-btn-wa {
  background: #25d366;
  color: #ffffff !important;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 10px 24px;
  border-radius: 9999px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.25);
  transition: all 0.2s ease;
}

.sgr-drawer-btn-wa:hover {
  background: #1eb956;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.35);
}

.sgr-drawer-btn-cv {
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  color: #ffffff !important;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 10px 26px;
  border-radius: 9999px;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 14px rgba(2, 132, 199, 0.25);
  transition: all 0.2s ease;
}

.sgr-drawer-btn-cv:hover {
  opacity: 0.95;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(2, 132, 199, 0.35);
}

/* Footer Menu Columns Top Offset */
.footer-menu-col {
  padding-top: 32px;
}

@media (max-width: 991px) {
  .footer-menu-col {
    padding-top: 16px;
  }
}

/* Global Offices Left Offcanvas Drawer */
.sgr-global-left-drawer {
  width: 430px !important;
  max-width: 92vw !important;
  background: #ffffff !important;
  box-shadow: 15px 0 50px rgba(0, 0, 0, 0.25) !important;
  border-right: 1px solid rgba(0, 0, 0, 0.08) !important;
  z-index: 10600 !important;
}

.sgr-drawer-office-card {
  background: #ffffff !important;
  border: 1.5px solid #e2e8f0 !important;
  border-radius: 14px !important;
  padding: 14px 18px !important;
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1) !important;
  cursor: pointer;
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.04) !important;
  position: relative;
  text-decoration: none !important;
}

.sgr-drawer-office-card:hover {
  background: #ffffff !important;
  border-color: #38bdf8 !important;
  transform: translateY(-2px) translateX(2px);
  box-shadow: 0 10px 25px rgba(2, 132, 199, 0.12), 0 2px 6px rgba(2, 132, 199, 0.06) !important;
}

.sgr-drawer-office-card:hover .sgr-card-country-name {
  color: #0284c7 !important;
}

.sgr-drawer-office-card:hover .sgr-card-arrow-circle {
  background: #0284c7 !important;
  border-color: #0284c7 !important;
  color: #ffffff !important;
  transform: translateX(2px);
}

.sgr-drawer-office-card:hover .sgr-card-arrow-circle i {
  color: #ffffff !important;
}

.sgr-drawer-office-card.active {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%) !important;
  border: 1.5px solid #0284c7 !important;
  box-shadow: 0 6px 20px rgba(2, 132, 199, 0.16) !important;
}

.sgr-drawer-office-card.active .sgr-card-country-name {
  color: #0369a1 !important;
}

.sgr-drawer-office-card.active .sgr-card-badge-code {
  background: #0284c7 !important;
  color: #ffffff !important;
  border-color: #0284c7 !important;
}

.sgr-card-flag-box {
  width: 44px;
  height: 32px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.12);
  border: 1.5px solid #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8fafc;
  flex-shrink: 0;
}

.sgr-card-flag-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sgr-card-country-name {
  font-size: 14.5px;
  font-weight: 700;
  color: #0f172a;
  letter-spacing: -0.2px;
  transition: color 0.2s ease;
}

.sgr-card-badge-code {
  background: #f1f5f9;
  color: #475569;
  font-size: 10.5px;
  font-weight: 800;
  padding: 3px 7px;
  border-radius: 6px;
  letter-spacing: 0.5px;
}

.sgr-card-city-text {
  font-size: 11.5px;
  color: #64748b;
  font-weight: 500;
}

.sgr-card-arrow-circle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

/* ==========================================================================
   Language Dropdown — Auto Dark / Light Mode
   ========================================================================== */

/* Light mode — white dropdown */
.sgr-translate-dropdown .dropdown-menu {
  background: #ffffff !important;
}

/* Force ALL text inside language dropdown to be DARK — always readable on white bg */
.sgr-translate-dropdown .dropdown-menu,
.sgr-translate-dropdown .dropdown-menu *,
body.dark-mode .sgr-translate-dropdown .dropdown-menu,
body.dark-mode .sgr-translate-dropdown .dropdown-menu *,
body.sgr-dark-theme .sgr-translate-dropdown .dropdown-menu,
body.sgr-dark-theme .sgr-translate-dropdown .dropdown-menu * {
  color: #0f172a !important;
  background-color: transparent;
}

/* Keep dropdown background always white */
body.dark-mode .sgr-translate-dropdown .dropdown-menu,
body.sgr-dark-theme .sgr-translate-dropdown .dropdown-menu {
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35) !important;
}

/* Header "SELECT LANGUAGE" — dark gray */
.sgr-translate-dropdown .dropdown-menu .text-muted,
body.dark-mode .sgr-translate-dropdown .dropdown-menu .text-muted,
body.sgr-dark-theme .sgr-translate-dropdown .dropdown-menu .text-muted {
  color: #64748b !important;
}

/* Translate icon — blue */
.sgr-translate-dropdown .dropdown-menu .bi-translate,
body.dark-mode .sgr-translate-dropdown .dropdown-menu .bi-translate,
body.sgr-dark-theme .sgr-translate-dropdown .dropdown-menu .bi-translate {
  color: #2563eb !important;
}

/* Checkmark — blue */
.sgr-translate-dropdown .dropdown-menu .bi-check2,
body.dark-mode .sgr-translate-dropdown .dropdown-menu .bi-check2,
body.sgr-dark-theme .sgr-translate-dropdown .dropdown-menu .bi-check2 {
  color: #2563eb !important;
}

/* Hover state on language items */
.sgr-translate-dropdown .dropdown-menu .sgr-lang-menu-item:hover,
body.dark-mode .sgr-translate-dropdown .dropdown-menu .sgr-lang-menu-item:hover,
body.sgr-dark-theme .sgr-translate-dropdown .dropdown-menu .sgr-lang-menu-item:hover {
  background: #f1f5f9 !important;
  color: #0f172a !important;
}

/* Border between header and list */
.sgr-translate-dropdown .dropdown-menu .border-bottom,
body.dark-mode .sgr-translate-dropdown .dropdown-menu .border-bottom,
body.sgr-dark-theme .sgr-translate-dropdown .dropdown-menu .border-bottom {
  border-color: #e2e8f0 !important;
}

/* Scrollbar in dark mode */
body.dark-mode .sgr-lang-scroll-list,
body.sgr-dark-theme .sgr-lang-scroll-list {
  scrollbar-color: #94a3b8 #f1f5f9;
}


/* ==========================================================================
   Global Offices Drawer Cards — Auto Dark Mode
   ========================================================================== */
body.dark-mode .sgr-global-left-drawer,
body.sgr-dark-theme .sgr-global-left-drawer {
  background: #060b18 !important;
}

body.dark-mode .sgr-drawer-office-card,
body.sgr-dark-theme .sgr-drawer-office-card {
  background: #0f1a36 !important;
  border: 1px solid rgba(56, 189, 248, 0.18) !important;
  color: #e2e8f0 !important;
}

body.dark-mode .sgr-drawer-office-card:hover,
body.sgr-dark-theme .sgr-drawer-office-card:hover {
  background: #152142 !important;
  border-color: rgba(56, 189, 248, 0.4) !important;
}

body.dark-mode .sgr-card-country-name,
body.sgr-dark-theme .sgr-card-country-name {
  color: #f1f5f9 !important;
}

body.dark-mode .sgr-card-city-text,
body.sgr-dark-theme .sgr-card-city-text {
  color: #94a3b8 !important;
}

body.dark-mode .sgr-card-badge-code,
body.sgr-dark-theme .sgr-card-badge-code {
  background: rgba(56, 189, 248, 0.12) !important;
  color: #38bdf8 !important;
  border: 1px solid rgba(56, 189, 248, 0.25) !important;
}

body.dark-mode .sgr-card-arrow-circle,
body.sgr-dark-theme .sgr-card-arrow-circle {
  background: rgba(56, 189, 248, 0.08) !important;
  border-color: rgba(56, 189, 248, 0.25) !important;
  color: #38bdf8 !important;
}

body.dark-mode .sgr-global-left-drawer .border-top,
body.sgr-dark-theme .sgr-global-left-drawer .border-top {
  border-color: rgba(56, 189, 248, 0.15) !important;
}

body.dark-mode .sgr-global-left-drawer .mt-auto > div,
body.sgr-dark-theme .sgr-global-left-drawer .mt-auto > div {
  background: #0f1a36 !important;
  border-color: rgba(56, 189, 248, 0.18) !important;
}

body.dark-mode .sgr-global-left-drawer .mt-auto a.text-dark,
body.sgr-dark-theme .sgr-global-left-drawer .mt-auto a.text-dark {
  color: #e2e8f0 !important;
}

/* Custom Spacing & Typography Micro-Utilities (Fix for Tailwind-style decimal classes in Bootstrap) */
.gap-0\.5 { gap: 0.125rem !important; }
.gap-1\.5 { gap: 0.375rem !important; }
.gap-2\.5 { gap: 0.625rem !important; }
.gap-3\.5 { gap: 0.875rem !important; }

.px-1\.5 { padding-left: 0.375rem !important; padding-right: 0.375rem !important; }
.px-2\.5 { padding-left: 0.625rem !important; padding-right: 0.625rem !important; }
.px-3\.5 { padding-left: 0.875rem !important; padding-right: 0.875rem !important; }

.py-0\.5 { padding-top: 0.125rem !important; padding-bottom: 0.125rem !important; }
.py-1\.5 { padding-top: 0.375rem !important; padding-bottom: 0.375rem !important; }
.py-2\.5 { padding-top: 0.625rem !important; padding-bottom: 0.625rem !important; }

.p-1\.5 { padding: 0.375rem !important; }
.p-2\.5 { padding: 0.625rem !important; }

.mb-0\.5 { margin-bottom: 0.125rem !important; }
.mb-1\.5 { margin-bottom: 0.375rem !important; }
.mb-2\.5 { margin-bottom: 0.625rem !important; }

.mt-0\.5 { margin-top: 0.125rem !important; }
.mt-1\.5 { margin-top: 0.375rem !important; }
.mt-2\.5 { margin-top: 0.625rem !important; }

.ms-0\.5 { margin-left: 0.125rem !important; }
.me-0\.5 { margin-right: 0.125rem !important; }

.fs-7 { font-size: 0.825rem !important; }
.fs-8 { font-size: 0.75rem !important; }