html,
body {
  font-family: 'Roboto', 'Open Sans', 'Quicksand', Arial, sans-serif;
  color: white;
  overflow-x: hidden;
}

html {
  scroll-padding-top: 96px;
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Roboto', 'Open Sans', 'Quicksand', Arial, sans-serif;
}

:root {
  --primary-blue: #004687;

  --text-dark: #333;
  --white: #ffffff;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  /* Adjust this for more/less movement */
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition-property: opacity, transform;

}

/* 2. State when scrolled into view */
.reveal.active {
  opacity: 1 !important;
  transform: translateY(0) !important;
  visibility: visible !important;
}

/* Optional: Add a 'reveal-left' variant if you want things to slide in from the side */
.reveal.reveal-left {
  transform: translateX(-50px);
}

.reveal.reveal-left.active {
  transform: translateX(0);
}


/* Top Bar */
.top-bar {
  background-color: #003366;
  color: #ffffff;
  padding: 8px 0;
  font-size: 13px;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.top-bar ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

.top-bar i {
  margin-right: 8px;
  color: var(--accent-green);
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 5%;
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 45px;
  align-items: center;
}

.nav-links a {
  font-size: 20px;
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  transition: 0.3s;
}

.nav-links a:hover {
  color: var(--primary-blue);
}

.logo {
  height: 60px;
  width: auto;
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-menu {

  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 220px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  list-style: none;
  padding: 10px 0;
  border-top: 3px solid var(--primary-blue);
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: 0.3s;
  border-radius: 10px;
}

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

.dropdown-item {
  padding: 12px 20px;
  display: block;
  font-size: 14px !important;
  text-decoration: none;
  color: var(--text-dark);
}

.dropdown-item:hover {
  background: #f8f9fa;
  color: var(--primary-blue);
}

/* Dot Menu */
.dot-menu {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  cursor: pointer;
  width: 30px;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.dot-menu span {
  width: 5px;
  height: 5px;
  background-color: #003366;
  border-radius: 50%;
}

/* Rotation happens when this class is added via JS */
.dot-menu.is-rotated {
  transform: rotate(90deg);
}



/* Pulse only when rotated (sidebar open) */
.dot-menu.is-rotated span {
  animation: dotPulse 1.5s infinite ease-in-out;
}

/* Staggered pulse effect */
.dot-menu.is-rotated span:nth-child(odd) {
  animation-delay: 0.2s;
}

.dot-menu.is-rotated span:nth-child(even) {
  animation-delay: 0.4s;
}

/* Define the Pulse Animation */
@keyframes dotPulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.4);
    opacity: 0.7;
    background-color: var(--accent-green);
    /* Pulse to green */
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Apply the animation to all 9 dots when the sidebar is active */
.contact-section.active~.navbar .dot-menu span {
  animation: dotPulse 1.5s infinite ease-in-out;
}

/* Stagger the animation for each dot for a wave effect */
.dot-menu span:nth-child(odd) {
  animation-delay: 0.2s;
}

.dot-menu span:nth-child(even) {
  animation-delay: 0.4s;
}

/* Mobile Toggle Icon */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  width: 30px;
}

.menu-toggle span {
  width: 100%;
  height: 3px;
  background: #003366;
  transition: 0.3s;
}

.menu-toggle.is-active span {
  background-color: var(--primary-blue);
}

/* Contact Sidebar */
.contact-section {
  position: fixed;
  top: 0;
  right: -100%;
  width: 350px;
  height: 100vh;
  background-color: #003366;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  padding: 40px;
  transition: 0.4s;
  color: #ffffff;
  transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
  will-change: transform;
  pointer-events: none;
  /* Prevents accidental clicks when hidden */
  visibility: hidden;
}

.contact-section.active {
  right: 0;
  transform: translateX(0);
  pointer-events: all;
  visibility: visible;
}

.close-contact {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 24px;
  cursor: pointer;
}

/* Sidebar Content Styling */
.contact-section img {
  margin-bottom: 25px;
  display: block;
}

.contact-desc {
  font-size: 15px;
  line-height: 1.6;
  color: #e0e0e0;
  /* Light gray for readability on dark background */
  margin-bottom: 30px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  font-size: 15px;
  color: #ffffff;

}

.info-item i {
  color: var(--accent-green);
  /* Highlights your icons in green */
  width: 20px;
  text-align: flex-start;
  font-size: 18px;
  margin-top: 5px;
}

/* RESPONSIVE STYLES */
@media (max-width: 992px) {
  .top-bar {
    display: none;
  }

  .menu-toggle {
    display: flex;
    color: #003366;

    z-index: 1100;
    margin-left: 0;
  }

  .nav-links {
    position: fixed;
    top: var(--lm-navbar-height);
    left: 0;
    width: 100%;
    height: calc(100vh - var(--lm-navbar-height));
    background: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 30px;
    gap: 20px;
    visibility: hidden;
    opacity: 0;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1), opacity 0.3s ease;
    z-index: 1001;
    overflow-y: auto;
    pointer-events: none;
  }

  /* This is the class the JavaScript triggers */
  .nav-links.active {
    right: 0 !important;
    visibility: visible;
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
  }

  /* Hamburger to X Animation */
  .menu-toggle.is-active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .menu-toggle.is-active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.is-active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  /* Mobile Dropdown */
  .dropdown {
    width: 100%;
    display: flex;
    /* Added */
    flex-direction: column;
    /* Added */
    align-items: center;
    /* Added: This centers the "Services +" text */
  }

  .dropdown-menu {
    position: static;
    opacity: 1;

    visibility: visible;
    display: none;
    width: auto;
    /* Changed from 100% to auto to prevent stretching */
    min-width: 200px;
    /* Added for consistent look */
    background-color: #f9f9f9;
    border-top: none;
    border-left: 3px solid var(--primary-blue);
    margin-top: 10px;
    text-align: center;
    /* Added: Centers the text inside sub-links */
  }

  .dropdown-item {
    padding: 10px 20px;
    /* Slightly reduced padding for a tighter look */
    display: block;
    font-size: 14px !important;
    /* Change this value to your preferred smaller size */
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 200;
    /* Normal weight makes it look smaller than the 500 bold main links */
    transition: background 0.2s, color 0.2s;
  }

  .dropdown-item:hover {
    background-color: #f8f9fa;
    color: var(--primary-blue);
  }

  /* Active state for mobile */
  .dropdown.active .dropdown-menu {
    display: block;
    animation: fadeIn 0.3s ease;
  }

  .dropdown-toggle::after {

    font-size: 14px;
    transition: transform 0.3s;
    display: inline-block;
  }

  .dropdown.active .dropdown-toggle::after {
    transform: rotate(180deg);
  }

  .dropdown-menu .dropdown-item {
    font-size: 14px !important;
    /* Smaller font for mobile dropdown items */
    padding: 8px 15px;
  }
}

@media (max-width: 468px) {

  /* 1. Reset the Navbar to align children to the edges */
  .navbar {
    display: flex !important;
    justify-content: space-between !important;
    /* Pushes Logo left, Menu right */
    align-items: center !important;
    height: 70px !important;
    padding: 0 20px !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    z-index: 100000 !important;
    background: #ffffff !important;
  }

  /* 2. Position the Menu Toggle in the right corner */
  .menu-toggle {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    width: 35px !important;
    height: 30px !important;
    margin-left: 0 !important;
    /* CRITICAL: Removes the 320px margin that pushes it off-screen */
    margin-right: 0 !important;
    cursor: pointer !important;
    z-index: 100000 !important;
    order: 2;
    /* Ensures it stays to the right of the logo */
  }

  /* 3. Ensure the Hamburger lines are visible */
  .menu-toggle span {
    display: block !important;
    width: 28px !important;
    height: 3px !important;
    background-color: #003366 !important;
    /* Brand Blue */
    margin: 3px 0 !important;
    border-radius: 2px !important;
    transition: 0.3s !important;
  }

  /* 4. Responsive Full-Width Mobile Menu Links */
.nav-links {
    position: fixed !important;
    top: 70px !important;
    left: 0 !important;
    width: 100% !important;
    height: calc(100vh - 70px) !important;
    background: #ffffff !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;
    padding-top: 40px !important;
    gap: 25px !important;

    /* 1. CRITICAL: Add visibility here */
    visibility: hidden; 
    opacity: 0;
    
    /* Slide-in animation */
    transform: translateX(100%) !important;
    transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1), opacity 0.3s ease !important;
    z-index: 100001 !important;
    overflow-y: auto !important;
    pointer-events: none;
  }

  .nav-links.active {
    /* 2. CRITICAL: Make it visible and clickable when active */
    visibility: visible !important;
    opacity: 1 !important;
    transform: translateX(0) !important;
    pointer-events: auto !important; 
    z-index: 100002 !important; 
  }

  .nav-links li {
    width: 100%;
    text-align: center;
    list-style: none;
  }

  .nav-links a {
    font-size: 1.3rem !important;
    color: #003366 !important;
    font-weight: 600 !important;
    text-decoration: none;
    display: block;
    padding: 15px 0;
  }
   .nav-links .dropdown {
    width: 100%;
    text-align: center;
  }

  /* 2. Style the "Services +" Toggle Link */
  .nav-links .dropdown-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    width: 100%;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 51, 102, 0.05);
  }

  /* 3. The Menu that slides down */
.nav-links .dropdown-menu {
        display: none !important; /* Removed !important to allow class toggling */
        position: static !important;
        width: 100%;
        background-color: #f8f9fa;
        border-left: 4px solid var(--primary-blue);
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: max-height 0.4s ease, opacity 0.3s ease;
    }

  /* 4. Active State (when clicked via JS) */
.nav-links .dropdown.active .dropdown-menu {
        display: block !important; /* Force it visible */
        max-height: 500px; /* Allow content to grow */
        opacity: 1;
        visibility: visible;
        padding: 10px 0;
    }

  /* 5. Sub-items styling */
  .nav-links .dropdown-item {
    font-size: 1rem !important;
    padding: 12px 20px !important;
    color: #555 !important;
    font-weight: 400 !important;
    text-align: center;
    display: block !important;
    width: 100%;
    padding: 15px 0 !important;
  }

  /* 6. Rotating the "+" icon if you add one */
  .dropdown.active .dropdown-toggle::after {
    transform: rotate(180deg);
  }
  /* Hide unnecessary elements on small mobile */
  .dot-menu,
  .top-bar {
    display: none !important;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}




.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 0 10%;
  /* background:linear-gradient(to left, transparent, #0a0a0a),url('../assets/home-hero4.jpg'); */
background: radial-gradient(circle at center, 
    rgba(0, 0, 0, 0.4) 0%,   /* Lightened the center even more */
    rgba(16, 16, 16, 0.2) 30%, /* Reduced opacity for the "glow" area */
    rgba(0, 0, 0, 0.3) 70%,    /* Kept the middle-ground very transparent */
    rgba(0, 0, 0, 0.4) 100%    /* Reduced the corner darkness from 0.9 to 0.6 */
), 
url('../assets/homeHeroFinal.jpg');

  background-size: cover;
  background-position: center;
}

#particleCanvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

/* --- CHARACTER ANIMATION --- */
.char {
  display: inline-block;
  opacity: 0;
  filter: blur(8px);
  transform: translateY(15px);
  transition: all 0.15s cubic-bezier(0.16, 1, 0.3, 1);
}

.char.active {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

.main-title {
  font-size: 6rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: flex-start;
  column-gap: 0.28em;
  row-gap: 0.08em;
  white-space: normal;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
  text-wrap: balance;
}

.main-title .title-word {
  display: inline-block;
  white-space: nowrap;
}

/* width of "Let's " = 6 characters */



.subtitle {
  min-height: 55px;
  font-size: 1.32rem;
  color: #cbd5e1;
  max-width: 550px;
  line-height: 1.5;
  margin-bottom: 2.5rem;
}

/* --- BUTTON GLOW EFFECT --- */
.cta-button {
  display: inline-block;
  padding: 18px 40px;
  border: 1px solid #ffffff;
  background: rgba(59, 130, 246, 0.1);
  color: white;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 3px;
  backdrop-filter: blur(5px);
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  transition: all 0.4s ease;
  z-index: 1;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
  z-index: -1;
}

.cta-button:hover::before {
  width: 300px;
  height: 300px;
}

.cta-button:hover {
  color: #003366;
  background-color: #ffffff;
  box-shadow: 0 0 25px rgba(59, 130, 246, 0.6);
  transform: translateY(-3px);
}

/* --- UPDATED VISUAL STACK (PREVENTS CUTTING) --- */
.visual-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 2;
  align-items: center;
}

.carousel-container,
.stat-card-container {
  width: 200px;
  height: 200px;
  /* Increased height for animation space */
  overflow: hidden;
  border-radius: 4px;
  position: relative;
  flex-shrink: 0;
}

.carousel-track {
  display: flex;
  transition: transform 0.2s cubic-bezier(0.45, 0, 0.55, 1);
}

.carousel-track img {
  width: 200px;
  height: 200px;
  object-fit: cover;
}

.stat-card {
  background-color: #fff;
  color: #000;
  position: absolute;
  width: 100%;
  height: 100%;
  padding: 30px 25px;
  /* Added breathing room */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: translateX(110%);
  opacity: 0;
  transition: transform 0.2s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.5s;
}

.stat-card.active {
  transform: translateX(0);
  opacity: 1;
}

.stat-card.exit {
  transform: translateX(-110%);
  opacity: 0;
}

.stat-header {
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.3;
  /* Prevents top letters from cutting during glide */
  padding-top: 5px;
  padding-left: 16px;
  position: relative;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
}

.stat-header::before {
  content: "\25A0";
  position: absolute;
  left: 0;
  top: 5px;
  line-height: 1;
}

.stat-value-wrap {
  font-size: 2rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  margin-top: auto;
}

/* --- MOBILE RESPONSIVENESS --- */
@media (max-width: 1100px) {
  .hero {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 100px 7% 60px 7%;
    height: auto;
  }

  .hero-content {
    margin-bottom: 60px;
  }

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

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

  .visual-stack {
    margin-left: 0;
    width: 100%;
  }
}

@media (max-width: 650px) {
  .main-title {
    font-size: 38px;
    word-break: normal;
    overflow-wrap: normal;
    hyphens: none;
    justify-content: center;
  }

  .visual-stack {
    margin-left: 0;
    flex-direction: column;
    width: 100%;
    max-width: 260px;
    gap: 20px;
  }

  .carousel-container,
  .stat-card-container,
  .carousel-track img {
    width: 200px;
    height: 220px;
  }
}

@media (max-width: 468px) {

  html,
  body {
    overflow-x: hidden;
    width: 100%;
  }


  /* 5. Mobile Menu Backdrop (Hidden until toggle) */

  .hero {

    padding-top: 120px;
    /* Reduced since top-bar is hidden */
    text-align: center;
    min-height: 50vh;
    padding-bottom: 30px;
  }
  
  .visual-stack {
    visibility: visible;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 280px;
    margin-inline: auto;
  }

  /* Proper Font-Size for Hero Heading */
  .main-title {
    font-size: 2.5rem !important;
    /* Balanced size for 468px */
    line-height: 1.3;
    margin-bottom: 15px;
    padding: 20px 10px;
    word-break: normal;
    overflow-wrap: normal;
    hyphens: none;
    justify-content: center;
  }

  .subtitle {
    font-size: 0.95rem !important;
    margin-bottom: 30px;
  }

  .intro-stats-section {
    padding: 10px 15px;
    /* Adds space at top/bottom and sides */
  }

  /* 2. Stack the blurb and the stats vertically */
  .intro-text p {
    font-size: 0.8rem;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 20px;
  }

  /* 3. Force the stats wrapper to stack items in a single column */
  .stats-wrapper-intro {
    display: flex;
    flex-direction: column;
    /* Stacks the three stats vertically */
    align-items: center;
    gap: 35px;
    /* Creates consistent spacing between each stat block */
    width: 100%;
  }

  /* 4. Center-align each individual stat item */
  .stat-item {
    width: 100%;
    text-align: center;
  }

  /* 5. Adjust font sizes for mobile readability */
  .stat-number {
    font-size: 2.5rem !important;
    /* Makes the counter stand out */
    margin-bottom: 5px;
    font-weight: 800;
  }

  /* 6. Style the divider line to be centered */
  .stat-divider {
    width: 40px;
    height: 2px;
    background: #003366;
    /* Match your brand blue */
    margin: 10px auto;
    /* Centers the line horizontally */
  }

  .stat-label {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #666;
    /* Soft grey for the description */
  }




  /* Client Logos */
  .logo-track {
    animation-duration: 20s;
    /* Faster scroll for small screens */
  }

  .logo-slide img {
    height: 30px;
    /* Smaller logos */
  }

  .products {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 0 20px;
  }

  /* Why Logic Motive items */
  .why-grid {
    grid-template-columns: 1fr;
  }

  .service-item {
    flex-direction: column;
    text-align: center;
  }

  .why-icon {
    margin: 0 auto 10px;
  }

}


.blue-divider {
  width: 150px;
  /* Adjust length of the line */
  height: 4px;
  /* Adjust thickness of the line */
  background-color: #1a73e8;
  /* Use your specific blue hex code */
  margin: 40px auto;
  /* 40px spacing top/bottom, 'auto' centers it */
  border-radius: 2px;
  /* Optional: rounds the edges slightly */
}

/*     INTRO SECTION      */
.intro-stats-section {
  background-color: #ffffff;
  margin-bottom: 20px;
}

.intro-stats-section .container {
  max-width: 1140px;
  margin: auto;
  padding: 0 20px;
}

/* Intro text */
.intro-text {
  max-width: 900px;
  margin: 0 auto 50px;
  text-align: center;

}

.intro-text {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
}

.intro-text p {
  font-size: 1.4rem;
  line-height: 1.8;
  color: #58636d;
  text-align: center;
  display: block;
}

.word-node {
  display: inline-block;
  opacity: 0;
  transform: translateY(110%);
  /* Start below the visible line */
  transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.8s ease;
  white-space: pre;
  /* Keeps the spaces between words */
}

/* When the section becomes active */
.intro-text.active .word-node {
  opacity: 1;
  transform: translateY(0);
}

/* Base state for each word */
.intro-text p span {
  display: inline-block;
  opacity: 0;
  filter: blur(8px);
  transform: translateY(15px);
  transition:
    opacity 0.8s ease,
    filter 0.8s ease,
    transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  white-space: pre;
  /* Maintains the space after words */
}

/* Triggered state */
.intro-text.active p span {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

/* Container for the cards */
.stats-wrapper-intro {
  background-color: #003366;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
  padding: 60px 20px;
  /* No card background */
}

.stat-item {
  text-align: center;
  flex: 1;
  min-width: 200px;
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: #ffffff;
  /* Horizontal, Vertical, Blur-radius, Color */
  text-shadow:
    0 0 5px rgba(255, 255, 255, 0.3),
    0 0 10px rgba(255, 255, 255, 0.3),
    0 0 20px rgba(0, 51, 102, 0.3);
  /* Adds a hint of brand blue to the glow */

  margin: 0;
  letter-spacing: -1px;
}

.stat-divider {
  width: 40px;
  height: 3px;
  background: #fff;
  margin: 15px auto;
  border-radius: 2px;
  opacity: 0.8;
}

.stat-label {
  display: block;
  font-size: 1.1rem;
  font-weight: 600;
  color: #9ea5af;
  /* Soft slate grey for readability */
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Mobile responsive scaling */
@media (max-width: 768px) {
  .stat-number {
    font-size: 2.5rem;
  }

  .stat-label {
    font-size: 0.9rem;
  }
}

/* Responsive adjustment for tablets/mobile */
@media (max-width: 1024px) {
  .products {
    grid-template-columns: repeat(2, 1fr);
    /* Switch to 2 columns */
  }
}

/* Mobile Breakpoint (992px and below) */
@media (max-width: 992px) {
  .why-grid {
    grid-template-columns: 1fr;
    /* Stack into 1 column */
    gap: 20px;
  }

  /* Switch side-animations to vertical animations for mobile */
  .why-item:nth-child(odd),
  .why-item:nth-child(even) {
    transform: translateY(30px);
    /* Prevents horizontal overflow */
  }
}


/*    LOGOS SECTION */


/* Section Styling */
.client-logo-section {
  padding: 80px 0;
  background-color: #ffffff;
  overflow: hidden;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 50px;
}

/* The Viewport */
.logo-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  /* Soft fade effect on left and right */
  mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

/* The Moving Track */
.logo-track {
  display: flex;
  width: calc(250px * 44);
  /* Width of one logo * total logos (original + dup) */
  animation: scroll 40s linear infinite;
}

/* Individual Logo Slide */
.logo-slide {
  width: 250px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 40px;
}

.logo-slide img {
  max-width: 150px;
  max-height: 80px;
  width: auto;
 
  transition: all 0.3s ease;
}

/* Hover effect: Bring back color */
.logo-slide img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.1);
}

/* Animation */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    /* Moves by exactly half the total width (the original set) */
    transform: translateX(calc(-250px * 22));
  }
}

/* Pause on hover so people can see the names */
.logo-track:hover {
  animation-play-state: paused;
}

/* Small Mobile Breakpoint (640px and below) */
/* Tablet and Small Laptop: Keeps 2x2 */


/* Mobile: Switch to 1 column for readability */
@media (max-width: 780px) {

  .products,
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .products,
  .why-grid {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }

  .product-card,
  .why-item {
    max-width: 100%;
  }
}



/* --- SERVICES CONTAINER --- */
:root {
  --service-bg: #ffffff;
  --service-border: #eaeaea;
  --service-radius: 16px;
  --service-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  --service-accent: #003366;
}

.services-overview {
  padding: 40px 20px;

  text-align: center;
  overflow: hidden;
  /* Prevents 3D cards from causing scrollbars */
  perspective: 1000px;
  /* Needed for 3D card effects */
}

/* --- CHARACTER ANIMATION (TITLE) --- */
.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #f8fafc;
  margin-bottom: 50px;
  position: relative;
}

/* Base state for each character created by JS */
.section-title span {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  filter: blur(5px);
  /* The transition handles the hover/reset, animation handles the entrance */
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}



/* Add/Update this block to handle the character reveal */
.section-title .char {
  display: inline-block;
  opacity: 0;
  filter: blur(5px);
  /* Added for premium look */
  transform: translateY(15px);
  /* Starts lower */
  transition: transform 0.6s cubic-bezier(0.2, 1, 0.3, 1),
    opacity 0.6s ease-out,
    filter 0.6s ease-out;
}

/* This is what the JS triggers */
.section-title .char.visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

/* --- PRODUCT CARDS GRID --- */
/* --- PRODUCTS SECTION --- */
.services-overview {
  padding: 80px 8%;
  background: #eae6e6;
}

.section-title {
  font-size: 2.5rem;
  color: #003366;
  margin-bottom: 50px;
  text-align: center;
}

.products {
  display: flex;
  flex-wrap: wrap;
  /* Allows cards to drop to next line */
  justify-content: center;
  /* Centers the cards in the second row */
  gap: 30px;
  max-width: 1200px;
  /* Adjust based on your container width */
  margin: 0 auto;
}

/* --- THE CARD --- */
.product-card {
  flex: 0 1 calc(33.333% - 30px);
  position: relative;
  height: 320px;
  min-width: 300px;
  border-radius: 20px;
  overflow: hidden;
  background: #000;
  cursor: pointer;
  opacity: 0;
  display: flex;
  transform: translateY(100px);
  /* Initial state: subtle shadow */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);

  /* Transition for the glow and border */
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
    box-shadow 0.4s ease,
    border 0.3s ease;

  /* Transparent border that lights up */
  

}

.services-overview.is-visible .product-card {
  visibility: visible;
  animation: fadeInUp 1.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* --- HOVER GLOW EFFECT --- */
.product-card:hover {
  transform: translateY(-10px) scale(1.02);

  /* The Glow: Using LogicMotive's Teal color (#12c2c9) */
  box-shadow: 0 20px 40px rgba(18, 194, 201, 0.25),
    0 0 20px rgba(18, 194, 201, 0.1);

  /* Lighting up the border */
  border: 1px solid rgba(18, 194, 201, 0.5);
}

/* Ensure the image dims slightly to let the glow feel internal */
.product-card:hover .product-image img {
  filter: brightness(0.6) blur(2px);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(100px);
  }

  to {
    opacity: 1;
    transform: translate(0);
  }
}


.product-img img {
  max-width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  flex-grow: 1;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), filter 0.5s ease;
}

/* --- HIDDEN CONTENT OVERLAY --- */
.product-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  /* Keeps content at bottom */
  padding: 30px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 60%);
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.content-wrap {
  transform: translateY(60px);
  /* Hide the P and Button initially */
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.product-card h3 {
  color: #fff;
  font-size: 1.4rem;
  margin-bottom: 10px;
  transform: translateY(60px);
  /* Title starts low */
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.product-card p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  margin-bottom: 20px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.product-card .btn {
  display: inline-block;
  padding: 10px 25px;
  background: transparent;
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  border: 2px solid rgba(255, 255, 255, 0.8);
  font-weight: bold;
  font-size: 0.85rem;
  opacity: 0;
  transition: opacity 0.4s ease,
    background-color 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease;
}

.product-card .btn:hover {
  background-color: #ffffff;
  color: #003366;
  border-color: #ffffff;
}

.product-card:hover .btn {
  opacity: 1;
  transform: translateY(-5px);
  /* Button lifts slightly when it appears */
}

/* --- HOVER STATES --- */
.product-card:hover .product-image img {
  transform: scale(1.1);
  /* Zoom effect */
  filter: blur(3px) brightness(0.7);
  /* Subtle blur for focus */
}

.product-card:hover .product-content {
  background: rgba(0, 51, 102, 0.6);
  /* Brand Blue Tint */
  backdrop-filter: blur(8px);
  /* Modern Glass effect */
}

.product-card:hover h3,
.product-card:hover .content-wrap {
  transform: translateY(0);
  /* Slide up to original position */
}

.product-card:hover p,
.product-card:hover .btn {
  opacity: 1;
  /* Fade in details */
  transition-delay: 0.2s;
}

/* Container for the characters */
.section-title {
  overflow: hidden;
  display: block;
  line-height: 1.2;
}

/* Individual character base state */
.char {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  /* Starts lower */
  transition: transform 0.5s cubic-bezier(0.2, 1, 0.3, 1),
    opacity 0.5s ease-out;
}

/* Revealed state (added via JS) */
.char.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 992px) {
  .product-card {
    flex: 0 1 calc(50% - 20px);
    /* 2 per row on tablets */
  }
}

/* --- MOBILE RESPONSIVENESS FIX --- */
/* --- MOBILE RESPONSIVENESS (650px and below) --- */
@media (max-width: 650px) {

  /* 1. Ensure the content container stacks elements properly */
  .product-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    /* Keeps text at the bottom */
    align-items: center;
    text-align: center;
  }

  /* 2. Reset the starting positions so they don't overlap */

  .content-wrap {
    /* Reduced from 60px to 20px to prevent mixing */
    transform: translateY(20px);

  }

  /* 3. Give the paragraph its own space */
  .product-card p {
    margin-bottom: 15px;
    line-height: 1.4;
    font-size: 0.9rem;
  }

  /* 4. Trigger state to clean up the layout on hover/reveal */
  .product-card:hover h3,
  .product-card:hover .content-wrap {
    transform: translateY(0);
  }

  .product-img img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), filter 0.5s ease;
  }
}

/* Section Background and Layout */
.why-logic-motive {
  padding: 100px 0;
  background-color: #f8fafc;
  /* Light premium background */
  color: #003366;
  /* Your brand navy */
  overflow: hidden;
}

.why-header {
  text-align: center;
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.why-header h2 {
  color: #003366;
  font-size: 2.5rem;
  font-weight: 800;
  display: block;
  margin-bottom: 20px;
}

.why-header p {
  color: #475569;
  /* Softer slate for the sub-text */
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.2rem;
}

/* Character Animation Setup */
.animate-text,
.animate-text-slow {
  overflow: hidden;
  display: inline-block;
}

.char {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  transition: transform 0.5s cubic-bezier(0.3, 0, 0, 1), opacity 0.5s;
}

.char.active {
  opacity: 1;
  transform: translateY(0);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: 60px auto 0;
  transform-style: preserve-3d;
}

/* Base state for individual items */
.why-item {
  opacity: 0;
  transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Slide from the center logic */
.why-item:nth-child(odd) {
  transform: translateX(-60px);
}

.why-item:nth-child(even) {
  transform: translateX(60px);
}

.why-item.active {
  opacity: 1;
  transform: translateX(0);
}

/* Card Styling */
.service-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 30px;
  background: #ffffff;
  /* White card on off-white background */
  border-radius: 20px;
  border: 1px solid rgba(0, 51, 102, 0.08);
  /* Subtle navy border */
  box-shadow: 0 10px 30px rgba(0, 51, 102, 0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 51, 102, 0.08);
}

/* Icon Box */
.why-icon {
  font-size: 2.2rem;
  background: rgba(0, 51, 102, 0.05);
  min-width: 65px;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  transition: transform 0.2s ease-out;
  /* Keeps magnet effect snappy */
}

.service-text h4 {
  color: #003366;
  margin-bottom: 8px;
  font-size: 1.25rem;
  font-weight: 700;
}

.service-text p {
  color: #576574;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Button Styling */
.why-item.active {
  opacity: 1 !important;
  transform: translateX(0) !important;
  visibility: visible !important;
}

.why-btn-container {
  display: flex;
  justify-content: center;
  /* Horizontally centers the button */
  align-items: center;
  width: 100%;
  margin-top: 60px;
}

.why-btn {
  position: relative;
  z-index: 10;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.why-btn.active {
  opacity: 1;
  transform: translateY(0);
}

.btn-ghost {
  display: inline-block;
  padding: 16px 40px;
  background-color: transparent;
  color: #003366;
  border: 2px solid #003366;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  position: relative;
  z-index: 1;
  overflow: hidden;
  /* Clips the sliding background */
  transition: color 0.4s ease;
  /* Smooth text color change */
}

/* The "Sliding" Background Layer */
.btn-ghost::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  /* Hidden to the left */
  width: 100%;
  height: 100%;
  background-color: #003366;
  z-index: -1;
  /* Sits behind the text */
  transition: left 0.4s cubic-bezier(0.65, 0, 0.35, 1);
  /* Premium "Snap" timing */
}

/* Hover States */
.btn-ghost:hover {
  color: #ffffff;
  /* Flip text to white */
}

.btn-ghost:hover::before {
  left: 0;
  /* Slides into position */
}

.btn-ghost:active {
  transform: scale(0.97);
  /* Small "click" feedback */
}

/* Responsive adjustment for tablets and mobile */
@media (max-width: 992px) {
  .why-grid {
    grid-template-columns: 1fr;
    /* Stack cards in a single column */
    gap: 20px;
    padding: 0 15px;
  }

  .why-header h2 {
    font-size: 2rem;
    /* Slightly smaller heading for mobile */
  }

  /* Adjust slide animation for mobile so it doesn't break the layout */
  .why-item:nth-child(odd),
  .why-item:nth-child(even) {
    transform: translateY(30px);
    /* Slide up instead of from sides */
  }

  .service-item {
    padding: 20px;
    /* Reduce padding to save space */
  }
}

@media (max-width: 480px) {
  .why-header h2 {
    font-size: 1.75rem;
  }

  .why-icon {
    min-width: 55px;
    height: 55px;
    font-size: 1.8rem;
  }

  .btn-ghost {
    padding: 12px 30px;
    /* Smaller button for small screens */
    width: 90%;
    /* Make button wider for easier tapping */
    text-align: center;
  }
}



.footer {
  background-color: #0b2a4a;
  /* enterprise blue */
  color: #cfd8e3;
  font-size: 14px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  padding: 50px 30px 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* Logo */
.footer-logo {
  height: 90px;
  margin-bottom: 15px;
}

/* Description */
.footer-desc {
  line-height: 1.6;
  color: #b9c6d4;
}

/* Column titles */
.footer-col h4 {
  color: #ffffff;
  font-size: 16px;
  margin-bottom: 15px;
}

/* Links */
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #b9c6d4;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: #003366;
}

/* Contact */
.contact-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.contact-list i {
  color: #003366;
}

/* Social icons */
.social-links {
  margin-top: 15px;
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none !important;
  transition: background 0.3s ease;
}

.social-links a:hover {
  background: #003366;
}

.social-links a:visited,
.social-links a:hover,
.social-links a:focus,
.social-links a:active {
  text-decoration: none !important;
}

/* Keep footer social icons decoration-free across all link states */
.footer .social-links a,
.footer .social-links a:link,
.footer .social-links a:visited,
.footer .social-links a:hover,
.footer .social-links a:focus,
.footer .social-links a:active,
.footer .social-links a i {
  text-decoration: none !important;
  border-bottom: none !important;
}

/* Bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  padding: 15px;
  font-size: 13px;
  color: #aeb9c6;
}

.footer-legal {
  margin-top: 6px;
  font-size: 12px;
  color: #aeb9c6;
}

.contact-list li i {
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

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

  .contact-list li {
    justify-content: center;
  }
}

@media (max-width: 468px) {
  .footer {
    padding: 40px 20px 20px; /* Give it some breathing room */
  }

  .footer-container {
    display: flex;
    flex-direction: column; /* Stack columns vertically */
    gap: 30px; /* Space between sections */
    text-align: center; /* Center text for a balanced mobile look */
  }

  .footer-col {
    width: 100%;
  }

  /* Center the logo and description */
  .footer-logo {
    margin: 0 auto 15px;
    max-width: 180px; /* Prevents logo from being too large on small screens */
  }

  .footer-desc {
    font-size: 14px;
    line-height: 1.6;
    padding: 0 10px;
  }

  /* Adjust lists and icons */
  .footer-col ul {
    padding: 0;
    list-style: none;
  }

  .footer-col ul li {
    margin-bottom: 12px;
  }

  .contact-list li i {
    margin-right: 8px;
    /* Optional: display icons inline-block for better alignment */
  }

  .social-links {
    justify-content: center; /* Center social icons */
    margin-top: 15px;
  }

  /* Bottom Bar Styling */
  .footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 12px;
  }

  .footer-legal {
    margin-top: 10px;
    display: block; /* Force CIN/GST to wrap better if needed */
    line-height: 1.8;
  }
}
#lm-chat-trigger {
    position: fixed; bottom: 30px; right: 30px;
    width: 60px; height: 60px; background: var(--lm-blue);
    border-radius: 50%; color: white; display: flex;
    align-items: center; justify-content: center;
    font-size: 26px; cursor: pointer; z-index: 10000;
    box-shadow: var(--lm-shadow);
    transition: transform 0.3s ease;
  }
  #lm-chat-trigger:hover { transform: scale(1.1); }
  #lm-chat-prompt {
    position: fixed;
    right: 34px;
    bottom: 100px;
    background: #ffffff;
    color: var(--lm-blue);
    border: 1px solid #d6e2f1;
    border-radius: 999px;
    padding: 7px 12px;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
    z-index: 10001;
    opacity: 0;
    transform: translateY(8px);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
  }
  #lm-chat-prompt::after {
    content: "";
    position: absolute;
    right: 18px;
    bottom: -6px;
    width: 10px;
    height: 10px;
    background: #ffffff;
    border-right: 1px solid #d6e2f1;
    border-bottom: 1px solid #d6e2f1;
    transform: rotate(45deg);
  }
  #lm-chat-prompt.show {
    opacity: 1;
    transform: translateY(0);
  }

  #lm-chat-window {
    position: fixed; bottom: 105px; right: 30px;
    width: 350px; height: 500px; background: #ffffff;
    border-radius: 16px; display: none; flex-direction: column;
    z-index: 10000; box-shadow: var(--lm-shadow);
    font-family: 'Quicksand', 'Roboto', sans-serif;
    border: 1px solid #eaeaea; overflow: hidden;
  }

  .lm-chat-header { 
    background: var(--lm-blue); color: white; 
    padding: 18px; font-weight: 700; font-size: 16px;
    display: flex; justify-content: space-between; align-items: center;
  }

  .lm-chat-body { 
    flex: 1; overflow-y: auto; padding: 15px; 
    background: #fdfdfd; display: flex; flex-direction: column; 
    gap: 12px;
  }

  .lm-chat-footer { 
    padding: 15px; border-top: 1px solid #eee; 
    display: flex; background: white; align-items: center;
  }

  .lm-chat-footer input { 
    flex: 1; border: none; outline: none; 
    font-size: 14px; color: var(--lm-text); 
  }

  /* MESSAGE BUBBLES */
  .msg { 
    padding: 12px 16px; border-radius: 12px; 
    font-size: 14px; line-height: 1.5; max-width: 85%; 
  }
  .msg-bot { 
    background: var(--lm-light-blue); color: var(--lm-blue); 
    align-self: flex-start; border-bottom-left-radius: 2px;
  }
  .msg-user { 
    background: var(--lm-blue); color: white; 
    align-self: flex-end; border-bottom-right-radius: 2px;
  }

  /* TYPING INDICATOR */
  .typing { font-style: italic; opacity: 0.7; font-size: 12px; }
  :root {
    --lm-blue: #003366; 
    --lm-light-blue: #E6F0FF;
    --lm-text: #58636d;
    --lm-shadow: 0 10px 30px rgba(0,0,0,0.15);
  }

  @media (max-width: 468px) {
    #lm-chat-trigger {
      right: 20px;
      bottom: 20px;
    }
    #lm-chat-window {
      right: 12px;
      bottom: 92px;
      width: calc(100vw - 24px);
      max-width: 350px;
      height: 460px;
    }
    #lm-chat-prompt {
      right: 22px;
      bottom: 88px;
    }
  }

:root {
  --lm-top-bar-height: 37px;
  --lm-navbar-height: 90px;
  --lm-fixed-header-height: calc(var(--lm-top-bar-height) + var(--lm-navbar-height));
}

html {
  scroll-padding-top: calc(var(--lm-fixed-header-height) + 12px);
}

header {
  padding-top: var(--lm-fixed-header-height);
}

.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--lm-top-bar-height);
  padding: 0;
  display: flex;
  align-items: center;
  z-index: 1002;
}

.top-bar .container {
  height: 100%;
  align-items: center;
}

.navbar {
  position: fixed;
  top: var(--lm-top-bar-height);
  left: 0;
  width: 100%;
  height: var(--lm-navbar-height);
  z-index: 1001;
}

@media (max-width: 992px) {
  :root {
    --lm-top-bar-height: 0px;
    --lm-navbar-height: 90px;
    --lm-fixed-header-height: var(--lm-navbar-height);
  }

  .top-bar {
    display: none;
  }

  .navbar {
    top: 0;
  }
}

@media (max-width: 468px) {
  :root {
    --lm-navbar-height: 70px;
    --lm-fixed-header-height: var(--lm-navbar-height);
  }

  .navbar {
    top: 0 !important;
  }
}
