.swiper-container {
    width: 100%;
    height: 500px; /* Adjust for your design */
}
.swiper-slide {
    position: relative;
    text-align: center;
    background: #000; /* Dark background like Samsung */
}
.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.slider-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
}
.slider-text h1 {
    font-size: 2.5em;
    margin: 0;
}
.slider-text p {
    font-size: 1.2em;
}
.cta-button {
    display: inline-block;
    padding: 10px 20px;
    background: #0071e3; /* Samsung-like blue */
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
}

@media (max-width: 767px) {
    .swiper-container {
        height: 300px; /* Smaller for mobile */
    }
    .slider-text h1 {
        font-size: 1.5em;
    }
    .slider-text p {
        font-size: 0.9em;
    }
}