.slider-container {
      position: relative;
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      border-radius: 0;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
      background-color: #6d8a4f;
      font-family: 'Urbanist', 'Playfair Display', serif;
    }

    .slider {
      display: flex;
      transition: transform 0.6s ease-in-out;
    }

    .slide {
      min-width: 100%;
      position: relative;
    }

    .slide img {
      width: 100%;
      height: 550px;
      object-fit: cover;
      display: block;      
    }

    .caption {
      position: absolute;
      top: 50%;
      left: 60px;
      transform: translateY(-50%);
      background: rgba(255, 255, 255, 0.75);
      padding: 25px 35px;
      border-radius: 15px;
      max-width: 420px;
    }

    .caption h2 {
      font-size: 42px;
      color: #3b4a2f;
      margin-bottom: 10px;
      font-family: 'Urbanist', 'Playfair Display', serif;
      line-height: 1.1;
      letter-spacing: -1px;
    }

    .caption p {
      font-size: 18px;
      color: #555;
      line-height: 1.6;
      margin-bottom: 20px;
    }

    .caption a {
      display: inline-block;
      padding: 9px 24px 12px;
      background: #6d8a4f;
      color: #fff;
      text-decoration: none;
      border-radius: 43px;
      transition: all 0.9s ease-in-out;
      background-image: linear-gradient(45deg, #003463, #08ae08);
      font-weight: 600;
    }

    .caption a:hover {
      background-image: linear-gradient(135deg, #08ae08, #003463);
    }

    .prev,
    .next {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(0, 0, 0, 0.5);
      color: #fff;
      border: none;
      padding: 9px 20px;
      cursor: pointer;
      font-size: 24px;
      border-radius: 50%;
      z-index: 10;
    }

    .prev {
      left: 20px;
    }

    .next {
      right: 20px;
    }

    .dots {
      position: absolute;
      bottom: 20px;
      width: 100%;
      display: flex;
      justify-content: center;
      gap: 10px;
    }

    .dot {
      width: 14px;
      height: 14px;
      border-radius: 50%;
      background: rgba(255,255,255,0.6);
      cursor: pointer;
      transition: 0.3s;
    }

    .dot.active {
      background: #6d8a4f;
      transform: scale(1.2);
    }
@media (max-width: 768px) {
      .slide img {
        height: 500px;
      }

      .caption {
        left: 20px;
        right: 20px;
        max-width: 90%;
        padding: 20px;
      }

      .caption h2 {
        font-size: 28px;
      }

      .caption p {
        font-size: 15px;
      }
    }
