.logo-slider-container {
  overflow: hidden; /* Essential: Hides logos outside the view */
  white-space: nowrap; /* Keeps all logos on a single line */
  box-shadow: 0 4px 8px rgba(0,0,0,0.1); /* Adds a subtle shadow */
  padding: 20px 0; /* Vertical padding */
  background-color: #f8f9fa; /* Light background for the bar */
 
}

.logo-slider {
  display: inline-block; /* Allows the div to shrink-wrap content and animate */
  animation: slideLogos 20s linear infinite; /* Apply the animation */
}

.logo-slider img {
  height: 60px; /* Adjust this to your logo's height */
  margin: 0 40px; /* Spacing between individual logos */
  vertical-align: middle; /* Ensures images align nicely within the line */
  /* filter: grayscale(100%); Makes logos black and white */
  /* transition: filter 0.3s ease-in-out; Smooth transition for hover effect */
}

.logo-slider img:hover {
  /* filter: grayscale(0%); Logos regain color on hover */
}

/* The core animation */
@keyframes slideLogos {
  0% {
    transform: translateX(0%); /* Start position */
  }
  100% {
    transform: translateX(-100%); /* End position: moves entire content width to the left */
  }
}

/* Duplicating content for a seamless loop */
.logo-slider.duplicate {
  animation: slideLogos 20s linear infinite; /* Same animation as original */
  animation-delay: -10s; /* Starts this duplicate halfway through the original's animation, creating a continuous loop */
}

/* Pause animation on hover */
.logo-slider-container:hover .logo-slider {
  animation-play-state: paused; /* Stops the animation when you hover over the entire bar */
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
  .logo-slider img {
    height: 45px; /* Smaller logos on smaller screens */
    margin: 0 25px; /* Less margin */
  }
  .logo-slider, .logo-slider.duplicate {
    animation-duration: 15s; /* Faster slide if there's less content to show */
  }
  .logo-slider.duplicate {
    animation-delay: -7.5s; /* Adjust delay for the new duration */
  }
}














.logo-slider-container {
      overflow: hidden; /* Hide overflowing content */
      white-space: nowrap; /* Keep logos on a single line */
      box-shadow: 0 4px 8px rgba(0,0,0,0.1); /* Subtle shadow for depth */
      padding: 20px 0;
      background-color: #f8f9fa; /* Light background */
    }

    .logo-slider {
      display: inline-block; /* Allow animation */
      animation: slideLogos 20s linear infinite; /* Animation duration, timing, and repetition */
    }

    .logo-slider img {
      height: 60px; /* Adjust logo height as needed */
      margin: 0 40px; /* Space between logos */
      vertical-align: middle; /* Align images nicely */
      /* filter: grayscale(100%); Make logos grayscale */
      /* transition: filter 0.1s ease-in-out; Smooth transition for hover effect */
    }

    .logo-slider img:hover {
      filter: grayscale(0%); /* Color on hover */
    }

    /* Animation for sliding logos */
    @keyframes slideLogos {
      0% {
        transform: translateX(0%);
      }
      100% {
        transform: translateX(-100%); /* Adjust based on content width */
      }
    }

    /* To duplicate content for seamless looping (optional but recommended) */
    .logo-slider.duplicate {
      animation: slideLogos 20s linear infinite; /* Same animation as original */
      animation-delay: -10s; /* Start halfway through the original's animation */
    }

    /* Pause animation on hover for the entire container */
    .logo-slider-container:hover .logo-slider {
      animation-play-state: paused;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .logo-slider img {
        height: 45px; /* Smaller height for smaller screens */
        margin: 0 25px;
      }
      .logo-slider {
        animation-duration: 15s; /* Faster slide for less content */
      }
      .logo-slider.duplicate {
        animation-duration: 15s;
        animation-delay: -7.5s;
      }
    }

















.cta-section {
  background-color: #212121; /* dark charcoal */
}

.cta-section h2 {
  font-size: 2.5rem;
  font-weight: 600;
}

.cta-section p.lead {
  font-size: 1.2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section .btn-light {
  background-color: var(--tertiary);
  border: none;
  color: var(--dark);
  font-weight: 500;
}

.cta-section .stats {
  margin-top: 2rem;
}

.cta-section .stats h3 {
  font-size: 2rem;
  margin-bottom: 0.25rem;
  color: var(--tertiary);
}

.cta-section .stats p {
  font-size: 0.9rem;
  color: var(--light);
}















