/* ================================
   KNOW MORE MODAL
================================ */

#fr-knowmore-overlay {
    position: fixed !important;

    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: 0 !important;

    width: 100vw !important;
    height: 100vh !important;

    display: flex !important;

    align-items: center !important;
    justify-content: center !important;

    padding: 20px !important;
    box-sizing: border-box !important;

    background: rgba(0, 0, 0, 0.70) !important;

    z-index: 2147483647 !important;

    opacity: 1 !important;
    visibility: visible !important;

    pointer-events: auto !important;
}


/* Hidden state */

#fr-knowmore-overlay[hidden] {
    display: none !important;
}


/* ================================
   MODAL BOX
================================ */

#fr-knowmore-overlay .fr-modal {
    position: relative !important;

    display: block !important;

    width: min(700px, 90vw) !important;
    max-width: 700px !important;

    max-height: 85vh !important;

    overflow-y: auto !important;

    margin: 0 !important;
    padding: 40px !important;

    box-sizing: border-box !important;

    background: #ffffff !important;

    color: #222222 !important;

    border-radius: 12px !important;

    opacity: 1 !important;
    visibility: visible !important;

    transform: none !important;

    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4) !important;
}


/* ================================
   CLOSE BUTTON
================================ */

#fr-knowmore-overlay .fr-modal-close {
    position: absolute !important;

    top: 10px !important;
    right: 15px !important;

    width: 40px !important;
    height: 40px !important;

    padding: 0 !important;

    border: 0 !important;

    background: transparent !important;

    color: #222222 !important;

    font-size: 32px !important;
    line-height: 40px !important;

    cursor: pointer !important;

    z-index: 2 !important;
}


/* ================================
   TITLE
================================ */

#fr-knowmore-overlay #fr-knowmore-title {
    margin-top: 0 !important;
    padding-right: 40px !important;

    color: #222222 !important;
}


/* ================================
   CONTENT
================================ */

#fr-knowmore-overlay .fr-modal-content {
    color: #333333 !important;
    line-height: 1.7 !important;
}

#fr-knowmore-overlay .fr-modal-content p {
    margin: 0 0 18px !important;
}



/*================= for slider==========*/



    .wtd-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10, 15, 30, 0.92);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  .wtd-overlay.active {
    display: flex;
  }
  .wtd-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 36px;
    color: #fff;
    background: none;
    border: none;
    cursor: pointer;
    line-height: 1;
    z-index: 2;
  }
  .wtd-slider-wrap {
    position: relative;
    width: 90vw;
    max-width: 900px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .wtd-slide-container {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    max-height: 80vh;
    overflow: hidden;
    border-radius: 12px;
    background: #000;
  }
  .wtd-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
  }
  .wtd-slide.active {
    opacity: 1;
    pointer-events: auto;
  }
  .wtd-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #000;
  }
  .wtd-nav {
    background: rgba(255,255,255,0.15);
    border: none;
    color: #fff;
    font-size: 28px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    margin: 0 16px;
    flex-shrink: 0;
    transition: background 0.2s ease;
  }
  .wtd-nav:hover {
    background: rgba(255,255,255,0.3);
  }
  .wtd-counter {
    color: #fff;
    margin-top: 16px;
    font-size: 14px;
    letter-spacing: 0.05em;
    opacity: 0.85;
  }
  .wtd-dots {
    display: flex;
    gap: 8px;
    margin-top: 10px;
  }
  .wtd-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.35);
    cursor: pointer;
    transition: background 0.2s ease;
  }
  .wtd-dot.active {
    background: #fff;
  }