.service-slider-container {
    position: relative;
    width: 100%;
    min-height: 715px;
    overflow: hidden;
}

/* Left Content Area */
.content-area {
    position: absolute;
    left: 0;
    top: 0;
    width: 50%;
    height: 100%;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 1;
}

.content-slide {
    opacity: 0;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: opacity 0.6s ease-in-out;
    pointer-events: none;
    max-width: 600px;
}

.content-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.content-slide h2 {
    color: #fff;
    font-family: var(--e-global-typography-0e48613-font-family), Sans-serif;
    font-size: var(--e-global-typography-0e48613-font-size);
    font-weight: var(--e-global-typography-0e48613-font-weight);
    line-height: var(--e-global-typography-0e48613-line-height);
    margin-bottom: 40px;
}

.content-slide p {
    color: #fff;
    margin-bottom: 20px;
}

.stat-number {
    font-size: 72px;
    font-weight: 700;
    line-height: 1;
    margin: 30px 0;
}

.stat-label {
    font-size: 30px;
    color: #ffffff;
    line-height: 1;
}

/* Right Side - Circular Navigation */
.circular-nav-container {
    position: absolute;
    right: 100px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.circular-nav {
    position: relative;
    width: 450px;
    aspect-ratio: 1;
    height: 450px;
}

/* Circle border */
.nav-circle {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(255, 51, 51, 0.3);
    border-radius: 50%;
}

/* Center logo */
.center-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.center-logo img {
    max-width: 120px;
    max-height: 120px;
}

.logo-icon {
    width: 120px;
    height: 120px;
    color: #ff3333;
}

.content-slide .custom-btn {
    text-align: left;
}

/* Navigation items positioned around circle */
/* .nav-item {
    position: absolute;
    color: white;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
} */

/* Position items around the circle */
/* .nav-item[data-slide="0"] {
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
}

.nav-item[data-slide="1"] {
    left: -80px;
    top: 50%;
    transform: translateY(-50%);
}

.nav-item[data-slide="2"] {
    bottom: -30px;
    right: 50%;
    transform: translateX(50%);
} */

/* Additional positions for more slides */
/* .nav-item[data-slide="3"] {
    right: -80px;
    top: 50%;
    transform: translateY(-50%);
}

.nav-item[data-slide="4"] {
    top: 25%;
    right: -70px;
    transform: translateY(-50%);
}

.nav-item[data-slide="5"] {
    top: 25%;
    left: -70px;
    transform: translateY(-50%);
}

.nav-item[data-slide="6"] {
    bottom: 25%;
    right: -70px;
    transform: translateY(50%);
}

.nav-item[data-slide="7"] {
    bottom: 25%;
    left: -70px;
    transform: translateY(50%);
} */

/* Active indicator dot */
/* .nav-dot {
    position: absolute;
    width: 14px;
    height: 14px;
    background: white;
    border-radius: 50%;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
} */

/* Position dots on circle perimeter */
/* .nav-dot[data-position="0"] {
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.nav-dot[data-position="1"] {
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
}

.nav-dot[data-position="2"] {
    left: auto;
    top: auto;
    bottom: 30px;
    right: 50%;
    transform: translateX(50%);
}

.nav-dot[data-position="3"] {
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
}

.nav-dot[data-position="4"] {
    top: 25%;
    right: 30px;
    transform: translateY(-50%);
}

.nav-dot[data-position="5"] {
    top: 25%;
    left: 30px;
    transform: translateY(-50%);
}

.nav-dot[data-position="6"] {
    bottom: 25%;
    right: 30px;
    transform: translateY(50%);
}

.nav-dot[data-position="7"] {
    bottom: 25%;
    left: 30px;
    transform: translateY(50%);
} */

/* Navigation items positioned around circle */
.nav-item {
    position: absolute;
    color: white;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

/* Remove all hardcoded positions - they're now dynamic */
/* The JavaScript will position items based on slide count */

/* Active indicator dot */
.nav-dot {
    position: absolute;
    width: 14px;
    height: 14px;
    background: white;
    border-radius: 50%;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

/* Remove all hardcoded dot positions - they're now dynamic */
/* The JavaScript will position the dot based on active slide */
/* Navigation Arrows - Top Right */
.nav-arrows {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    gap: 20px;
    z-index: 2;
}

.arrow-btn {
    width: 55px;
    min-height: 55px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    background: transparent;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s ease;
}

.arrow-btn:hover {
    background: #606060;
    border-color: #606060;
    color: #fff;
}

/* Background Images */
.bg-slides {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.bg-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.bg-slide.active {
    opacity: 1;
}

.bg-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(26, 26, 26, 0.95) 0%, rgba(26, 26, 26, 0.7) 50%, rgba(26, 26, 26, 0.3) 100%);
    z-index: 1;
}

/* No overlay when no background image */
.bg-slide[style*="background: transparent"]::before {
    display: none;
}

/* Button Styles */
.elementor-button-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.elementor-button-content-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.elementor-button-icon svg {
    transition: transform 0.3s ease;
}

.elementor-button-link:hover .elementor-button-icon svg {
    transform: translateX(5px);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .content-area {
        width: 100%;
        padding: 40px;
    }

    .circular-nav-container {
        display: none;
    }
}

@media (max-width: 768px) {
    .service-slider-container {
        min-height: 600px;
    }

    .content-area {
        padding: 30px;
    }

    .stat-number {
        font-size: 56px;
        margin: 30px 0;
    }

    .stat-label {
        font-size: 24px;
    }

    .content-slide h2 {
        margin-bottom: 30px;
    }

    .content-slide p {
        margin-bottom: 15px;
    }
}

@media (max-width: 570px) {
    .stat-number {
        font-size: 40px;
        margin: 20px 0;
    }

    .stat-label {
        font-size: 20px;
    }

    .nav-arrows {
        gap: 15px;
    }

    .arrow-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
        line-height: 1;
        min-height: 40px;
        aspect-ratio: 1;
        padding: 10px;
    }

    .content-slide p {
        margin-bottom: 20px;
    }

    .content-slide h2 {
        margin-bottom: 20px;
    }

    .service-slider-container {
        min-height: 703px;
    }

    .content-area {
        padding: 20px;
    }
}

/* ============================================
   THUMBNAIL SLIDER WIDGET STYLES
   ============================================ */

.thumb-slider-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: linear-gradient(180deg, #000000 0%, rgba(0, 0, 0, 0.5) 50%, #000000 100%);
}

.slides-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.thumb-slider-container .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    pointer-events: none;
}

.thumb-slider-container .slide.active {
    opacity: 1;
    pointer-events: auto;
}

.slide-image {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #000000 0%, rgba(0, 0, 0, 0.5) 50%, #000000 100%);
    opacity: 0.8;
}

.content-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    transform: translate(-50%, -50%);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 80px 0;
    color: white;
    max-width: 1440px;
}

.top-content h2 {
    font-family: var(--e-global-typography-0e48613-font-family), Sans-serif;
    font-size: var(--e-global-typography-0e48613-font-size);
    font-weight: var(--e-global-typography-0e48613-font-weight);
    line-height: var(--e-global-typography-0e48613-line-height);
    margin-bottom: 0.5rem;
    max-width: 600px;
    color: white;
}

.top-content p {
    font-weight: 400;
    font-size: 18px;
    color: white;
    max-width: 500px;
}

.bottom-content {
    max-width: 600px;
}

.project-name {
    font-weight: 600;
    font-size: 30px;
    line-height: 40px;
    margin-bottom: 20px;
}

.project-description {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.project-authors {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    list-style: disc;
    margin: 0 0 0 8px;
    list-style-position: inside;
    margin-bottom: 10px;
}

.project-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.location-icon {
    width: 18px;
    height: 18px;
}

.nav-controls {
    position: absolute;
    top: 80px;
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 100;
    width: 100%;
    max-width: 1440px;
    left: 50%;
    transform: translateX(-50%);
    justify-content: end;
    z-index: 3;
}

.nav-controls * {
    position: relative;
    z-index: 1;
}

.nav-btn {
    padding: 0;
    width: 63px;
    height: 63px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background: rgba(255, 255, 255, 0.6);
    border-color: rgba(255, 255, 255, 0.6);
}

.nav-btn svg {
    width: 20px;
    height: 20px;
    stroke: white;
    stroke-width: 2;
}

.dot-indicator {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: white;
    width: 27px;
    border-radius: 4px;
}

.thumbnail-nav {
    position: absolute;
    display: flex;
    gap: 30px;
    z-index: 100;
    width: 100%;
    max-width: 1440px;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    justify-content: end;
}

.thumbnail {
    width: 100px;
    height: 100px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.thumbnail.active,
.thumbnail:hover {
    border-color: white;
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 1;
}

/* Thumbnail Slider Responsive Styles */
@media (max-width:1499px) {
    .nav-controls {
        width: auto;
        max-width: fit-content;
        right: 90px;
        left: auto;
        transform: unset;
    }

    .content-wrapper {
        left: 90px;
        transform: unset;
        top: 0;
    }

    .thumbnail-nav {
        max-width: fit-content;
        left: auto;
        transform: unset;
        right: 90px;
        gap: 15px;
    }

    .thumbnail {
        height: 80px;
        width: 80px;
    }

    .nav-btn {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 1024px) {
    .nav-controls {
        right: 60px;
        top: 60px;
    }

    .top-content h2 {
        max-width: 50%;
    }

    .content-wrapper {
        left: 0;
        padding: 60px;
    }

    .thumbnail-nav {
        right: 60px;
        display: none;
    }
}

@media (max-width: 768px) {
    .content-wrapper {
        padding: 50px 30px;
    }

    .nav-btn {
		padding:10px;
        width: 40px;
        height: 40px;
    }

    .thumbnail-nav {
        right: 20px;
    }
    
    .nav-controls {
        right: 30px;
        top: 50px;
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .content-wrapper {
        padding: 50px 20px;
    }

    .nav-controls {
        right: 20px;
        top: 50px;
        gap: 8px;
    }

    .nav-btn {
        width: 36px;
        height: 36px;
    }
}
