/* ==========================================================================
   Samvid Search - Brand Identity & Design Tokens
   Primary Logo Colors: Electric Cyan (#00adef), Navy (#1d223f), Teal (#41c1ba)
   ========================================================================== */

:root {
  --color-primary: #1d223f;
  --color-primary-light: #2c335e;
  --color-accent: #00adef;
  --color-accent-hover: #008fcc;
  --color-teal: #41c1ba;
  --color-teal-dark: #2da19a;
  --color-text-dark: #1d223f;
  --color-text-muted: #64748b;
  --color-text-light: #94a3b8;
  --color-bg-light: #f8fbff;
  --color-bg-card: #ffffff;
  --color-border: #e2e8f0;
  --color-border-light: #edf2f7;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  --transition-fast: 0.15s ease;
  --transition-normal: 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   Fully Rounded Brand-Themed Buttons & Badges (Matches Logo Colors #00adef)
   ========================================================================== */

/* Synergy Primary Radiant Pill Button */
.btn-synergy {
  display: inline-flex !important;
  align-items: center !important;
  gap: 12px !important;
  background: linear-gradient(135deg, #00adef 0%, #008fcc 100%) !important;
  color: #ffffff !important;
  padding: 8px 10px 8px 22px !important;
  border-radius: 9999px !important; /* Fully Rounded Pill */
  font-size: 14px !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  border: 1px solid rgba(255, 255, 255, 0.25) !important;
  box-shadow: 0 6px 20px rgba(0, 173, 239, 0.35) !important;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
  cursor: pointer !important;
  white-space: nowrap !important;
}

.btn-synergy:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 10px 28px rgba(0, 173, 239, 0.55) !important;
  background: linear-gradient(135deg, #00c0ff 0%, #009ce0 100%) !important;
  color: #ffffff !important;
}

.btn-synergy .icon-circle {
  width: 34px !important;
  height: 34px !important;
  min-width: 34px !important;
  min-height: 34px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: #ffffff !important;
  color: #008fcc !important;
  border-radius: 50% !important; /* Perfect Circular Badge */
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15) !important;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.2s ease !important;
}

.btn-synergy:hover .icon-circle {
  transform: rotate(45deg) scale(1.08) !important;
  background: #ffffff !important;
  color: #00adef !important;
}

/* Secondary Button with Cyan Glow */
.btn-cyan {
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  background: #00adef !important;
  color: #ffffff !important;
  padding: 12px 26px !important;
  border-radius: 9999px !important; /* Fully Rounded */
  font-size: 14px !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  box-shadow: 0 8px 24px rgba(0, 173, 239, 0.3) !important;
  transition: all 0.25s ease !important;
}

.btn-cyan:hover {
  background: #008fcc !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 12px 28px rgba(0, 173, 239, 0.45) !important;
  color: #ffffff !important;
}

/* Outline Pill Button */
.btn-outline-pill {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  border: 1.5px solid #e2e8f0 !important;
  color: #1d223f !important;
  padding: 10px 22px !important;
  border-radius: 9999px !important; /* Fully Rounded */
  font-size: 14px !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  background: #ffffff !important;
  transition: all 0.2s ease !important;
}

.btn-outline-pill:hover {
  border-color: #00adef !important;
  color: #00adef !important;
  background: #f0f9ff !important;
}

/* Interactive Tabs / Modal Role Switcher */
.tab-btn {
  padding: 10px 20px !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  border-radius: 12px !important;
  border: 1.5px solid transparent !important;
  background: #f1f5f9 !important;
  color: #475569 !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.tab-btn:hover {
  color: #1d223f !important;
  background: #e2e8f0 !important;
}

.tab-btn.active {
  background: #1d223f !important;
  color: #ffffff !important;
  border-color: #1d223f !important;
  box-shadow: 0 4px 14px rgba(29, 34, 63, 0.25) !important;
}

.tab-btn.active i {
  color: #00adef !important;
}




.tab-btn:not(.active) i {
  color: #64748b !important;
}


/* ==========================================================================
   Announcement Bar (Natural Flow - scrolls away naturally)
   Main Header (Permanent Native Sticky at top: 0 - Zero Glitch / Zero Jump)
   ========================================================================== */
html, body {
  overflow-x: clip !important;
}

body {
  overflow-x: clip !important;
}

#topAnnouncementBar {
  position: relative !important;
  z-index: 40 !important;
  width: 100% !important;
  background-color: #12162b !important;
}

#mainHeader, header#mainHeader {
  position: -webkit-sticky !important;
  position: sticky !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 9999 !important;
  width: 100% !important;
  background-color: rgba(10, 14, 36, 0.95) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
  transition: box-shadow 0.3s ease, background-color 0.3s ease !important;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

#mainHeader.header-scrolled, header#mainHeader.header-scrolled {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45) !important;
  background-color: rgba(10, 14, 36, 0.98) !important;
}

/* Full Color Brand Partner Logos */
.client-color-img,
.client-logo-card img {
  filter: none !important;
  -webkit-filter: none !important;
  opacity: 1 !important;
}

/* Glassmorphism Header */
.header-glass {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: 0 10px 30px rgba(29, 34, 63, 0.04);
  transition: all var(--transition-normal);
}

.header-scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 14px 40px rgba(29, 34, 63, 0.08);
}

/* Synergy Action Toggle */
.role-toggle-container {
  display: inline-flex;
  align-items: center;
  background: var(--color-primary);
  padding: 4px;
  border-radius: var(--radius-full);
  box-shadow: 0 12px 28px rgba(29, 34, 63, 0.15);
}

.role-toggle-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
  color: rgba(255, 255, 255, 0.85);
  background: transparent;
}

.role-toggle-btn.active {
  background: #ffffff;
  color: var(--color-primary);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}



/* Secondary Button with Cyan Glow */
.btn-cyan {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--color-accent);
  color: #ffffff;
  padding: 12px 26px;
  border-radius: var(--radius-full);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(0, 173, 239, 0.28);
  transition: all var(--transition-normal);
}

.btn-cyan:hover {
  background: var(--color-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0, 173, 239, 0.38);
  color: #ffffff;
}

/* Outline Pill Button */
.btn-outline-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid var(--color-border);
  color: var(--color-primary);
  padding: 10px 22px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  background: #ffffff;
  transition: all var(--transition-fast);
}

.btn-outline-pill:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  background: #f0f9ff;
}

/* Hero Section Synergy Style */
.hero-banner-card {
  position: relative;
  background: linear-gradient(135deg, #161b36 0%, #1d223f 50%, #0c1228 100%);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  color: #ffffff;
}

.hero-overlay-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 15% 25%, rgba(0, 173, 239, 0.15) 0%, transparent 40%),
                    radial-gradient(circle at 85% 75%, rgba(65, 193, 186, 0.12) 0%, transparent 45%);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  color: #99e2ff;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Floating Badges in Hero */
.floating-stat-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 18px;
  padding: 14px 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  animation: floatCard 4s ease-in-out infinite;
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Modern Card with Hover Elevation */
.modern-card {
  background: #ffffff;
  border: 1px solid var(--color-border-light);
  border-radius: 20px;
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.modern-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0, 173, 239, 0.3);
}

.modern-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-teal));
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.modern-card:hover::after {
  opacity: 1;
}

/* Service Card with Icon Box */
.service-icon-box {
  width: 68px;
  height: 68px;
  border-radius: 18px;
  background: linear-gradient(135deg, #eef9ff 0%, #e0f4fc 100%);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 24px;
  transition: all var(--transition-normal);
  border: 1px solid rgba(0, 173, 239, 0.15);
}

.modern-card:hover .service-icon-box {
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-teal) 100%);
  color: #ffffff;
  transform: scale(1.08) rotate(3deg);
  box-shadow: 0 10px 24px rgba(0, 173, 239, 0.3);
}

/* Industry Practice Image Cards */
.industry-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--color-border-light);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

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

.industry-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.industry-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.industry-card:hover .industry-img-wrap img {
  transform: scale(1.08);
}

.industry-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(29, 34, 63, 0.85);
  backdrop-filter: blur(8px);
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Featured Job Card */
.job-card {
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: 18px;
  padding: 26px;
  box-shadow: 0 4px 20px rgba(29, 34, 63, 0.04);
  transition: all var(--transition-normal);
  position: relative;
}

.job-card:hover {
  border-color: var(--color-accent);
  box-shadow: 0 16px 40px rgba(29, 34, 63, 0.1);
  transform: translateY(-4px);
}

.job-urgent-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #fef2f2;
  color: #dc2626;
  border: 1px solid #fecaca;
  font-size: 12px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-full);
}

.job-type-badge {
  display: inline-flex;
  align-items: center;
  background: #f0f9ff;
  color: #0284c7;
  border: 1px solid #bae6fd;
  font-size: 12px;
  font-weight: 600;
  padding: 3px 12px;
  border-radius: var(--radius-full);
}

.job-ctc-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f0fdf4;
  color: #16a34a;
  border: 1px solid #bbf7d0;
  font-size: 13px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

/* Floating Action Widgets */
.btn-whatsapp-pulse {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px;
  height: 58px;
  background: #25d366;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
  z-index: 999;
  text-decoration: none;
  animation: waPulse 2s infinite;
  transition: all var(--transition-fast);
}

.btn-whatsapp-pulse:hover {
  transform: scale(1.12);
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.6);
}

@keyframes waPulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
  70% { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.btn-phone-float {
  display: none;
}

.side-trigger-btn {
  display: none;
}


.side-trigger-btn:hover {
  background: var(--color-accent);
  color: #ffffff;
  right: -48px;
}

/* 6-Second Auto Popup Modal */
/* 5-Second Auto Popup Modal */
.popup-modal-backdrop {
  position: fixed !important;
  inset: 0 !important;
  background: rgba(10, 14, 36, 0.88) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  z-index: 999999 !important; /* Always on top of all headers and elements */
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 24px 16px !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.popup-modal-backdrop.active {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
}

.popup-modal-content {
  background: #ffffff !important;
  border-radius: 24px !important;
  max-width: 600px !important;
  width: 100% !important;
  max-height: 88vh !important;
  overflow-y: auto !important;
  padding: 36px 30px 30px 30px !important;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.6) !important;
  position: relative !important;
  z-index: 1000000 !important;
  transform: scale(0.95) translateY(15px);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(226, 232, 240, 0.9) !important;
  margin: auto !important;
}

.popup-modal-backdrop.active .popup-modal-content {
  transform: scale(1) translateY(0) !important;
}

.modal-close-btn {
  position: absolute !important;
  top: 16px !important;
  right: 16px !important;
  width: 40px !important;
  height: 40px !important;
  border-radius: 50% !important;
  background: #f1f5f9 !important;
  border: 1.5px solid #e2e8f0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 18px !important;
  color: #1d223f !important;
  cursor: pointer !important;
  z-index: 1000002 !important;
  transition: all 0.2s ease !important;
}

.modal-close-btn:hover {
  background: #ef4444 !important;
  border-color: #ef4444 !important;
  color: #ffffff !important;
  transform: scale(1.1) !important;
}

/* Form Styles */
.form-group {
  margin-bottom: 18px;
}

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #334155;
  margin-bottom: 6px;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 12px 16px;
  font-size: 14px;
  font-family: inherit;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  background-color: #f8fafc;
  color: #1e293b;
  transition: all var(--transition-fast);
  outline: none;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--color-accent);
  background-color: #ffffff;
  box-shadow: 0 0 0 4px rgba(0, 173, 239, 0.12);
}

/* SiliconIndia Ranking Badge Box */
.silicon-badge-box {
  background: linear-gradient(135deg, #fef3c7 0%, #fffbeb 100%);
  border: 1.5px solid #fde68a;
  border-radius: 20px;
  padding: 24px;
  position: relative;
}

/* Stats Counter Section */
.stat-box {
  text-align: center;
  padding: 24px 16px;
}

.stat-number {
  font-size: 44px;
  font-weight: 800;
  line-height: 1.1;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Footer Styling */
.footer-corporate {
  background: #0f1326;
  color: #94a3b8;
  position: relative;
  overflow: hidden;
}

.footer-link {
  color: #94a3b8;
  text-decoration: none;
  font-size: 14px;
  transition: all var(--transition-fast);
  display: inline-block;
  margin-bottom: 10px;
}

.footer-link:hover {
  color: var(--color-accent);
  transform: translateX(4px);
}

.social-icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 16px;
  text-decoration: none;
  transition: all var(--transition-fast);
}

.social-icon-btn:hover {
  background: var(--color-accent);
  color: #ffffff;
  transform: translateY(-3px);
}

/* Mobile Navigation Drawer */
.mobile-nav-drawer {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(6px);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-nav-drawer.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: 320px;
  max-width: 85vw;
  height: 100%;
  background: #ffffff;
  padding: 28px 24px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.2);
}

.mobile-nav-drawer.active .mobile-nav-panel {
  transform: translateX(0);
}



/* Custom Toast Notification */
.toast-notice {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #1e293b;
  color: #ffffff;
  padding: 14px 24px;
  border-radius: 14px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10001;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  border-left: 4px solid var(--color-teal);
}

.toast-notice.show {
  transform: translateY(0);
  opacity: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-banner-card {
    border-radius: 18px;
  }
  .modern-card {
    padding: 22px;
    border-radius: 16px;
  }
  .side-trigger-btn {
    display: none;
  }
  .stat-number {
    font-size: 34px;
  }
  .btn-whatsapp-pulse {
    width: 52px;
    height: 52px;
    font-size: 24px;
    bottom: 20px;
    right: 20px;
    left: auto;
  }
}



/* Premium Corporate Client Logo Presentation (Clean Light Theme) */
.client-logo-card {
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 12px !important;
  padding: 10px 14px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03) !important;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.client-logo-card:hover {
  border-color: #00adef !important;
  box-shadow: 0 8px 24px rgba(0, 173, 239, 0.15) !important;
  transform: translateY(-2px) !important;
}

.client-color-img,
.client-logo-card img {
  filter: none !important;
  -webkit-filter: none !important;
  opacity: 1 !important;
  max-height: 40px !important;
  max-width: 110px !important;
  width: auto !important;
  object-fit: contain !important;
}

.btn-whatsapp-pulse {
  display: none !important;
}


/* ==========================================================================
   Full-Bleed Responsive Hero Section (Laptop, Desktop, Tablet, Mobile)
   ========================================================================== */
.hero-bg-layer img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: right center !important;
}

@media (min-width: 1024px) {
  .hero-scrim-layer {
    background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.98) 45%, rgba(255, 255, 255, 0.82) 58%, rgba(255, 255, 255, 0.15) 75%, transparent 100%) !important;
  }
}

@media (max-width: 1023px) {
  .hero-scrim-layer {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.88) 50%, rgba(255, 255, 255, 0.95) 100%) !important;
  }
}


/* ========================================================================== */
/* Continuous Dual-Direction Steady Logo Marquee System                      */
/* ========================================================================== */
.marquee-container {
  overflow: hidden;
  position: relative;
  width: 100%;
  mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}

.logo-marquee-track,
.logo-marquee-left,
.logo-marquee-right {
  display: flex !important;
  gap: 1.25rem;
  width: max-content !important;
  align-items: center;
  will-change: transform;
}

/* Left-moving marquee - Constant steady linear speed without acceleration */
.logo-marquee-left,
.logo-marquee-track {
  animation: marqueeScrollLeft 85s linear infinite !important;
}

/* Right-moving marquee - Constant steady linear speed without acceleration */
.logo-marquee-right {
  animation: marqueeScrollRight 85s linear infinite !important;
}

.logo-marquee-track:hover,
.logo-marquee-left:hover,
.logo-marquee-right:hover {
  animation-play-state: paused !important;
}

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

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

.client-logo-card {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  height: 72px;
  padding: 0.75rem 1rem;
  background-color: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.client-logo-card:hover {
  border-color: #00adef;
  box-shadow: 0 8px 20px rgba(0, 173, 239, 0.15);
  transform: translateY(-2px);
}

.client-color-img {
  max-height: 38px;
  max-width: 110px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.75;
  transition: all 0.3s ease;
}

.client-logo-card:hover .client-color-img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.06);
}
