.webstudio-47 {
    position: relative;
    height: 100vh;
    background: #000;
    overflow: hidden;
}

.webstudio-47.fullscreen {
    height: 100vh;
}

/* Slide Styles */
.slide-7 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    clip-path: inset(0 100% 0 0);
    transition: clip-path 1.5s cubic-bezier(0.77, 0, 0.175, 1),
                opacity 0.1s linear 0.8s;
}

/* Different Transition Effects */
.transition-slide_right-7 .slide-7 {
    clip-path: inset(0 100% 0 0);
}

.transition-slide_up-7 .slide-7 {
    clip-path: inset(100% 0 0 0);
}

.transition-slide_down-7 .slide-7 {
    clip-path: inset(0 0 100% 0);
}

.transition-fade-7 .slide-7 {
    clip-path: none;
    opacity: 0;
    transition: opacity 1.5s ease;
}

.transition-zoom-7 .slide-7 {
    clip-path: none;
    opacity: 0;
    transform: scale(1.2);
    transition: opacity 1.5s ease, transform 1.5s ease;
}

/* Active Slide Transitions */
.transition-slide_right-7 .slide-7.active-7 {
    opacity: 1;
    clip-path: inset(0 0 0 0);
    transition: clip-path 1.5s cubic-bezier(0.77, 0, 0.175, 1),
                opacity 0.1s linear;
}

.transition-slide_up-7 .slide-7.active-7,
.transition-slide_down-7 .slide-7.active-7 {
    opacity: 1;
    clip-path: inset(0 0 0 0);
    transition: clip-path 1.5s cubic-bezier(0.77, 0, 0.175, 1),
                opacity 0.1s linear;
}

.transition-fade-7 .slide-7.active-7 {
    opacity: 1;
    transition: opacity 1.5s ease;
}

.transition-zoom-7 .slide-7.active-7 {
    opacity: 1;
    transform: scale(1);
    transition: opacity 1.5s ease, transform 1.5s ease;
}

/* Default Overlay */
.slide-7:not(.custom-overlay-7)::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.5) 0%,
        rgba(0,0,0,0.3) 40%,
        rgba(0,0,0,0.3) 60%,
        rgba(0,0,0,0.5) 100%
    );
    z-index: 1;
}

/* Custom Overlay */
.slide-7.custom-overlay-7::after {
    display: none;
}

.slide-overlay-7 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Background Image */
.slide-bg-7 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.2);
    transition: transform 3s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.slide-7.active-7 .slide-bg-7 {
    transform: scale(1);
}

/* Video Background */
.video-bg-7 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slide-video-7 {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

/* Content Positioning */
.slide-content-7 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    color: white;
    text-align: center;
    width: 90%;
    max-width: 1200px;
}

.content-position-left-7 {
    left: 15%;
    transform: translate(0, -50%);
    text-align: left;
}

.content-position-right-7 {
    left: unset;
    right: 15%;
    transform: translate(0, -50%);
    text-align: right;
}

/* Content Alignment */
.text-left-7 {
    text-align: left;
}

.text-center-7 {
    text-align: center;
}

.text-right-7 {
    text-align: right;
}

/* Content Elements */
.slide-subtitle-7 {
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) 1s;
}

.slide-7.active-7 .slide-subtitle-7 {
    opacity: 1;
    transform: translateY(0);
}

.slide-title-7 {
    font-size: 6rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) 1.2s;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.slide-7.active-7 .slide-title-7 {
    opacity: 1;
    transform: translateY(0);
}

.highlight-word-7 {
    color: #5D5CDE;
    position: relative;
    display: inline-block;
}

.slide-description-7 {
    font-size: 1.3rem;
    max-width: 600px;
    margin: 0 auto 3rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) 1.4s;
}

.slide-7.active-7 .slide-description-7 {
    opacity: 1;
    transform: translateY(0);
}

/* Buttons */
.slide-buttons-7 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) 1.6s;
}

.content-position-left-7 .slide-buttons-7 {
    justify-content: flex-start;
}

.content-position-right-7 .slide-buttons-7 {
    justify-content: flex-end;
}

.slide-7.active-7 .slide-buttons-7 {
    opacity: 1;
    transform: translateY(0);
}

.slide-btn-7 {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: white;
    background: transparent;
    border: 1px solid white;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.slide-btn-7:hover {
    background: white;
    color: black;
}

.secondary-btn-7 {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: white;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-left: 1rem;
}

.secondary-btn-7:hover {
    background: white;
    color: black;
}

/* Social Links */
.social-links-7 {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) 1.8s;
}

.content-position-left-7 .social-links-7 {
    justify-content: flex-start;
}

.content-position-right-7 .social-links-7 {
    justify-content: flex-end;
}

.slide-7.active-7 .social-links-7 {
    opacity: 1;
    transform: translateY(0);
}

.social-link-7 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-link-7:hover {
    background-color: rgba(255, 255, 255, 0.2);
    color: #5D5CDE;
}

.social-link-7 i {
    font-size: 16px;
}

/* Navigation Elements */
.slide-number-7 {
    position: absolute;
    bottom: 50px;
    left: 50px;
    font-size: 2rem;
    font-weight: 600;
    color: white;
    z-index: 2;
    mix-blend-mode: difference;
}

.slide-progress-7 {
    position: absolute;
    bottom: 50px;
    left: 100px;
    width: 100px;
    height: 1px;
    background: rgba(255,255,255,0.3);
    z-index: 2;
}

.progress-bar-7 {
    width: 0;
    height: 100%;
    background: white;
    transition: width 5s linear;
}

/* Button Navigation */
.navigation-7 {
    position: absolute;
    bottom: 50px;
    right: 50px;
    display: flex;
    gap: 1rem;
    z-index: 2;
}

.nav-btn-7 {
    width: 50px;
    height: 50px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: white;
}

.nav-btn-7:hover {
    border-color: white;
}

.nav-btn-7.active-7 {
    background: white;
    color: black;
}

/* Dot Navigation */
.dot-nav-7 {
    position: absolute;
    bottom: 50px;
    right: 50px;
    display: flex;
    gap: 10px;
    z-index: 2;
}

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

.dot-7:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

.dot-7.active-7 {
    background-color: white;
}

/* Thumbnail Navigation */
.thumb-nav-7 {
    position: absolute;
    bottom: 50px;
    right: 50px;
    display: flex;
    gap: 10px;
    z-index: 2;
}

.thumb-item-7 {
    width: 80px;
    height: 45px;
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.thumb-item-7 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumb-item-7:hover {
    opacity: 1;
}

.thumb-item-7.active-7 {
    border-color: white;
    opacity: 1;
}

/* Arrow Navigation */
.arrow-btn-7 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.3);
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 3;
}

.arrow-btn-7:hover {
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
}

.arrow-prev-7 {
    left: 20px;
}

.arrow-next-7 {
    right: 20px;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .slide-title-7 {
        font-size: 4.5rem;
    }
}

@media (max-width: 992px) {
    .slide-title-7 {
        font-size: 3.5rem;
    }
    
    .slide-description-7 {
        font-size: 1.1rem;
    }
    
    .content-position-left-7 {
        left: 10%;
    }
    
    .content-position-right-7 {
        right: 10%;
    }
}

@media (max-width: 768px) {
    .slide-title-7 {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }

    .slide-subtitle-7 {
        font-size: 1rem;
    }

    .slide-description-7 {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .slide-btn-7,
    .secondary-btn-7 {
        padding: 1rem 1.8rem;
        font-size: 0.9rem;
    }

    .slide-number-7 {
        left: 20px;
        bottom: 20px;
        font-size: 1.5rem;
    }

    .slide-progress-7 {
        left: 70px;
        bottom: 20px;
    }

    .navigation-7,
    .dot-nav-7,
    .thumb-nav-7 {
        right: 20px;
        bottom: 20px;
    }
    
    .content-position-left-7,
    .content-position-right-7 {
        left: 50%;
        right: unset;
        transform: translate(-50%, -50%);
        text-align: center;
    }
    
    .content-position-left-7 .slide-buttons-7,
    .content-position-right-7 .slide-buttons-7,
    .content-position-left-7 .social-links-7,
    .content-position-right-7 .social-links-7 {
        justify-content: center;
    }
    
    .arrow-btn-7 {
        width: 40px;
        height: 40px;
    }
    
    .arrow-prev-7 {
        left: 10px;
    }
    
    .arrow-next-7 {
        right: 10px;
    }
    
    .thumb-nav-7 {
        display: none;
    }
}

@media (max-width: 480px) {
    .slide-title-7 {
        font-size: 2rem;
    }
    
    .slide-subtitle-7 {
        font-size: 0.9rem;
        letter-spacing: 2px;
    }
    
    .slide-description-7 {
        font-size: 0.9rem;
    }
    
    .slide-buttons-7 {
        flex-direction: column;
        align-items: center;
    }
    
    .secondary-btn-7 {
        margin-left: 0;
        margin-top: 0.75rem;
    }
    
    .nav-btn-7 {
        width: 40px;
        height: 40px;
        font-size: 0.7rem;
    }
}