/* ============================================================
   LANDING CI-ESS2 — HERO SLICK SLIDER
   ============================================================ */

/* ---- Section wrapper ---- */
.ciess2-hero-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* ---- Slick container reset ---- */
.ciess2-slider,
.ciess2-slider * {
    outline: none;
}

/* ---- Each slide ---- */
.ciess2-slide {
    position: relative;
    height: 80vh;
    overflow: hidden;
}

/* ---- Background image ---- */
.ciess2-slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    transition: transform 6s ease;
}

.slick-active .ciess2-slide-bg {
    transform: scale(1.04);
}

/* ---- Dark gradient overlay (left side stronger) ---- */
.ciess2-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
            rgba(0, 0, 0, 0.62) 0%,
            rgba(0, 0, 0, 0.28) 55%,
            rgba(0, 0, 0, 0.05) 100%);
    display: flex;
    align-items: center;
}

/* ---- Content box ---- */
.ciess2-slide-content {
    max-width: 520px;
    padding: 0 60px;
}

/* Title */
.ciess2-slide-title {
    font-size: clamp(20px, 3.2vw, 36px);
    font-weight: 700;
    color: #22c55e;
    line-height: 1.2;
    margin: 0 0 16px 0;
    letter-spacing: 0.2px;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
}

/* Description */
.ciess2-slide-desc {
    font-size: clamp(13px, 1.6vw, 15px);
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.65;
    margin: 0 0 28px 0;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

/* Button */
.ciess2-slide-btn {
    display: inline-block;
    padding: 9px 24px;
    font-size: 13px;
    font-weight: 500;
    color: #22c55e;
    border: 1.5px solid #22c55e;
    border-radius: 4px;
    text-decoration: none;
    letter-spacing: 0.4px;
    transition: background-color 0.25s ease, color 0.25s ease;
    backdrop-filter: blur(2px);
}

.ciess2-slide-btn:hover {
    background-color: #22c55e;
    color: #0d0d0d;
}

/* ============================================================
   NAVIGATION ARROWS
   ============================================================ */

.ciess2-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: #ffffff;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
}

.ciess2-arrow:hover {
    background: rgba(34, 197, 94, 0.5);
    border-color: #22c55e;
}

.ciess2-prev {
    left: 16px;
    transform: translateY(-50%) rotate(180deg);
}

.ciess2-next {
    right: 16px;
}

/* ============================================================
   DOT PAGINATION
   ============================================================ */

.ciess2-dots {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    display: flex !important;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.ciess2-dots li button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.45);
    border: none;
    cursor: pointer;
    padding: 0;
    font-size: 0;
    transition: background-color 0.25s ease, transform 0.25s ease;
}

.ciess2-dots li.slick-active button {
    background: #22c55e;
    transform: scale(1.25);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 860px) {
    .ciess2-slide {
        height: 400px;
    }

    .ciess2-slide-content {
        padding: 0 40px;
        max-width: 440px;
    }
}

@media (max-width: 580px) {
    .ciess2-slide {
        height: 320px;
    }

    .ciess2-slide-content {
        padding: 0 24px;
        max-width: 100%;
    }

    .ciess2-slide-title {
        margin-bottom: 10px;
    }

    .ciess2-slide-desc {
        margin-bottom: 18px;
    }

    .ciess2-arrow {
        width: 30px;
        height: 30px;
        font-size: 18px;
    }

    .ciess2-prev {
        left: 8px;
    }

    .ciess2-next {
        right: 8px;
    }
}
