/* Base Styles */

:root {
  --foreground-rgb: 0, 0, 0;
  --background-rgb: 242, 242, 242;
  --primary: 171, 212, 0;
  --primary-dark: 154, 192, 0;
}
 /* Green Get Started Button */
    .get-started-btn {
      background-color: #abd500;
      color: #fff !important;
      font-weight: 600;
      padding: 0.5rem 1.25rem;
      border-radius: 8px;
      text-decoration: none;
      transition: all 0.3s ease;
      border: none;
      cursor: pointer;
    }
    
    .get-started-btn:hover {
      background-color: #95bc00;
      transform: translateY(-2px);
    }
    /* Footer Social Links Styles */
    .social-links-container {
      display: flex;
      align-items: left;
      text-align: left;
    }
    
    .social-links {
      display: flex;
      gap: 1rem;
    }
	
/* Cookie Banner Container */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #ffffff;
  color: #333333;
  box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  font-family: 'Inter', sans-serif;
  padding: 10px 15px;
  display: none;  /* Will be set to flex when displayed */
  align-items: center;
  justify-content: center;
}

/* Inner flex container */
.cookie-inner {
  display: flex;
  align-items: center;
  max-width: 1000px;
  width: 100%;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* Cookie Text */
.cookie-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
  flex: 1;
  padding-right: 20px;
}

/* Buttons Container */
.cookie-buttons {
  display: flex;
  gap: 10px;
}

/* Accept Button */
.btn-accept {
  background: #abd500;
  color: #ffffff;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 4px;
  font-size: 14px;
}

/* Decline Button */
.btn-decline {
  background: #111827;
  color: #ffffff;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 4px;
  font-size: 14px;
}

/* Hover Effects */
.btn-accept:hover {
  background: #218838;
}

.btn-decline:hover {
  background: #5a6268;
}

/* Responsive: Stack the elements vertically on narrow screens */
@media (max-width: 600px) {
  .cookie-inner {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-text {
    padding: 0 0 10px;
  }
}


    
    /* Desktop Footer Layout */
    @media (min-width: 768px) {
      .footer-grid {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 2rem;
      }
      
      .social-links-container {
        flex-direction: column;
      }
      
      .social-links {
        flex-direction: column;
        gap: 1rem;
        text-align: left;
      }
      
      .social-link-item {
        display: flex;
        align-items: left;
        gap: 0.5rem;
        text-align: left;
      }
      
      .social-link-item img {
        margin-right: 0.5rem;
      }
      
      .sitemap-column {
        text-align: left;
      }
    }
    
    /* Mobile Footer Layout */
    @media (max-width: 767px) {
      .mobile-social-links {
        display: flex;
        justify-content: center;
        gap: 1.5rem;
        padding: 1.5rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        margin-bottom: 1.5rem;
      }
      
      .desktop-social-links {
        display: none;
      }
      
      .footer-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
      }
    }
    
    @media (min-width: 768px) {
      .mobile-social-links {
        display: none;
      }
      
      .desktop-social-links {
        display: block;
      }
    }
	/* Add this to your existing CSS styles */
.desktop-social-links h3,
.desktop-social-links .social-links,
.desktop-social-links .social-link-item,
.desktop-social-links .social-link-item a {
  text-align: left;
  justify-content: flex-start;
  width: 100%;
}

.desktop-social-links .social-links {
  padding-left: 0;
  margin-left: 0;
}

.desktop-social-links .social-link-item a {
  display: flex;
  align-items: center;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: rgb(var(--foreground-rgb));
  background: rgb(var(--background-rgb));
  line-height: 1.5;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Raleway', sans-serif;
  margin-bottom: 0.5rem;
}

h1 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

h2 {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
}

h3 {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}
/* Footer Styles */
.footer {
  background-color: #111827; /* bg-gray-900 */
  color: white;
  padding: 4rem 0; /* py-16 */
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Top section */
.footer-top {
  display: flex;
  flex-direction: column;
  margin-bottom: 3rem;
}

.company-info {
  margin-bottom: 2rem;
}

.company-info p {
  margin-bottom: 1rem;
}

.company-name {
  color: #3b82f6; /* text-primary */
  font-weight: bold;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.social-icon {
  transition: transform 0.3s;
}

.social-icon:hover {
  transform: scale(1.1);
}

.social-icon img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

/* Sitemap section */
.sitemap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 2rem 0;
  border-top: 1px solid #1f2937; /* border-gray-800 */
}

.sitemap-column h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.sitemap-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sitemap-column ul li {
  margin-bottom: 0.5rem;
}

.sitemap-column ul li a {
  color: #9ca3af; /* text-gray-400 */
  text-decoration: none;
  transition: color 0.3s;
}

.sitemap-column ul li a:hover {
  color: white;
}

.resource-link {
  padding-top: 0.5rem;
}

/* Partner logos section */
.partner-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  padding-top: 2rem;
  margin-bottom: 2rem;
  border-top: 1px solid #1f2937; /* border-gray-800 */
}

.partner-logos img {
  height: 40px;
  max-width: 120px;
  object-fit: contain;
}

/* Copyright */
.copyright {
  text-align: center;
  font-size: 0.875rem;
  color: #9ca3af; /* text-gray-400 */
}

/* Responsive adjustments */
@media (min-width: 768px) {
  .footer-top {
    flex-direction: row;
    justify-content: space-between;
  }
  
  .company-info {
    width: 66.666667%;
    margin-bottom: 0;
  }
  
  .social-links {
    align-items: flex-end;
  }
  
  .sitemap {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (min-width: 640px) {
  .container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0rem;
  }
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.text-white {
  color: white;
}

.text-primary {
  color: rgb(var(--primary));
}

.bg-white {
  background-color: white;
}

.bg-primary {
  background-color: rgb(var(--primary));
}

.bg-gray-100 {
  background-color: #f3f4f6;
}

.bg-gray-900 {
  background-color: #111827;
}

.rounded-lg {
  border-radius: 0.5rem;
}

.rounded-xl {
  border-radius: 0.75rem;
}

.rounded-full {
  border-radius: 9999px;
}

.shadow-md {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.shadow-lg {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.shadow-xl {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.py-4 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.py-6 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.py-8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.py-12 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.py-16 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.py-20 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.px-8 {
  padding-left: 2rem;
  padding-right: 2rem;
}

.p-4 {
  padding: 1rem;
}

.p-6 {
  padding: 1.5rem;
}

.p-8 {
  padding: 2rem;
}

.mb-1 {
  margin-bottom: 0.25rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-3 {
  margin-bottom: 0.75rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mb-12 {
  margin-bottom: 3rem;
}

.mb-16 {
  margin-bottom: 4rem;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mt-8 {
  margin-top: 2rem;
}

.mt-12 {
  margin-top: 3rem;
}

.mr-4 {
  margin-right: 1rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.flex {
  display: flex;
}

.inline-flex {
  display: inline-flex;
}

.grid {
  display: grid;
}

.hidden {
  display: none;
}

.flex-col {
  flex-direction: column;
}

.items-center {
  align-items: center;
}

.items-start {
  align-items: flex-start;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-end {
  justify-content: flex-end;
}

.space-x-4 > * + * {
  margin-left: 1rem;
}

.space-x-6 > * + * {
  margin-left: 1.5rem;
}

.space-x-8 > * + * {
  margin-left: 2rem;
}

.space-y-4 > * + * {
  margin-top: 1rem;
}

.space-y-6 > * + * {
  margin-top: 1.5rem;
}

.space-y-8 > * + * {
  margin-top: 2rem;
}

.gap-4 {
  gap: 1rem;
}

.gap-6 {
  gap: 1.5rem;
}

.gap-8 {
  gap: 2rem;
}

.w-full {
  width: 100%;
}

.h-full {
  height: 100%;
}

.h-screen {
  height: 100vh;
}

.min-h-screen {
  min-height: 100vh;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.fixed {
  position: fixed;
}

.inset-0 {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.top-0 {
  top: 0;
}

.left-0 {
  left: 0;
}

.right-0 {
  right: 0;
}

.bottom-0 {
  bottom: 0;
}

.z-10 {
  z-index: 10;
}

.z-20 {
  z-index: 20;
}

.z-30 {
  z-index: 30;
}

.z-40 {
  z-index: 40;
}

.z-50 {
  z-index: 50;
}

.overflow-hidden {
  overflow: hidden;
}

.object-cover {
  object-fit: cover;
}

.object-contain {
  object-fit: contain;
}

.transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
}

.transition-colors {
  transition-property: color, background-color, border-color;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
}

.transition-transform {
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
}

.duration-300 {
  transition-duration: 300ms;
}

.duration-500 {
  transition-duration: 500ms;
}

.transform {
  transform: translateX(0) translateY(0) rotate(0) skewX(0) skewY(0) scaleX(1) scaleY(1);
}

.backdrop-blur-sm {
  backdrop-filter: blur(4px);
}

.font-medium {
  font-weight: 500;
}

.font-semibold {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}

.text-sm {
  font-size: 0.875rem;
}

.text-lg {
  font-size: 1.125rem;
}

.text-xl {
  font-size: 1.25rem;
}

.text-2xl {
  font-size: 1.5rem;
}

.text-3xl {
  font-size: 1.875rem;
}

.text-4xl {
  font-size: 2.25rem;
}

.text-5xl {
  font-size: 3rem;
}

.text-6xl {
  font-size: 3.75rem;
}

.leading-relaxed {
  line-height: 1.625;
}

.opacity-0 {
  opacity: 0;
}

.opacity-20 {
  opacity: 0.2;
}

.opacity-30 {
  opacity: 0.3;
}

.opacity-40 {
  opacity: 0.4;
}

.opacity-80 {
  opacity: 0.8;
}

.opacity-90 {
  opacity: 0.9;
}

/* Component Styles */
.btn-primary {
  display: inline-block;
  background-color: rgb(var(--primary));
  color: white;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  transition: all 300ms;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.btn-primary:hover {
  background-color: rgb(var(--primary-dark));
  transform: translateY(-0.25rem) scale(1.05);
}

.tile {
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
}

/* Background image for "We Make It Easy" Section */
.bg-easy {
  background-image: url('https://342723991.fs1.hubspotusercontent-na3.net/hubfs/342723991/raw_assets/public/b3-theme/assets/img/easy.jpg');
  background-size: cover;
  background-position: center;
}

/* Industry background images */
.bg-industry-automotive {
  background-image: url('https://342723991.fs1.hubspotusercontent-na3.net/hubfs/342723991/raw_assets/public/b3-theme/assets/img/auto.jpg');
  background-size: cover;
  background-position: center;
}

.bg-industry-oil-gas {
  background-image: url('https://342723991.fs1.hubspotusercontent-na3.net/hubfs/342723991/raw_assets/public/b3-theme/assets/img/oil.jpg');
  background-size: cover;
  background-position: center;
}

.bg-industry-sawmill {
  background-image: url('https://342723991.fs1.hubspotusercontent-na3.net/hubfs/342723991/raw_assets/public/b3-theme/assets/img/sawmill.jpg');
  background-size: cover;
  background-position: center;
}

.bg-industry-pulp-paper {
  background-image: url('https://342723991.fs1.hubspotusercontent-na3.net/hubfs/342723991/raw_assets/public/b3-theme/assets/img/paper.jpg');
  background-size: cover;
  background-position: center;
}

.bg-industry-packaging {
  background-image: url('https://342723991.fs1.hubspotusercontent-na3.net/hubfs/342723991/raw_assets/public/b3-theme/assets/img/packaging.jpg');
  background-size: cover;
  background-position: center;
}

.bg-industry-steel {
  background-image: url('https://342723991.fs1.hubspotusercontent-na3.net/hubfs/342723991/raw_assets/public/b3-theme/assets/img/steel.jpg');
  background-size: cover;
  background-position: center;
}

.bg-industry-food {
  background-image: url('https://342723991.fs1.hubspotusercontent-na3.net/hubfs/342723991/raw_assets/public/b3-theme/assets/img/food.jpg');
  background-size: cover;
  background-position: center;
}

.bg-industry-supply-chain {
  background-image: url('https://342723991.fs1.hubspotusercontent-na3.net/hubfs/342723991/raw_assets/public/b3-theme/assets/img/supply.jpg');
  background-size: cover;
  background-position: center;
}

/* Layout safety */
html, body {
  overflow-x: hidden;
  width: 100%;
}

* {
  max-width: 100%;
  box-sizing: border-box;
}


.industry-card {
  position: relative;
  overflow: hidden;
  border-radius: 0.75rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: all 500ms;
  height: 250px;
  display: block;
}

.industry-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.industry-card-bg {
  position: absolute;
  inset: 0;
  transition: transform 700ms;
}

.industry-card:hover .industry-card-bg {
  transform: scale(1.1);
}

.industry-card-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: white;
}

.industry-card-line {
  width: 3rem;
  height: 0.25rem;
  background-color: rgb(var(--primary));
  margin-top: 0.5rem;
  margin-bottom: 0.75rem;
  transition: all 300ms;
}

.industry-card:hover .industry-card-line {
  width: 5rem;
}

.industry-card-description {
  color: rgba(255, 255, 255, 0.8);
  opacity: 0;
  transition: opacity 300ms;
}

.industry-card:hover .industry-card-description {
  opacity: 1;
}

/* Hero Section */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6);
}

/* Navbar Styles */
.navbar .container {
  padding-left: 0;
}

.navbar {
  position: fixed;
  top: 8px;
  left: 0;
  right: 0;
  z-index: 100;
  border-radius: 12px;
  width: 100%; /* Reduce width slightly */
  max-width: 1200px;
  margin: 0 auto; /* This is the key addition to center the navbar */
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
}

.navbar-scrolled {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.navbar-logo {
  height: 3.5rem;
  width: auto;
  margin-left: 0px;
}

.navbar-menu {
  display: flex;
  align-items: center;
}

.navbar-menu a {
  font-weight: 500;
  transition: color 300ms;
  margin-left: 2rem;
}

.navbar-menu a:hover {
  color: #abd500;
}

.navbar-menu-button {
  display: none;
  padding: 0.5rem;
  border-radius: 0.375rem;
  background: transparent;
  border: none;
  cursor: pointer;
}

.navbar-mobile {
  display: none;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.navbar-mobile a {
  display: block;
  padding: 0.5rem 0;
  font-weight: 500;
  color: #1f2937;
}

.navbar-mobile a:hover {
  color: rgb(var(--primary));
}

.navbar-mobile.active {
  display: block;
}

/* Floating CTA */
.floating-cta {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 50;
  background-color: rgba(var(--primary), 0.9);
  color: white;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  transition: all 300ms;
  cursor: pointer;
  border: none;
}

.floating-cta:hover {
  background-color: rgba(var(--primary-dark), 0.95);
  transform: translateY(-0.25rem) scale(1.05);
}

/* Modal Styles */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
}

.modal-content {
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  border-radius: 1rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  width: 100%;
  max-width: 28rem;
  overflow: hidden;
  transform: translateY(0);
  transition: all 300ms;
}

.modal-header {
  position: relative;
  padding: 1.5rem;
  border-bottom: 1px solid rgba(229, 231, 235, 1);
}

.modal-title {
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
  color: #1f2937;
}

.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  color: #6b7280;
  background: transparent;
  border: none;
  cursor: pointer;
}

.modal-close:hover {
  color: #1f2937;
}

.modal-body {
  padding: 1.5rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  border: 1px solid #d1d5db;
  background-color: rgba(255, 255, 255, 0.8);
  transition: all 300ms;
}

.form-control:focus {
  outline: none;
  border-color: rgba(var(--primary), 0.5);
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 0 3px rgba(var(--primary), 0.25);
}

.form-control.error {
  border-color: #ef4444;
}

.form-error {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: #ef4444;
}

.form-submit {
  width: 100%;
  padding: 0.75rem 1rem;
  background-color: rgb(var(--primary));
  color: white;
  font-weight: 600;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  transition: all 300ms;
}

.form-submit:hover {
  background-color: rgb(var(--primary-dark));
}

.success-message {
  text-align: center;
  padding: 2rem 0;
}

.success-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #1f2937;
}

.success-text {
  color: #4b5563;
}

/* Grid System */
.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

/* Responsive Styles */
@media (max-width: 768px) {
  .navbar-menu {
    display: none;
  }

  .navbar-menu-button {
    display: block;
  }

  .floating-cta {
    bottom: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.25rem;
  }

  .py-20 {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .py-16 {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .py-12 {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}

@media (min-width: 640px) {
  .sm\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .md\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .md\:col-span-2 {
    grid-column: span 2 / span 2;
  }

  .md\:text-5xl {
    font-size: 3rem;
  }

  .md\:text-4xl {
    font-size: 2.25rem;
  }

  .md\:text-3xl {
    font-size: 1.875rem;
  }

  .md\:text-2xl {
    font-size: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .lg\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .lg\:text-6xl {
    font-size: 3.75rem;
  }

  .lg\:text-3xl {
    font-size: 1.875rem;
  }
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  animation: fadeIn 0.8s ease-out forwards;
}

.animate-fade-in-delay {
  animation: fadeIn 0.8s ease-out 0.3s forwards;
  opacity: 0;
}

.animate-fade-in-delay-2 {
  animation: fadeIn 0.8s ease-out 0.6s forwards;
  
  opacity: 0;
}/* Responsive YouTube Video */
.responsive-video {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
}

.responsive-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.offer-card {
  background: white;
  padding: 20px;
  border-radius: 6px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
  .group {
    position: relative;
  }
  
  /* Offer card hover effect */
  .offer-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
  }
  
  /* Offer card line animation */
  .offer-card-line {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 6px;
    width: 0;
    background-color: #ABD500;
    transition: width 0.3s ease;
  }
  
  .offer-card.group:hover .offer-card-line {
    width: 100%;
  }
.icon {
  font-size: 50px;
  color: #abd500; /* B3 Green */
  margin-bottom: 15px;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .navbar-logo {
    height: 3rem;
  }
  
  .navbar:not(.navbar-scrolled) .navbar-mobile a {
    color: rgb(var(--foreground-rgb)) !important;
  }
}/* Smaller Responsive Video */
.responsive-video--small {
  max-width: 1000px; /* Adjust this value to control maximum size */
  margin: 0 auto;
  padding-bottom: 45%; /* Adjust aspect ratio (default 56.25% for 16:9) */
}

.responsive-video--small iframe {
  max-width: 100%;
}

/* For mobile devices */
@media (max-width: 768px) {
  .responsive-video--small {
    padding-bottom: 35%; /* More vertical space on mobile */
    max-width: 90%;
  }
}/* Customer Testimonial Containers */
#customers .bg-white\/90,
#customers .bg-white {
  background-color: white !important;
  backdrop-filter: none !important;
}

#customers .bg-white\/90::before,
#customers .bg-white::before {
  content: none !important;
}

#customers .shadow-md {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1) !important;
}/* Make Getting Started container white */
#contact .bg-primary\/10 {
  background-color: white !important;
  backdrop-filter: none !important;
}

#contact .bg-primary\/10 p {
  color: #4b5563; /* Add text color for better contrast */
}/* Force white backgrounds where needed */
.bg-white {
  background-color: #fff !important;
}

/* Ensure dark text in white containers */
.bg-white *:not(.text-white):not(.text-primary) {
  color: #1f2937 !important;
}

/* Adjust primary color contrast */
.text-primary {
  color: rgb(var(--primary)) !important;
}
/* B3 Timeline Component Styles *//* B3 Timeline Component Styles */
.b3-timeline-container {
  color: white;
  padding: 20px 0;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.b3-timeline-header {
  padding: 20px 0;
}

.b3-timeline-title {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 30px;
  max-width: 600px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.b3-timeline {
  display: flex;
  width: 100%;
  margin-top: 20px;
  position: relative;
}

.timeline-stage {
  flex: 1;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 20px;
  cursor: pointer;
  transition: background-color 0.3s;
  position: relative;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.timeline-stage:last-child {
  border-right: none;
}

.timeline-stage:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.timeline-stage.active {
  background-color: rgba(171, 212, 0, 0.3);
}

.stage-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stage-title {
  font-weight: bold;
  margin-bottom: 10px;
  text-align: center;
}

.stage-duration {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
}

.timeline-popup {
  display: none;
  position: absolute;
  bottom: 100%; /* Position above the timeline container */
  left: 0;
  width: 100%;
  background-color: white;
  color: black;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  z-index: 10;
  margin-bottom: 15px; /* Space between popup and timeline */
}

.popup-content {
  display: flex;
  flex-direction: column;
}

.popup-text {
  flex: 1;
}

.popup-text h3 {
  margin-bottom: 10px;
  color: #333;
}

.popup-text p {
  color: #555;
  line-height: 1.5;
  margin-bottom: 0;
}

.popup-arrow {
  position: absolute;
  top: 100%; /* Position at the bottom of the popup */
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid white;
}

.b3-timeline-durations {
  display: flex;
  width: 100%;
  margin-top: 10px;
}

.timeline-duration {
  flex: 1;
  text-align: center;
  padding: 10px 0;
}

/* Hide/show elements based on screen size */
.mobile-only {
  display: none;
}

.desktop-only {
  display: flex;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .mobile-only {
    display: block;
  }
  
  .desktop-only {
    display: none;
  }
  
  .b3-timeline {
    flex-direction: column;
  }
  
  .timeline-stage {
    margin-bottom: 10px;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 15px;
  }
  
  .timeline-stage:last-child {
    border-bottom: none;
  }
  
  .stage-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  
  .stage-title {
    margin-bottom: 0;
    text-align: left;
    flex: 1;
  }
  
  .stage-duration {
    margin-left: 10px;
    font-weight: 500;
  }
  
  .timeline-popup {
    position: absolute;
    bottom: auto;
    top: 0;
    transform: translateY(-100%);
    margin-bottom: 0;
    margin-top: -10px;
  }
  
  .popup-arrow {
    top: 100%;
  }
  
  .b3-timeline-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  /* Adjust text sizes for mobile */
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  /* Improve spacing on mobile */
  section {
    padding: 2rem 1rem;
  }
  
  /* Better container padding */
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  /* Stack grid items on mobile */
  .w-full.md\:w-1\/2 {
    width: 100%;
    margin-bottom: 2rem;
  }
  
  /* Center align content on mobile */
  #solutions ul {
    padding-left: 1.5rem;
  }
  
  /* Improve footer spacing */
  footer .grid {
    gap: 2rem;
  }
}

/* Video optimization */
.hero-video {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

/* Header improvements */
header {
  transition: background 0.3s ease;
}

header.scrolled {
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
}
}

/* Form improvements */
.form-control {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  margin-bottom: 1rem;
}

.form-error {
  color: red;
  font-size: 0.875rem;
  margin-top: 0.25rem;
}/* Hide image on mobile */
@media (max-width: 768px) 
#page-top {
  background-color: #111827;
}
.company-logo {
  width: 100px;
  height: 40px;
  object-fit: contain;
}

@media (max-width: 768px) {
  .company-logo {
    width: 80px; /* smaller width on mobile */
    height: auto; /* maintain aspect ratio */
  }
}
/* Simple fixes for the modal */

/* 1. Fix text overlapping with X button */
.modal-title {
  padding-right: 40px; /* Create space for the X button */
  line-height: 1.5;
  word-wrap: break-word; /* Allow text to wrap */
}

/* 2. Make the close button more visible and positioned properly */
.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: transparent;
  border: none;
  padding: 5px;
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

/* 3. Ensure modal header has proper positioning */
.modal-header {
  position: relative; /* For absolute positioning of close button */
  padding: 15px 20px;
}

/* 4. Keep the button green all the time */
.form-submit,
.btn-primary,
.floating-cta {
  color: white !important;
}

/* 5. Ensure modal is responsive */
@media (max-width: 480px) {
  .modal-content {
    width: 90%;
    margin: 0 auto;
  }

  .modal-title {
    font-size: 18px; /* Smaller font on mobile */
  }
}

  /* Footer logo responsiveness */
  .footer-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }

  .footer-logos img {
    max-width: 100px;
    height: auto;
  }

  @media (max-width: 768px) {
    .footer-logos img {
      max-width: 80px;
    }
  }

  @media (max-width: 480px) {
    .footer-logos img {
      max-width: 60px;
    }
  } .icon-container {
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      color: white;
      flex-shrink: 0;
      box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
      transition: all 0.3s ease;
    }
    
    .blue-icon {
      background-color: #1a202c;
      background-image: linear-gradient(135deg, #1a202c, #2d3748);
    }
    
    .accordion-svg-icon {
      width: 22px;
      height: 22px;
    }
    
    /* ===== VERTICAL ACCORDION STYLES ===== */
    .accordion-container {
      width: 100%;
      margin: 0 0 40px 0;
      border-radius: 8px;
      overflow: visible;
    }
    
    .accordion-item {
      margin-bottom: 20px;
      border-radius: 8px;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
      background-color: #ffffff;
      transition: all 0.35s ease;
      border: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .accordion-item:hover {
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
      transform: translateY(-2px);
    }
    
    .accordion-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 24px;
      cursor: pointer;
      transition: all 0.3s ease;
      border-radius: 8px;
      background-color: #f8f9fa;
      position: relative;
    }
    
    .accordion-item.active .accordion-header {
      border-bottom-left-radius: 0;
      border-bottom-right-radius: 0;
      background-color: #f0f4fa;
    }
    
    .header-content {
      display: flex;
      align-items: center;
      gap: 18px;
    }
    
    .accordion-header h3 {
      font-size: 18px;
      font-weight: 600;
      margin: 0;
      color: #333;
      letter-spacing: 0.01em;
      line-height: 1.4;
    }
    
    .accordion-header .icon-container {
      width: 48px;
      height: 48px;
    }
    
    .accordion-item:hover .icon-container {
      transform: scale(1.05);
    }
    
    .accordion-toggle-icon {
      font-size: 24px;
      font-weight: bold;
      transition: transform 0.35s ease;
      color: #abd500;
      width: 28px;
      height: 28px;
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: rgba(0, 0, 0, 0.05);
      border-radius: 50%;
    }
    
    .accordion-item.active .accordion-toggle-icon {
      transform: rotate(45deg);
      background-color: rgba(0, 0, 0, 0.1);
    }
    
    .accordion-content {
      max-height: 0;
      overflow: hidden;
      transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
      background-color: white;
      border-bottom-left-radius: 8px;
      border-bottom-right-radius: 8px;
    }
    
    .accordion-item.active .accordion-content {
      max-height: 500px;
      padding: 24px 28px;
    }
    
    .accordion-content p {
      margin: 0;
      line-height: 1.7;
      color: #555;
      font-size: 16px;
    }
    
    .solution-summary {
      margin-top: 36px;
      padding: 28px 32px;
      border-radius: 8px;
      background-color: #f0f4f8;
      border-left: 5px solid #abd500;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    }
    
    .solution-summary h3 {
      color: #333;
      margin-bottom: 16px;
    }
    
    .solution-summary p {
      color: #555;
      line-height: 1.7;
      font-size: 16px;
    }
    
    /* ===== HORIZONTAL ACCORDION STYLES ===== */
    .horizontal-accordion {
      width: 100%;
      margin: 0 auto;
    }
    
    .horizontal-accordion-item {
      background-color: #ffffff;
      border-radius: 8px;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
      transition: all 0.35s ease;
      height: 100%;
      display: flex;
      flex-direction: column;
      border: 1px solid rgba(0, 0, 0, 0.05);
      overflow: hidden;
    }
    
    
    .horizontal-accordion-header {
      padding: 24px;
      background-color: #f8f9fa;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 16px;
      transition: all 0.3s ease;
    }
    
    .horizontal-accordion-header .icon-container {
      width: 64px;
      height: 64px;
    }
    
    .horizontal-accordion-header h3 {
      font-size: 18px;
      font-weight: 600;
      margin: 0;
      color: #333;
    }
    
    .horizontal-accordion-content {
      padding: 20px;
      background-color: #ffffff;
      transition: all 0.3s ease;
    }
    
    .horizontal-accordion-content p {
      margin: 0;
      line-height: 1.7;
      color: #555;
      font-size: 16px;
      text-align: center;
    }
    
    /* ===== HERO & RESPONSIVE STYLES ===== */
    .hero-section {
      position: relative;
      height: 60vh;
      background: #111827;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: #fff;
      padding: 0 1rem;
    }
    
    .hero-section h1 {
      font-size: 2.5rem;
      margin-bottom: 1rem;
    }
    
    .hero-section p {
      font-size: 1.25rem;
      max-width: 800px;
    }
    
    @media (max-width: 768px) {
      .accordion-header, .horizontal-accordion-header {
        padding: 16px 20px;
      }
      
      .accordion-header h3, .horizontal-accordion-header h3 {
        font-size: 16px;
      }
      
      .accordion-header .icon-container {
        width: 40px;
        height: 40px;
      }
      
      .horizontal-accordion-header .icon-container {
        width: 50px;
        height: 50px;
      }
      
      .accordion-svg-icon {
        width: 18px;
        height: 18px;
      }
      
      .header-content {
        gap: 14px;
      }
      
      .accordion-item.active .accordion-content {
        max-height: 800px;
        padding: 20px;
      }
      
      .horizontal-accordion-content {
        padding: 0 20px 20px;
      }
      
      .solution-summary {
        padding: 20px 24px;
      }
    /* ===== SHARED STYLES ===== */
    .icon-container {
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      color: white;
      flex-shrink: 0;
      box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
      transition: all 0.3s ease;
    }
    
    .blue-icon {
      background-color: #1a202c; /* Dark blue matching footer */
      background-image: linear-gradient(135deg, #1a202c, #2d3748);
    }
    
    .accordion-svg-icon {
      width: 22px;
      height: 22px;
    }
    
    /* ===== VERTICAL ACCORDION STYLES ===== */
    .accordion-container {
      width: 100%;
      margin: 20px 0 40px 0;
      border-radius: 8px;
      overflow: hidden;
    }
    
    .accordion-item {
      margin-bottom: 20px;
      border-radius: 8px;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
      background-color: #ffffff;
      transition: all 0.35s ease;
      border: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .accordion-item:hover {
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
      transform: translateY(-2px);
    }
    
    .accordion-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 24px;
      cursor: pointer;
      transition: all 0.3s ease;
      border-radius: 8px;
      background-color: #f8f9fa;
      position: relative;
    }
    
    .accordion-item.active .accordion-header {
      border-bottom-left-radius: 0;
      border-bottom-right-radius: 0;
      background-color: #f0f4f8;
    }
    
    .header-content {
      display: flex;
      align-items: center;
      gap: 18px;
    }
    
    .accordion-header h3 {
      font-size: 18px;
      font-weight: 600;
      margin: 0;
      color: #333;
      letter-spacing: 0.01em;
      line-height: 1.4;
    }
    
    .accordion-header .icon-container {
      width: 48px;
      height: 48px;
    }
    
    .accordion-item:hover .icon-container {
      transform: scale(1.05);
    }
    
    .accordion-toggle-icon {
      font-size: 24px;
      font-weight: bold;
      transition: transform 0.35s ease;
      color: #abd500;
      width: 28px;
      height: 28px;
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: rgba(0, 0, 0, 0.05);
      border-radius: 50%;
    }
    
    .accordion-item.active .accordion-toggle-icon {
      transform: rotate(45deg);
      background-color: rgba(0, 0, 0, 0.1);
    }
    
    .accordion-content {
      max-height: 0;
      overflow: hidden;
      transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
      background-color: white;
      border-bottom-left-radius: 8px;
      border-bottom-right-radius: 8px;
    }
    
    .accordion-item.active .accordion-content {
      max-height: 500px;
      padding: 24px 28px;
    }
    
    .accordion-content p {
      margin: 0;
      line-height: 1.7;
      color: #555;
      font-size: 16px;
    }
	
    .solution-summary {
      margin-top: 36px;
      padding: 28px 32px;
      border-radius: 8px;
      background-color: #f0f4f8;
      border-left: 5px solid #1a202c;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    }
    
    .solution-summary h3 {
      color: #333;
      margin-bottom: 16px;
    }
    
    .solution-summary p {
      color: #555;
      line-height: 1.7;
      font-size: 16px;
    }
    
    /* ===== HORIZONTAL ACCORDION STYLES ===== */
    .horizontal-accordion {
      width: 100%;
      margin: 40px auto 0;
    }
    
    .horizontal-accordion-item {
      background-color: #ffffff;
      border-radius: 8px;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
      transition: all 0.35s ease;
      height: 100%;
      display: flex;
      flex-direction: column;
      border: 1px solid rgba(0, 0, 0, 0.05);
      overflow: hidden;
    }
    
 
    
    .horizontal-accordion-header {
      padding: 24px;
      background-color: #f8f9fa;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 16px;
      transition: all 0.3s ease;
    }
    
    .horizontal-accordion-header .icon-container {
      width: 64px;
      height: 64px;
    }
    
    .horizontal-accordion-header h3 {
      font-size: 18px;
      font-weight: 600;
      margin: 0;
      color: #333;
    }
    
    .horizontal-accordion-content {
      padding: 0 24px 24px;
      background-color: #ffffff;
      transition: all 0.3s ease;
    }
    
    .horizontal-accordion-content p {
      margin: 0;
      line-height: 1.7;
      color: #555;
      font-size: 16px;
      text-align: center;
    }
    
    /* ===== RESPONSIVE ADJUSTMENTS ===== */
    @media (max-width: 768px) {
      .accordion-header, .horizontal-accordion-header {
        padding: 16px 20px;
      }
      
      .accordion-header h3, .horizontal-accordion-header h3 {
        font-size: 16px;
      }
      
      .accordion-header .icon-container {
        width: 40px;
        height: 40px;
      }
      
      .horizontal-accordion-header .icon-container {
        width: 50px;
        height: 50px;
      }
      
      .accordion-svg-icon {
        width: 18px;
        height: 18px;
      }
      
      .header-content {
        gap: 14px;
      }
      
      .accordion-item.active .accordion-content {
        padding: 20px;
      }
      
      .horizontal-accordion-content {
        padding: 0 20px 20px;
      }
      
      .solution-summary {
        padding: 20px 24px;
      }
    }
	 .hero-section {
    position: relative;
    color: white; /* Keep text visible */
    text-align: center;
    padding: 100px 20px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }

  .hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 0;
  }

  .hero-section div {
    position: relative;
    z-index: 1; /* Ensures text is above the overlay */
  }
  .company-logo {
  width: 100px;
  height: 40px;
  object-fit: contain;
}

@media (max-width: 580px) {
  .company-logo {
    width: 48px; /* Adjust as needed */
    height: auto;
  }
}.navbar-menu-button svg {
  stroke: #B0B0B0; /* Neutral gray */
  transition: stroke 0.3s ease-in-out;
}
/* Updated styles for offer cards */

/* Base card styles */
.offer-card {
  display: block;
  background: #f9f9f9;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
}

/* Hover effect - slight elevation */
.offer-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.offer-card-content {
  position: relative;
  z-index: 1;
}

.icon {
  font-size: 2rem;
  margin-bottom: 10px;
}

      /* CONTACT PAGE — HubSpot form override */
.contact-page .contact-form .hs-form label,
.contact-page .contact-form .hs-form .hs-form-required {
  display: none !important;
}

.contact-page .contact-form .hs-form .form-columns-1,
.contact-page .contact-form .hs-form .form-columns-2,
.contact-page .contact-form .hs-form .form-columns-3 {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
}

.contact-page .contact-form .hs-form .form-columns-2 .hs-form-field,
.contact-page .contact-form .hs-form .form-columns-3 .hs-form-field,
.contact-page .contact-form .hs-form .hs-form-field {
  width: 100% !important;
  max-width: 100% !important;
  float: none !important;
  clear: both !important;
  margin: 0 0 12px 0 !important;
  padding: 0 !important;
}

.contact-page .contact-form .hs-form .input {
  width: 100% !important;
  margin: 0 !important;
}

.contact-page .contact-form .hs-form input,
.contact-page .contact-form .hs-form select,
.contact-page .contact-form .hs-form textarea {
  width: 100% !important;
  max-width: 100% !important;
  height: 44px !important;
  padding: 12px !important;
  border: 1px solid #ccc !important;
  border-radius: 4px !important;
  background: #fff !important;
  color: #000 !important;
  font-size: 16px !important;
  box-sizing: border-box !important;
  box-shadow: none !important;
}

.contact-page .contact-form .hs-form textarea {
  height: 100px !important;
  min-height: 100px !important;
  resize: vertical !important;
}

.contact-page .contact-form .hs-form .hs-button,
.contact-page .contact-form .hs-form input[type="submit"] {
  width: 100% !important;
  height: 44px !important;
  background: #abd500 !important;
  color: #fff !important;
  border: 0 !important;
  border-radius: 4px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
}

.contact-page .contact-form .hs-form .hs-button:hover,
.contact-page .contact-form .hs-form input[type="submit"]:hover {
  background: #9ac400 !important;
}
      
.demo-form-wrapper {
  padding: 2rem;
}

.demo-form-wrapper .hs-form label {
  display: none !important;
}

.demo-form-wrapper .hs-form .hs-form-field {
  width: 100% !important;
  margin-bottom: 12px !important;
}

.demo-form-wrapper .hs-form input,
.demo-form-wrapper .hs-form select,
.demo-form-wrapper .hs-form textarea {
  width: 100% !important;
  height: 44px !important;
  padding: 12px !important;
  border: 1px solid #ccc !important;
  border-radius: 4px !important;
  background: #fff !important;
  color: #000 !important;
  font-size: 16px !important;
  box-sizing: border-box !important;
}

.demo-form-wrapper .hs-form textarea {
  height: 100px !important;
  min-height: 100px !important;
}

.demo-form-wrapper .hs-form .hs-button,
.demo-form-wrapper .hs-form input[type="submit"] {
  width: 100% !important;
  height: 44px !important;
  background: #BED600 !important;
  color: #111 !important;
  border: none !important;
  border-radius: 4px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
}

.demo-form-wrapper .submitted-message {
  padding: 1rem;
  color: #333945;
}
      
.b3-blog-page {
  background: #f7f8fb;
  color: #111827;
  min-height: 100vh;
}

.b3-blog-shell {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.b3-blog-hero {
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  padding: 8.5rem 0 5rem;
  color: #fff;
}

.b3-blog-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 5rem;
  align-items: center;
}

.b3-blog-eyebrow {
  color: #d9f99d;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
  margin: 0 0 1rem;
}

.b3-blog-eyebrow.dark {
  color: #64748b;
}

.b3-blog-hero h1 {
  font-family: "Raleway", sans-serif;
  font-size: clamp(2.8rem, 5vw, 5.3rem);
  line-height: .98;
  margin: 0 0 1.4rem;
  max-width: 720px;
}

.b3-blog-lead {
  max-width: 640px;
  color: rgba(255,255,255,.68);
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.65;
}

.b3-blog-featured-panel {
  display: grid;
  gap: .8rem;
}

.b3-blog-panel-label {
  color: rgba(255,255,255,.75);
  font-weight: 900;
  letter-spacing: .22em;
  text-transform: uppercase;
  margin: 0 0 .4rem;
}

.b3-blog-featured-link {
  display: block;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 12px;
  background: rgba(255,255,255,.13);
  color: #fff;
  text-decoration: none;
}

.b3-blog-featured-link span {
  display: block;
  color: rgba(255,255,255,.72);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-bottom: .4rem;
}

.b3-blog-featured-link strong {
  font-size: 1rem;
  line-height: 1.35;
}

.b3-blog-listing {
  padding: 4.5rem 0 6rem;
}

.b3-blog-card-frame {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 2rem;
  box-shadow: 0 18px 50px rgba(15,23,42,.07);
}

.b3-blog-card-frame h2 {
  font-family: "Raleway", sans-serif;
  color: #1f2937;
  font-size: 1.8rem;
  margin: 0 0 1.6rem;
}

.b3-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.b3-blog-card {
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.b3-blog-card:hover {
  transform: translateY(-5px);
  border-color: #c4e600;
  box-shadow: 0 18px 40px rgba(15,23,42,.12);
}

.b3-blog-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
  height: 100%;
}

.b3-blog-card-img {
  width: calc(100% - 2.2rem);
  height: 148px;
  margin: 1.1rem 1.1rem 0;
  border-radius: 8px;
  object-fit: cover;
  display: block;
}

.b3-blog-card-content {
  padding: 1.05rem 1.25rem 1.4rem;
}

.b3-blog-date {
  color: #94a3b8;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin: 0 0 .75rem;
}

.b3-blog-card h3 {
  color: #111827;
  font-size: 1.18rem;
  line-height: 1.45;
  margin: 0 0 .8rem;
}

.b3-blog-card p {
  color: #475569;
  font-size: .98rem;
  line-height: 1.55;
  margin: 0;
}

.b3-blog-card span {
  display: inline-block;
  color: #84cc16;
  font-weight: 900;
  margin-top: 1rem;
}

.b3-blog-empty {
  color: #64748b;
  font-weight: 700;
}

@media (max-width: 980px) {
  .b3-blog-hero-grid,
  .b3-blog-grid {
    grid-template-columns: 1fr;
  }

  .b3-blog-hero {
    padding-top: 7rem;
  }
}

@media (max-width: 640px) {
  .b3-blog-shell {
    padding: 0 1.25rem;
  }

  .b3-blog-card-frame {
    padding: 1.25rem;
  }

  .b3-blog-hero h1 {
    font-size: 2.7rem;
  }
}