/* ═══════════════════════════════════════════════
   Fullwidth Slider — pixel-perfect match to screenshot
   Font: Open Sans (matches GSC site)
═══════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800;900&display=swap');

/* ── Wrapper ── */
.fws-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #222;
    font-family: 'Manrope', sans-serif;
    line-height: 1;
}

/* ── Track ── */
.fws-track {
    display: flex;
    height: 100%;
    transition: transform 0.7s ease-in-out;
    will-change: transform;
}

/* ── Individual slide ── */
.fws-slide {
    position: relative;
    min-width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

/* ── Overlay: subtle left-side darkening only ── */
.fws-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.45) 0%,
        rgba(0, 0, 0, 0.25) 40%,
        rgba(0, 0, 0, 0.05) 75%,
        rgba(0, 0, 0, 0.00) 100%
    );
    z-index: 1;
}

/* ── Text content block ── */
.fws-content {
    position: relative;
    z-index: 2;
    padding: 0 60px 0 130px;
    max-width: 700px;
}

/* ── Title ── */
.fws-title {
    font-size: 58px;
    font-weight: 800;
    line-height: 1.18;
    color: #ffffff;
    margin: 0 0 18px 0;
    letter-spacing: -0.5px;
}

/* ── Description ── */
/*.fws-desc {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.8;
    color: #ffffff;
    margin: 0 0 32px 0;
    max-width: 460px;
}*/
.fws-desc {
font-family: 'Manrope', sans-serif;
  font-weight: 400;
  max-width: 600px;
  color: #fff;
  line-height: 32px;
  font-size: 1.25rem;
}
/* ── CTA Button ── */
.fws-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #17c0eb;
    color: #ffffff;
    text-decoration: none;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    padding: 13px 28px 13px 22px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    width: fit-content;
    transition: background 0.2s ease, box-shadow 0.2s ease;
}
.fws-btn::before {
    content: '';
    display: inline-block;
    width: 9px;
    height: 9px;
    background: #ffffff;
    border-radius: 50%;
    flex-shrink: 0;
}
.fws-btn:hover {
    background: #F58634;
    color: #ffffff;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(245, 134, 52, 0.5);
}

/* ── Arrows: plain minimal text style ── */
.fws-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.70);
    font-size: 22px;
    font-weight: 300;
    cursor: pointer;
    z-index: 10;
    padding: 10px 14px;
    line-height: 1;
    transition: color 0.2s ease;
}
.fws-arrow:hover { color: #F58634; }
.fws-prev { left: 0; }
.fws-next { right: 0; }

/* ── Dots ── */
.fws-dots {
    position: absolute;
    bottom: 22px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 10;
}
.fws-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.40);
    border: 2px solid rgba(255,255,255,0.55);
    cursor: pointer;
    padding: 0;
    transition: background 0.3s, width 0.3s, border-radius 0.3s, border-color 0.3s;
}
.fws-dot.active {
    background: #17c0eb;
    border-color: #17c0eb;
    width: 26px;
    border-radius: 5px;
}

/* ── Content entry animation ── */
.fws-title,
.fws-desc,
.fws-btn {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.fws-title { transition-delay: 0.10s; }
.fws-desc  { transition-delay: 0.25s; }
.fws-btn   { transition-delay: 0.40s; }

.fws-slide.fws-active .fws-title,
.fws-slide.fws-active .fws-desc,
.fws-slide.fws-active .fws-btn {
    opacity: 1;
    transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 1200px) {
    .fws-content { padding-left: 80px; }
    .fws-title   { font-size: 48px; }
}
@media (max-width: 900px) {
    .fws-content { padding: 0 50px; max-width: 90%; }
    .fws-title   { font-size: 38px; }
    .fws-desc    { font-size: 14px; }
}
@media (max-width: 600px) {
    .fws-slider  { height: 400px !important; }
    .fws-content { padding: 0 20px; }
    .fws-title   { font-size: 28px; }
    .fws-desc    { font-size: 13px; margin-bottom: 22px; }
    .fws-btn     { font-size: 11px; padding: 11px 20px 11px 16px; }
    .fws-arrow   { display: none; }
}
