.carousel-section {
    background: #fff;
    padding: 3rem 1rem;
    text-align: center;
  }
  
  .carousel-wrapper {
    overflow: hidden;
    position: relative;
    max-width: 100%;
    margin: auto;a
  }
  
  .carousel-track {
    display: flex;
    gap: 2rem;
    animation: scrollLeft 30s linear infinite;
  }
  
  .carousel-item {
    flex: 0 0 auto;
    width: 300px;
    padding: 1rem;
    background: #f3f4f6;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  }
  
  @keyframes scrollLeft {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }
  
  .socials a {
    margin: 0 10px;
    color: #333;
    font-size: 20px;
    transition: color 0.2s ease;
  }
  
  .socials a {
    margin: 0 10px;
    color: #333;
    font-size: 20px;
    transition: color 0.2s ease;
    text-decoration: none;
  }
  
  .socials a:hover {
    color: #007bff;
  }
  
  .owl-carousel img {
    width: 100%;
    max-height: 410px;
    object-fit: cover;
    border-radius: 8px;
  }
  html, body {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
  }
  
  .page-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
  }
  footer {
    background-color: #f8f9fa;
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid #e2e2e2;
  }
  