

:root {
  --roller: #0b3a66;
  --blinds: #5ec5e6;
  --bg: #f9f9f9;
  --text: #333;
  --white: #fff;
  --muted: #6b7280;
  --transition: all 0.3s ease;

  /* Main colors used across site */
  --primary-color: var(--roller);     /* Main theme color */
  --secondary-color: var(--bg);       /* Background color */
  --text-dark: var(--text);           /* Dark text */
  --text-light: var(--muted);         /* Light text */
  --extra-light: var(--white);        /* White color */
}

* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: "Poppins", sans-serif;
    }

    body {
      background: #f4f7fb;
    }

    .section__container {
      max-width: 1200px;
      margin: 80px auto;
      padding: 0 20px;
      text-align: center;
    }

    .header p {
      letter-spacing: 2px;
      color: #6b7280;
    }

    .header h1 {
      margin: 10px 0 40px;
      font-size: 2rem;
      color: #0b3a66;
    }

    /* ===== SLIDER ===== */
    .slider {
      overflow: hidden;
      width: 100%;
      position: relative;
    }

    .slider-track {
      display: flex;
      transition: transform 0.7s ease-in-out;
    }

    .card {
      min-width: 100%;
      max-width: 520px;
      margin: 0 auto;
      background: #fff;
      padding: 30px;
      border-radius: 16px;
      box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    }

    .card span {
      font-size: 2rem;
      color: #0b3a66;
    }

    .card p {
      margin: 15px 0;
      color: #374151;
      line-height: 1.6;
    }

    .card hr {
      margin: 20px 0;
    }

    .card img {
      width: 60px;
      border-radius: 50%;
      margin-top: 10px;
    }

    .name {
      font-weight: 600;
      margin-top: 10px;
    }

    /* Dots */
    .dots {
      margin-top: 20px;
      display: flex;
      justify-content: center;
      gap: 10px;
    }

    .dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: #cbd5e1;
      cursor: pointer;
    }

    .dot.active {
      background: #0b3a66;
    }

    /* Mobile */
    @media (max-width: 768px) {
      .card {
        max-width: 90%;
      }
    }