:root {
    --color-gray-600: #6D6D6D;
    --light-gray: #F4F4F4;
    --scroll-offset: 50px;

}
body {
    font-family: 'Poppins', sans-serif;
}

.text-gray {
    color: var(--color-gray-600);
}
.bg-gray {
    background-color: var(--light-gray);
}

.clip-diagonal {
    clip-path: polygon(0 30%, 100% 0, 100% 100%, 0 100%);
}

.max-w-8xl{
    max-width: 88rem;
}



.max-w-9xl{
    max-width: 96rem;
}
.max-w-10xl{
    max-width: 104rem;
}


.carousel-container {
    width: 100%;
    position: relative;
}

.carousel-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    /*border-radius: 15px;*/
    overflow: hidden;
    background: #f8f9fa;
}

.carousel-track {
    display: flex;
    height: 100%;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide {
    min-width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: end;
    /*
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    */
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-slide::before {
    content: attr(data-slide);
    position: absolute;
    font-size: 120px;
    font-weight: bold;
    color: rgba(255, 255, 255, 0.2);
    z-index: 1;
}

/*.carousel-slide:nth-child(1) { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); }
.carousel-slide:nth-child(2) { background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%); }
.carousel-slide:nth-child(3) { background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%); }
.carousel-slide:nth-child(4) { background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%); }*/

.carousel-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
    z-index: 10;
    display: none;
}

.control-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    pointer-events: all;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.control-btn:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.control-btn:active {
    transform: scale(0.95);
}

.control-btn svg {
    width: 24px;
    height: 24px;
    stroke: #333;
    stroke-width: 2.5;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.carousel-indicators {
    justify-content: center;
    gap: 12px;
    margin-top: 25px;
}

.indicator {
    width: 120px;
    height: 3px;
    background: #e0e6ed;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.indicator::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #495057;
    /*border-radius: 50%;*/
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.indicator.active {
    width: 120px;
    background: #ffffff;
}

.indicator.active::before {
    left: 0;
}

.indicator:hover:not(.active) {
    cursor: pointer;
}


/* Responsive */
@media (max-width: 768px) {
    .carousel-wrapper {
        /*height: 350px;*/
    }

    .control-btn {
        width: 40px;
        height: 40px;
    }

    .control-btn svg {
        width: 20px;
        height: 20px;
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.carousel-container {
    animation: slideIn 0.6s ease-out;
}

#mainImage {
    transition: opacity 0.7s ease;
    opacity: 1;
}

#mainTitle, #mainDesc {
    transition: opacity 0.7s ease, transform 0.7s ease;
    opacity: 1;
}

.thumb img {
    transition: opacity 0.5s ease, transform 0.5s ease;
    opacity: 1;
}

.thumb p {
    transition: opacity 0.5s ease;
    opacity: 1;
}

#thumbWrapper {
    transition: transform 0.5s ease;
}


