/* Canvas for complex animations */
.layout__bg {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    height: 100vh;
    background-color: #0C1019;
    background-image: url('../images/background_hero.svg') no-repeat center;
    background-size: cover;
}

.layout__guide {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    pointer-events: none;
    opacity: 1;
    z-index: 0;
}

.c-guide {
    width: 100%;
    height: 100%;
}

.c-guide__lineList {
    display: flex;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.c-guide__lineItem {
    width: calc((100% - 3rem - 3rem) / 6);
    height: 100%;
    border-left: 1px solid rgba(255, 255, 255, .1);
}

.c-guide__lineItem:last-child {
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.hero-transition-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    
    opacity: 0;
    pointer-events: none;
    z-index: 0;
}

.c-cv {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.c-cv__canvas {
    width: 100%;
    height: 100%;
}

/* Axelspace.com-like Hero Section Styles */
.tp-kv__visual {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.tp-kv__visualImage {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tp-kv__visualCaption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 1000px;
    padding: 0px;
    color: white;
    z-index: 10;
    text-align: center;
    margin-top: 20px;
    transition: none !important;
}

.hero-section{
    margin: 0 auto;
    position: relative;
}

.hero-heading{
    color: #ffffff;
    margin-bottom: 38px;
    padding: 0 20px;
}

.hero-sub-text{
    margin-bottom: 79px;
    padding: 0 20px;
}

.actions {
    display: flex;
    justify-content: center;
}

.hero-popup-trigger {
    &.button.show-more{
        padding: 19px 69px 19px 21px;
        width: 169px;
        height: 56px;
        --sm-pad: 12.5px;
    }
}

.hero-popup-trigger ._label {
    font-size: 16px;
    font-weight: 500;
}

.hero-popup-trigger ._icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-popup-trigger ._icon circle {
    transition: fill 0.3s ease;
}

.hero-popup-trigger:hover ._icon circle {
    fill: #ff7d0b;
}

/* Bottom Left Preview */
.hero-banner-navigation {
    position: absolute;
    bottom: 53px;
    left: calc(50% - 1320px / 2);
    z-index: 20;
    display: flex;
    align-items: flex-end;
    gap: 16px;
    background: none;
    padding: 0;
    margin: 0;
    width: auto;
    max-width: 400px;
    cursor: pointer;
    @media (min-width: 1200px) and (max-width: 1439px){
        left: 60px;
    }
}

.banner-thumbnail {
    width: 208px;
    height: 133px;
    border-radius: 10px;
    overflow: hidden;
    flex: 0 0 208px;
    position: relative;
    img{
        height: 100%;
        width: 100%;
        object-fit: cover;
    }
}

.banner-text {
    color: white;
}

.banner-text .next-label {
    font-size: 16px;
    font-weight: 700;
    line-height: 32px;
    margin: 0;
}

.banner-text .next-banner-title-wrapper {
    position: relative;
    overflow: hidden;
    max-height: 72px; /* Allow up to 3 lines (24px * 3) */
}

.banner-text .next-banner-title {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 2px;
    font-weight: 400;
    color: #ffffff;
}

.hero-banner-progress {
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    overflow: hidden;
}

.hero-banner-progress-inner {
    height: 100%;
    width: 0%;
    background-color: #F06C00;
}

._location {
    font-size: 1rem;
    text-shadow: 0 1px 2px rgba(0,0,0,0.7);
}

._date {
    display: block;
    margin-top: 5px;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Advanced 3D effects */
.tp-kv__slider .swiper {
    z-index: auto;
    height: 100vh;
    max-height: 800px;
}
.tp-kv__slider {
    transition: opacity .6s ease-out;
}
.swiper-fade .swiper-slide {
    pointer-events: none;
    transition-property: opacity;
}

.swiper-fade .swiper-slide-active {
    pointer-events: auto;
}
.hero-banner {
    transform-style: preserve-3d;
    overflow: hidden;
}

.hero-banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-slide.active .hero-banner-image {
    transform: scale(1.05);
}

.hero-content {
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
}

.hero-slide.active .hero-content {
    transform: translateZ(20px);
    opacity: 1;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.8s ease;
}

/* Swiper specific styles for our custom animation */
.hero-slider.swiper {
    overflow: visible;
}

/* Hero Slider Progress Bar */
.progress-container {
    position: relative;
    width: 100%;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.2);
    margin: 20px 0;
    border-radius: 2px;
    overflow: hidden;
}

.progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background-color: #F06C00;
    transition: width 0.1s linear;
}

/* Custom scrollbar for popup content */
.hero-popup-text::-webkit-scrollbar {
    width: 6px;
}

.hero-popup-text::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.hero-popup-text::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 3px;
}

.hero-popup-text::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Hero Popup Modal */
.hero-popup-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    align-items: end;
    justify-content: center;
}

.hero-popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.hero-popup-wrapper{
    max-width: 1440px;
    padding: 0 60px;
    animation: popupFadeIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-popup-content {
    position: relative;
    width: 100%;
    max-width: 1440px;
    padding: 0 60px;
    bottom: 42px;
    background: #f8f9fa;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    
}

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

.hero-popup-content {
    padding: 28px 37px 26px;
}

.hero-popup-grid {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: start;
    gap: 44px;
}

.hero-popup-left {
    width: 43.8%;
}

.hero-popup-image {
    width: 100%;
    height: 342px;
    border-radius: 10px;
    overflow: hidden;
}

.hero-popup-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-popup-right {
    width: calc(56.2% - 44px);
}

.hero-popup-title {
    margin-bottom: 20px;
    font-weight: 600;
}

.hero-popup-text {
    margin-bottom: 30px;
    max-height: 229px;
    overflow-y: auto;
}

.hero-popup-back {
    background: none;
    border: none;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    padding: 0;
    color: #F06C00;
    font-size: 16px;
    font-weight: 600;
    position: absolute;
    bottom: 27px;
    transition: color 0.3s ease;
}

.hero-popup-back ._icon {
    display: flex;
    align-items: center;
    width: 13px;
}

.hero-popup-back ._label {
    font-size: 15px;
    font-weight: 500;
}

.hero-popup-back:hover{
    color: #F5984D;
    ._icon svg path{
        stroke: #F5984D;
    }
}

.hero-popup-back-mobile {
    display: none;
}
@media (max-width: 1199.98px) {
    .hero-banner-navigation{
        left: 30px;
    }

    .hero-popup-wrapper{
        padding: 0 30px;
    }

    .hero-heading{
        font-size: 46px;
        line-height: 50px;
    }
    .hero-heading{
        margin-bottom: 28px;
    }
    .hero-sub-text{
        margin-bottom: 54px;
    }
    .tp-kv__visualCaption{
        transform: translate(-50%, -63%);
    }
}
@media (max-width: 767.98px) {
    .hero-section{
        padding: 0;
    }
    .hero-heading{
        font-size: 35px;
        line-height: 43px;
        margin-bottom: 25px;
    }
    .tp-kv__visualCaption{
        margin-top: 0;
        transform: translate(-50%, -74.2%);
    }
    .hero-sub-text{
        line-height: 19px;
        margin-bottom: 40px;
    }
    .hero-popup-trigger {
        &.button.show-more{
            padding: 19px 67px 19px 19px;
            width: 160px;
            height: 53px;
        }
    }
    .hero-popup-grid {
        flex-direction: column;
        align-items: start;
        gap: 0;
    }
    .hero-popup-image {
        height: 219px;
    }
    .tp-kv__slider .swiper{
        max-height: 729px;
    }
    .hero-popup-wrapper{
        padding: 0;
    }

    .hero-popup-content {
        padding: 28px 20px 17px;
        bottom: 0;
        border-radius: 20px 20px 0 0;
    }
    .hero-popup-left,
    .hero-popup-right{
        width: 100%;
    }
    .hero-popup-left{
        margin-bottom: 16px;
    }
    .hero-popup-back-mobile{
        display: flex;
        position: static;
        left: 0;
        margin-bottom: 28px;
        gap: 8px;
    }
    .hero-popup-title{
        font-size: 20px;
        line-height: 28px;
        margin-bottom: 17px;
    }
    .hero-popup-back-desktop{
        display: none;
    }
    .hero-banner-navigation {
        padding: 0;
        margin-top: 0;
        flex-direction: column;
        bottom: 52px;
        left: 20px;
        align-items: flex-start;
        gap: 12px;
    }
    
    .banner-thumbnail {
        width: 166px;
        height: 107px;
        flex: none;
    }
}

@media (max-width: 767.98px) and (min-height: 800px){
    .hero-popup-text{
        max-height: 336px;
    }
}
@media (max-width: 767.98px) and (max-height: 799px){
    .hero-popup-text{
        max-height: 229px;
    }
}

/* Video Section Styles */
.video-section {
    position: relative;
    width: 100%;
    height: 810px;
    background-color: #000;
    overflow: hidden;
}

.video-container {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 100%;
    margin: 0;
}

.video-player-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    &::before{
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(180deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 40%, rgba(0,0,0,0) 60%, rgba(0,0,0,0.6) 100%);
        z-index: 1;
        transition: opacity 0.6s ease, visibility 0.6s ease;
    }
}

.video-player {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-player-mobile {
    display: none;
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    margin-bottom: 20px;
    cursor: pointer;
}

.video-overlay {
    position: absolute;
    right: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 39px 0 48px 60px;
    z-index: 2;
    @media (min-width: 1440px){
        right: 0;
        width: calc(50% + 1320px / 2);
        padding-left: 0px;
    }
    @media (max-width: 1199.98px){
        padding-left: 30px;
    }
}

.video-section.is-playing .video-player-wrapper::before {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.video-title {
    color: white;
    max-width: 900px;
    margin: 0;
    transition: transform 0.6s ease, opacity 0.6s ease;
}

.video-section.is-playing .video-title {
    transform: translateY(-50px);
    opacity: 0;
}

.video-play-btn-wrapper {
    position: absolute;
    top: 50.4%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.video-play-btn {
    width: 70px;
    height: 70px;
    background: url('../images/icon_play.svg') no-repeat center;
    background-size: contain;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.video-section.is-playing .video-play-btn {
    background: url('../images/icon_pause.svg') no-repeat center;
    opacity: 0;
    background-size: cover;
}

.video-content-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
}

.video-sub-text {
    color: white;
    max-width: 350px;
    transition: transform 0.6s ease, opacity 0.6s ease;
    margin-bottom: 6px;
    margin-left: 1px;
}

.video-playlist-wrapper {
    width: 50%;
    max-width: 640px;
    transition: transform 0.6s ease, opacity 0.6s ease;
}

.video-section.is-playing .video-sub-text {
    transform: translateY(50px);
    opacity: 0;
}

.video-section.is-playing .video-playlist-wrapper {
    transform: translateY(50px);
    opacity: 0;
}

.video-playlist-swiper {
    padding: 0;
}

.video-thumb-card {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid #DCDCDC;
    transition: all 0.3s ease;
}

.video-thumb-card img,
.video-thumb-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-playlist-item.swiper-slide-active .video-thumb-card{
    border-color: #F06C00;
    border-width: 3px;
}

.thumb-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: url('../images/video_small_play.svg') no-repeat center;
    background-size: contain;
    width: 26px;
    height: 26px;
    opacity: 0.8;
    &:hover{
        opacity: 1;
    }
}

.video-playlist-item.swiper-slide-active .thumb-play-icon {
    opacity: 0;
}

.video-thumb-placeholder {
    width: 100%;
    height: 100%;
    background: #222;
}

.video-player-mobile-wrapper,
.video-media-container{
    position: relative;
    width: 100%;
    height: 100%;
}

.video-preview-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    cursor: pointer;
}

/* Responsive Design */
@media (max-width: 767.98px) {
    .video-section {
        height: auto;
    }

    .video-player {
        display: none;
    }

    .video-player-mobile {
        display: block;
        margin-bottom: 0;
    }

    .video-overlay {
        position: relative;
        padding: 80px 0px 0;
        background: #000;
        justify-content: flex-start;
    }

    .video-content-top {
        padding: 0 20px;
        margin-bottom: 20px;
    }

    .video-content-bottom {
        flex-direction: column;
        align-items: flex-start;
        margin-top: 12px;
    }

    .video-sub-text {
        max-width: 100%;
        margin-bottom: 47px;
        padding: 0 20px;
        margin-left: 0px;
    }

    .video-play-btn{
        width: 40px;
        height: 40px;
    }

    .video-play-btn-wrapper{
        top: 49%;
        left: 49.5%;
    }

    .video-playlist-wrapper {
        width: 100%;
        max-width: 100%;
        margin-top: 47px;
        margin-left: 19px;
        padding-bottom: 80px;
    }

    .video-thumb-card{
        border-radius: 5.74px;
    }

    .video-playlist-item.swiper-slide-active .video-thumb-card{
        border-width: 1.72px
    }

    .video-section.is-playing .video-title {
        transform: translateY(0px);
        opacity: 1;
    }

    .video-section.is-playing .video-sub-text {
        transform: translateY(0px);
        opacity: 1;
    }

    .video-section.is-playing .video-playlist-wrapper {
        transform: translateY(0px);
        opacity: 1;
    }
}

/* Product Section Styles */
.product-section {
    position: relative;
    width: 100%;
    padding: 150px 0px 150px;
    background-color: #FFFFFF;
}

.product-header {
    text-align: center;
    margin-bottom: 72px;
}

.product-main-title {
    margin-bottom: 22px;
}

.product-sub-text {
    margin-bottom: 41px;
    text-align: center;
    margin-left: -2px;
    color: #F06C00;
}

.product-header .product-sub-text{
    color: #000000;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 74px 42px;
    padding: 0 3px;
}

.product-block-link {
    text-decoration: none;
    display: flex;
    &:hover{
        color: #000;
        .product-image{
            img{
                transform: scale(1.1);
            }
        }
        .product-content {
            background-color: #f3f3f3;
        }
    }
}

.product-block {
    position: relative;
    min-height: 513px;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.product-content{
    background-color: #F8F9FA;
    border-radius: 10px;
    padding: 141px 22px 44px 23px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    margin-top: -89px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-image {
    text-align: center;
    margin-left: -2px;
    position: relative;
    z-index: 2;
}

.product-image img {
    max-height: 183px;
    max-width: 220px;
    object-fit: cover;
    height: 100%;
    width: auto;
    transition: transform 0.3s ease;
}

.product-title {
    padding: 0 15px;
    text-align: center;
    margin-bottom: 9px;
    color: #F06C00;
    font-weight: 600;
}

.product-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-features li {
    padding-left: 16px;
    position: relative;
    margin-bottom: 15px;
    &:last-child{
        margin-bottom: 0;
    }
}

.product-features li::before {
    content: '';
    background-color: #FBAB69;
    position: absolute;
    top: 6px;
    left: 0px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

/* Responsive Design for Product Section */
@media (min-width: 768px) and (max-width: 1200px) {    
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .hero-popup-grid{
        gap: 30px;
    }
}
@media (max-width: 767.98px) {
    .product-image img{
        max-height: 183px !important;
    }
    .product-section{
        padding-top: 85px;
        padding-bottom: 80px;
    }
    .product-main-title{
        font-size: 35px;
        line-height: 36px;
        margin-bottom: 26px;
    }
    .product-sub-text{
        font-size: 14px;
        line-height: 16px;
        margin-left: 0px;
        margin-bottom: 32px;
    }
    .product-grid {
        grid-template-columns: 1fr;
        padding: 0;
        row-gap: 60px;
    }
    .product-block {
        min-height: auto;
    }
    .product-header{
        margin-bottom: 48px;
    }
    .product-content{
        padding: 130px 20px 10px 20px;
        margin-top: -91px;
    }

    .product-title{
        padding: 0;
    }

    .product-features li{
        font-size: 14px;
        line-height: 16px;
        margin-bottom: 13px;
        padding-left: 15px;
    }

    .product-features li::before{
        width: 6px;
        height: 6px;
    }
}

/* Image Section Styles */
.image-section {
    position: relative;
    width: 100%;
    min-height: 955px;
    display: flex;
    align-items: center;
    justify-content: start;
    background: url('../images/section-image-background.png') no-repeat center center;
    background-size: cover;
    overflow: hidden;
    padding: 87px 0;
    flex-direction: column;
}

.image-container {
    position: absolute;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 57px;
    left: 0px;
}

.image-header {
    width: 100%;
    max-width: 1100px;
    padding: 0 31px;
    margin: 0 auto;
}
.image-main-title {
    color: white;
    margin-bottom: 19px;
    text-align: center;
}

.image-sub-text {
    color: white;
    margin-bottom: 40px;
    text-align: center;
}

.globe-container {
    position: relative;
    width: 1145px;
    height: 1144px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.globe-element {
    pointer-events: none;
    width: 300px;
    height: 300px;
    position: relative;
    overflow: hidden;
    transform: scale(0.625) rotate(-90deg);
    border-radius: 50%;
    top: 14px;
    z-index: 15;
}

.globe-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.center-feature-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 11;
}

.center-feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

/* Light rings */
.light-ring {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    border: none !important;
    box-shadow: none !important;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.ring-red {
    width: 100%;
    height: 100%;
}

.ring-yellow {
    width: 70%;
    height: 80%;
}

.ring-blue {
    width: 42%;
    height: 42%;
}

/* Image Section Animation Styles */
.animation-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1137px;
    height: 1137px;
    pointer-events: none;
    z-index: 5;
}

.pulse-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) !important;
    width: 0;
    height: 0;
    opacity: 0;
    z-index: 15;
    visibility: hidden;
}

.pulse-circle svg {
    width: 100%;
    height: 100%;
    display: block;
}

.pulse-circle.animate {
    animation: pulse-animation 1s ease-out forwards;
}

@keyframes pulse-animation {
    0% {
        width: 0;
        height: 0;
        opacity: 0.6;
    }
    100% {
        width: 1137px;
        height: 1137px;
        opacity: 0.1;
    }
}

.ellipse {
    position: absolute;
    top: 51%;
    left: 50%;
    transform: translate(-50%, -50%) !important;
    opacity: 0;
    max-width: 100%;
    max-height: 100%;
    height: auto;
}

.ellipse1.animate {
    animation: fade-in 0.5s ease-in 2s forwards;
}

.ellipse2.animate {
    animation: fade-in 0.5s ease-in 2.5s forwards;
}

.ellipse3.animate {
    animation: fade-in 0.5s ease-in 3s forwards;
}

@keyframes fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Responsive Design for Image Section Animation */
@media (max-width: 767.98px) {    
    .pulse-circle.animate {
        animation: pulse-animation-mobile 1.5s ease-out forwards;
    }
    
    @keyframes pulse-animation-mobile {
        0% {
            width: 0;
            height: 0;
            opacity: 0.6;
        }
        100% {
            width: 500px;
            height: 500px;
            opacity: 0;
        }
    }
}

/* Features Layout */
.features-wrapper {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 20;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 50px;
}

.features-column {
    display: flex;
    flex-direction: row;
    gap: 80px;
    position: relative;
    width: 50%;
    height: 60%;
}

.feature-item {
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    flex-direction: row;
    gap: 50px;
}

.feature-item.point-point-1-left{
    left: 9px;
    top: 86px;
    .feature-content{
        max-width: 248px;
    }
    .feature-icon{
        top: -2px;
    }
}

.feature-item.point-point-2-left{
    left: -73px;
    top: 305px;
    .feature-content{
        max-width: 310px;
    }
    .feature-icon{
        top: -2px;
    }
}

.feature-item.point-point-3-left{
    top: 497px;
    left: -2px;
    .feature-content{
        max-width: 237px;
    }
    .feature-icon{
        top: -5px;
    }
}


.features-right .feature-item {
    left: auto;
}

.features-right .feature-item.point-point-1-right{
    right: 18px;
    top: 75px;
    .feature-content{
        max-width: 222px;
    }
    .feature-icon{
        top: -15px;
    }
}

.features-right .feature-item.point-point-2-right{
    right: -73px;
    top: 306px;
    .feature-content{
        max-width: 300px;
    }
    .feature-icon{
        top: -4px;
    }
}

.features-right .feature-item.point-point-3-right{
    top: 503px;
    right: 2px;
    .feature-content{
        max-width: 253px;
    }
    .feature-icon{
        top: -11px;
    }
}

.feature-icon {
    display: flex;
    align-items: end;
    position: relative;
}

.feature-icon img, 
.feature-icon svg {
    width: 100%;
    height: auto;
}

.feature-icon svg path,
.feature-icon svg circle {
    transition: fill 0.3s ease, stroke 0.3s ease;
}

.feature-title {
    font-weight: 600;
    color: #F06C00;
    margin-bottom: 18px;
    position: relative;
    display: block;
}

.feature-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #F06C00;
    transition: width 0.3s ease;
}

.feature-item:hover .feature-title::after,
.feature-item.active .feature-title::after {
    width: 100%;
}

.feature-description {
    font-size: 14px;
    color: white;
    margin: 0;
    line-height: 21px;
}

/* Connecting Line */
.feature-connect-line {
    position: absolute;
    top: 50%;
    left: 50%;
    height: 1.5px;
    background: #ff3b30;
    transform-origin: left center;
    z-index: 15;
    display: none;
}

/* Popup Overlay and Content Base */
.popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9998;
    display: none;
}

.popup-content-wrapper {
    position: absolute;
    top: 0;
    height: 100%;
    z-index: 99;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    display: none; /* Hidden by default */
    flex-direction: column;
    background-color: #0F0F0F;
    color: white;
    width: 49.2%;
    padding: 32px;
    justify-content: center;
}

.popup-content-wrapper-mobile {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 9999;
    display: none;
    flex-direction: column;
    background-color: #0F0F0F;
    color: white;
    padding: 60px 20px 40px;
    overflow-y: auto;
    justify-content: flex-start;
}

/* Popup Content Overrides for Image Section */

.popup-content-wrapper.from-right {
    right: 0 !important;
    left: auto !important;
    transform: translateX(100%);
    .popup-background{
        position: absolute;
        left: 468px;
        top: 43.1%;
        @media (min-width: 1441px){
            transform: translateX(-110%) translateY(-12%);
            left: 590px;
        }
    }
}

.popup-content-wrapper.from-left {
    left: 0 !important;
    right: auto !important;
    transform: translateX(-100%);
    align-items: end;
    &::before{
        transform: rotate(180deg);
    }
    .popup-close{
        right: auto;
        left: 29px;
    }
    .popup-background{
        position: absolute;
        right: 500px;
        left: auto;
        top: 43.1%;
        @media (min-width: 1441px){
            transform: translateX(-110%) translateY(-12%);
            right: 470px;
        }
    }
}

.popup-content-wrapper.active {
    transform: translateX(0);
}

.popup-close {
    position: absolute;
    top: 111px;
    right: 29px;
    cursor: pointer;
    background-color: transparent;
    border: none;
    z-index: 10;
    background: url('../images/menu-close-white.svg') no-repeat center center;
    width: 20px;
    height: 20px;
    background-size: contain;
}

.popup-content-wrapper::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../images/popup-ellipse.svg) no-repeat 0 2%;
    z-index: 0;
    background-size: 525px 100%;
    @media (min-width: 1441px){
        background-size: 580px 100%;
    }
}

.popup-content{
    position: relative;
    z-index: 1;
    margin-top: 15px;
    max-width: 390px;
}

.popup-icon-large svg {
    max-width: unset;
    width: 145%;
    height: auto;
    @media (min-width: 1441px) {
        width: 163%;
    }
}

.popup-header {
    margin-bottom: 40px;
    margin-top: 12px;
}

.popup-title {
    font-weight: 600;
    margin-bottom: 10px;
    color: #F06C00;
}

.popup-sub-text {
    font-size: 16px;
    line-height: 24px;
    color: #F06C00;
    max-width: 390px;
}

.popup-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.popup-features li {
    padding: 0;
    margin-bottom: 15px;
    line-height: 28px;
    padding-left: 24px;
    position: relative;
    &::before{
        content: '';
        background-color: #FBAB69;
        position: absolute;
        top: 9px;
        left: 0px;
        width: 8px;
        height: 8px;
        border-radius: 50%;
    }
}

.popup-features li:last-child {
    margin-bottom: 0;
}

/* Force orange for SVG images if they are img tags */
.feature-item.active .feature-icon img{
    filter: invert(48%) sepia(99%) saturate(1633%) hue-rotate(1deg) brightness(101%) contrast(105%);
}

.feature-item:hover,
.feature-item.active {
    transform: translateY(-7px);
    transition: transform 0.3s ease;
}

.feature-item:hover .feature-icon svg path,
.feature-item.active .feature-icon svg path{
    fill: #F06C00 !important;
}
.popup-icon-large svg path {
    fill: #8A8A8A !important;
}

.features-mobile,
.popup-background-mobile {
    display: none;
}

/* Responsive */
@media (max-width: 1200px) {
    .globe-container {
        width: 850px;
        height: 850px;
    }
    .features-wrapper {
        padding: 0;
    }
    .feature-item{
        gap: 25px;
    }
    .features-left .feature-item.point-point-1-left{
        left: 0px;
        top: 60px;
    }
    .features-left .feature-item.point-point-2-left{
        left: -50px;
        top: 200px;
    }
    .features-left .feature-item.point-point-3-left{
        left: -10px;
        top: 405px;
    }
    .features-right .feature-item.point-point-1-right{
        right: -30px;
        top: 60px;
    }
    .features-right .feature-item.point-point-2-right{
        right: -60px;
        top: 220px;
    }
    .features-right .feature-item.point-point-3-right{
        top: 405px;
        right: -14px;
    }
    .feature-item .feature-content{
        max-width: 250px !important;
    }
    .popup-content{
        max-width: 320px;
    }
    .popup-content-wrapper::before{
        background-size: 400px 100%;
    }
    .popup-content-wrapper.from-right .popup-background{
        left: 360px;
        top: 45.1%;
    }
    .popup-content-wrapper.from-left .popup-background{
        right: 360px;
        top: 45.1%;
    }
    .popup-icon-large svg{
        width: 109%;
    }
    .popup-content-wrapper.from-left{
        padding-right: 0px;
        .popup-content{
            padding-right: 20px;
        }
    }
}

@media (max-width: 991px) {
    .product-image img{
        max-height: 160px;
    }
    .product-content{
        margin-top: -65px;
    }
    .popup-content{
        max-width: none;
    }
    .popup-content-wrapper-mobile {
        display: flex;
        padding: 0;
        transform: translateX(100%);
        transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .popup-content-wrapper-mobile.active {
        transform: translateX(0);
    }

    .popup-content-wrapper-mobile .popup-close {
        position: absolute;
        top: 27px;
        right: 19px;
    }

    .popup-content-wrapper-mobile .popup-background::before {
        content: "";
        position: absolute;
        top: -421%;
        left: -25%;
        width: 150%;
        height: 580px;
        border-bottom: 0.5px solid #FFFFFF;
        border-radius: 100%;
        z-index: 1;
        opacity: 0.7;
    }

    .popup-content-wrapper-mobile .popup-content {
        margin-top: 131px;
        padding: 60px 20px 17px;
        max-width: 392px;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .popup-content-wrapper-mobile .popup-header {
        margin-bottom: 40px;
        margin-top: 12px;
    }

    .popup-content-wrapper-mobile .popup-title {
        margin-bottom: 16px;
    }

    .popup-content-wrapper-mobile .popup-sub-text {
        font-size: 14px;
        line-height: 16px;
        max-width: none;
    }

    .popup-content-wrapper-mobile .popup-features li {
        padding-left: 16px;
        font-size: 14px;
        line-height: 16px;
        margin-bottom: 16px;
        &::before {
            top: 5px;
            width: 6px;
            height: 6px;
        }
    }

    .popup-content-wrapper-mobile .popup-background.popup-background-mobile {
        right: 0 !important;
        top: 0% !important;
        position: relative;
        width: 100%;
        text-align: center;
        display: block;
        overflow: hidden;
        min-height: 120px;
    }

    .popup-content-wrapper-mobile .popup-icon-large{
        padding-top: 23px;
        text-align: center;
    }

    .popup-content-wrapper-mobile .popup-icon-large svg {
        width: 100%;
        max-width: 82px;
        position: relative;
        left: -5px;
    }

    .animation-container{
        width: 100%;
        height: 100vw;
        top: 90px;
    }

    .features-desktop,
    .popup-background-desktop{
        display: none;
    }
    .popup-background-mobile{
        display: flex;
    }
    .features-mobile{
        display: flex;
        .feature-item.point-point-1-left{

        }
        .feature-item.point-point-2-left{
            gap: 15px;
            padding-top: 1px;
            .feature-icon{
                padding-right: 5px;
                align-items: start;
                top: -1px;
            }
            .feature-content{
                width: calc(100% - 70px);
            }
        }
        .feature-item.point-point-3-left{
            .feature-icon{
                align-items: start;
                top: -1px;
            }
        }
        .feature-item.point-point-1-right{
            .feature-content{
                padding-left: 12px;
            }
            .feature-icon{
                padding-left: 8px;
            }
        }
        
        .feature-item.point-point-2-right{
            gap: 15px;
            .feature-content{
                width: calc(100% - 70px);
            }
            .feature-icon{
                padding-left: 10px;
                align-items: start;
                top: 0px;
            }
        }
        .feature-item.point-point-3-right{
            .feature-content{
                padding-left: 12px;
            }
            .feature-icon{
                align-items: start;
                top: 0px;
            }
        }
    }
    .image-section {
        height: auto;
        padding: 80px 0;
    }
    .globe-container {
        width: 100%;
        height: auto;
        flex-direction: column;
    }
    .features-wrapper {
        position: static;
        flex-direction: column;
        gap: 48px;
        margin-top: -18px;
        padding: 0 20px;
        max-width: 550px;
    }
    .globe-element{
        top: -9px;
    }
    .features-column {
        gap: 40px;
        flex-direction: column;
        width: 100%;
        height: 100%;
        padding: 0 20px;
    }
    .image-main-title{
        margin-bottom: 31px;
    }
    .image-container{
        position: static;
    }
    .feature-item{
        position: static;
        gap: 20px;
    }
    .ellipse{
        top: 90px !important;
    }
    .globe-element{
        top: -9px;
    }
    .feature-icon{
        width: 55px;
        align-items: center;
        top: -5px;
    }
    .feature-item .feature-content{
        max-width: unset !important;
        width: calc(100% - 75px);
    }
    .feature-description{
        line-height: 16px;
    }
    .feature-title{
        margin-bottom: 16px;
    }
    .popup-content-wrapper{
        width: 100%;
        padding: 19px;
    }
    .popup-content-wrapper::before{
        background-image: url('../images/popup-ellipse-down.svg');
    }
    .popup-close{
        top: 27px;
        right: 19px;
    }
    .popup-title{
        margin-bottom: 16px;
    }
    .popup-sub-text{
        font-size: 14px;
        line-height: 16px;
        max-width: none;
    }
    .popup-features li{
        padding-left: 16px;
        font-size: 14px;
        line-height: 16px;
        margin-bottom: 16px;
    }
    .popup-background{
        right: 42% !important;
        top: 57.6% !important;
    }
    .popup-icon-large svg{
        width: 107%;
    }
    .popup-content{
        margin-top: 9px;
    }
    .popup-header{
        margin-bottom: 40px !important;
        margin-top: 12px !important;
    }
}

/* News Section Styles */
.news-section {
    position: relative;
    width: 100%;
    padding: 150px 20px 0;
    background-color: #fff;
}

.news-container {
    max-width: 1360px;
    padding: 0 20px;
    margin: 0 auto;
}

.news-header {
    margin-bottom: 75px;
    display: flex;
    justify-content: space-between;
    gap: 30px;
    .news-slider-wrapper {
        display: flex;
        justify-content: flex-end;
        align-items: start;
        gap: 12px;
        margin-top: 24px;
    }
}

.news-main-title {
    margin-bottom: 21px;
}

.news-sub-text {
    margin: 0 auto;
    padding-left: 5px;
}

.news-slider-container {
    position: relative;
}

.news-slider {
    width: 100%;
}

.news-card {
    background-color: #fff;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.news-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
    max-height: 233px;
    border-radius: 10px;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-content {
    padding: 23px 0 0;
    display: flex;
    flex-direction: column;
}

.news-category{
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 10px;
    color: #F06C00;
    font-weight: 600;
}

.news-title {
    margin-bottom: 11px;
    min-height: 56px;
    max-height: 56px;
    text-overflow: ellipsis;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-excerpt {
    max-height: 70px;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-read-more {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.news-card:hover .news-title{
    color: #F06C00;
}

.news-swiper-button-next,
.news-swiper-button-prev {
    width: 36px;
    height: 36px;
    background-color: #D9D9D9;
    background-repeat: no-repeat;
    background-position: center;
    background-size: auto;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease, opacity 0.3s ease;
    flex-shrink: 0;
}

.news-swiper-button-next {
    background-image: url('../images/right_active.svg');
    background-position: 55%;
}

.news-swiper-button-prev {
    background-image: url('../images/left_active.svg');
    background-position: 50%;
}

.news-swiper-button-next:hover,
.news-swiper-button-prev:hover,
.news-swiper-button-next:active,
.news-swiper-button-prev:active {
    background-color: #BEB9B2;
}

.news-swiper-button-next.swiper-button-disabled,
.news-swiper-button-prev.swiper-button-disabled {
    opacity: 0.7;
    cursor: default;
}

.news-swiper-pagination span {
    margin: 0 3.3px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    transition: all 0.3s;
}

.news-swiper-pagination .swiper-pagination-bullet-active {
    background: #F06C00;
    width: 16px;
    border-radius: 100px;
    transition: all 0.3s;
}

.news-swiper-pagination-wrapper{
    text-align: center;
    margin-top: 20px;
}

@media (max-width: 767.98px) {

    .news-section{
        padding-top: 80px;
    }

    .news-main-title{
        margin-bottom: 29px;
    }

    .news-sub-text{
        padding-left: 0px;
    }

    .news-container{
        padding: 0;
    }

    .news-header{
        flex-direction: column;
        gap: 48px;
        margin-bottom: 41px;
        .news-slider-wrapper{
            margin-top: -2px;
        }
    }

    .news-title{
        min-height: 42px;
        max-height: 42px;
        font-size: 18px;
        line-height: 21px;
        margin-bottom: 16px;
    }

    .news-excerpt{
        max-height: 48px;
        font-size: 14px;
        line-height: 16px;
    }

    .news-slider .swiper-slide {
        height: calc((100% - 40px) / 3) !important;
        margin-bottom: 28px;
    }
    
    .news-card {
        height: auto;
    }
    
    .news-image {
        height: 191px;
    }

    .news-content{
        padding-top: 14px;
    }

    .news-category{
        margin-bottom: 6px;
    }
}

/* What We Do Section Styles */
.what-we-do-section {
    position: relative;
    width: 100%;
    padding: 102px 0px 110px;
    background-color: #fff;
}

.what-we-do-container {
    max-width: 1182px;
    margin: 0 auto;
    padding: 0 20px;
}

.what-we-do-main-title {
    text-align: center;
    margin-bottom: 75px;
}

.what-we-do-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    padding: 0;
}

.what-we-do-block {
    padding: 0px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    position: relative;
    overflow: hidden;
    min-height: 331px;
    color: inherit;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
}

.what-we-do-image {
    text-align: center;
    margin-bottom: 20px;
    aspect-ratio: 546 / 342;
}

.what-we-do-block-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    display: block;
    margin: 0 auto;
}

.what-we-do-block-title {
    margin-bottom: 11px;
    font-weight: 600;
    max-height: 62px;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.what-we-do-block-content {
    margin-bottom: 19px;
    flex: 1;
    max-height: 70px;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.what-we-do-link {
    display: inline-block;
    transition: color 0.3s ease;
    align-self: flex-start;
    padding: 18px 38px 18px 37px;
    text-transform: capitalize;
}

/* What We Do Section Responsive Design */
@media (min-width: 768px) and (max-width: 1200px) {
    .what-we-do-grid{
        gap: 20px;
    }
    .product-grid{
        column-gap: 20px;
    }
}
@media (max-width: 767.98px) {
    .what-we-do-section{
        padding-top: 80px;
        padding-bottom: 40px;
    }
    .what-we-do-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .what-we-do-main-title{
        margin-bottom: 48px;
    }

    .what-we-do-image{
        margin-bottom: 16px;
    }
    
    .what-we-do-block {
        min-height: auto;
    }

    .what-we-do-block-title{
        margin-bottom: 16px;
    }

    .what-we-do-block-content{
        font-size: 14px;
        line-height: 16px;
        margin-bottom: 24px;
    }

    .what-we-do-link{
        padding: 15px 30px 15px 29px;
        line-height: 16px;
    }
}

/* Globe Video Styles */
.globe-video {
    width: 100%;
    height: 100%;
    object-fit: none;
}