/* ==========================================================================
   LogyBytes Inc - Premium Stylesheet
   Bootstrap 5 + Glassmorphism + Mega Menu
   ========================================================================== */

/* --------------------------------------------------------------------------
   CSS Custom Properties
   -------------------------------------------------------------------------- */
:root {
  --lb-primary: #2563eb;
  --lb-primary-dark: #1d4ed8;
  --lb-blue-nav: #1e40af;
  --lb-blue-nav-dark: #1e3a8a;
  --lb-royal-blue: #3b82f6;
  --lb-nav-dropdown-bg: #bfdbfe;
  --lb-light-royal: #93c5fd;
  /* USA rich blue palette – professional, high-contrast */
  --lb-usa-light: #93c5fd;
  --lb-usa-mid: #3b82f6;
  --lb-usa-dark: #2563eb;
  --lb-usa-deep: #1d4ed8;
  --lb-secondary: #6c757d;
  --lb-dark: #1a1d29;
  --lb-darker: #0f111a;
  --lb-light: #f8f9fa;
  --lb-white: #ffffff;
  --lb-glass-bg: rgba(255, 255, 255, 0.08);
  --lb-glass-border: rgba(255, 255, 255, 0.18);
  --lb-glass-shadow: rgba(0, 0, 0, 0.1);
  --lb-blur: 12px;
  --lb-blur-strong: 20px;
  --lb-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --lb-radius: 16px;
  --lb-radius-sm: 10px;
  --lb-nav-height: 72px;
  --lb-hero-min-height: 75vh;
  --lb-hero-max-height: 720px;
  --lb-container: 1320px;
  --lb-nav-bg-image: url('https://images.unsplash.com/photo-1579546929518-9e396f3cc809?w=1200');
}

/* --------------------------------------------------------------------------
   Base & Reset
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--lb-dark);
  background: var(--lb-white);
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--lb-transition), opacity var(--lb-transition);
}

ul, ol {
  list-style: none;
}

/* --------------------------------------------------------------------------
   Glassmorphism Utilities
   -------------------------------------------------------------------------- */
.glass {
  background: var(--lb-glass-bg);
  backdrop-filter: blur(var(--lb-blur));
  -webkit-backdrop-filter: blur(var(--lb-blur));
  border: 1px solid var(--lb-glass-border);
  box-shadow: 0 8px 32px var(--lb-glass-shadow);
}

.glass-strong {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(var(--lb-blur-strong));
  -webkit-backdrop-filter: blur(var(--lb-blur-strong));
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.glass-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(var(--lb-blur));
  -webkit-backdrop-filter: blur(var(--lb-blur));
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--lb-radius);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.glass-dark {
  background: rgba(26, 29, 41, 0.75);
  backdrop-filter: blur(var(--lb-blur-strong));
  -webkit-backdrop-filter: blur(var(--lb-blur-strong));
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* --------------------------------------------------------------------------
   Top Navigation & Mega Menu - regular royal blue
   -------------------------------------------------------------------------- */
/* USA theme: rich professional blue gradients (default) */
.lb-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  height: var(--lb-nav-height);
  background: linear-gradient(135deg, var(--lb-usa-light) 0%, #60a5fa 35%, var(--lb-usa-dark) 70%, var(--lb-usa-deep) 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  transition: background var(--lb-transition), box-shadow var(--lb-transition), backdrop-filter var(--lb-transition), border-color var(--lb-transition);
}

/* Index (home) only: transparent nav so hero image shows through, solid after scroll */
.lb-page-home .lb-navbar:not(.scrolled) {
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(12px) saturate(150%);
  -webkit-backdrop-filter: blur(12px) saturate(150%);
  -moz-backdrop-filter: blur(12px) saturate(150%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

.lb-page-home .lb-navbar.scrolled {
  background: linear-gradient(135deg, var(--lb-usa-light) 0%, #60a5fa 35%, var(--lb-usa-dark) 70%, var(--lb-usa-deep) 100%);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

.lb-navbar.scrolled {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

.lb-navbar .container {
  max-width: var(--lb-container);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.lb-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--lb-white);
  letter-spacing: -0.02em;
}

.lb-logo span {
  color: #b8d4ff;
}

.lb-nav-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.lb-nav-item {
  position: relative;
}

.lb-nav-link {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.6rem 1rem;
  color: var(--lb-white);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 0;
  transition: color var(--lb-transition), background var(--lb-transition);
}

.lb-nav-link:hover {
  color: var(--lb-white);
  background: transparent;
}

.lb-nav-link.active {
  background: transparent;
  color: var(--lb-white);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 3px solid var(--lb-white);
  padding-bottom: calc(0.6rem - 3px);
}

.lb-nav-item:hover .lb-nav-link {
  text-decoration: none;
}

/* When dropdown is open: link + dropdown one connected white panel */
.lb-nav-item:hover .lb-nav-link.has-dropdown {
  background: var(--lb-white);
  color: var(--lb-dark);
  text-decoration: none;
}

.lb-nav-link.has-dropdown::after {
  display: none; /* Down arrows removed per design */
}

/* Region selector: globe + dropdown (USA / INDIA) */
.lb-nav-region {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: 1rem;
  padding-left: 1rem;
  border-left: 1px solid rgba(255, 255, 255, 0.35);
  font-size: 0.9rem;
  font-weight: 600;
}

.lb-region-dropdown {
  position: relative;
}

.lb-region-trigger {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.6rem;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 0;
  color: var(--lb-white);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--lb-transition), border-color var(--lb-transition), color var(--lb-transition);
}

.lb-region-trigger:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--lb-white);
}

.lb-region-globe {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: inherit;
}

.lb-region-globe svg {
  display: block;
}

.lb-region-chevron {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: inherit;
  opacity: 0.9;
  transition: transform var(--lb-transition);
}

.lb-region-dropdown.open .lb-region-chevron {
  transform: rotate(180deg);
}

.lb-region-menu {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 4px;
  min-width: 120px;
  padding: 0.35rem 0;
  background: var(--lb-white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 0;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity var(--lb-transition), visibility var(--lb-transition), transform var(--lb-transition);
  z-index: 1060;
}

.lb-region-dropdown.open .lb-region-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lb-region-menu[hidden] {
  display: none !important;
}

.lb-region-dropdown.open .lb-region-menu {
  display: block !important;
}

.lb-region-menu .lb-region-link {
  display: block;
  padding: 0.5rem 1rem;
  color: var(--lb-dark);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: background var(--lb-transition), color var(--lb-transition);
}

.lb-region-menu .lb-region-link:hover {
  background: rgba(37, 99, 235, 0.08);
  color: var(--lb-usa-dark);
}

.lb-region-menu .lb-region-link.active {
  background: rgba(37, 99, 235, 0.12);
  color: var(--lb-usa-deep);
}

html.lb-theme-india .lb-region-menu .lb-region-link:hover {
  background: rgba(45, 138, 94, 0.08);
  color: #2d8a5e;
}

html.lb-theme-india .lb-region-menu .lb-region-link.active {
  background: rgba(45, 138, 94, 0.12);
  color: #1e6b47;
}

/* Mega Menu Dropdown - white bg, connected to main link */
.lb-mega {
  position: absolute;
  top: 100%;
  left: 0;
  transform: translateY(8px);
  min-width: 240px;
  width: max-content;
  max-width: 280px;
  padding: 1rem 0.75rem;
  margin-top: -1px;
  background: var(--lb-white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 0;
  border-top: none;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.12);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--lb-transition), transform var(--lb-transition), visibility var(--lb-transition);
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.25rem 0;
}

.lb-nav-item:hover .lb-mega {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lb-mega-col {
  padding: 0 0.5rem;
}

.lb-mega-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--lb-secondary);
  margin-bottom: 0.75rem;
  padding-bottom: 0.35rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.lb-mega-link {
  display: block;
  padding: 0.4rem 0;
  color: var(--lb-dark);
  font-size: 0.9rem;
  border-radius: 0;
  transition: color var(--lb-transition), padding-left var(--lb-transition);
}

.lb-mega-link:hover {
  color: var(--lb-primary);
  padding-left: 0.5rem;
}

/* Mobile nav toggle */
.lb-nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--lb-white);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
}

@media (max-width: 991.98px) {
  .lb-nav-toggle {
    display: block;
  }

  .lb-nav-menu {
    position: fixed;
    top: var(--lb-nav-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--lb-usa-light) 0%, #60a5fa 35%, var(--lb-usa-dark) 70%, var(--lb-usa-deep) 100%);
    flex-direction: column;
    align-items: stretch;
    padding: 1.5rem;
    gap: 0;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform var(--lb-transition);
    z-index: 1029;
  }

  .lb-nav-menu.active {
    transform: translateX(0);
  }

  .lb-nav-region {
    margin-left: 0;
    padding-left: 0;
    border-left: none;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    justify-content: center;
  }

  .lb-mega {
    position: static;
    transform: none;
    min-width: 100%;
    max-width: 100%;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
    opacity: 1;
    visibility: visible;
    display: none;
  }

  .lb-nav-item.mobile-open .lb-mega {
    display: grid;
  }

  .lb-nav-link {
    padding: 0.85rem 1rem;
    font-size: 1rem;
  }
}

/* --------------------------------------------------------------------------
   Hero Section - Sliding Background Images
   -------------------------------------------------------------------------- */
.lb-hero {
  position: relative;
  min-height: var(--lb-hero-min-height);
  max-height: var(--lb-hero-max-height);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  margin-top: var(--lb-nav-height);
}

.lb-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* Index: hero extends behind transparent nav so image shows through nav */
.lb-page-home .lb-hero {
  position: relative;
  margin-top: 0;
}

.lb-page-home .lb-hero-inner {
  width: 100%;
  padding-top: var(--lb-nav-height);
  box-sizing: border-box;
}

.lb-page-home .lb-hero-content,
.lb-page-home .lb-hero-dots {
  z-index: 10;
}

.lb-hero-slide {
  position: absolute;
  inset: -20px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  filter: blur(8px);
  transform: scale(1.05);
  transition: opacity 1.2s ease-in-out, filter 1.2s ease-in-out;
}

.lb-hero-slide.active {
  opacity: 1;
  z-index: 1;
  filter: blur(6px);
}

.lb-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30, 50, 100, 0.5) 0%, rgba(15, 25, 50, 0.55) 50%, rgba(10, 15, 30, 0.6) 100%);
  z-index: 2;
}

.lb-hero-content {
  position: relative;
  z-index: 3;
  text-align: left;
  padding: 3rem 0 4rem;
  max-width: 820px;
  margin: 0;
}

.lb-hero-subtitle-top {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: #b8d4ff;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.lb-hero-title {
  font-size: clamp(2.5rem, 5.5vw, 3.75rem);
  font-weight: 800;
  color: var(--lb-white);
  line-height: 1.12;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.5), 0 0 48px rgba(0, 0, 0, 0.2);
}

.lb-hero-subtitle {
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 2rem;
  line-height: 1.6;
  max-width: 560px;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
}

.lb-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: flex-start;
}

/* Hero dots indicator */
.lb-hero-dots {
  position: absolute;
  bottom: 2rem;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 0.5rem;
  z-index: 3;
}

.lb-hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--lb-transition), transform var(--lb-transition);
}

.lb-hero-dot:hover,
.lb-hero-dot.active {
  background: var(--lb-white);
  transform: scale(1.15);
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.lb-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 0;
  border: none;
  cursor: pointer;
  transition: all var(--lb-transition);
}

.lb-btn-primary {
  background: linear-gradient(135deg, #7ab8ff 0%, var(--lb-usa-mid) 40%, var(--lb-usa-deep) 100%);
  color: var(--lb-white);
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.45);
}

.lb-btn-primary:hover {
  background: linear-gradient(135deg, #60a5fa 0%, var(--lb-usa-dark) 40%, #1e40af 100%);
  color: var(--lb-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(37, 99, 235, 0.5);
}

.lb-btn-glass {
  background: var(--lb-glass-bg);
  color: var(--lb-white);
  border: 1px solid var(--lb-glass-border);
  backdrop-filter: blur(var(--lb-blur));
}

.lb-btn-glass:hover {
  background: rgba(255, 255, 255, 0.2);
  color: var(--lb-white);
  border-color: rgba(255, 255, 255, 0.3);
}

.lb-btn-outline-light {
  background: transparent;
  color: var(--lb-white);
  border: 2px solid rgba(255, 255, 255, 0.6);
}

.lb-btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--lb-white);
  border-color: var(--lb-white);
}

/* --------------------------------------------------------------------------
   Section Commons
   -------------------------------------------------------------------------- */
.lb-section {
  padding: 5rem 0;
  background: var(--lb-white);
}

.lb-section-heading {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1.5rem;
  color: var(--lb-dark);
}

.lb-section-alt .lb-section-heading {
  color: var(--lb-dark);
}

.lb-section-alt {
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 45%, #bfdbfe 100%);
}

.lb-section-dark {
  background: var(--lb-dark);
  color: var(--lb-white);
}

.lb-container {
  max-width: var(--lb-container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.lb-section-title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.lb-section-subtitle {
  text-align: center;
  color: var(--lb-secondary);
  max-width: 600px;
  margin: 0 auto 3rem;
  font-size: 1.05rem;
}

.lb-section-dark .lb-section-subtitle {
  color: rgba(255, 255, 255, 0.75);
}

/* Content block with image (free images from web) */
.lb-content-img {
  border-radius: var(--lb-radius);
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.lb-content-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --------------------------------------------------------------------------
   Client Logo Slider
   -------------------------------------------------------------------------- */
.lb-logos {
  padding: 3rem 0;
  background: var(--lb-white);
  overflow: hidden;
}

.lb-logos-inner {
  display: flex;
  width: max-content;
  animation: lb-logo-scroll 40s linear infinite;
}

.lb-logos-inner:hover {
  animation-play-state: paused;
}

.lb-logos-track {
  display: flex;
  align-items: center;
  gap: 4rem;
  flex-shrink: 0;
  width: max-content;
}

.lb-logo-item {
  flex-shrink: 0;
  opacity: 0.6;
  filter: grayscale(1);
  transition: opacity var(--lb-transition), filter var(--lb-transition);
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lb-logo-item:hover {
  opacity: 1;
  filter: grayscale(0);
}

.lb-logo-item img {
  max-height: 100%;
  width: auto;
  object-fit: contain;
}

@keyframes lb-logo-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* --------------------------------------------------------------------------
   Cards - Glass & Standard
   -------------------------------------------------------------------------- */
.lb-card {
  border-radius: var(--lb-radius);
  overflow: hidden;
  transition: transform var(--lb-transition), box-shadow var(--lb-transition);
  height: 100%;
}

.lb-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.lb-card-body {
  padding: 1.75rem;
}

.lb-card.glass-card .lb-card-body {
  background: rgba(255, 255, 255, 0.6);
}

.lb-card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--lb-radius-sm);
  background: linear-gradient(135deg, var(--lb-usa-light) 0%, #60a5fa 35%, var(--lb-usa-dark) 70%, var(--lb-usa-deep) 100%);
  color: var(--lb-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.lb-card-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.lb-card-text {
  color: var(--lb-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   Testimonials
   -------------------------------------------------------------------------- */
.lb-testimonials {
  padding: 5rem 0;
}

.lb-testimonial-card {
  background: var(--lb-white);
  border-radius: var(--lb-radius);
  padding: 2rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.06);
  height: 100%;
  transition: box-shadow var(--lb-transition), transform var(--lb-transition);
}

.lb-testimonial-card:hover {
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.lb-testimonial-quote {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--lb-dark);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.lb-testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.lb-testimonial-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--lb-usa-light) 0%, #60a5fa 35%, var(--lb-usa-dark) 70%, var(--lb-usa-deep) 100%);
  color: var(--lb-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
}

.lb-testimonial-name {
  font-weight: 600;
  color: var(--lb-dark);
}

.lb-testimonial-role {
  font-size: 0.9rem;
  color: var(--lb-secondary);
}

/* --------------------------------------------------------------------------
   Team Section
   -------------------------------------------------------------------------- */
.lb-team-card {
  background: var(--lb-white);
  border-radius: var(--lb-radius);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  transition: transform var(--lb-transition), box-shadow var(--lb-transition);
  height: 100%;
}

.lb-team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.12);
}

.lb-team-img-wrap {
  aspect-ratio: 1;
  overflow: hidden;
  background: linear-gradient(135deg, #e9ecef, #dee2e6);
}

.lb-team-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.lb-team-card:hover .lb-team-img-wrap img {
  transform: scale(1.05);
}

.lb-team-body {
  padding: 1.5rem;
  text-align: center;
}

.lb-team-name {
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 0.25rem;
}

.lb-team-role {
  font-size: 0.9rem;
  color: var(--lb-secondary);
}

.lb-team-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--lb-secondary);
  background: linear-gradient(135deg, #e9ecef, #ced4da);
}

/* --------------------------------------------------------------------------
   Pricing Plans
   -------------------------------------------------------------------------- */
.lb-pricing {
  padding: 5rem 0;
}

.lb-pricing-card {
  background: var(--lb-white);
  border-radius: var(--lb-radius);
  padding: 2rem;
  border: 2px solid rgba(0, 0, 0, 0.08);
  height: 100%;
  transition: all var(--lb-transition);
  position: relative;
}

.lb-pricing-card:hover {
  border-color: var(--lb-usa-mid);
  box-shadow: 0 16px 48px rgba(37, 99, 235, 0.2);
  transform: translateY(-4px);
}

.lb-pricing-card.featured {
  border-color: var(--lb-usa-dark);
  background: linear-gradient(180deg, rgba(37, 99, 235, 0.06) 0%, var(--lb-white) 30%);
  box-shadow: 0 16px 48px rgba(37, 99, 235, 0.22);
}

.lb-pricing-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #7ab8ff 0%, var(--lb-usa-mid) 40%, var(--lb-usa-deep) 100%);
  color: var(--lb-white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.35rem 0.75rem;
  border-radius: 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.lb-pricing-name {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-align: center;
}

.lb-pricing-price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--lb-primary);
  text-align: center;
  margin-bottom: 0.25rem;
}

.lb-pricing-price span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--lb-secondary);
}

.lb-pricing-desc {
  text-align: center;
  color: var(--lb-secondary);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.lb-pricing-features {
  margin-bottom: 1.5rem;
}

.lb-pricing-features li {
  padding: 0.4rem 0;
  font-size: 0.95rem;
  color: var(--lb-dark);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.lb-pricing-features li::before {
  content: '✓';
  color: var(--lb-primary);
  font-weight: 700;
}

.lb-pricing-card .lb-btn {
  width: 100%;
  justify-content: center;
  padding: 0.85rem;
}

/* --------------------------------------------------------------------------
   CTA Section
   -------------------------------------------------------------------------- */
.lb-cta {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--lb-dark) 0%, #2d3250 100%);
  color: var(--lb-white);
  text-align: center;
}

.lb-cta-white {
  background: var(--lb-white);
  color: var(--lb-dark);
}

.lb-cta-title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.lb-cta-text {
  opacity: 0.9;
  max-width: 560px;
  margin: 0 auto 1.5rem;
  font-size: 1.05rem;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.lb-footer {
  background: linear-gradient(135deg, var(--lb-usa-light) 0%, #60a5fa 35%, var(--lb-usa-dark) 70%, var(--lb-usa-deep) 100%);
  color: rgba(255, 255, 255, 0.95);
  padding: 4rem 0 2rem;
}

.lb-footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: var(--lb-container);
  margin: 0 auto 3rem;
  padding: 0 1.5rem;
}

.lb-footer-title {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--lb-white);
  margin-bottom: 1rem;
}

.lb-footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.lb-footer-links a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  transition: color var(--lb-transition), padding-left var(--lb-transition);
}

.lb-footer-links a:hover {
  color: var(--lb-white);
  padding-left: 0.25rem;
}

.lb-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

.lb-footer-bottom a {
  color: rgba(255, 255, 255, 0.9);
}

.lb-footer-bottom a:hover {
  color: var(--lb-white);
}

/* --------------------------------------------------------------------------
   India theme: green gradients (when region = INDIA)
   -------------------------------------------------------------------------- */
html.lb-theme-india .lb-navbar {
  background: linear-gradient(135deg, #b8e6d0 0%, #5cb87a 40%, #2d8a5e 100%);
}
/* Home India: transparent nav so hero image shows through */
html.lb-theme-india .lb-page-home .lb-navbar:not(.scrolled) {
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(12px) saturate(150%);
  -webkit-backdrop-filter: blur(12px) saturate(150%);
}
html.lb-theme-india .lb-page-home .lb-navbar.scrolled {
  background: linear-gradient(135deg, #b8e6d0 0%, #5cb87a 40%, #2d8a5e 100%);
}
html.lb-theme-india .lb-footer {
  background: linear-gradient(135deg, #b8e6d0 0%, #5cb87a 40%, #2d8a5e 100%);
}
@media (max-width: 991.98px) {
  html.lb-theme-india .lb-nav-menu {
    background: linear-gradient(135deg, #b8e6d0 0%, #5cb87a 40%, #2d8a5e 100%);
  }
}
html.lb-theme-india .lb-btn-primary {
  background: linear-gradient(135deg, #a8e0c8 0%, #4aad6a 50%, #2d8a5e 100%);
  box-shadow: 0 4px 16px rgba(45, 138, 94, 0.45);
}
html.lb-theme-india .lb-btn-primary:hover {
  background: linear-gradient(135deg, #98d8b8 0%, #3d9a5a 50%, #1e6b45 100%);
  box-shadow: 0 6px 22px rgba(45, 138, 94, 0.5);
}
html.lb-theme-india .lb-pricing-badge {
  background: linear-gradient(135deg, #a8e0c8 0%, #4aad6a 50%, #2d8a5e 100%);
}
html.lb-theme-india .lb-back-top {
  background: linear-gradient(135deg, #a8e0c8 0%, #4aad6a 50%, #2d8a5e 100%);
  box-shadow: 0 4px 16px rgba(45, 138, 94, 0.45);
}
html.lb-theme-india .lb-card-icon,
html.lb-theme-india .lb-testimonial-avatar,
html.lb-theme-india .lb-industry-icon {
  background: linear-gradient(135deg, #b8e6d0 0%, #5cb87a 50%, #2d8a5e 100%);
  color: var(--lb-white);
}
html.lb-theme-india .lb-why-block .lb-card-icon {
  background: linear-gradient(135deg, #b8e6d0 0%, #5cb87a 50%, #2d8a5e 100%);
  color: var(--lb-white);
}
/* India theme: card containers like image2 – light gray rounded card */
html.lb-theme-india .lb-why-block {
  background: #f2f6f3;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(45, 138, 94, 0.08);
}
html.lb-theme-india .lb-card.glass-card .lb-card-body,
html.lb-theme-india a.lb-card.glass-card.lb-card-body {
  background: #f2f6f3;
  border-radius: 16px;
  border: 1px solid rgba(45, 138, 94, 0.08);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}
html.lb-theme-india .lb-nav-link.active {
  background: transparent;
  border-bottom-color: #d4f0e0;
}
html.lb-theme-india .lb-region-link.active {
  background: rgba(255, 255, 255, 0.28);
}
html.lb-theme-india .lb-section-alt {
  background: linear-gradient(135deg, #e8f5ee 0%, #c8e6d4 50%, #a5d6b0 100%);
}
html.lb-theme-india .lb-stat-value {
  color: #2d8a5e;
}
/* India theme: pricing section text and borders green */
html.lb-theme-india .lb-pricing-price {
  color: #2d8a5e;
}
html.lb-theme-india .lb-pricing-card {
  border-color: rgba(0, 0, 0, 0.08);
}
html.lb-theme-india .lb-pricing-card:hover {
  border-color: #2d8a5e;
  box-shadow: 0 16px 48px rgba(45, 138, 94, 0.15);
}
html.lb-theme-india .lb-pricing-card.featured {
  border-color: #2d8a5e;
  background: linear-gradient(180deg, rgba(45, 138, 94, 0.06) 0%, var(--lb-white) 30%);
  box-shadow: 0 16px 48px rgba(45, 138, 94, 0.18);
}
html.lb-theme-india .lb-pricing-features li::before {
  color: #2d8a5e;
}

/* --------------------------------------------------------------------------
   Page Headers (inner pages)
   -------------------------------------------------------------------------- */
.lb-page-hero {
  padding: calc(var(--lb-nav-height) + 4rem) 0 4rem;
  background: linear-gradient(135deg, var(--lb-dark) 0%, var(--lb-darker) 100%);
  color: var(--lb-white);
  text-align: center;
}

.lb-page-hero-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.lb-page-hero-sub {
  font-size: 1.1rem;
  opacity: 0.85;
}

/* Contact page: hero with light background image */
.lb-page-hero-contact {
  position: relative;
  background-image: url('../images/contact-hero.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.lb-page-hero-contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.35);
  z-index: 0;
}

.lb-page-hero-contact .lb-container {
  position: relative;
  z-index: 1;
}

.lb-page-hero-contact .lb-page-hero-title,
.lb-page-hero-contact .lb-page-hero-sub {
  color: var(--lb-dark);
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.lb-page-hero-contact .lb-page-hero-sub {
  opacity: 0.9;
  color: #2c3e50;
}

/* --------------------------------------------------------------------------
   Scroll Animations (reveal on scroll)
   -------------------------------------------------------------------------- */
.lb-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.lb-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Index: show all section content (reveal may not run in time) */
.lb-page-home .lb-reveal,
.lb-page-home .lb-reveal-left,
.lb-page-home .lb-reveal-right,
.lb-page-home .lb-reveal-scale {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
}

.lb-page-home .lb-stagger > * {
  opacity: 1;
  transform: translateY(0);
}

/* Contact (and other inner pages): show content without scroll-reveal delay */
/* All inner pages (non-home): show content immediately, no scroll-reveal delay */
body:not(.lb-page-home) .lb-reveal,
body:not(.lb-page-home) .lb-reveal-left,
body:not(.lb-page-home) .lb-reveal-right,
body:not(.lb-page-home) .lb-reveal-scale,
body:not(.lb-page-home) .lb-stagger > * {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
}

.lb-page-contact .lb-reveal,
.lb-page-contact .lb-reveal-left,
.lb-page-contact .lb-reveal-right,
.lb-page-contact .lb-reveal-scale,
.lb-page-contact .lb-stagger > * {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
}

.lb-reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.lb-reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.lb-reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.lb-reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

.lb-reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.lb-reveal-scale.revealed {
  opacity: 1;
  transform: scale(1);
}

/* Stagger children */
.lb-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.lb-stagger.revealed > *:nth-child(1) { transition-delay: 0.1s; }
.lb-stagger.revealed > *:nth-child(2) { transition-delay: 0.2s; }
.lb-stagger.revealed > *:nth-child(3) { transition-delay: 0.3s; }
.lb-stagger.revealed > *:nth-child(4) { transition-delay: 0.4s; }
.lb-stagger.revealed > *:nth-child(5) { transition-delay: 0.5s; }
.lb-stagger.revealed > *:nth-child(6) { transition-delay: 0.6s; }

.lb-stagger.revealed > * {
  opacity: 1;
  transform: translateY(0);
}

/* --------------------------------------------------------------------------
   Forms (Contact, etc.)
   -------------------------------------------------------------------------- */
.lb-form-group {
  margin-bottom: 1.25rem;
}

.lb-form-label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--lb-dark);
}

.lb-form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border: 2px solid rgba(0, 0, 0, 0.12);
  border-radius: var(--lb-radius-sm);
  background: var(--lb-white);
  transition: border-color var(--lb-transition), box-shadow var(--lb-transition);
}

.lb-form-control:focus {
  outline: none;
  border-color: var(--lb-primary);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.2);
}

textarea.lb-form-control {
  min-height: 140px;
  resize: vertical;
}

/* --------------------------------------------------------------------------
   Contact page: form, address, map
   -------------------------------------------------------------------------- */
.lb-contact-form-card,
.lb-contact-address-card {
  background: var(--lb-white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 0;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.lb-contact-form-title,
.lb-contact-address-title,
.lb-contact-map-title {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--lb-dark);
}

.lb-contact-form .lb-form-control {
  border-radius: 0;
}

.lb-contact-address-block {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.lb-contact-address-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.lb-contact-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
}

.lb-contact-address-item strong {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--lb-secondary);
  margin-bottom: 0.25rem;
}

.lb-contact-address-item a {
  color: var(--lb-primary);
  text-decoration: none;
}

.lb-contact-address-item a:hover {
  text-decoration: underline;
}

.lb-contact-note {
  font-size: 0.95rem;
  color: var(--lb-secondary);
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.lb-contact-map-title {
  margin-bottom: 1rem;
}

.lb-contact-map-wrap {
  position: relative;
  width: 100%;
  border-radius: 0;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.lb-contact-map {
  display: block;
  width: 100%;
  height: 400px;
  border: none;
  vertical-align: middle;
}

.lb-contact-map-link {
  margin: 0;
  padding: 0.75rem 1rem;
  background: var(--lb-light);
  font-size: 0.9rem;
  text-align: center;
}

.lb-contact-map-link a {
  color: var(--lb-primary);
  font-weight: 600;
  text-decoration: none;
}

.lb-contact-map-link a:hover {
  text-decoration: underline;
}

@media (max-width: 991.98px) {
  .lb-contact-map {
    height: 320px;
  }
}

/* --------------------------------------------------------------------------
   Breadcrumb
   -------------------------------------------------------------------------- */
.lb-breadcrumb {
  padding: 0.5rem 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.lb-breadcrumb a {
  color: rgba(255, 255, 255, 0.85);
}

.lb-breadcrumb a:hover {
  color: var(--lb-white);
}

.lb-breadcrumb span {
  margin: 0 0.5rem;
  opacity: 0.6;
}

/* --------------------------------------------------------------------------
   Utilities
   -------------------------------------------------------------------------- */
.lb-text-center { text-align: center; }
.lb-mb-0 { margin-bottom: 0; }
.lb-mb-1 { margin-bottom: 0.5rem; }
.lb-mb-2 { margin-bottom: 1rem; }
.lb-mb-3 { margin-bottom: 1.5rem; }
.lb-mb-4 { margin-bottom: 2rem; }
.lb-mt-4 { margin-top: 2rem; }

/* --------------------------------------------------------------------------
   Careers Page
   -------------------------------------------------------------------------- */
.lb-job-card {
  background: var(--lb-white);
  border-radius: var(--lb-radius);
  padding: 1.5rem 2rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  margin-bottom: 1rem;
  transition: border-color var(--lb-transition), box-shadow var(--lb-transition);
}

.lb-job-card:hover {
  border-color: var(--lb-primary);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.12);
}

.lb-job-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.lb-job-meta {
  font-size: 0.9rem;
  color: var(--lb-secondary);
  margin-bottom: 0.5rem;
}

.lb-job-desc {
  font-size: 0.95rem;
  color: var(--lb-dark);
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   Blog / Resources list
   -------------------------------------------------------------------------- */
.lb-article-card {
  background: var(--lb-white);
  border-radius: var(--lb-radius);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  transition: transform var(--lb-transition), box-shadow var(--lb-transition);
  height: 100%;
}

.lb-article-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.lb-article-img {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, #e9ecef, #dee2e6);
  overflow: hidden;
}

.lb-article-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lb-article-body {
  padding: 1.5rem;
}

.lb-article-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.35;
}

.lb-article-title a:hover {
  color: var(--lb-primary);
}

.lb-article-meta {
  font-size: 0.85rem;
  color: var(--lb-secondary);
}

/* --------------------------------------------------------------------------
   Bootstrap Overrides (when using Bootstrap grid only)
   -------------------------------------------------------------------------- */
.lb-container .row {
  margin-left: -0.75rem;
  margin-right: -0.75rem;
}

.lb-container .row > [class*="col-"] {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

@media (max-width: 575.98px) {
  .lb-hero-content {
    padding: 2rem 1rem;
  }

  .lb-section {
    padding: 3rem 0;
  }

  .lb-footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .lb-pricing-price {
    font-size: 2rem;
  }
}

/* --------------------------------------------------------------------------
   Partners & Certifications Section
   -------------------------------------------------------------------------- */
.lb-partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 2rem;
  align-items: center;
  justify-items: center;
}

.lb-partner-item {
  padding: 1rem;
  opacity: 0.75;
  filter: grayscale(0.3);
  transition: opacity var(--lb-transition), filter var(--lb-transition);
}

.lb-partner-item:hover {
  opacity: 1;
  filter: grayscale(0);
}

.lb-partner-item img {
  max-height: 48px;
  width: auto;
  object-fit: contain;
}

.lb-cert-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1rem;
  background: var(--lb-glass-card);
  border-radius: var(--lb-radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  margin: 0.25rem;
  transition: transform var(--lb-transition), box-shadow var(--lb-transition);
}

.lb-cert-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

/* --------------------------------------------------------------------------
   Service Detail Pages
   -------------------------------------------------------------------------- */
.lb-service-hero {
  padding: calc(var(--lb-nav-height) + 3rem) 0 3rem;
  background: linear-gradient(135deg, var(--lb-dark) 0%, #252a3d 100%);
  color: var(--lb-white);
}

.lb-service-content {
  max-width: 800px;
  margin: 0 auto;
}

.lb-service-content h2 {
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  color: var(--lb-dark);
}

.lb-service-content p {
  margin-bottom: 1rem;
  line-height: 1.75;
  color: var(--lb-secondary);
}

.lb-service-list {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.lb-service-list li {
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 0.5rem;
}

.lb-service-list li::before {
  content: '→';
  position: absolute;
  left: -1.25rem;
  color: var(--lb-primary);
  font-weight: 700;
}

/* --------------------------------------------------------------------------
   Industry Cards (grid on Industries landing)
   -------------------------------------------------------------------------- */
.lb-industry-card {
  background: var(--lb-white);
  border-radius: var(--lb-radius);
  padding: 2rem;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.06);
  height: 100%;
  transition: all var(--lb-transition);
}

.lb-industry-card:hover {
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
  transform: translateY(-6px);
  border-color: var(--lb-primary);
}

.lb-industry-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  border-radius: var(--lb-radius);
  background: linear-gradient(135deg, var(--lb-usa-light) 0%, #60a5fa 35%, var(--lb-usa-dark) 70%, var(--lb-usa-deep) 100%);
  color: var(--lb-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
}

.lb-industry-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.lb-industry-card p {
  font-size: 0.95rem;
  color: var(--lb-secondary);
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   Why Logibytes Section (home page blocks)
   -------------------------------------------------------------------------- */
.lb-why-block {
  background: var(--lb-white);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  height: 100%;
  transition: all var(--lb-transition);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.lb-why-block:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.lb-why-block .lb-card-icon {
  float: left;
  width: 48px;
  height: 48px;
  margin: 0 1rem 0 0;
  margin-bottom: 0;
  border-radius: 12px;
  background: #b8d4ff;
  color: var(--lb-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
}

.lb-why-block h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 0 0.5rem 0;
  overflow: hidden;
  padding-top: 0.15rem;
}

.lb-why-block p {
  font-size: 0.95rem;
  color: var(--lb-secondary);
  line-height: 1.6;
  clear: left;
}

/* --------------------------------------------------------------------------
   Stats / Counters
   -------------------------------------------------------------------------- */
.lb-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 2rem;
  text-align: center;
  padding: 2rem 0;
}

.lb-stat-value {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--lb-primary);
  line-height: 1.2;
}

.lb-stat-label {
  font-size: 0.9rem;
  color: var(--lb-secondary);
  margin-top: 0.25rem;
}

/* --------------------------------------------------------------------------
   Accordion (FAQ / Resources)
   -------------------------------------------------------------------------- */
.lb-accordion-item {
  background: var(--lb-white);
  border-radius: var(--lb-radius-sm);
  margin-bottom: 0.75rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.lb-accordion-head {
  padding: 1rem 1.25rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background var(--lb-transition);
}

.lb-accordion-head:hover {
  background: rgba(37, 99, 235, 0.06);
}

.lb-accordion-head::after {
  content: '+';
  font-size: 1.25rem;
  color: var(--lb-primary);
  transition: transform var(--lb-transition);
}

.lb-accordion-item.open .lb-accordion-head::after {
  transform: rotate(45deg);
}

.lb-accordion-body {
  padding: 0 1.25rem 1rem;
  display: none;
}

.lb-accordion-item.open .lb-accordion-body {
  display: block;
}

.lb-accordion-body p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--lb-secondary);
  line-height: 1.7;
}

/* --------------------------------------------------------------------------
   Tab-like Navigation (inner sections)
   -------------------------------------------------------------------------- */
.lb-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  border-bottom: 2px solid rgba(0, 0, 0, 0.08);
}

.lb-tab {
  padding: 0.6rem 1.25rem;
  font-weight: 600;
  color: var(--lb-secondary);
  border-radius: var(--lb-radius-sm);
  transition: color var(--lb-transition), background var(--lb-transition);
}

.lb-tab:hover,
.lb-tab.active {
  color: var(--lb-primary);
  background: rgba(37, 99, 235, 0.08);
}

/* --------------------------------------------------------------------------
   Alert / Notice Boxes
   -------------------------------------------------------------------------- */
.lb-alert {
  padding: 1rem 1.25rem;
  border-radius: var(--lb-radius-sm);
  margin-bottom: 1rem;
  border-left: 4px solid;
}

.lb-alert-info {
  background: rgba(37, 99, 235, 0.08);
  border-color: var(--lb-primary);
  color: var(--lb-dark);
}

.lb-alert-success {
  background: rgba(25, 135, 84, 0.08);
  border-color: #198754;
  color: var(--lb-dark);
}

/* --------------------------------------------------------------------------
   Table (e.g. comparison, pricing details)
   -------------------------------------------------------------------------- */
.lb-table-wrap {
  overflow-x: auto;
  border-radius: var(--lb-radius);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.lb-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.lb-table th,
.lb-table td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.lb-table th {
  background: var(--lb-light);
  font-weight: 700;
  color: var(--lb-dark);
}

.lb-table tr:last-child td {
  border-bottom: none;
}

.lb-table tr:hover td {
  background: rgba(37, 99, 235, 0.04);
}

/* --------------------------------------------------------------------------
   Back to top / Scroll progress
   -------------------------------------------------------------------------- */
.lb-back-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 0;
  background: linear-gradient(135deg, #7ab8ff 0%, var(--lb-usa-mid) 40%, var(--lb-usa-deep) 100%);
  color: var(--lb-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--lb-transition), visibility var(--lb-transition), transform var(--lb-transition);
  z-index: 1000;
  border: none;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.45);
}

.lb-back-top.visible {
  opacity: 1;
  visibility: visible;
}

.lb-back-top:hover {
  transform: translateY(-4px);
  color: var(--lb-white);
}

/* --------------------------------------------------------------------------
   Mobile: touch-friendly nav
   -------------------------------------------------------------------------- */
@media (max-width: 991.98px) {
  .lb-mega {
    padding: 1rem;
    gap: 0.5rem 1rem;
  }

  .lb-hero-dots {
    bottom: 1.5rem;
  }

  .lb-logos-track {
    gap: 2.5rem;
  }

  .lb-pricing-card.featured {
    order: -1;
  }
}

/* --------------------------------------------------------------------------
   Print
   -------------------------------------------------------------------------- */
@media print {
  .lb-navbar,
  .lb-hero-dots,
  .lb-back-top,
  .lb-btn {
    display: none !important;
  }

  .lb-hero {
    min-height: auto;
    padding: 2rem 0;
  }

  body {
    background: #fff;
  }
}
