/* Bizzname Redesign Stylesheet - bizzname.com Theme & Aesthetics */
/* Powered STRICTLY by Bootstrap 5 and Vanilla CSS (Zero Tailwind CSS) */

/* ═══════════════════════════════════════════════════
   PERFORMANCE & SMOOTHNESS FOUNDATIONS
   ═══════════════════════════════════════════════════ */

/* Smooth scrolling site-wide */
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

/* Box-sizing reset for predictable layout */
*, *::before, *::after {
  box-sizing: border-box;
}

/* GPU-accelerated transitions — only animate transform & opacity (compositor-only) */
.card,
.btn,
.nav-link,
.cat-card,
.sidebar-link,
.accordion-button {
  transition: transform 0.22s cubic-bezier(.25,.8,.25,1),
              opacity 0.22s ease,
              box-shadow 0.22s ease;
  will-change: transform;
  transform: translateZ(0); /* promote to composite layer */
  backface-visibility: hidden;
}

/* Hover lift — GPU-only transform (no layout reflow) */
.card:hover {
  transform: translateY(-4px) translateZ(0);
  box-shadow: var(--bizz-shadow-hover);
}

/* Image rendering performance */
img {
  image-rendering: auto;
  max-width: 100%;
  height: auto;
  display: block;
}

/* Prevent layout shift on images without explicit dimensions */
img[width][height] { aspect-ratio: attr(width) / attr(height); }

/* Off-screen section lazy rendering (saves paint time) */
section {
  content-visibility: auto;
  contain-intrinsic-size: 0 400px; /* estimated height hint */
}
/* Critical above-fold sections must NOT defer */
section:first-of-type,
nav,
footer { content-visibility: visible; }

/* Page fade-in animation */
body {
  animation: pageFadeIn 0.22s ease forwards;
}
@keyframes pageFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Respect user motion preferences (accessibility + performance) */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}


:root {
  --bizz-primary: #004aab;
  --bizz-primary-dark: #004085;
  --bizz-primary-light: #e6f0ff;
  --bizz-accent: #0f4dae;
  --bizz-green: #25D366;
  --bizz-phone-green: #28a745;
  --bizz-dark: #0f172a;
  --bizz-gray-dark: #1e293b;
  --bizz-gray: #64748b;
  --bizz-gray-light: #f8fafc;
  --bizz-border: #e2e8f0;
  --bizz-shadow: 0 10px 30px rgba(0, 86, 179, 0.08);
  --bizz-shadow-hover: 0 15px 35px rgba(0, 86, 179, 0.18);
  --bizz-radius: 12px;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--bizz-gray-dark);
  background-color: #fcfcfd;
  line-height: 1.6;
  overflow-x: hidden; /* Prevents horizontal scroll on mobile */
}

h1, h2, h3, h4, h5, h6, .font-heading {
  font-family: 'Outfit', 'Inter', sans-serif;
  font-weight: 700;
  color: var(--bizz-gray-dark);
}

/* Custom Sizing & Utility Classes (Vanilla CSS) */
.max-w-700 { max-width: 700px; }
.max-w-300 { max-width: 300px; }
.fs-7 { font-size: 0.85rem !important; }
.opacity-90 { opacity: 0.90 !important; }

/* Brand Colors & Buttons (Bootstrap 5 Extensions) */
.bg-bizz-primary { background-color: var(--bizz-primary) !important; }
.text-bizz-primary { color: var(--bizz-primary) !important; }

.btn-bizz {
  background-color: var(--bizz-primary);
  color: #ffffff;
  border-radius: 8px;
  font-weight: 600;
  border: 2px solid var(--bizz-primary);
  transition: all 0.25s ease;
}

.btn-bizz:hover {
  background-color: var(--bizz-primary-dark);
  border-color: var(--bizz-primary-dark);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 86, 179, 0.3);
}

.btn-outline-bizz {
  border: 2px solid var(--bizz-primary);
  color: var(--bizz-primary);
  border-radius: 8px;
  font-weight: 600;
  background: transparent;
  transition: all 0.25s ease;
}

.btn-outline-bizz:hover {
  background-color: var(--bizz-primary);
  color: #ffffff;
  transform: translateY(-2px);
}

/* Active Navbar Links */
.nav-link {
  color: var(--bizz-gray-dark) !important;
  transition: color 0.2s ease;
}

.nav-link:hover, .nav-link.active-nav {
  color: var(--bizz-primary) !important;
  font-weight: 700;
}

.active-nav {
  border-bottom: 2px solid var(--bizz-primary);
}

/* Category Strip */
.category-strip {
  background: #ffffff;
  border-bottom: 1px solid var(--bizz-border);
}

.cat-card {
  background: #ffffff;
  border: 1px solid var(--bizz-border);
  border-radius: var(--bizz-radius);
  padding: 14px 16px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100%;
  text-decoration: none;
  color: var(--bizz-gray-dark);
}

.cat-card:hover {
  border-color: var(--bizz-primary);
  transform: translateY(-4px);
  box-shadow: var(--bizz-shadow);
  color: var(--bizz-primary);
}

.cat-icon-wrapper {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bizz-primary-light);
  color: var(--bizz-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 10px;
  transition: all 0.3s ease;
}

.cat-card:hover .cat-icon-wrapper {
  background: var(--bizz-primary);
  color: #ffffff;
}

/* Product & Service Section Cards */
.product-card {
  background: #ffffff;
  border: 1px solid var(--bizz-border);
  border-radius: var(--bizz-radius);
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  border-color: var(--bizz-primary);
  box-shadow: var(--bizz-shadow-hover);
  transform: translateY(-5px);
}

.product-img-wrapper {
  height: 200px;
  overflow: hidden;
  background: var(--bizz-gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.product-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-card:hover .product-img-wrapper img {
  transform: scale(1.05);
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--bizz-primary);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  text-transform: uppercase;
}

.product-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--bizz-gray-dark);
  margin-bottom: 8px;
}

.product-desc {
  font-size: 0.88rem;
  color: var(--bizz-gray);
  margin-bottom: 12px;
  flex-grow: 1;
}

.rating {
  color: #ffc107;
  font-size: 0.85rem;
  margin-bottom: 12px;
}

.product-price {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--bizz-primary);
  margin-bottom: 15px;
}

.product-price small {
  text-decoration: line-through;
  font-size: 0.85rem;
  color: var(--bizz-gray);
  margin-left: 6px;
  font-weight: 400;
}

/* Floating WhatsApp Button */
#whatsapp-button {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background-color: var(--bizz-green);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1050;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#whatsapp-button:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

/* Mobile Sidebar Drawer */
.sidebar {
  position: fixed;
  top: 0;
  left: -300px;
  width: 300px;
  height: 100%;
  background: #ffffff;
  z-index: 1090;
  transition: left 0.3s ease;
  box-shadow: 4px 0 20px rgba(0,0,0,0.15);
  overflow-y: auto;
}

.sidebar.active {
  left: 0;
}

.sidebar-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  margin-bottom: 4px;
  font-weight: 600;
  color: var(--bizz-gray-dark);
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.sidebar-link i {
  width: 22px;
  text-align: center;
  color: var(--bizz-primary);
}

.sidebar-link:hover, .sidebar-link.active-sidebar {
  background: var(--bizz-primary-light);
  color: var(--bizz-primary);
}

.sidebar-cta {
  border: 2px solid var(--bizz-primary);
  color: var(--bizz-primary);
  border-radius: 8px;
  font-weight: 700;
}

.sidebar-cta:hover {
  background: var(--bizz-primary);
  color: #fff;
}

/* Overlay */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  background: rgba(15, 23, 42, 0.5);
  z-index: 1080;
  backdrop-filter: blur(3px);
}

.overlay.active {
  display: block;
}

/* Icon button for mobile topbar */
.icon-btn {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}

/* Owl carousel dots customization */
.owl-dots .owl-dot span {
  width: 24px;
  height: 6px;
  margin: 5px 4px;
  background: #cbd5e1;
  display: block;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.owl-dots .owl-dot.active span {
  background: var(--bizz-primary);
  width: 36px;
}

.hover-white:hover {
  color: #ffffff !important;
}

/* Feature Check Lists */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.feature-list li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--bizz-primary);
}

/* ─────────────────────────────────────────────────────────────
   HERO IMAGE SECTION UTILITIES (BOOTSTRAP 5 + VANILLA CSS ONLY)
───────────────────────────────────────────────────────────── */

/* Hero Glow Container */
.hero-image-wrapper {
  position: relative;
  z-index: 1;
}

.hero-glow-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(0, 86, 179, 0.15) 0%, rgba(37, 211, 102, 0.05) 50%, transparent 75%);
  filter: blur(40px);
  z-index: -1;
  pointer-events: none;
}

/* Floating Badges */
.floating-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid var(--bizz-border);
  box-shadow: 0 10px 25px rgba(0, 86, 179, 0.12);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--bizz-gray-dark);
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 5;
  animation: floatBounce 4s ease-in-out infinite;
}

.floating-badge.badge-top-left {
  top: -15px;
  left: -15px;
}

.floating-badge.badge-bottom-right {
  bottom: -15px;
  right: -15px;
  animation-delay: 2s;
}

.floating-badge.badge-top-right {
  top: -10px;
  right: -10px;
  animation-delay: 1s;
}

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

/* Browser Mockup Frame */
.browser-mockup {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 86, 179, 0.15);
  border: 1px solid var(--bizz-border);
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.browser-mockup:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(0, 86, 179, 0.22);
}

.browser-topbar {
  background: #f1f5f9;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid #e2e8f0;
}

.window-dots {
  display: flex;
  gap: 6px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}
.dot-red { background: #ff5f56; }
.dot-yellow { background: #ffbd2e; }
.dot-green { background: #27c93f; }

.url-bar {
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: 20px;
  padding: 3px 14px;
  font-size: 0.78rem;
  color: #64748b;
  flex-grow: 1;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* NFC Pulsing Wave */
.nfc-card-frame {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(135deg, #0056B3 0%, #034aad 100%);
  color: #fff;
  box-shadow: 0 15px 35px rgba(0, 86, 179, 0.3);
}

.nfc-wave-ring {
  position: absolute;
  width: 100px;
  height: 100px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: nfcPulse 2.5s ease-out infinite;
}

@keyframes nfcPulse {
  0% { width: 50px; height: 50px; opacity: 1; }
  100% { width: 250px; height: 250px; opacity: 0; }
}

/* Search Ranking Dashboard Card */
.rank-dashboard-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--bizz-border);
  padding: 20px;
}

.google-search-bar-sim {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 30px;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: #334155;
  margin-bottom: 15px;
}

/* ─────────────────────────────────────────────────────────────
   MOBILE RESPONSIVENESS MEDIA QUERIES (@media)
───────────────────────────────────────────────────────────── */

@media (max-width: 991.98px) {
  /* Hide desktop navbar, use mobile topbar & drawer */
  .navbar-brand img {
    height: 36px;
  }
  
  .display-4, .display-5 {
    font-size: 2.2rem;
  }
  
  .lead {
    font-size: 1.05rem;
  }

  /* Floating Badges Responsive Positioning */
  .floating-badge.badge-top-left {
    top: -10px;
    left: 0;
    font-size: 0.75rem;
    padding: 6px 12px;
  }

  .floating-badge.badge-top-right {
    top: -10px;
    right: 0;
    font-size: 0.75rem;
    padding: 6px 12px;
  }

  .floating-badge.badge-bottom-right {
    bottom: -10px;
    right: 0;
    font-size: 0.75rem;
    padding: 6px 12px;
  }
}

@media (max-width: 575.98px) {
  body {
    font-size: 0.92rem;
  }

  .display-4, .display-5 {
    font-size: 1.85rem;
  }

  .btn-lg {
    padding: 10px 18px;
    font-size: 0.95rem;
  }

  /* Responsive floating WhatsApp button */
  #whatsapp-button {
    bottom: 16px;
    right: 16px;
    width: 50px;
    height: 50px;
  }

  #whatsapp-button i {
    font-size: 1.5rem !important;
  }

  /* Adjust product card height */
  .product-img-wrapper {
    height: 180px;
  }
}

.text-primary{color:#004aab!important}
.bg-bizzname-light.text-white.py-1.px-3.d-none.d-md-block {
    background: #ff5757;
}
.bizzname-logo {
    width: 100%;
    height: 64px!important;
    aspect-ratio: auto;
    margin-top: -12px;
    margin-bottom: -12px;
    display: block;
}