/* SLIDER SECTION */
#slideshow-section .slider {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
    /* Responsive oran */
    overflow: hidden;
    border-radius: 12px;
}

/* SLIDES */
#slideshow-section .slides {
    width: 100%;
    height: 100%;
    position: relative;
}

/* IMAGES */
#slideshow-section .slide {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: contain;
    /* Teknik görsel olduğu için kırpmaz */
    background: #fff;
    /* boşluk kalırsa beyaz görünsün */
    display: none;
}

#slideshow-section .slide.active {
    display: block;
}

/* NAV BUTTONS */
#slideshow-section .prev,
#slideshow-section .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    padding: 10px 16px;
    cursor: pointer;
    font-size: 18px;
    border-radius: 50%;
    transition: 0.3s;
    z-index: 5;
}

#slideshow-section .prev:hover,
#slideshow-section .next:hover {
    background: rgba(0, 0, 0, 0.8);
}

#slideshow-section .prev {
    left: 15px;
}

#slideshow-section .next {
    right: 15px;
}

.slide {
    opacity: 0;
    transition: opacity 0.5s ease;
}

.slide.active {
    opacity: 1;
}

#technical-table table th {
    background-color: #f8f9fa;
    font-weight: 600;
}

#technical-table h2 {
    font-weight: 700;
}

.reference-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

.reference-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}