body {
      font-family: Arial, sans-serif;
      background: #f9f9f9;
      margin: 0;
      padding: 0;
    }

    .container {
      max-width: 1400px;
      margin: auto;
      padding: 40px 20px;
    }

    .section-header {
      text-align: center;
      margin-bottom: 30px;
    }

    .section-title {
      font-size: 32px;
      margin-bottom: 10px;
    }

    .section-subtitle {
      font-size: 18px;
      color: #666;
    }

    /* Sliders wrapper */
    .sliders-container {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 50px;
      flex-wrap: wrap;
    }

   

    .slider {
      perspective: 800px; /* reduced perspective to prevent overflow */
      width: 450px;   /* increased width */
      height: 500px;  /* increased height */
      position: relative;
      flex: 1 1 450px; /* equal width in flex */
      max-width: 100%;
      overflow: hidden; /* prevent slides from extending outside */
    }

    .slider-track {
      width: 100%;
      height: 100%;
      position: absolute;
      transform-style: preserve-3d;
      transition: transform 1s ease-in-out;
    }

    .slide {
      position: absolute;
      width: 100%;
      height: 100%;
      left: 0;
      top: 0;
      backface-visibility: hidden;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 15px 30px rgba(0,0,0,0.25);
    }

    .slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    /* Navigation dots */
    .dots {
      position: absolute;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 10px;
    }

    .dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: rgba(255,255,255,0.7);
      cursor: pointer;
      transition: background 0.3s;
    }

    .dot.active {
      background: #2563eb;
    }
    @media (max-width: 1024px) {
  .sliders-container {
    flex-wrap: wrap;       /* allow stacking on smaller devices */
  }
}