/* ==========================================================================
   BnaGo Portfolio - State-Of-The-Art Pro Global Design System
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
  --font-heading: 'Plus Jakarta Sans', 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-accent: 'Outfit', sans-serif;
  
  --radius-xs: 6px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  --transition-fast: 0.18s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  
  --shadow-xs: 0 1px 2px rgba(0,0,0,0.04);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 24px -4px rgba(15,23,42,0.08);
  --shadow-lg: 0 16px 36px -6px rgba(15,23,42,0.12);
  --shadow-xl: 0 25px 50px -12px rgba(15,23,42,0.18);
  --shadow-glow-cyan: 0 0 25px rgba(6,182,212,0.35);
  --shadow-glow-emerald: 0 0 25px rgba(16,185,129,0.35);
  --shadow-glow-blue: 0 0 25px rgba(2,132,199,0.35);
}

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

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

body {
  font-family: var(--font-body);
  line-height: 1.6;
  color: #1e293b;
  background-color: #f1f5f9;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.theme-medical {
  background-color: #eef4fb;
}

body.theme-ecommerce {
  background-color: #edfbf2;
}

body.theme-corporate {
  background-color: #f1f5f9;
}

body.theme-darkglass {
  background-color: #02040a;
}

body.theme-creative {
  background-color: #f1f5f9;
}

/* ==========================================================================
   Unified Bounded Canvas Architecture (Ultrawide & Zoom-Out Protection)
   ========================================================================== */
.site-wrapper {
  width: 100%;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  background-color: #ffffff;
  box-shadow: 0 0 50px rgba(15, 23, 42, 0.08);
}

.theme-medical .site-wrapper {
  background-color: #ffffff;
  box-shadow: 0 0 50px rgba(2, 132, 199, 0.08);
}

.theme-ecommerce .site-wrapper {
  background-color: #ffffff;
  box-shadow: 0 0 50px rgba(16, 185, 129, 0.08);
}

.theme-corporate .site-wrapper {
  background-color: #ffffff;
  box-shadow: 0 0 50px rgba(30, 58, 138, 0.08);
}

.theme-darkglass .site-wrapper {
  background-color: #030712;
  box-shadow: 0 0 70px rgba(0, 0, 0, 0.7), 0 0 1px rgba(255, 255, 255, 0.1);
}

.theme-creative .site-wrapper {
  background-color: #ffffff;
  box-shadow: 0 0 50px rgba(7, 29, 58, 0.08);
}

/* Sticky footer within site-wrapper */
.site-wrapper > .site-footer {
  margin-top: auto;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.22;
  font-weight: 700;
  letter-spacing: -0.025em;
}

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

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

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
}

/* Rating Stars */
.rating-stars {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  color: #0d9488;
  font-size: 0.9rem;
}

.rating-stars .star-empty {
  color: #cbd5e1;
}

.rating-value {
  font-size: 0.85rem;
  font-weight: 700;
  color: #0f172a;
  margin-left: 0.35rem;
}

/* Theme-specific Star & Rating Adjustments */
.theme-creative .rating-stars { color: #f59e0b; }
.theme-creative .rating-stars .star-empty { color: rgba(255, 255, 255, 0.2); }
.theme-creative .rating-value { color: #f8fafc; }

.theme-darkglass .rating-stars { color: #f59e0b; }
.theme-darkglass .rating-stars .star-empty { color: rgba(255, 255, 255, 0.2); }
.theme-darkglass .rating-value { color: #f8fafc; }

.theme-corporate .rating-stars { color: #d97706; }
.theme-corporate .rating-stars .star-empty { color: #cbd5e1; }
.theme-corporate .rating-value { color: #0f172a; }

.theme-ecommerce .rating-stars { color: #f59e0b; }
.theme-ecommerce .rating-stars .star-empty { color: #cbd5e1; }
.theme-ecommerce .rating-value { color: #0f172a; }

.theme-medical .rating-stars { color: #0d9488; }
.theme-medical .rating-stars .star-empty { color: #cbd5e1; }
.theme-medical .rating-value { color: #0f172a; }

/* Flash Toast Notifications */
.toast-container {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.toast {
  padding: 0.85rem 1.35rem;
  border-radius: var(--radius-md);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  animation: slideInRight 0.3s ease-out;
}

.toast-success { background: linear-gradient(135deg, #059669, #10b981); }
.toast-error { background: linear-gradient(135deg, #dc2626, #ef4444); }

@keyframes slideInRight {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* Modals */
.modal-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(10px);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}

.modal-overlay.active { display: flex; }

.modal-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 540px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 30px 70px rgba(0,0,0,0.35);
  position: relative;
  animation: modalScale 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalScale {
  from { transform: scale(0.92) translateY(10px); opacity: 0; }
  to { transform: scale(1) translateY(0); opacity: 1; }
}

/* ==========================================================================
   Universal Form Elements Architecture
   ========================================================================== */
.form-group {
  display: flex !important;
  flex-direction: column !important;
  width: 100% !important;
  margin-bottom: 1rem !important;
}

.form-label {
  display: flex !important;
  align-items: center !important;
  gap: 0.4rem !important;
  width: 100% !important;
  font-size: 0.825rem !important;
  font-weight: 700 !important;
  color: #334155 !important;
  margin-bottom: 0.45rem !important;
}

.form-control {
  display: block !important;
  width: 100% !important;
  box-sizing: border-box !important;
  background: #ffffff !important;
  border: 1.5px solid #cbd5e1 !important;
  border-radius: 9px !important;
  padding: 0.65rem 0.85rem !important;
  font-size: 0.9rem !important;
  color: #1e293b !important;
  font-family: inherit !important;
  transition: all 0.2s ease !important;
}

.form-control:focus {
  outline: none !important;
  border-color: #0284c7 !important;
  box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.18) !important;
}

textarea.form-control {
  resize: vertical !important;
  min-height: 75px !important;
  line-height: 1.5 !important;
}

/* ==========================================================================
   Premium Instant Checkout Modal
   ========================================================================== */
.checkout-modal-card {
  width: 94% !important;
  max-width: 480px !important;
  border-radius: 16px !important;
  box-shadow: 0 25px 70px -15px rgba(15, 23, 42, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.1) !important;
  border: none !important;
  overflow: hidden !important;
  background: #ffffff !important;
}

.checkout-modal-header {
  background: linear-gradient(135deg, #0369a1 0%, #0284c7 50%, #0ea5e9 100%);
  color: #ffffff;
  padding: 0.85rem 1.15rem;
  position: relative;
}

.checkout-close-btn {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-size: 1.15rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  line-height: 1;
}

.checkout-close-btn:hover {
  background: rgba(255, 255, 255, 0.35);
  transform: rotate(90deg) scale(1.05);
}

.checkout-header-top {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.3rem;
}

.checkout-badge {
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(4px);
  color: #ffffff;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 0.15rem 0.45rem;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.checkout-secure-badge {
  background: rgba(16, 185, 129, 0.3);
  color: #a7f3d0;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.15rem 0.45rem;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.checkout-product-title {
  font-size: 1.05rem;
  font-weight: 800;
  margin: 0 0 0.3rem 0;
  color: #ffffff;
  line-height: 1.25;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-shadow: 0 1px 3px rgba(0,0,0,0.15);
}

.checkout-price-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(0, 0, 0, 0.2);
  padding: 0.2rem 0.55rem;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.checkout-price-pill .price-label {
  font-size: 0.72rem;
  opacity: 0.9;
  font-weight: 500;
}

.checkout-price-pill .price-val {
  font-size: 0.95rem;
  font-weight: 800;
  color: #6ee7b7;
}

.checkout-modal-body {
  padding: 0.85rem 1.1rem;
}

/* Calculation & Stepper Card */
.checkout-calc-card {
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  padding: 1rem 1.25rem;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
}

.checkout-calc-card .calc-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  display: block;
  margin-bottom: 0.35rem;
}

.qty-stepper {
  display: inline-flex;
  align-items: center;
  background: #ffffff;
  border: 1.5px solid #cbd5e1;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.qty-stepper .stepper-btn {
  width: 36px;
  height: 36px;
  background: #f1f5f9;
  border: none;
  font-size: 1.15rem;
  font-weight: 800;
  color: #334155;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s ease;
  user-select: none;
}

.qty-stepper .stepper-btn:hover {
  background: #e2e8f0;
  color: #0284c7;
}

.qty-stepper .stepper-btn:active {
  background: #cbd5e1;
  transform: scale(0.95);
}

.qty-stepper .stepper-input {
  width: 48px;
  height: 36px;
  text-align: center;
  border: none;
  font-weight: 800;
  font-size: 1rem;
  color: #0f172a;
  background: #ffffff;
  padding: 0;
  outline: none;
}

.total-payable-box {
  text-align: right;
}

.total-payable-val {
  font-size: 1.5rem;
  font-weight: 900;
  color: #059669;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.checkout-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  margin-bottom: 0.85rem;
}

/* Payment Selection Grid */
.checkout-payment-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.checkout-payment-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #ffffff;
  border: 1.5px solid #cbd5e1;
  border-radius: 10px;
  padding: 0.75rem 0.85rem;
  cursor: pointer;
  position: relative;
  transition: all 0.2s ease;
  user-select: none;
}

.checkout-payment-card:hover {
  border-color: #94a3b8;
  background: #f8fafc;
}

.checkout-payment-card.active {
  border-color: #0284c7;
  background: #f0f9ff;
  box-shadow: 0 4px 14px rgba(2, 132, 199, 0.12);
}

.checkout-payment-card .payment-radio {
  display: none;
}

.payment-card-icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.payment-card-icon.cod-icon {
  background: #e0f2fe;
  color: #0284c7;
}

.payment-card-icon.bkash-icon {
  background: #fce7f3;
  color: #db2777;
}

.payment-card-info {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  min-width: 0;
}

.payment-card-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
}

.payment-card-desc {
  font-size: 0.7rem;
  color: #64748b;
  margin-top: 0.15rem;
}

.payment-check-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid #cbd5e1;
  background: #ffffff;
  flex-shrink: 0;
  position: relative;
  transition: all 0.2s ease;
}

.checkout-payment-card.active .payment-check-dot {
  border-color: #0284c7;
  background: #0284c7;
}

.checkout-payment-card.active .payment-check-dot::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ffffff;
}

.checkout-actions {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  margin-top: 1.35rem;
}

.btn-checkout-cancel {
  padding: 0.85rem 1.4rem;
  border-radius: 9px;
  font-weight: 700;
  font-size: 0.9rem;
  border: 1.5px solid #cbd5e1;
  background: #f8fafc;
  color: #475569;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-checkout-cancel:hover {
  background: #e2e8f0;
  color: #1e293b;
}

.btn-checkout-confirm {
  flex-grow: 1;
  padding: 0.85rem 1.5rem;
  border-radius: 9px;
  font-weight: 800;
  font-size: 1rem;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  cursor: pointer;
  color: #ffffff;
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  box-shadow: 0 4px 16px rgba(2, 132, 199, 0.4);
  transition: all 0.2s ease;
}

.btn-checkout-confirm:hover {
  opacity: 0.95;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(2, 132, 199, 0.45);
}

.btn-checkout-confirm:active {
  transform: translateY(0);
}

/* ==========================================================================
   Multi-Gateway Payment & QR Scanner Step Styles (Pixel-Perfect Low-Profile Modal)
   ========================================================================== */
.checkout-modal-card,
.checkout-modal-card.step-2-active {
  width: 94% !important;
  max-width: 480px !important;
  max-height: 94vh !important;
  display: flex !important;
  flex-direction: column !important;
  border-radius: 16px !important;
  box-shadow: 0 25px 70px -15px rgba(15, 23, 42, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.1) !important;
  border: none !important;
  overflow: hidden !important;
  background: #ffffff !important;
  margin: auto;
}

/* Step 2 Slim Compact Top Bar: Total Payable & Quick Hint */
.checkout-step2-compact-bar {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #ffffff;
  border-radius: 9px;
  padding: 0.4rem 0.75rem;
  margin-bottom: 0.55rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  border: 1px solid #334155;
}

.step2-bar-left {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
}

.step2-bar-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: #94a3b8;
}

.step2-bar-amount {
  font-size: 0.98rem;
  font-weight: 900;
  color: #4ade80;
  line-height: 1;
}

.step2-hint-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.7rem;
  font-weight: 600;
  color: #7dd3fc;
  background: rgba(56, 189, 248, 0.12);
  padding: 0.18rem 0.5rem;
  border-radius: 999px;
  border: 1px solid rgba(56, 189, 248, 0.2);
}

/* Ultra-Compact Single Gateway Horizontal Card (Taking only ~85px height!) */
.checkout-qr-compact-card {
  background: #ffffff !important;
  border: 1.5px solid #e2e8f0 !important;
  border-radius: 11px !important;
  padding: 0.5rem 0.65rem !important;
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 0.65rem !important;
  margin-bottom: 0.55rem !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03) !important;
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
  text-align: left !important;
}

.checkout-qr-compact-card.bkash-card {
  border-color: #e2136e !important;
  box-shadow: 0 2px 10px rgba(226, 19, 110, 0.08) !important;
}

.checkout-qr-compact-card.nagad-card {
  border-color: #ea580c !important;
  box-shadow: 0 2px 10px rgba(234, 88, 12, 0.08) !important;
}

.checkout-qr-compact-card.bangla-card {
  border-color: #006a4e !important;
  box-shadow: 0 2px 10px rgba(0, 106, 78, 0.08) !important;
}

.checkout-qr-compact-card.custom-card {
  border-color: #4f46e5 !important;
  box-shadow: 0 2px 10px rgba(79, 70, 229, 0.08) !important;
}

.qr-compact-thumb {
  width: 78px;
  height: 78px;
  min-width: 78px;
  max-width: 78px;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  padding: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.qr-compact-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.qr-compact-details {
  flex-grow: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.22rem;
}

.qr-compact-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.35rem;
}

.qr-compact-status {
  font-size: 0.65rem;
  font-weight: 700;
  color: #10b981;
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
}

.compact-brand {
  font-size: 0.72rem !important;
  font-weight: 800 !important;
  padding: 0.12rem 0.45rem !important;
  margin-bottom: 0 !important;
}

.qr-card-brand.bkash { background: #fdf2f8; color: #e2136e; }
.qr-card-brand.nagad { background: #fff7ed; color: #ea580c; }
.qr-card-brand.bangla { background: #ecfdf5; color: #006a4e; }
.qr-card-brand.custom { background: #eef2ff; color: #4f46e5; }

.qr-compact-account-row {
  background: #f8fafc;
  border: 1px dashed #cbd5e1;
  border-radius: 6px;
  padding: 0.2rem 0.45rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.35rem;
}

.qr-compact-account-num {
  font-family: monospace;
  font-size: 0.92rem;
  font-weight: 900;
  color: #0f172a;
  letter-spacing: 0.03em;
}

.btn-copy-compact {
  padding: 0.12rem 0.4rem !important;
  font-size: 0.68rem !important;
  font-weight: 700 !important;
  border-radius: 4px !important;
}

.btn-copy-account {
  background: #ffffff;
  border: 1px solid #cbd5e1;
  color: #475569;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  transition: all 0.15s ease;
  flex-shrink: 0;
}

.btn-copy-account:hover {
  background: #0284c7;
  border-color: #0284c7;
  color: #ffffff;
}

.btn-copy-account.copied {
  background: #10b981 !important;
  border-color: #10b981 !important;
  color: #ffffff !important;
}

.qr-compact-instruction {
  font-size: 0.68rem;
  color: #64748b;
  line-height: 1.25;
  margin: 0;
}

/* Multi-gateway grid (When 2+ gateways are active) */
.checkout-gateway-tabs.compact-gateway-tabs {
  display: flex;
  gap: 0.35rem;
  overflow-x: auto;
  padding-bottom: 0.25rem;
  margin-bottom: 0.45rem;
  scrollbar-width: none;
}
.checkout-gateway-tabs.compact-gateway-tabs::-webkit-scrollbar {
  display: none;
}

.gateway-tab-btn {
  background: #f1f5f9;
  border: 1.5px solid #e2e8f0;
  border-radius: 7px;
  padding: 0.25rem 0.55rem;
  font-size: 0.74rem;
  font-weight: 700;
  color: #475569;
  cursor: pointer;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: all 0.15s ease;
}

.gateway-tab-btn:hover {
  border-color: #cbd5e1;
  background: #e2e8f0;
}

.gateway-tab-btn.active {
  background: #0284c7;
  border-color: #0284c7;
  color: #ffffff;
}

.gateway-tab-btn.active.bkash-tab { background: #e2136e; border-color: #e2136e; }
.gateway-tab-btn.active.nagad-tab { background: #f97316; border-color: #f97316; }
.gateway-tab-btn.active.bangla-tab { background: #006a4e; border-color: #006a4e; }
.gateway-tab-btn.active.custom-tab { background: #4f46e5; border-color: #4f46e5; }

.checkout-qr-grid.compact-qr-grid {
  display: grid;
  gap: 0.5rem;
  margin-bottom: 0.55rem;
}

.checkout-qr-grid.compact-qr-grid[data-count="2"] {
  grid-template-columns: 1fr 1fr;
}

.checkout-qr-grid.compact-qr-grid[data-count="3"] {
  grid-template-columns: 1fr 1fr;
}
.checkout-qr-grid.compact-qr-grid[data-count="3"] .checkout-qr-card:last-child {
  grid-column: 1 / -1;
  max-width: 220px;
  margin: 0 auto;
  width: 100%;
}

.checkout-qr-grid.compact-qr-grid[data-count="4"],
.checkout-qr-grid.compact-qr-grid[data-count="5"] {
  grid-template-columns: 1fr 1fr;
}

.checkout-qr-card {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  padding: 0.5rem 0.45rem;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
}

.checkout-qr-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 14px rgba(0, 0, 0, 0.08);
}

.checkout-qr-card.active {
  box-shadow: 0 0 0 2px #0284c7, 0 5px 16px rgba(2, 132, 199, 0.16) !important;
}

.checkout-qr-card.bkash-card { border-top: 3px solid #e2136e; }
.checkout-qr-card.bkash-card.active {
  box-shadow: 0 0 0 2px #e2136e, 0 5px 16px rgba(226, 19, 110, 0.16) !important;
  border-color: #e2136e;
}

.checkout-qr-card.nagad-card { border-top: 3px solid #f97316; }
.checkout-qr-card.nagad-card.active {
  box-shadow: 0 0 0 2px #f97316, 0 5px 16px rgba(249, 115, 22, 0.16) !important;
  border-color: #f97316;
}

.checkout-qr-card.bangla-card { border-top: 3px solid #006a4e; }
.checkout-qr-card.bangla-card.active {
  box-shadow: 0 0 0 2px #006a4e, 0 5px 16px rgba(0, 106, 78, 0.16) !important;
  border-color: #006a4e;
}

.checkout-qr-card.custom-card { border-top: 3px solid #6366f1; }
.checkout-qr-card.custom-card.active {
  box-shadow: 0 0 0 2px #6366f1, 0 5px 16px rgba(99, 102, 241, 0.16) !important;
  border-color: #6366f1;
}

.card-select-badge {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1.5px solid #cbd5e1;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  color: transparent;
  transition: all 0.2s ease;
}

.checkout-qr-card.active .card-select-badge {
  background: #0284c7;
  border-color: #0284c7;
  color: #ffffff;
}
.checkout-qr-card.bkash-card.active .card-select-badge { background: #e2136e; border-color: #e2136e; }
.checkout-qr-card.nagad-card.active .card-select-badge { background: #f97316; border-color: #f97316; }
.checkout-qr-card.bangla-card.active .card-select-badge { background: #006a4e; border-color: #006a4e; }
.checkout-qr-card.custom-card.active .card-select-badge { background: #6366f1; border-color: #6366f1; }

.qr-image-wrapper.compact-qr-wrapper {
  width: 100%;
  max-width: 72px;
  height: 72px;
  margin: 0 auto 0.25rem auto;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
  background: #ffffff;
  padding: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qr-image-wrapper.compact-qr-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.compact-acc-row {
  background: #f8fafc;
  border: 1px dashed #cbd5e1;
  border-radius: 5px;
  padding: 0.2rem 0.35rem;
  margin-bottom: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.25rem;
}

.qr-account-number {
  font-family: monospace;
  font-size: 0.76rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: 0.02em;
  word-break: break-all;
}

.compact-instruction {
  font-size: 0.65rem;
  color: #64748b;
  line-height: 1.2;
  margin-top: 0.15rem;
}

/* Verification Section */
.checkout-trx-section {
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  padding: 0.5rem 0.7rem;
  margin-bottom: 0.55rem;
}

.trx-compact-heading {
  font-size: 0.74rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 0.35rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.compact-channel-wrapper {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.35rem;
}

.compact-channel-title {
  font-size: 0.7rem;
  font-weight: 700;
  color: #475569;
  white-space: nowrap;
}

.checkout-channel-pills {
  display: flex;
  gap: 0.3rem;
  flex-wrap: wrap;
  margin-bottom: 0;
}

.channel-pill-label {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: 5px;
  padding: 0.18rem 0.45rem;
  font-size: 0.7rem;
  font-weight: 700;
  cursor: pointer;
  color: #334155;
  transition: all 0.15s ease;
  user-select: none;
}

.channel-pill-label:hover {
  border-color: #94a3b8;
}

.channel-pill-label.active {
  border-color: #0284c7;
  background: #f0f9ff;
  color: #0369a1;
  box-shadow: 0 1px 4px rgba(2, 132, 199, 0.15);
}

.channel-pill-label input[type="radio"] {
  display: none;
}

/* Compact Inputs Grid (Side-by-side on all screens) */
.compact-form-grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 0.45rem !important;
  margin-bottom: 0 !important;
}

.compact-label {
  font-size: 0.72rem !important;
  font-weight: 700 !important;
  color: #334155 !important;
  margin-bottom: 0.18rem !important;
  display: block !important;
}

.compact-input {
  height: 35px !important;
  font-size: 0.82rem !important;
  padding: 0.3rem 0.55rem !important;
  border-radius: 6px !important;
  border: 1.5px solid #cbd5e1 !important;
  background: #ffffff !important;
  box-sizing: border-box !important;
}

.compact-input:focus {
  border-color: #0284c7 !important;
  box-shadow: 0 0 0 2px rgba(2, 132, 199, 0.15) !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

/* Action Buttons & Single-Row Layout */
.compact-actions {
  display: flex !important;
  flex-direction: row !important;
  gap: 0.45rem !important;
  margin-top: 0.55rem !important;
}

.compact-btn-back {
  height: 38px !important;
  padding: 0.35rem 0.75rem !important;
  font-size: 0.8rem !important;
  font-weight: 700 !important;
  border-radius: 8px !important;
  border: 1.5px solid #cbd5e1 !important;
  background: #f8fafc !important;
  color: #334155 !important;
  cursor: pointer !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.35rem !important;
  flex: 0 0 auto !important;
  transition: all 0.2s ease;
}

.compact-btn-back:hover {
  background: #e2e8f0 !important;
  color: #0f172a !important;
}

.compact-btn-confirm {
  height: 38px !important;
  padding: 0.35rem 1rem !important;
  font-size: 0.86rem !important;
  font-weight: 800 !important;
  border-radius: 8px !important;
  border: none !important;
  color: #ffffff !important;
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%) !important;
  box-shadow: 0 3px 12px rgba(2, 132, 199, 0.35) !important;
  cursor: pointer !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.4rem !important;
  flex: 1 1 auto !important;
  transition: all 0.2s ease;
}

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

.compact-trust {
  text-align: center !important;
  margin-top: 0.35rem !important;
  font-size: 0.68rem !important;
  color: #64748b !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.35rem !important;
}

.compact-trust i {
  color: #10b981;
}

/* Modal Mobile Responsiveness */
@media (max-width: 576px) {
  .modal-overlay {
    padding: 0.5rem !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .checkout-modal-card {
    max-height: 96vh !important;
    border-radius: 16px !important;
    width: 96% !important;
    margin: auto !important;
  }

  .checkout-modal-header {
    padding: 0.75rem 1rem !important;
  }

  .checkout-product-title {
    font-size: 1rem !important;
  }

  .checkout-modal-body {
    padding: 0.75rem 0.85rem !important;
    max-height: calc(96vh - 85px) !important;
  }

  .compact-form-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 0.4rem !important;
  }

  .checkout-payment-grid {
    grid-template-columns: 1fr !important;
    gap: 0.5rem !important;
  }

  .checkout-actions.compact-actions {
    flex-direction: row !important;
    gap: 0.4rem !important;
  }

  .compact-btn-back {
    padding: 0.35rem 0.6rem !important;
    font-size: 0.78rem !important;
  }

  .compact-btn-confirm {
    padding: 0.35rem 0.75rem !important;
    font-size: 0.82rem !important;
  }
}

/* Table Responsive Container */
.table-responsive {
  width: 100% !important;
  overflow-x: auto !important;
  -webkit-overflow-scrolling: touch !important;
}

/* Category & Filter Tabs Horizontal Scroll on Mobile */
.category-filter-nav,
.filter-tab-btn-wrapper,
.category-pill-container {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 0.5rem !important;
}

@media (max-width: 768px) {
  .category-filter-nav,
  .filter-tab-btn-wrapper,
  .category-pill-container {
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    padding-bottom: 0.5rem !important;
    scrollbar-width: none !important;
  }
  .category-filter-nav::-webkit-scrollbar,
  .filter-tab-btn-wrapper::-webkit-scrollbar,
  .category-pill-container::-webkit-scrollbar {
    display: none !important;
  }
  .category-pill,
  .filter-tab-btn {
    white-space: nowrap !important;
    flex-shrink: 0 !important;
  }
}

/* Prevent accidental horizontal overflow globally */
html, body {
  max-width: 100% !important;
  overflow-x: hidden !important;
}

/* ==========================================================================
   Standardized 4-Column Responsive Grid Architecture (Universal Desktop 4-Col)
   ========================================================================== */
.product-grid,
.products-grid,
.portfolio-grid,
.portfolios-grid,
.team-grid,
.reviews-grid,
.glass-grid,
.four-col-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 1rem !important;
  align-items: stretch !important;
}

@media (max-width: 1024px) {
  .product-grid,
  .products-grid,
  .portfolio-grid,
  .portfolios-grid,
  .team-grid,
  .reviews-grid,
  .glass-grid,
  .four-col-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1.15rem !important;
  }
}

@media (max-width: 640px) {
  .product-grid,
  .products-grid,
  .portfolio-grid,
  .portfolios-grid,
  .team-grid,
  .reviews-grid,
  .glass-grid,
  .four-col-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }
}

/* Standardized 4-Column Portfolio / Case Studies Architecture */
.portfolio-card {
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.portfolio-card:hover {
  transform: translateY(-5px);
}

.portfolio-img-wrapper,
.portfolio-img-wrap,
.portfolio-img-box {
  height: 130px !important;
  width: 100% !important;
  overflow: hidden !important;
  position: relative !important;
  background: #f1f5f9 !important;
}

.portfolio-img-wrapper img,
.portfolio-img-wrap img,
.portfolio-img-box img,
.portfolio-img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  transition: transform 0.4s ease !important;
}

.portfolio-card:hover .portfolio-img,
.portfolio-card:hover .portfolio-img-wrapper img,
.portfolio-card:hover .portfolio-img-wrap img,
.portfolio-card:hover .portfolio-img-box img {
  transform: scale(1.05) !important;
}

.portfolio-body,
.portfolio-info,
.portfolio-content {
  padding: 1.25rem !important;
  display: flex !important;
  flex-direction: column !important;
  flex-grow: 1 !important;
}

.portfolio-title {
  font-size: 1.05rem !important;
  font-weight: 800 !important;
  line-height: 1.35 !important;
  margin-bottom: 0.45rem !important;
  min-height: 2.8rem !important;
}

.portfolio-summary,
.portfolio-desc {
  font-size: 0.825rem !important;
  line-height: 1.5 !important;
  margin-bottom: 0.85rem !important;
  flex-grow: 1 !important;
}

.tech-pill,
.tech-tag {
  display: inline-block !important;
  font-size: 0.72rem !important;
  font-weight: 700 !important;
  padding: 0.2rem 0.55rem !important;
  border-radius: 4px !important;
  margin-right: 0.3rem !important;
  margin-bottom: 0.35rem !important;
}


.product-card {
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
  background: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  position: relative;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.product-img-box,
.product-img-wrapper,
.product-img-wrap,
.product-image-container {
  height: 165px !important;
  width: 100% !important;
  overflow: hidden !important;
  position: relative !important;
  background: #ffffff !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0;
  border-bottom: 1px solid #f1f5f9;
}

.product-img,
.product-image {
  height: 100% !important;
  width: 100% !important;
  object-fit: contain !important;
  display: block !important;
  padding: 6px !important;
  transition: transform 0.4s ease;
}

.product-card:hover .product-img,
.product-card:hover .product-image {
  transform: scale(1.03);
}

.product-info,
.product-details,
.product-body {
  display: flex !important;
  flex-direction: column !important;
  flex-grow: 1 !important;
  padding: 0.85rem 0.95rem 0.95rem !important;
}

.product-cat,
.product-category,
.product-tag {
  font-size: 0.7rem !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  margin-bottom: 0.25rem !important;
}

.product-title,
.product-name {
  font-size: 0.925rem !important;
  font-weight: 800 !important;
  line-height: 1.35 !important;
  margin-bottom: 0.35rem !important;
  min-height: 2.3rem !important;
  max-height: 2.7rem !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

.product-rating-wrap {
  margin-bottom: 0.35rem !important;
}

.product-desc,
.product-summary {
  font-size: 0.78rem !important;
  color: #64748b;
  line-height: 1.45 !important;
  margin-bottom: 0.45rem !important;
  min-height: 2.1rem !important;
  max-height: 2.4rem !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

.product-footer,
.product-price-row {
  margin-top: auto !important;
  padding-top: 0.65rem !important;
  border-top: 1px solid rgba(0, 0, 0, 0.06) !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
  gap: 0.5rem !important;
}

.product-price-col {
  display: flex !important;
  align-items: baseline !important;
  justify-content: center !important;
  gap: 0.5rem !important;
  width: 100% !important;
  text-align: center !important;
}

.product-price-main,
.price-current {
  font-size: 1.35rem !important;
  font-weight: 900 !important;
  line-height: 1.1 !important;
}

.product-price-old,
.price-original {
  font-size: 0.85rem !important;
  color: #94a3b8 !important;
  text-decoration: line-through !important;
}

/* ==========================================================================
   Universal High-End Product Buy / Order Button Architecture
   ========================================================================== */
.product-buy-btn,
.btn-buy-now,
.open-product-modal-trigger {
  white-space: nowrap !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.45rem !important;
  padding: 0.55rem 1.15rem !important;
  font-size: 0.825rem !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  border: none !important;
  text-decoration: none !important;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
  color: #ffffff !important;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15) !important;
}

.product-footer .product-buy-btn {
  width: 100% !important;
}

.product-buy-btn i,
.btn-buy-now i,
.open-product-modal-trigger i {
  font-size: 0.85rem !important;
  line-height: 1 !important;
  vertical-align: middle !important;
}

.product-buy-btn span,
.btn-buy-now span,
.open-product-modal-trigger span {
  line-height: 1 !important;
  display: inline-block !important;
  vertical-align: middle !important;
}

.product-buy-btn:hover,
.btn-buy-now:hover,
.open-product-modal-trigger:hover {
  transform: translateY(-2px) !important;
}

/* Category Filter Bar Shared Architecture */
.category-filter-bar {
  display: flex !important;
  gap: 0.5rem !important;
  margin-bottom: 1.5rem !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
}

.category-pill {
  padding: 0.45rem 1rem !important;
  border-radius: var(--radius-full) !important;
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  font-size: 0.8rem !important;
  font-weight: 700 !important;
  color: #475569 !important;
  cursor: pointer !important;
  transition: all var(--transition-fast) !important;
}

.category-pill:hover,
.category-pill.active {
  transform: translateY(-2px) !important;
}

/* ==========================================================================
   Cohesive Per-Theme Color Systems
   ========================================================================== */

/* --- THEME 1: eCommerce (Emerald Green Signature #059669) --- */
.theme-ecommerce .product-buy-btn,
.theme-ecommerce .btn-buy-now {
  background: linear-gradient(135deg, #059669 0%, #10b981 100%) !important;
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.35) !important;
}
.theme-ecommerce .product-buy-btn:hover,
.theme-ecommerce .btn-buy-now:hover {
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.5) !important;
}
.theme-ecommerce .product-price-main {
  color: #059669 !important;
}
.theme-ecommerce .product-cat,
.theme-ecommerce .product-tag {
  color: #059669 !important;
  background: #ecfdf5 !important;
  border: 1px solid #d1fae5 !important;
  border-radius: 6px !important;
  padding: 0.2rem 0.5rem !important;
}
.theme-ecommerce .category-pill.active,
.theme-ecommerce .category-pill:hover {
  background: linear-gradient(135deg, #059669 0%, #10b981 100%) !important;
  color: #ffffff !important;
  border-color: #059669 !important;
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.3) !important;
}
.theme-ecommerce .skills-section {
  background: #f8fafc !important;
}
.theme-ecommerce .skills-heading {
  color: #064e3b !important;
}
.theme-ecommerce .skills-lead {
  color: #065f46 !important;
}
.theme-ecommerce .seekbar-label {
  color: #065f46 !important;
  font-weight: 700 !important;
}
.theme-ecommerce .seekbar-track {
  background: #e2e8f0 !important;
}
.theme-ecommerce .seekbar-fill {
  background: linear-gradient(90deg, #059669 0%, #10b981 100%) !important;
}
.theme-ecommerce .seekbar-percent {
  color: #059669 !important;
}
.theme-ecommerce .skills-badge-tag {
  color: #059669 !important;
  background: #ecfdf5 !important;
  border-color: #a7f3d0 !important;
}
.theme-ecommerce .video-play-btn {
  color: #059669 !important;
}
.theme-ecommerce .video-play-btn:hover {
  background: #059669 !important;
  color: #ffffff !important;
  box-shadow: 0 15px 35px rgba(16, 185, 129, 0.45) !important;
}
.theme-ecommerce .counter-divider {
  background: #10b981 !important;
}
.theme-ecommerce .counter-item:hover {
  border-color: rgba(16, 185, 129, 0.4) !important;
}
.theme-ecommerce .modal-header-theme {
  background: linear-gradient(135deg, #065f46 0%, #059669 100%) !important;
}
.theme-ecommerce .modal-btn-theme {
  background: linear-gradient(135deg, #059669 0%, #10b981 100%) !important;
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.4) !important;
}

/* --- THEME 2: Medical & Clinical (Sapphire Blue Signature #0284c7) --- */
.theme-medical .product-buy-btn,
.theme-medical .btn-buy-now {
  background: linear-gradient(135deg, #0284c7 0%, #0ea5e9 100%) !important;
  box-shadow: 0 4px 14px rgba(2, 132, 199, 0.35) !important;
}
.theme-medical .product-buy-btn:hover,
.theme-medical .btn-buy-now:hover {
  box-shadow: 0 6px 20px rgba(2, 132, 199, 0.5) !important;
}
.theme-medical .product-price-main,
.theme-medical .current-price {
  color: #0284c7 !important;
}
.theme-medical .product-cat,
.theme-medical .product-tag {
  color: #0284c7 !important;
  background: #f0f9ff !important;
  border: 1px solid #bae6fd !important;
  border-radius: 6px !important;
  padding: 0.2rem 0.5rem !important;
}
.theme-medical .category-pill.active,
.theme-medical .category-pill:hover {
  background: linear-gradient(135deg, #0284c7 0%, #0ea5e9 100%) !important;
  color: #ffffff !important;
  border-color: #0284c7 !important;
  box-shadow: 0 4px 14px rgba(2, 132, 199, 0.3) !important;
}
.theme-medical .seekbar-fill {
  background: linear-gradient(90deg, #0284c7 0%, #38bdf8 100%) !important;
}
.theme-medical .seekbar-percent {
  color: #0284c7 !important;
}
.theme-medical .skills-badge-tag {
  color: #0284c7 !important;
  background: #f0f9ff !important;
  border-color: #bae6fd !important;
}
.theme-medical .video-play-btn {
  color: #0284c7 !important;
}
.theme-medical .video-play-btn:hover {
  background: #0284c7 !important;
  color: #ffffff !important;
  box-shadow: 0 15px 35px rgba(2, 132, 199, 0.45) !important;
}
.theme-medical .counter-divider {
  background: #0284c7 !important;
}
.theme-medical .counter-item:hover {
  border-color: rgba(2, 132, 199, 0.4) !important;
}
.theme-medical .modal-header-theme {
  background: linear-gradient(135deg, #0369a1 0%, #0284c7 100%) !important;
}
.theme-medical .modal-btn-theme {
  background: linear-gradient(135deg, #0284c7 0%, #0ea5e9 100%) !important;
  box-shadow: 0 4px 14px rgba(2, 132, 199, 0.4) !important;
}

/* --- THEME 3: Creative Tech (Cyberpunk Electric Neon Violet #8b5cf6) --- */
.theme-creative .product-buy-btn,
.theme-creative .btn-buy-now {
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%) !important;
  box-shadow: 0 4px 16px rgba(139, 92, 246, 0.4) !important;
  font-family: monospace !important;
  border: 1px solid rgba(139, 92, 246, 0.4) !important;
}
.theme-creative .product-buy-btn:hover,
.theme-creative .btn-buy-now:hover {
  background: linear-gradient(135deg, #9333ea 0%, #8b5cf6 100%) !important;
  box-shadow: 0 6px 24px rgba(139, 92, 246, 0.65) !important;
}
.theme-creative .product-price-main {
  color: #c084fc !important;
}
.theme-creative .product-cat,
.theme-creative .product-tag {
  color: #c084fc !important;
  background: rgba(139, 92, 246, 0.12) !important;
  border: 1px solid rgba(139, 92, 246, 0.3) !important;
  border-radius: 6px !important;
  padding: 0.2rem 0.5rem !important;
  font-family: monospace !important;
}
.theme-creative .category-pill {
  background: #13122b !important;
  color: #a5b4fc !important;
  border: 1px solid rgba(139, 92, 246, 0.25) !important;
  font-family: monospace !important;
}
.theme-creative .category-pill.active,
.theme-creative .category-pill:hover {
  background: linear-gradient(135deg, #8b5cf6 0%, #d946ef 100%) !important;
  color: #ffffff !important;
  border-color: #8b5cf6 !important;
  box-shadow: 0 0 16px rgba(139, 92, 246, 0.5) !important;
}
/* --- THEME 3: Ziva DRA / Regulatory Affairs (Navy #071d3a & Royal Blue #145ed9 & Emerald #1f9d6b) --- */
.theme-creative .skills-section {
  background: #f8fafc !important;
  color: #1e293b !important;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}
.theme-creative .skills-heading {
  color: #071d3a !important;
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-weight: 800 !important;
}
.theme-creative .skills-lead {
  color: #475569 !important;
}
.theme-creative .seekbar-label {
  color: #071d3a !important;
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-weight: 700 !important;
}
.theme-creative .seekbar-track {
  background: #e2e8f0 !important;
  border-radius: 9999px !important;
  height: 9px !important;
}
.theme-creative .seekbar-fill {
  background: linear-gradient(90deg, #145ed9 0%, #06b6d4 100%) !important;
  box-shadow: 0 2px 10px rgba(20, 94, 217, 0.35) !important;
  border-radius: 9999px !important;
}
.theme-creative .seekbar-percent {
  color: #145ed9 !important;
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-weight: 800 !important;
}
.theme-creative .skills-badge-tag {
  color: #145ed9 !important;
  background: #edf4ff !important;
  border: 1px solid #bfdbfe !important;
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-weight: 700 !important;
}
.theme-creative .video-play-btn {
  background: #145ed9 !important;
  color: #ffffff !important;
  border: none !important;
  box-shadow: 0 8px 25px rgba(20, 94, 217, 0.4) !important;
}
.theme-creative .video-play-btn:hover {
  background: #0f4fb9 !important;
  color: #ffffff !important;
  transform: scale(1.08) !important;
  box-shadow: 0 12px 30px rgba(20, 94, 217, 0.5) !important;
}
.theme-creative .counter-divider {
  background: #145ed9 !important;
}
.theme-creative .counter-item:hover {
  border-color: #145ed9 !important;
  box-shadow: 0 4px 18px rgba(20, 94, 217, 0.25) !important;
}
.theme-creative .modal-header-theme {
  background: linear-gradient(135deg, #071d3a 0%, #0b2a52 100%) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15) !important;
}
.theme-creative .modal-btn-theme {
  background: linear-gradient(135deg, #145ed9 0%, #0f4fb9 100%) !important;
  box-shadow: 0 4px 18px rgba(20, 94, 217, 0.4) !important;
}


/* --- THEME 4: Corporate Advisory (Royal Navy #1e3a8a & Champagne Gold #d97706) --- */
.theme-corporate .product-buy-btn,
.theme-corporate .btn-buy-now {
  background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%) !important;
  box-shadow: 0 4px 14px rgba(30, 58, 138, 0.35) !important;
  border: 1px solid #1e3a8a !important;
}
.theme-corporate .product-buy-btn:hover,
.theme-corporate .btn-buy-now:hover {
  background: linear-gradient(135deg, #172554 0%, #1e3a8a 100%) !important;
  box-shadow: 0 6px 20px rgba(30, 58, 138, 0.5) !important;
}
.theme-corporate .product-price-main {
  color: #1e3a8a !important;
}
.theme-corporate .product-cat,
.theme-corporate .product-tag {
  color: #b45309 !important;
  background: #fef3c7 !important;
  border: 1px solid #fde68a !important;
  border-radius: 6px !important;
  padding: 0.2rem 0.5rem !important;
}
.theme-corporate .category-pill.active,
.theme-corporate .category-pill:hover {
  background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%) !important;
  color: #ffffff !important;
  border-color: #d97706 !important;
  box-shadow: 0 4px 14px rgba(30, 58, 138, 0.3) !important;
}
.theme-corporate .skills-section {
  background: #f8fafc !important;
}
.theme-corporate .skills-heading {
  color: #0f172a !important;
}
.theme-corporate .skills-lead {
  color: #475569 !important;
}
.theme-corporate .seekbar-label {
  color: #1e293b !important;
  font-weight: 700 !important;
}
.theme-corporate .seekbar-track {
  background: #e2e8f0 !important;
}
.theme-corporate .seekbar-fill {
  background: linear-gradient(90deg, #1e3a8a 0%, #d97706 100%) !important;
}
.theme-corporate .seekbar-percent {
  color: #1e3a8a !important;
}
.theme-corporate .skills-badge-tag {
  color: #b45309 !important;
  background: #fef3c7 !important;
  border-color: #fde68a !important;
}
.theme-corporate .video-play-btn {
  color: #1e3a8a !important;
  border: 1px solid #e2e8f0 !important;
}
.theme-corporate .video-play-btn:hover {
  background: #1e3a8a !important;
  color: #ffffff !important;
  box-shadow: 0 15px 35px rgba(30, 58, 138, 0.45) !important;
}
.theme-corporate .counter-divider {
  background: #d97706 !important;
}
.theme-corporate .counter-item:hover {
  border-color: #d97706 !important;
}
.theme-corporate .modal-header-theme {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%) !important;
}
.theme-corporate .modal-btn-theme {
  background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%) !important;
  box-shadow: 0 4px 14px rgba(30, 58, 138, 0.4) !important;
}

/* --- THEME 5: Dark Glassmorphism (Cosmic Aquamarine Signature #06b6d4) --- */
.theme-darkglass .product-buy-btn,
.theme-darkglass .btn-buy-now {
  background: linear-gradient(135deg, #06b6d4 0%, #0284c7 100%) !important;
  box-shadow: 0 0 18px rgba(6, 182, 212, 0.45) !important;
  border: 1px solid rgba(6, 182, 212, 0.4) !important;
}
.theme-darkglass .product-buy-btn:hover,
.theme-darkglass .btn-buy-now:hover {
  box-shadow: 0 0 26px rgba(6, 182, 212, 0.7) !important;
}
.theme-darkglass .product-price-main {
  color: #38bdf8 !important;
}
.theme-darkglass .product-cat,
.theme-darkglass .product-tag {
  color: #38bdf8 !important;
  background: rgba(6, 182, 212, 0.12) !important;
  border: 1px solid rgba(6, 182, 212, 0.3) !important;
  border-radius: 6px !important;
  padding: 0.2rem 0.5rem !important;
}
.theme-darkglass .category-pill {
  background: rgba(255, 255, 255, 0.05) !important;
  color: #94a3b8 !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  backdrop-filter: blur(10px) !important;
}
.theme-darkglass .category-pill.active,
.theme-darkglass .category-pill:hover {
  background: linear-gradient(135deg, #06b6d4 0%, #0284c7 100%) !important;
  color: #ffffff !important;
  border-color: #06b6d4 !important;
  box-shadow: 0 0 16px rgba(6, 182, 212, 0.45) !important;
}
.theme-darkglass .skills-section {
  background: transparent !important;
  color: #f8fafc !important;
}
.theme-darkglass .skills-heading {
  color: #ffffff !important;
}
.theme-darkglass .skills-lead {
  color: #94a3b8 !important;
}
.theme-darkglass .seekbar-label {
  color: #f1f5f9 !important;
}
.theme-darkglass .seekbar-track {
  background: rgba(255, 255, 255, 0.1) !important;
}
.theme-darkglass .seekbar-fill {
  background: linear-gradient(90deg, #06b6d4 0%, #38bdf8 100%) !important;
  box-shadow: 0 0 12px rgba(6, 182, 212, 0.5) !important;
}
.theme-darkglass .seekbar-percent {
  color: #38bdf8 !important;
}
.theme-darkglass .skills-badge-tag {
  color: #38bdf8 !important;
  background: rgba(6, 182, 212, 0.15) !important;
  border-color: rgba(6, 182, 212, 0.3) !important;
}
.theme-darkglass .video-play-btn {
  background: rgba(255, 255, 255, 0.1) !important;
  color: #38bdf8 !important;
  border: 1px solid rgba(56, 189, 248, 0.4) !important;
  box-shadow: 0 0 20px rgba(56, 189, 248, 0.4) !important;
}
.theme-darkglass .video-play-btn:hover {
  background: #06b6d4 !important;
  color: #ffffff !important;
  box-shadow: 0 0 35px rgba(6, 182, 212, 0.7) !important;
}
.theme-darkglass .counter-divider {
  background: #06b6d4 !important;
}
.theme-darkglass .counter-item:hover {
  border-color: rgba(6, 182, 212, 0.5) !important;
  box-shadow: 0 0 25px rgba(6, 182, 212, 0.25) !important;
}
.theme-darkglass .modal-header-theme {
  background: linear-gradient(135deg, #030712 0%, #082f49 100%) !important;
  border-bottom: 1px solid rgba(6, 182, 212, 0.3) !important;
}
.theme-darkglass .modal-btn-theme {
  background: linear-gradient(135deg, #06b6d4 0%, #0284c7 100%) !important;
  box-shadow: 0 0 18px rgba(6, 182, 212, 0.5) !important;
}

/* ==========================================================================
   Skill Seekbars & Video Section (Compact Pro Spacing)
   ========================================================================== */
.skills-section {
  padding: 3rem 0;
  background: #ffffff;
  position: relative;
}

.skills-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.skills-image-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  background: #0f172a;
}

.skills-main-img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.skills-image-card:hover .skills-main-img {
  transform: scale(1.03);
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #ffffff;
  color: #0284c7;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
  border: none;
  cursor: pointer;
  transition: all var(--transition-bounce);
  z-index: 2;
  padding-left: 4px;
}

.video-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.15);
  background: #0284c7;
  color: #ffffff;
  box-shadow: 0 20px 45px rgba(2, 132, 199, 0.5);
}

.video-pulse-ring {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.85);
  animation: videoPulse 2.2s infinite cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

@keyframes videoPulse {
  0% { transform: scale(1); opacity: 0.9; }
  100% { transform: scale(1.75); opacity: 0; }
}

.skills-badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.775rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #0284c7;
  background: #e0f2fe;
  border: 1px solid #bae6fd;
  padding: 0.3rem 0.85rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.6rem;
}

.skills-heading {
  font-size: 1.85rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.25;
  margin-bottom: 0.5rem;
}

.skills-lead {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.seekbars-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.seekbar-item {
  width: 100%;
}

.seekbar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.45rem;
}

.seekbar-label {
  font-size: 0.9rem;
  font-weight: 700;
  color: #1e293b;
}

.seekbar-percent {
  font-size: 0.85rem;
  font-weight: 800;
  color: #0284c7;
}

.seekbar-track {
  height: 9px;
  width: 100%;
  background: #e2e8f0;
  border-radius: var(--radius-full);
  overflow: hidden;
  position: relative;
}

.seekbar-fill {
  height: 100%;
  border-radius: var(--radius-full);
  background: linear-gradient(90deg, #0284c7, #38bdf8);
  transition: width 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   Statistics & Counter Numbers Bar (Theme-Harmonized & Responsive)
   ========================================================================== */
.counters-section {
  padding: 3rem 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
  transition: background 0.3s ease;
}

.counters-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.counter-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.85rem 1.25rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal), background var(--transition-normal);
}

.counter-item:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.35);
}

.counter-number-wrap {
  font-size: 3rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
  letter-spacing: -0.03em;
  display: inline-flex;
  align-items: baseline;
  background: linear-gradient(180deg, #ffffff 40%, #cbd5e1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.counter-divider {
  width: 44px;
  height: 3.5px;
  background: #38bdf8;
  margin: 0.9rem auto;
  border-radius: 4px;
  transition: width 0.3s ease, background 0.3s ease;
}

.counter-item:hover .counter-divider {
  width: 58px;
}

.counter-label {
  font-size: 0.95rem;
  font-weight: 700;
  color: #cbd5e1;
  text-transform: capitalize;
  letter-spacing: 0.01em;
  line-height: 1.35;
}

/* ==========================================================================
   Promotional Banner for SELF & Super Dealer ID (Theme Harmonized)
   ========================================================================== */
.self-affiliate-bar {
  border-radius: 14px;
  padding: 1.15rem 1.65rem;
  margin-bottom: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.25rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.self-affiliate-content {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1 1 320px;
}

.self-affiliate-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 900;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.self-affiliate-bar:hover .self-affiliate-icon {
  transform: scale(1.08) rotate(3deg);
}

.self-affiliate-title-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.self-affiliate-badge {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.2rem 0.6rem;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
}

.self-affiliate-heading {
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.3;
}

.self-affiliate-desc {
  font-size: 0.825rem;
  margin-top: 0.25rem;
  line-height: 1.45;
}

.self-affiliate-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.self-affiliate-id-box {
  border-radius: 10px;
  padding: 0.45rem 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  transition: all 0.2s ease;
}

.self-affiliate-id-label {
  font-size: 0.775rem;
  font-weight: 600;
}

.self-affiliate-id-code {
  font-size: 1.2rem;
  font-family: monospace;
  letter-spacing: 0.05em;
  font-weight: 800;
}

.self-affiliate-btn {
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.6rem 1.15rem;
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.self-affiliate-btn:hover {
  transform: translateY(-2px);
}

/* ==========================================================================
   Global Footer Theme Harmonization
   ========================================================================== */
.site-footer {
  position: relative;
  overflow: hidden;
}

.footer-badge-primary, .footer-badge-secondary {
  font-size: 0.75rem;
  padding: 0.28rem 0.75rem;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  transition: transform 0.2s ease;
}

.footer-badge-primary:hover, .footer-badge-secondary:hover {
  transform: translateY(-2px);
}

.site-footer .footer-heading {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 1.15rem;
  display: inline-block;
  padding-bottom: 0.45rem;
}

.site-footer .footer-links a {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.2s ease;
}

.site-footer .footer-links a:hover {
  transform: translateX(4px);
}

.site-footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.75rem;
  margin-top: 2.5rem;
  text-align: center;
  font-size: 0.825rem;
}

/* Universal Footer Social Media Icons & Controls */
.footer-social-wrapper {
  margin-top: 1.25rem;
}
.footer-social-title {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.65rem;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: #cbd5e1;
}
.footer-social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.6rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  font-size: 1.05rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}
.footer-social-btn:hover {
  transform: translateY(-3px) scale(1.08);
  background: var(--social-hover-bg, #0284c7);
  border-color: rgba(255, 255, 255, 0.4);
  color: #ffffff;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.3);
}

/* Theme-Specific Footer Social Adaptations */
.theme-medical .footer-social-btn {
  background: rgba(2, 132, 199, 0.12);
  border-color: rgba(56, 189, 248, 0.35);
  color: #e0f2fe;
}
.theme-medical .footer-social-btn:hover {
  background: var(--social-hover-bg, #0284c7);
  border-color: #38bdf8;
  box-shadow: 0 6px 18px rgba(2, 132, 199, 0.5);
}

.theme-ecommerce .footer-social-btn {
  background: rgba(16, 185, 129, 0.12);
  border-color: rgba(16, 185, 129, 0.3);
  color: #a7f3d0;
  border-radius: 50%;
}
.theme-ecommerce .footer-social-btn:hover {
  background: var(--social-hover-bg, #10b981);
  border-color: #34d399;
  box-shadow: 0 6px 18px rgba(16, 185, 129, 0.5);
}

.theme-creative .footer-social-btn {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(115, 200, 255, 0.25);
  color: #e0f2fe;
  border-radius: 8px;
}
.theme-creative .footer-social-btn:hover {
  background: var(--social-hover-bg, #145ed9);
  border-color: #73c8ff;
  box-shadow: 0 6px 20px rgba(20, 94, 217, 0.5);
}

.theme-corporate .footer-social-btn {
  background: rgba(217, 119, 6, 0.1);
  border-color: rgba(217, 119, 6, 0.35);
  color: #fde68a;
  border-radius: 6px;
}
.theme-corporate .footer-social-btn:hover {
  background: var(--social-hover-bg, #1e3a8a);
  border-color: #f59e0b;
  box-shadow: 0 6px 18px rgba(217, 119, 6, 0.4);
}

.theme-darkglass .footer-social-btn {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(6, 182, 212, 0.35);
  color: #67e8f9;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.theme-darkglass .footer-social-btn:hover {
  background: var(--social-hover-bg, #06b6d4);
  border-color: #22d3ee;
  box-shadow: 0 0 20px rgba(6, 182, 212, 0.6);
}

/* ==========================================================================
   THEME 1: MEDICAL & HEALTHCARE PRO ADAPTATIONS
   ========================================================================== */
.theme-medical .counters-section {
  background: linear-gradient(135deg, #022d50 0%, #034f7c 50%, #0284c7 100%);
  border-top: 3px solid #0284c7;
  border-bottom: 3px solid #0284c7;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15);
}
.theme-medical .counter-item {
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(56, 189, 248, 0.3);
  box-shadow: 0 8px 24px rgba(2, 40, 71, 0.3);
}
.theme-medical .counter-item:hover {
  border-color: #38bdf8;
  box-shadow: 0 12px 32px rgba(2, 132, 199, 0.35);
  background: rgba(255, 255, 255, 0.14);
}
.theme-medical .counter-number-wrap {
  background: linear-gradient(180deg, #ffffff 30%, #bae6fd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.theme-medical .counter-divider {
  background: linear-gradient(90deg, #38bdf8, #14b8a6);
}
.theme-medical .counter-label {
  color: #e0f2fe;
}
.theme-medical .self-affiliate-bar {
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 50%, #0c4a6e 100%);
  border: 1px solid rgba(186, 230, 253, 0.35);
  box-shadow: 0 10px 30px rgba(2, 132, 199, 0.22);
  color: #ffffff;
}
.theme-medical .self-affiliate-icon {
  background: linear-gradient(135deg, #38bdf8 0%, #0284c7 100%);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(2, 132, 199, 0.45);
}
.theme-medical .self-affiliate-badge {
  background: rgba(255, 255, 255, 0.22);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.4);
}
.theme-medical .self-affiliate-heading {
  color: #ffffff;
}
.theme-medical .self-affiliate-desc {
  color: #e0f2fe;
}
.theme-medical .self-affiliate-id-box {
  background: rgba(3, 105, 161, 0.45);
  border: 1.5px dashed rgba(186, 230, 253, 0.6);
}
.theme-medical .self-affiliate-id-label {
  color: #bae6fd;
}
.theme-medical .self-affiliate-id-code {
  color: #fef08a;
  text-shadow: 0 0 10px rgba(254, 240, 138, 0.35);
}
.theme-medical .self-affiliate-btn {
  background: linear-gradient(135deg, #0d9488 0%, #059669 100%);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(13, 148, 136, 0.35);
}
.theme-medical .self-affiliate-btn:hover {
  background: linear-gradient(135deg, #0f766e 0%, #047857 100%);
  box-shadow: 0 6px 20px rgba(13, 148, 136, 0.5);
  color: #ffffff;
}
.theme-medical .services-section-badge {
  background: rgba(2, 132, 199, 0.1);
  color: #0284c7;
  border: 1px solid rgba(2, 132, 199, 0.25);
}
.theme-medical .services-feature-icon-id {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(2, 132, 199, 0.12);
  color: #0284c7;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}
.theme-medical .services-feature-icon-profit {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(13, 148, 136, 0.12);
  color: #0d9488;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}
.theme-medical .site-footer {
  background: linear-gradient(135deg, #032847 0%, #021a2e 100%);
  padding: 4rem 0 2rem;
  border-top: 3px solid #0284c7;
  box-shadow: 0 -10px 30px rgba(2, 132, 199, 0.15);
  color: #cbd5e1;
}
.theme-medical .site-footer .footer-brand-title i {
  color: #38bdf8;
}
.theme-medical .site-footer .footer-heading {
  color: #ffffff;
  border-bottom: 2px solid rgba(2, 132, 199, 0.5);
}
.theme-medical .site-footer .footer-links a {
  color: #94a3b8;
}
.theme-medical .site-footer .footer-links a:hover {
  color: #38bdf8;
}
.theme-medical .site-footer .footer-links i {
  color: #38bdf8;
}
.theme-medical .site-footer .footer-badge-primary {
  background: rgba(2, 132, 199, 0.22);
  color: #38bdf8;
  border: 1px solid rgba(56, 189, 248, 0.4);
}
.theme-medical .site-footer .footer-badge-secondary {
  background: rgba(13, 148, 136, 0.22);
  color: #2dd4bf;
  border: 1px solid rgba(45, 212, 191, 0.4);
}
.theme-medical .site-footer .footer-bottom {
  color: #64748b;
}

/* ==========================================================================
   THEME 2: CORPORATE & BUSINESS AGENCY ADAPTATIONS
   ========================================================================== */
.theme-corporate .counters-section {
  background: linear-gradient(135deg, #070e1e 0%, #0b1c3d 50%, #1e3a8a 100%);
  border-top: 3px solid #d97706;
  border-bottom: 3px solid #d97706;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
.theme-corporate .counter-item {
  background: rgba(15, 23, 42, 0.65);
  border: 1px solid rgba(217, 119, 6, 0.3);
  box-shadow: 0 8px 24px rgba(7, 14, 30, 0.4);
}
.theme-corporate .counter-item:hover {
  border-color: #f59e0b;
  box-shadow: 0 12px 32px rgba(217, 119, 6, 0.25);
  background: rgba(15, 23, 42, 0.85);
}
.theme-corporate .counter-number-wrap {
  background: linear-gradient(180deg, #ffffff 30%, #fde68a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.theme-corporate .counter-divider {
  background: linear-gradient(90deg, #d97706, #f59e0b);
}
.theme-corporate .counter-label {
  color: #f1f5f9;
}
.theme-corporate .self-affiliate-bar {
  background: linear-gradient(135deg, #070e1e 0%, #0f2347 50%, #1e3a8a 100%);
  border: 1px solid rgba(217, 119, 6, 0.4);
  box-shadow: 0 10px 30px rgba(7, 14, 30, 0.35);
  color: #ffffff;
}
.theme-corporate .self-affiliate-icon {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(217, 119, 6, 0.45);
}
.theme-corporate .self-affiliate-badge {
  background: rgba(217, 119, 6, 0.25);
  color: #fcd34d;
  border: 1px solid rgba(245, 158, 11, 0.45);
}
.theme-corporate .self-affiliate-heading {
  color: #ffffff;
}
.theme-corporate .self-affiliate-desc {
  color: #cbd5e1;
}
.theme-corporate .self-affiliate-id-box {
  background: rgba(11, 19, 43, 0.7);
  border: 1.5px dashed rgba(245, 158, 11, 0.55);
}
.theme-corporate .self-affiliate-id-label {
  color: #cbd5e1;
}
.theme-corporate .self-affiliate-id-code {
  color: #fbbf24;
  text-shadow: 0 0 10px rgba(251, 191, 36, 0.35);
}
.theme-corporate .self-affiliate-btn {
  background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(217, 119, 6, 0.35);
}
.theme-corporate .self-affiliate-btn:hover {
  background: linear-gradient(135deg, #b45309 0%, #92400e 100%);
  box-shadow: 0 6px 20px rgba(217, 119, 6, 0.5);
  color: #ffffff;
}
.theme-corporate .services-section-badge {
  background: rgba(217, 119, 6, 0.1);
  color: #d97706;
  border: 1px solid rgba(217, 119, 6, 0.25);
}
.theme-corporate .services-feature-icon-id {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(217, 119, 6, 0.12);
  color: #d97706;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}
.theme-corporate .services-feature-icon-profit {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(30, 58, 138, 0.12);
  color: #1e3a8a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}
.theme-corporate .site-footer {
  background: linear-gradient(135deg, #070e1e 0%, #030710 100%);
  padding: 4rem 0 2rem;
  border-top: 3px solid #d97706;
  box-shadow: 0 -10px 30px rgba(217, 119, 6, 0.15);
  color: #cbd5e1;
}
.theme-corporate .site-footer .footer-brand-title i {
  color: #d97706;
}
.theme-corporate .site-footer .footer-heading {
  color: #ffffff;
  border-bottom: 2px solid rgba(217, 119, 6, 0.45);
}
.theme-corporate .site-footer .footer-links a {
  color: #94a3b8;
}
.theme-corporate .site-footer .footer-links a:hover {
  color: #f59e0b;
}
.theme-corporate .site-footer .footer-links i {
  color: #d97706;
}
.theme-corporate .site-footer .footer-badge-primary {
  background: rgba(217, 119, 6, 0.2);
  color: #fcd34d;
  border: 1px solid rgba(245, 158, 11, 0.4);
}
.theme-corporate .site-footer .footer-badge-secondary {
  background: rgba(30, 58, 138, 0.45);
  color: #93c5fd;
  border: 1px solid rgba(59, 130, 246, 0.4);
}
.theme-corporate .site-footer .footer-bottom {
  color: #64748b;
}

/* ==========================================================================
   THEME 3: ZIVA DRA / REGULATORY AFFAIRS & HEALTHCARE CONSULTANCY
   ========================================================================== */
.theme-creative .skills-section {
  background: #f8fafc;
}
.theme-creative .skills-heading {
  color: #071d3a;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
}
.theme-creative .seekbar-label {
  color: #071d3a;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
}
.theme-creative .seekbar-track {
  background: #e2e8f0;
}
.theme-creative .seekbar-fill {
  background: linear-gradient(90deg, #145ed9, #06b6d4);
}
.theme-creative .counters-section {
  background: linear-gradient(135deg, #071d3a 0%, #0b2a52 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(7, 29, 58, 0.15);
}
.theme-creative .counter-item {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.theme-creative .counter-item:hover {
  border-color: #38bdf8;
  box-shadow: 0 8px 24px rgba(20, 94, 217, 0.3);
  background: rgba(255, 255, 255, 0.12);
}
.theme-creative .counter-number-wrap {
  color: #ffffff;
  font-weight: 850;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.theme-creative .counter-divider {
  background: #38bdf8;
}
.theme-creative .counter-label {
  color: #93c5fd;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
}
.theme-creative .self-affiliate-bar {
  background: linear-gradient(135deg, #071d3a 0%, #0b2a52 100%);
  border: 1px solid #145ed9;
  box-shadow: 0 10px 32px rgba(7, 29, 58, 0.2);
  color: #ffffff;
  border-radius: 14px;
}
.theme-creative .self-affiliate-icon {
  background: linear-gradient(135deg, #145ed9 0%, #06b6d4 100%);
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(20, 94, 217, 0.4);
}
.theme-creative .self-affiliate-badge {
  background: rgba(56, 189, 248, 0.15);
  color: #38bdf8;
  border: 1px solid rgba(56, 189, 248, 0.35);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
}
.theme-creative .self-affiliate-heading {
  color: #ffffff;
}
.theme-creative .self-affiliate-desc {
  color: #cbd5e1;
}
.theme-creative .self-affiliate-id-box {
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px dashed #38bdf8;
  font-family: monospace;
}
.theme-creative .self-affiliate-id-label {
  color: #93c5fd;
}
.theme-creative .self-affiliate-id-code {
  color: #38bdf8;
  text-shadow: 0 0 12px rgba(56, 189, 248, 0.4);
}
.theme-creative .self-affiliate-btn {
  background: linear-gradient(135deg, #145ed9 0%, #0284c7 100%);
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(20, 94, 217, 0.4);
}
.theme-creative .self-affiliate-btn:hover {
  background: linear-gradient(135deg, #0f4fb9 0%, #0369a1 100%);
  box-shadow: 0 6px 22px rgba(20, 94, 217, 0.6);
  color: #ffffff;
}
.theme-creative .services-section-badge {
  background: #edf4ff;
  color: #145ed9;
  border: 1px solid #bfdbfe;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.theme-creative .site-footer {
  background: #071d3a;
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #cbd5e1;
}
.theme-creative .site-footer .footer-brand-title {
  color: #ffffff;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.theme-creative .site-footer .footer-brand-title span.accent {
  color: #38bdf8;
}
.theme-creative .site-footer .footer-heading {
  color: #ffffff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  border-bottom: 2px solid rgba(20, 94, 217, 0.4);
}
.theme-creative .site-footer .footer-links a {
  color: #94a3b8;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.theme-creative .site-footer .footer-links a:hover {
  color: #38bdf8;
}
.theme-creative .site-footer .footer-links i {
  color: #38bdf8;
}
.theme-creative .site-footer .footer-badge-primary {
  background: rgba(139, 92, 246, 0.22);
  color: #c084fc;
  border: 1px solid rgba(139, 92, 246, 0.45);
  font-family: monospace;
}
.theme-creative .site-footer .footer-badge-secondary {
  background: rgba(217, 70, 239, 0.22);
  color: #f0abfc;
  border: 1px solid rgba(217, 70, 239, 0.45);
  font-family: monospace;
}
.theme-creative .site-footer .footer-bottom {
  color: #64748b;
  font-family: monospace;
}

/* ==========================================================================
   THEME 4: MINIMALIST DARK-GLASSMORPHISM ADAPTATIONS
   ========================================================================== */
.theme-darkglass .skills-section {
  background: rgba(15, 23, 42, 0.5);
}
.theme-darkglass .skills-heading {
  color: #ffffff;
}
.theme-darkglass .seekbar-label {
  color: #e2e8f0;
}
.theme-darkglass .seekbar-track {
  background: rgba(255, 255, 255, 0.1);
}
.theme-darkglass .seekbar-fill {
  background: linear-gradient(90deg, #06b6d4, #a855f7);
}
.theme-darkglass .counters-section {
  background: rgba(3, 7, 18, 0.75);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-top: 1px solid rgba(6, 182, 212, 0.35);
  border-bottom: 1px solid rgba(6, 182, 212, 0.35);
  box-shadow: 0 0 40px rgba(6, 182, 212, 0.08);
}
.theme-darkglass .counter-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(6, 182, 212, 0.22);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}
.theme-darkglass .counter-item:hover {
  border-color: #06b6d4;
  box-shadow: 0 0 30px rgba(6, 182, 212, 0.3);
  background: rgba(255, 255, 255, 0.08);
}
.theme-darkglass .counter-number-wrap {
  background: linear-gradient(180deg, #ffffff 30%, #67e8f9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.theme-darkglass .counter-divider {
  background: linear-gradient(90deg, #06b6d4, #38bdf8);
}
.theme-darkglass .counter-label {
  color: #cbd5e1;
}
.theme-darkglass .self-affiliate-bar {
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(6, 182, 212, 0.35);
  box-shadow: 0 10px 32px rgba(6, 182, 212, 0.15);
  color: #ffffff;
}
.theme-darkglass .self-affiliate-icon {
  background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(6, 182, 212, 0.45);
}
.theme-darkglass .self-affiliate-badge {
  background: rgba(6, 182, 212, 0.2);
  color: #38bdf8;
  border: 1px solid rgba(6, 182, 212, 0.4);
}
.theme-darkglass .self-affiliate-heading {
  color: #ffffff;
}
.theme-darkglass .self-affiliate-desc {
  color: #94a3b8;
}
.theme-darkglass .self-affiliate-id-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1.5px dashed rgba(6, 182, 212, 0.5);
  backdrop-filter: blur(12px);
}
.theme-darkglass .self-affiliate-id-label {
  color: #cbd5e1;
}
.theme-darkglass .self-affiliate-id-code {
  color: #38bdf8;
  text-shadow: 0 0 12px rgba(56, 189, 248, 0.5);
}
.theme-darkglass .self-affiliate-btn {
  background: linear-gradient(135deg, #06b6d4 0%, #0284c7 100%);
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(6, 182, 212, 0.4);
}
.theme-darkglass .self-affiliate-btn:hover {
  background: linear-gradient(135deg, #0891b2 0%, #0369a1 100%);
  box-shadow: 0 6px 22px rgba(6, 182, 212, 0.6);
  color: #ffffff;
}
.theme-darkglass .services-section-badge {
  background: rgba(6, 182, 212, 0.12);
  color: #38bdf8;
  border: 1px solid rgba(6, 182, 212, 0.3);
}
.theme-darkglass .services-feature-icon-id {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(6, 182, 212, 0.15);
  color: #38bdf8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}
.theme-darkglass .services-feature-icon-profit {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(168, 85, 247, 0.15);
  color: #a855f7;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}
.theme-darkglass .site-footer {
  background: linear-gradient(180deg, rgba(3, 7, 18, 0.95) 0%, #010308 100%);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 4rem 0 2rem;
  border-top: 2px solid rgba(6, 182, 212, 0.4);
  box-shadow: 0 -10px 30px rgba(6, 182, 212, 0.15);
  color: #cbd5e1;
}
.theme-darkglass .site-footer .footer-brand-title span.accent {
  color: #06b6d4;
}
.theme-darkglass .site-footer .footer-heading {
  color: #ffffff;
  border-bottom: 2px solid rgba(6, 182, 212, 0.4);
}
.theme-darkglass .site-footer .footer-links a {
  color: #94a3b8;
}
.theme-darkglass .site-footer .footer-links a:hover {
  color: #38bdf8;
}
.theme-darkglass .site-footer .footer-links i {
  color: #06b6d4;
}
.theme-darkglass .site-footer .footer-badge-primary {
  background: rgba(6, 182, 212, 0.18);
  color: #38bdf8;
  border: 1px solid rgba(6, 182, 212, 0.38);
}
.theme-darkglass .site-footer .footer-badge-secondary {
  background: rgba(168, 85, 247, 0.18);
  color: #c084fc;
  border: 1px solid rgba(168, 85, 247, 0.38);
}
.theme-darkglass .site-footer .footer-bottom {
  color: #64748b;
}

/* ==========================================================================
   THEME 5: ECOMMERCE & PRODUCT SHOWCASE ADAPTATIONS
   ========================================================================== */
.theme-ecommerce .counters-section {
  background: linear-gradient(135deg, #022c22 0%, #064e3b 50%, #047857 100%);
  border-top: 3px solid #059669;
  border-bottom: 3px solid #059669;
}
.theme-ecommerce .counter-item {
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(52, 211, 153, 0.28);
  box-shadow: 0 8px 24px rgba(2, 44, 34, 0.3);
}
.theme-ecommerce .counter-item:hover {
  border-color: #34d399;
  box-shadow: 0 12px 30px rgba(16, 185, 129, 0.3);
  background: rgba(255, 255, 255, 0.15);
}
.theme-ecommerce .counter-number-wrap {
  background: linear-gradient(180deg, #ffffff 30%, #a7f3d0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.theme-ecommerce .counter-divider {
  background: linear-gradient(90deg, #10b981, #34d399);
}
.theme-ecommerce .counter-label {
  color: #ecfdf5;
}
.theme-ecommerce .seekbar-fill {
  background: linear-gradient(90deg, #059669, #10b981);
}
.theme-ecommerce .skills-badge-tag {
  color: #059669;
  background: #ecfdf5;
  border-color: #a7f3d0;
}
.theme-ecommerce .self-affiliate-bar {
  background: linear-gradient(135deg, #022c22 0%, #064e3b 50%, #047857 100%);
  border: 1px solid rgba(52, 211, 153, 0.4);
  box-shadow: 0 10px 28px rgba(6, 78, 59, 0.28);
  color: #ffffff;
}
.theme-ecommerce .self-affiliate-icon {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.45);
}
.theme-ecommerce .self-affiliate-badge {
  background: rgba(16, 185, 129, 0.25);
  color: #34d399;
  border: 1px solid rgba(52, 211, 153, 0.45);
}
.theme-ecommerce .self-affiliate-heading {
  color: #ffffff;
}
.theme-ecommerce .self-affiliate-desc {
  color: #a7f3d0;
}
.theme-ecommerce .self-affiliate-id-box {
  background: rgba(2, 44, 34, 0.7);
  border: 1.5px dashed rgba(253, 224, 71, 0.65);
}
.theme-ecommerce .self-affiliate-id-label {
  color: #cbd5e1;
}
.theme-ecommerce .self-affiliate-id-code {
  color: #fde047;
  text-shadow: 0 0 10px rgba(253, 224, 71, 0.4);
}
.theme-ecommerce .self-affiliate-btn {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.35);
}
.theme-ecommerce .self-affiliate-btn:hover {
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.5);
  color: #ffffff;
}
.theme-ecommerce .services-section-badge {
  background: rgba(16, 185, 129, 0.1);
  color: #059669;
  border: 1px solid rgba(16, 185, 129, 0.25);
}
.theme-ecommerce .services-feature-icon-id {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(16, 185, 129, 0.12);
  color: #059669;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}
.theme-ecommerce .services-feature-icon-profit {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(5, 150, 105, 0.12);
  color: #10b981;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}
.theme-ecommerce .site-footer {
  background: linear-gradient(135deg, #022c22 0%, #011812 100%);
  padding: 4rem 0 2rem;
  border-top: 3px solid #059669;
  box-shadow: 0 -10px 30px rgba(16, 185, 129, 0.18);
  color: #ecfdf5;
}
.theme-ecommerce .site-footer .footer-brand-title span.accent {
  color: #34d399;
}
.theme-ecommerce .site-footer .footer-heading {
  color: #ffffff;
  border-bottom: 2px solid rgba(16, 185, 129, 0.45);
}
.theme-ecommerce .site-footer .footer-links a {
  color: #94a3b8;
}
.theme-ecommerce .site-footer .footer-links a:hover {
  color: #34d399;
}
.theme-ecommerce .site-footer .footer-links i {
  color: #10b981;
}
.theme-ecommerce .site-footer .footer-badge-primary {
  background: rgba(16, 185, 129, 0.22);
  color: #34d399;
  border: 1px solid rgba(52, 211, 153, 0.4);
}
.theme-ecommerce .site-footer .footer-badge-secondary {
  background: rgba(59, 130, 246, 0.22);
  color: #93c5fd;
  border: 1px solid rgba(96, 165, 250, 0.4);
}
.theme-ecommerce .site-footer .footer-bottom {
  color: #64748b;
}

@media (max-width: 900px) {
  .skills-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .counters-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 580px) {
  .counters-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .counter-number-wrap {
    font-size: 2.5rem;
  }
}

/* ==========================================================================
   ABOUT US & ENTITIES SECTION STYLING (THEME-ADAPTIVE)
   ========================================================================== */
.about-overview-section {
  padding: 2.25rem 0 2rem;
  position: relative;
}

.about-spotlight-card,
.about-entity-card,
.about-commitment-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.about-entity-card:hover {
  transform: translateY(-4px);
}

.btn-download-cv {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem 1.65rem;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-download-cv:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
}

.btn-cv-hero {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.65rem;
  font-size: 0.92rem;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
}

.btn-cv-hero:hover {
  transform: translateY(-2px);
}

/* Theme 1: Medical Theme Specifics */
.theme-medical .about-overview-section {
  background: #f8fafc;
  color: #0f172a;
}
.theme-medical .about-spotlight-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 20px rgba(2, 132, 199, 0.05);
}
.theme-medical .about-entity-card {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.04);
}
.theme-medical .entity-icon-box {
  background: #e0f2fe;
  color: #0284c7;
}
.theme-medical .btn-download-cv {
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(2, 132, 199, 0.35);
}
.theme-medical .btn-connect-lead {
  color: #0284c7;
  border-color: #0284c7;
}
.theme-medical .stat-pill-box {
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  color: #0f172a;
}
.theme-medical .about-commitment-card {
  background: linear-gradient(135deg, #0369a1 0%, #0284c7 100%);
  color: #ffffff;
  box-shadow: 0 8px 30px rgba(2, 132, 199, 0.25);
}
.theme-medical .commitment-pill {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.theme-medical .btn-cv-hero {
  background: #ffffff;
  color: #0284c7;
  border: 1.5px solid #bae6fd;
}
.theme-medical .btn-cv-hero:hover {
  background: #e0f2fe;
}

/* Theme 2: E-Commerce Theme Specifics */
.theme-ecommerce .about-overview-section {
  background: #f8fafc;
  color: #0f172a;
}
.theme-ecommerce .about-spotlight-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}
.theme-ecommerce .about-entity-card {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  box-shadow: 0 6px 24px rgba(5, 150, 105, 0.05);
}
.theme-ecommerce .entity-icon-box {
  background: #d1fae5;
  color: #059669;
}
.theme-ecommerce .btn-download-cv {
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(5, 150, 105, 0.35);
}
.theme-ecommerce .btn-connect-lead {
  color: #059669;
  border-color: #059669;
}
.theme-ecommerce .stat-pill-box {
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  color: #064e3b;
}
.theme-ecommerce .about-commitment-card {
  background: linear-gradient(135deg, #064e3b 0%, #059669 100%);
  color: #ffffff;
  box-shadow: 0 8px 30px rgba(5, 150, 105, 0.25);
}
.theme-ecommerce .commitment-pill {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.theme-ecommerce .btn-cv-hero {
  background: #ffffff;
  color: #059669;
  border: 1.5px solid #a7f3d0;
}
.theme-ecommerce .btn-cv-hero:hover {
  background: #ecfdf5;
}

/* Theme 3: Creative Theme Specifics */
.theme-creative .about-overview-section {
  background: #0d0d1a;
  color: #f1f5f9;
}
.theme-creative .about-spotlight-card {
  background: #16152b;
  border: 1px solid rgba(139, 92, 246, 0.25);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}
.theme-creative .about-entity-card {
  background: #16152b;
  border: 1px solid rgba(139, 92, 246, 0.25);
  box-shadow: 0 6px 24px rgba(139, 92, 246, 0.08);
}
.theme-creative .entity-icon-box {
  background: rgba(139, 92, 246, 0.2);
  color: #c084fc;
}
.theme-creative .btn-download-cv {
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
  color: #ffffff;
  box-shadow: 0 4px 18px rgba(139, 92, 246, 0.45);
}
.theme-creative .btn-connect-lead {
  color: #c084fc;
  border-color: #7c3aed;
}
.theme-creative .stat-pill-box {
  background: #201d3d;
  border: 1px solid rgba(139, 92, 246, 0.2);
  color: #f1f5f9;
}
.theme-creative .about-commitment-card {
  background: linear-gradient(135deg, #1e1b4b 0%, #2e1065 100%);
  border: 1px solid #7c3aed;
  color: #ffffff;
  box-shadow: 0 8px 32px rgba(124, 58, 237, 0.25);
}
.theme-creative .commitment-pill {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(139, 92, 246, 0.25);
}
.theme-creative .btn-cv-hero {
  background: #1f1d38;
  color: #c084fc;
  border: 1px solid rgba(139, 92, 246, 0.4);
}
.theme-creative .btn-cv-hero:hover {
  background: #28244c;
}

/* Theme 4: Corporate Theme Specifics */
.theme-corporate .about-overview-section {
  background: #f8fafc;
  color: #0f172a;
}
.theme-corporate .about-spotlight-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.05);
}
.theme-corporate .about-entity-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 6px 24px rgba(30, 58, 138, 0.04);
}
.theme-corporate .entity-icon-box {
  background: #eff6ff;
  color: #1e3a8a;
}
.theme-corporate .btn-download-cv {
  background: linear-gradient(135deg, #1e3a8a 0%, #0f172a 100%);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(30, 58, 138, 0.35);
}
.theme-corporate .btn-connect-lead {
  color: #d97706;
  border-color: #d97706;
}
.theme-corporate .stat-pill-box {
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  color: #1e3a8a;
}
.theme-corporate .about-commitment-card {
  background: linear-gradient(135deg, #1e3a8a 0%, #0f172a 100%);
  color: #ffffff;
  box-shadow: 0 8px 30px rgba(30, 58, 138, 0.25);
}
.theme-corporate .commitment-pill {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.theme-corporate .btn-cv-hero {
  background: #ffffff;
  color: #1e3a8a;
  border: 1.5px solid #cbd5e1;
}
.theme-corporate .btn-cv-hero:hover {
  background: #f8fafc;
}

/* Theme 5: Darkglass Theme Specifics */
.theme-darkglass .about-overview-section {
  background: rgba(15, 23, 42, 0.6);
  color: #f8fafc;
}
.theme-darkglass .about-spotlight-card {
  background: rgba(30, 41, 59, 0.5);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}
.theme-darkglass .about-entity-card {
  background: rgba(30, 41, 59, 0.45);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 32px rgba(6, 182, 212, 0.05);
}
.theme-darkglass .entity-icon-box {
  background: rgba(6, 182, 212, 0.2);
  color: #38bdf8;
}
.theme-darkglass .btn-download-cv {
  background: linear-gradient(135deg, #06b6d4 0%, #0284c7 100%);
  color: #ffffff;
  box-shadow: 0 0 20px rgba(6, 182, 212, 0.45);
}
.theme-darkglass .btn-connect-lead {
  color: #38bdf8;
  border-color: #38bdf8;
}
.theme-darkglass .stat-pill-box {
  background: rgba(15, 23, 42, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #ffffff;
}
.theme-darkglass .about-commitment-card {
  background: rgba(30, 41, 59, 0.65);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(6, 182, 212, 0.35);
  color: #ffffff;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}
.theme-darkglass .commitment-pill {
  background: rgba(15, 23, 42, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.theme-darkglass .btn-cv-hero {
  background: rgba(6, 182, 212, 0.15);
  color: #38bdf8;
  border: 1px solid rgba(6, 182, 212, 0.4);
}
.theme-darkglass .btn-cv-hero:hover {
  background: rgba(6, 182, 212, 0.25);
  box-shadow: 0 0 15px rgba(6, 182, 212, 0.35);
}

/* About Us Entity List Checkmarks, Links & Stat Numbers Per Theme */
.theme-medical .about-entity-card ul li i { color: #0284c7; }
.theme-medical .entity-action-link { color: #0284c7; }
.theme-medical .entity-action-link:hover { color: #0369a1; text-decoration: underline; }
.theme-medical .stat-pill-box { background: #f0f9ff !important; border: 1.5px solid #bae6fd !important; }
.theme-medical .stat-number { color: #0284c7 !important; }
.theme-medical .stat-label { color: #0369a1 !important; }

.theme-ecommerce .about-entity-card ul li i { color: #059669; }
.theme-ecommerce .entity-action-link { color: #059669; }
.theme-ecommerce .entity-action-link:hover { color: #047857; text-decoration: underline; }
.theme-ecommerce .stat-pill-box { background: #ecfdf5 !important; border: 1.5px solid #a7f3d0 !important; }
.theme-ecommerce .stat-number { color: #059669 !important; }
.theme-ecommerce .stat-label { color: #065f46 !important; }

.theme-creative .about-entity-card ul li i { color: #c084fc; }
.theme-creative .entity-action-link { color: #c084fc; }
.theme-creative .entity-action-link:hover { color: #d8b4fe; text-decoration: underline; }
.theme-creative .stat-pill-box { background: rgba(139, 92, 246, 0.12) !important; border: 1.5px solid rgba(139, 92, 246, 0.35) !important; }
.theme-creative .stat-number { color: #c084fc !important; }
.theme-creative .stat-label { color: #e9d5ff !important; }

.theme-corporate .about-entity-card ul li i { color: #1e3a8a; }
.theme-corporate .entity-action-link { color: #1e3a8a; }
.theme-corporate .entity-action-link:hover { color: #1d4ed8; text-decoration: underline; }
.theme-corporate .stat-pill-box { background: #eff6ff !important; border: 1.5px solid #bfdbfe !important; }
.theme-corporate .stat-number { color: #1e3a8a !important; }
.theme-corporate .stat-label { color: #1d4ed8 !important; }

.theme-darkglass .about-entity-card ul li i { color: #38bdf8; }
.theme-darkglass .entity-action-link { color: #38bdf8; }
.theme-darkglass .entity-action-link:hover { color: #06b6d4; text-decoration: underline; }
.theme-darkglass .stat-pill-box { background: rgba(255, 255, 255, 0.05) !important; border: 1.5px solid rgba(255, 255, 255, 0.12) !important; }
.theme-darkglass .stat-number { color: #38bdf8 !important; }
.theme-darkglass .stat-label { color: #94a3b8 !important; }

/* Universal Price & Button Collision Protection */
.product-footer,
.product-footer-row,
.featured-price-btn-row {
  gap: 0.85rem !important;
}

.price-container,
.price-box {
  margin-bottom: 0.35rem !important;
}

.price-container span,
.price-box span {
  white-space: nowrap !important;
}

.product-buy-btn,
.btn-glow,
.btn-terminal {
  flex-shrink: 0 !important;
  white-space: nowrap !important;
}

/* ==========================================================================
   Pharmacist Zobayer Ahmed Portrait & Responsive Face-Centering Rules
   ========================================================================== */
.zobayer-portrait-img,
.doctor-img,
.founder-avatar-img,
.hero-portrait-img,
.portrait-responsive {
  width: 100%;
  height: 100%;
  object-fit: cover !important;
  object-position: center 20% !important; /* Preserves eyes, forehead, head, and beard */
  display: block;
}

.spotlight-avatar-frame {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  max-width: 320px;
  margin: 0 auto;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  border: 3px solid rgba(255, 255, 255, 0.9);
}

.avatar-trust-badge {
  position: absolute;
  bottom: 0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(8px);
  color: #ffffff;
  padding: 0.35rem 0.85rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

@media (max-width: 992px) {
  .about-spotlight-grid {
    grid-template-columns: 1fr !important;
    text-align: center;
  }
  .about-spotlight-grid > div:nth-child(2) div[style*="flex"] {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .zobayer-portrait-img,
  .doctor-img,
  .founder-avatar-img,
  .hero-portrait-img,
  .portrait-responsive {
    object-position: center 18% !important;
  }
  .spotlight-avatar-frame {
    max-width: 220px;
  }
}

/* ==========================================================================
   UNIVERSAL HEADER & NAVIGATION INTEGRITY GUARANTEE
   Ensures nav items & Sign Up buttons NEVER wrap vertically or break in half
   ========================================================================== */
.site-header .nav-menu {
  display: flex !important;
  align-items: center !important;
  flex-wrap: nowrap !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.site-header .nav-menu > li {
  display: inline-flex !important;
  align-items: center !important;
  white-space: nowrap !important;
  flex-shrink: 0 !important;
}

.site-header .nav-link {
  white-space: nowrap !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.35rem !important;
  flex-shrink: 0 !important;
  text-decoration: none !important;
}

/* Universal Sign Up Button Guarantee: Always horizontal, single-line, perfectly centered */
.site-header .btn-signup-nav,
.btn-signup-nav {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  white-space: nowrap !important;
  flex-shrink: 0 !important;
  gap: 0.45rem !important;
  line-height: 1 !important;
  padding: 0.48rem 1.15rem !important;
  font-size: 0.85rem !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  vertical-align: middle !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
}

.site-header .btn-signup-nav i,
.btn-signup-nav i {
  font-size: 0.88rem !important;
  line-height: 1 !important;
  flex-shrink: 0 !important;
}

/* All CTA buttons in header nav */
.site-header .btn-consultation,
.site-header .btn-appointment,
.site-header .btn-cart,
.site-header .btn-terminal,
.site-header .btn-glow {
  white-space: nowrap !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
  line-height: 1 !important;
  gap: 0.45rem !important;
}

/* Universal Mobile Hamburger Toggle Button */
.mobile-menu-btn {
  display: none;
  align-items: center;
  justify-content: center;
  background: transparent;
  border-radius: 8px;
  padding: 0.5rem 0.75rem;
  font-size: 1.25rem;
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

@media (max-width: 1240px) {
  .site-header .nav-menu {
    gap: 0.85rem !important;
  }
  .site-header .nav-link {
    font-size: 0.825rem !important;
  }
  .site-header .btn-signup-nav {
    padding: 0.42rem 0.85rem !important;
    font-size: 0.8rem !important;
  }
}

@media (max-width: 1080px) {
  .site-header .nav-menu {
    gap: 0.65rem !important;
  }
  .site-header .brand-subtitle-tagline,
  .site-header .brand-title-extra {
    display: none !important;
  }
}

@media (max-width: 991px) {
  .mobile-menu-btn {
    display: flex !important;
  }
  .site-header .nav-container {
    position: relative !important;
  }
  .site-header .nav-menu {
    display: none !important;
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    right: 0 !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    padding: 1.25rem 1.75rem !important;
    gap: 0.85rem !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25) !important;
    z-index: 9999 !important;
  }
  .site-header .nav-menu.open {
    display: flex !important;
  }
  .site-header .nav-menu > li {
    width: 100% !important;
    display: flex !important;
  }
  .site-header .nav-menu .nav-link {
    width: 100% !important;
    padding: 0.6rem 0 !important;
    font-size: 0.95rem !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .site-header .nav-menu .btn-signup-nav,
  .site-header .nav-menu .btn-consultation,
  .site-header .nav-menu .btn-appointment,
  .site-header .nav-menu .btn-cart,
  .site-header .nav-menu .btn-terminal,
  .site-header .nav-menu .btn-glow {
    width: 100% !important;
    justify-content: center !important;
    padding: 0.75rem 1rem !important;
    margin-top: 0.35rem !important;
  }
}

/* ==========================================================================
   Our Services Section & Cards (Customizable via Admin)
   ========================================================================== */
.services-section {
  position: relative;
}

.service-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease !important;
}

.service-card:hover {
  transform: translateY(-3px) !important;
  border-color: #cbd5e1 !important;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06) !important;
}

.service-card:hover .service-card-img {
  transform: scale(1.04) !important;
}

.btn-service-action:hover {
  background: #e2e8f0 !important;
  color: #0f172a !important;
  border-color: #cbd5e1 !important;
}

@media (max-width: 768px) {
  .self-affiliate-bar {
    flex-direction: column !important;
    align-items: flex-start !important;
  }
}

/* Darkglass Theme Adaptations */
.theme-darkglass .services-section {
  background: transparent;
}

.theme-darkglass .service-card {
  background: rgba(15, 23, 42, 0.75) !important;
  border-color: rgba(255, 255, 255, 0.12) !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4) !important;
}

.theme-darkglass .service-card:hover {
  border-color: rgba(16, 185, 129, 0.4) !important;
}

.theme-darkglass .service-card-title {
  color: #f8fafc !important;
}

.theme-darkglass .service-card-desc {
  color: #94a3b8 !important;
}

.theme-darkglass .service-card li {
  color: #cbd5e1 !important;
}

.theme-darkglass .services-main-title {
  color: #f8fafc !important;
}

.theme-darkglass .btn-service-action {
  background: rgba(255, 255, 255, 0.08) !important;
  color: #f8fafc !important;
  border-color: rgba(255, 255, 255, 0.15) !important;
}

.theme-darkglass .btn-service-action:hover {
  background: rgba(255, 255, 255, 0.15) !important;
}

.theme-darkglass .services-trust-ribbon {
  background: rgba(15, 23, 42, 0.8) !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
}

/* Creative Theme Adaptations */
.theme-creative .services-section {
  background: transparent;
}

.theme-creative .service-card {
  background: #111026 !important;
  border-color: rgba(139, 92, 246, 0.2) !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4) !important;
}

.theme-creative .service-card:hover {
  border-color: rgba(139, 92, 246, 0.5) !important;
}

.theme-creative .service-card-title {
  color: #ffffff !important;
}

.theme-creative .service-card-desc {
  color: #94a3b8 !important;
}

.theme-creative .service-card li {
  color: #cbd5e1 !important;
}

.theme-creative .services-main-title {
  color: #ffffff !important;
}

.theme-creative .btn-service-action {
  background: rgba(139, 92, 246, 0.12) !important;
  color: #e9d5ff !important;
  border-color: rgba(139, 92, 246, 0.25) !important;
}

.theme-creative .btn-service-action:hover {
  background: rgba(139, 92, 246, 0.25) !important;
}

.theme-creative .services-trust-ribbon {
  background: #111026 !important;
  border-color: rgba(139, 92, 246, 0.2) !important;
}

/* ==========================================================================
   LIVE SUPPORT FLOATING BUTTON & CHAT WIDGET STYLING
   ========================================================================== */
.live-support-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1050;
}

.live-support-floating-btn {
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.3);
  padding: 0.75rem 1.25rem;
  border-radius: 9999px;
  font-weight: 800;
  font-size: 0.88rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  box-shadow: 0 8px 25px rgba(2, 132, 199, 0.45);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.live-support-floating-btn:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 12px 30px rgba(2, 132, 199, 0.55);
  background: linear-gradient(135deg, #0369a1 0%, #0284c7 100%);
}

.live-support-pulse {
  position: relative;
  display: inline-block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #4ade80;
}

.live-support-pulse::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border-radius: 50%;
  background: rgba(74, 222, 128, 0.5);
  animation: liveSupportPing 1.8s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes liveSupportPing {
  0% {
    transform: scale(0.9);
    opacity: 0.8;
  }
  70%, 100% {
    transform: scale(2.2);
    opacity: 0;
  }
}

@media (max-width: 640px) {
  .live-support-container {
    bottom: 18px;
    right: 18px;
  }
  .live-support-floating-btn {
    padding: 0.75rem;
    border-radius: 50%;
    width: 52px;
    height: 52px;
    justify-content: center;
  }
  .live-support-text {
    display: none;
  }
}

/* Theme Adaptive Service System */
body.theme-medical {
  --theme-accent: #0284c7;
  --theme-accent-soft: rgba(2, 132, 199, 0.1);
  --service-btn-bg: #f0f9ff;
  --service-btn-color: #0369a1;
}

body.theme-ecommerce {
  --theme-accent: #059669;
  --theme-accent-soft: rgba(5, 150, 105, 0.1);
  --service-btn-bg: #f0fdf4;
  --service-btn-color: #065f46;
}

body.theme-corporate {
  --theme-accent: #d97706;
  --theme-accent-soft: rgba(217, 119, 6, 0.1);
  --service-btn-bg: #fffbeb;
  --service-btn-color: #92400e;
}

body.theme-creative {
  --theme-accent: #145ed9;
  --theme-accent-soft: rgba(20, 94, 217, 0.12);
  --service-btn-bg: #edf4ff;
  --service-btn-color: #0f4fb9;
}

body.theme-darkglass {
  --theme-accent: #06b6d4;
  --theme-accent-soft: rgba(6, 182, 212, 0.15);
  --service-btn-bg: rgba(255, 255, 255, 0.08);
  --service-btn-color: #38bdf8;
}

.btn-service-action:hover {
  background: var(--theme-accent, #0284c7) !important;
  color: #ffffff !important;
  border-color: var(--theme-accent, #0284c7) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

.btn-service-action:hover i {
  color: #ffffff !important;
}

/* ==========================================================================
   BACK TO TOP FLOATING BUTTON (Adaptive across all 5 themes)
   ========================================================================== */
.back-to-top-btn {
  position: fixed;
  bottom: 84px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--theme-accent, #0284c7);
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  z-index: 1045;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.back-to-top-btn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top-btn:hover {
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
  color: #ffffff;
}

@media (max-width: 640px) {
  .back-to-top-btn {
    bottom: 80px;
    right: 18px;
    width: 42px;
    height: 42px;
    font-size: 0.9rem;
  }
}

/* Theme Adaptive Back to Top Colors */
.theme-medical .back-to-top-btn {
  background: linear-gradient(135deg, #0284c7 0%, #0ea5e9 100%);
  box-shadow: 0 6px 20px rgba(2, 132, 199, 0.45);
}

.theme-ecommerce .back-to-top-btn {
  background: linear-gradient(135deg, #059669 0%, #10b981 100%);
  box-shadow: 0 6px 20px rgba(5, 150, 105, 0.45);
}

.theme-creative .back-to-top-btn {
  background: linear-gradient(135deg, #145ed9 0%, #0f4fb9 100%);
  box-shadow: 0 6px 20px rgba(20, 94, 217, 0.45);
  border-color: rgba(255, 255, 255, 0.4);
}

.theme-corporate .back-to-top-btn {
  background: linear-gradient(135deg, #1e3a8a 0%, #d97706 100%);
  box-shadow: 0 6px 20px rgba(30, 58, 138, 0.45);
}

.theme-darkglass .back-to-top-btn {
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(6, 182, 212, 0.4);
  color: #38bdf8;
  box-shadow: 0 6px 20px rgba(6, 182, 212, 0.3);
  backdrop-filter: blur(12px);
}
.theme-darkglass .back-to-top-btn:hover {
  background: #06b6d4;
  color: #ffffff;
  box-shadow: 0 0 25px rgba(6, 182, 212, 0.7);
}

/* =========================================================
   SERVICES SECTION TRUST & BADGE HARMONIZATION
   ========================================================= */
.services-trust-icon-stock {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(16, 185, 129, 0.12);
  color: #059669;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.services-trust-icon-remote {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--theme-accent-soft, rgba(2, 132, 199, 0.12));
  color: var(--theme-accent, #0284c7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.theme-darkglass .services-trust-icon-stock,
.theme-darkglass .services-trust-icon-remote,
.theme-darkglass .services-feature-icon-profit,
.theme-darkglass .services-feature-icon-id {
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
}

.theme-creative .services-trust-icon-stock,
.theme-creative .services-trust-icon-remote,
.theme-creative .services-feature-icon-profit,
.theme-creative .services-feature-icon-id {
  background: var(--zv-soft-blue, #edf4ff) !important;
  color: var(--zv-blue, #145ed9) !important;
  border: 1px solid rgba(20, 94, 217, 0.15) !important;
}
