.unique-slider-container {
width: 100%;
/* Desktop ratio 3:1 => height 500px */
height: 500px;
position: relative;
overflow: hidden;
}

/* Slide images */
.unique-slide .unique-item {
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
background-size: cover;
background-position: center;
background-repeat: no-repeat;
opacity: 0;
transform: scale(1.05);
transition: all 0.8s ease;
}


.unique-slide {
position: relative;
height: 100%;
}


.unique-slide .unique-item:nth-child(1) {
opacity: 1;
transform: scale(1);
}




/* Buttons */
.unique-button {
display: flex;
flex-direction: row;
align-items: center;
gap: 10px;
position: absolute;
left: 20px;
/* left se adjust */
bottom: 20px;
/* bottom se adjust */
border-radius: 10px;
padding: 8px 12px;
background: rgba(240, 248, 255, 0.4);
/* light transparent background */
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
/* halka shadow */
}

.unique-button button {
width: 40px;
height: 40px;
border-radius: 50%;
border: 2px solid #000000bd;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
margin: 0;
background: rgba(255, 255, 255, 0.6);
transition: all 0.3s ease;
}

.unique-button button:hover {
border: 2px solid #ffffffbd;
transform: scale(1.1);
}

.unique-button button:focus {
background: #ffffff;
transform: scale(1.1);
border: 2px solid #ffffffbd;
}

.unique-button button:active {
transform: scale(1.02);
}

@media (max-width: 768px) {
.unique-slider-container {
    height: auto;
    aspect-ratio: 3 / 1;
    /* 3:1 ratio */
}

.unique-button {
    bottom: 10px;
    left: 10px;
    gap: 6px;
    padding: 6px 8px;
}

.unique-button button {
    width: 30px;
    height: 30px;
    border-width: 1.5px;
    font-size: 0.9rem;
}
}

@media (max-width: 480px) {
.unique-slider-container {
    height: auto;
    aspect-ratio: 3 / 1;
    /* 3:1 ratio */
}

.unique-button {
    bottom: 8px;
    left: 8px;
    gap: 4px;
    padding: 4px 6px;
}

.unique-button button {
    width: 25px;
    height: 25px;
    border-width: 1.5px;
    font-size: 0.8rem;
}

.section-title h2 {
    font-size: 25px;
}
}