.home-slider {
    position: relative;
    overflow: hidden;
    width: 100vw;
    height: 100vh;
}

.slider {
    position: relative;
    height: 100%;
}

.slider-track {
    display: flex;
    height: 100%;
    transition: transform 0.6s ease;
}


.slide {
    flex: 0 0 100%;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.slide-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
}

.slide-content {
    position: relative;
    z-index: 2;
    color: #fff;
    text-align: center;
    max-width: 800px;
    padding: 20px;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-5%);
    background: rgba(255,255,255,0.2);
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 24px;
    z-index: 5;
    max-width: 2em;
}

.slider-btn.prev { left: 10px; }
.slider-btn.next { right: 10px; }

.slider-dots {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 5;
}

.slider-dots button {
    width: 12px;
    height: 12px;
    border-radius: 6px;
    border: none;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
}

.slider-dots button.active {
    background: #fff;
}


.slide-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1300px;
    padding: 0 5%;
}

.slide-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    color: #fff;
}

.slide-left {
    flex: 1;
}

.slide-left h2 {
    font-size: clamp(3rem, 6vw, 5.5rem);
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -1px;
    margin: 0;
}

.slide-right {
    flex: 1;
    max-width: 500px;
}

.slide-right p {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.95;
    text-align: left;
    white-space: normal;
    overflow-wrap: break-word;
    word-break: break-word;
	 
}

.btn {
    display: inline-block;
    background: #5b7984;
    color: white;
    padding: 14px 34px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn:hover {
    background: #;
    color: #fff;
}


.home-slider {
    width: 100%;
    overflow: hidden;
}

.slider {
    width: 100%;
    overflow: hidden;
}

.slider-track {
    display: flex;
    width: 100%;
}


@media (max-width: 900px) {

    .slide-inner {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .slide-left h2 {
        font-size: clamp(2.5rem, 8vw, 3.5rem);
    }

    .slide-right {
        max-width: 100%;
    }
}


