.slideshow-container {
    max-width: 1200px;
    margin: 50px auto;
    position: relative;
    padding: 20px 0px 0px !important;
    color: #222;
    background-color: transparent;
    box-shadow: none;
    border-radius: 0;
    text-align: center;
}

.slideshow-heading {
    text-align: center;
    margin: 0 auto 40px;
    font-size: clamp(2.3rem, 5vw, 2.6rem);
    font-weight: 700;
    background: linear-gradient(45deg, var(--primary-blue, #4285f4), #34a853);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    padding: 0 15px;
    line-height: 1.3;
    display: block;
    width: 100%;
    box-sizing: border-box;
}

.slideshow {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-top: -18px;
    transform: translateY(-5%);
}

.slide {
    display: none;
    width: 100%;
}

.slide.active {
    display: block;
}

.slideshow-nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    border: none;
    padding: 18px;
    cursor: pointer;
    font-size: 20px;
    z-index: 10;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    margin: 0 15px;
}

.slideshow-nav:hover {
    background: #000;
    transform: translateY(-50%) scale(1.1);
}

.slideshow-nav.prev {
    left: 0;
}

.slideshow-nav.next {
    right: 0;
}

.slideshow-indicators {
    display: flex;
    justify-content: center;
    position: absolute;
    left: 0;
    right: 0;
    margin: -15px 0 10px;
    gap: 15px;
    padding: 18px;
    background: transparent;
    z-index: 10;
}

.slideshow-indicator {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #bdc3c7;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    z-index: 10;
}

.slideshow-indicator:hover {
    background: #95a5a6;
    transform: scale(1.2);
}

.slideshow-indicator.active {
    background: #0099ff;
    transform: scale(1.3);
    border-color: #2980b9;
}


.slide-img-large {
    width: 90%;
    max-width: 800px;
    height: auto;
    max-height: 380px;
    object-fit: cover;
    margin: 0 auto 15px;
    display: block;
    border-radius: 6px;
    transition: transform 0.3s ease;
}

.slide-img-large:hover {
    transform: scale(1.02);
}

.slide-imgs-small {
    display: block;
    width: 100%;
    margin: 0;
    font-size: 0;
    padding-bottom: 18px;
    word-spacing: -0.5em;
}

.slide-imgs-small img {
    display: inline-block;
    width: calc(24% - 5px);
    height: auto;
    max-height: 400px;
    object-fit: cover;
    margin: 0 6px;
    padding: 0;
    border: 0;
    vertical-align: top;
    word-spacing: 0;
    transition: transform 0.3s ease;
}

.slide-imgs-small img:hover {
    transform: scale(1.03);
}

#small_device {
    display: none;
}


@media (max-width: 700px) {
    #large_device {
        display: none;
    }

    #small_device {
        display: block;
    }

    .slide-img-large,
    .slide-imgs-small {
        width: 85%;
        max-width: 100%;
        height: auto;
        max-height: 60vh;
        min-height: 300px;
        margin: 0 auto 20px;
        display: block;
        object-fit: contain;
        border-radius: 8px;
    }

    .slideshow {
        padding: 10px 0;
    }

    .slideshow-heading{
        margin-top: 20px;
    }

    .slideshow-indicators {
        display: flex;
        justify-content: center;
        position: absolute;
        bottom: 10px;
        left: 0;
        right: 0;
        gap: 15px;
        padding: 0px 0;
        background: transparent;
        z-index: 10;
    }

    .slideshow-indicator {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: #bdc3c7;
        cursor: pointer;
        transition: all 0.3s ease;
        border: 2px solid transparent;
    }

    .slideshow-indicator:hover {
        background: #95a5a6;
        transform: scale(1.2);
    }

    .slideshow-indicator.active {
        background: #0099ff;
        transform: scale(1.3);
        border-color: #2980b9;
    }

    .intro-section {
        margin-top: -50px !important;
    }

    #products {
        margin-top: 50px !important;
    }

    #contact {
        margin-top: -120px !important;
    }

}