.london-industries-section {
    position: relative;
    padding: 120px 0;
    background: #070d1c url('london-skyline.jpg') center bottom no-repeat;
    background-size: cover;
    overflow: hidden;
    color: #fff;
}

.london-industries-section::after {
    content:"";
    position:absolute;
    inset:0;
    background: linear-gradient(to right, #070d1c 30%, rgba(7,13,28,0.2));
}

.london-layout {
    display: flex;
    width: 90%;
    margin: auto;
    position: relative;
    z-index: 2;
}

.left-panel {
    width: 30%;
    padding-right: 40px;
    border-right: 3px solid #bff747;
}

.left-panel h2 {
    font-size: 42px;
    line-height: 1.2;
}

.left-panel h2 span {
    color: #bff747;
}

.left-panel p {
    margin: 25px 0;
    color: #cbd5e1;
}

.explore-btn {
    display: inline-block;
    padding: 12px 24px;
    border: 2px solid #bff747;
    border-radius: 8px;
    color: #bff747;
    text-decoration: none;
    transition: 0.3s;
}

.explore-btn:hover {
    background: #bff747;
    color: #000;
}

.right-panel {
    width: 70%;
    padding-left: 60px;
    position: relative;
}

.carousel-wrapper {
    overflow: hidden;
}

.carousel-track {
    display: flex;
    gap: 30px;
    will-change: transform;
    /* animation: scrollInfinite 40s linear infinite; */
}
/*
/*.carousel-wrapper:hover .carousel-track {*/
   /* animation-play-state: paused;*/
/*}*/

.industry-card {
    min-width: 260px;
    padding: 35px 25px;
    border-radius: 18px;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(12px);
    text-align: center;
    transition: 0.3s;
}

.industry-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 20px rgba(191,247,71,0.6);
}

.icon-circle {
    width: 70px;
    height: 70px;
    background: #bff747;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: #000;
}

.progress-bar {
    height: 4px;
    background: rgba(255,255,255,0.2);
    margin-top: 40px;
    position: relative;
}

.progress-fill {
    height: 100%;
    width: 0%;
    background: #bff747;
    animation: progressMove 40s linear infinite;
}

.nav-arrows {
    position: absolute;
    bottom: -10px;
    right: 0;
}

.nav-arrows button {
    background: rgba(255,255,255,0.1);
    border: none;
    color: #fff;
    font-size: 22px;
    margin-left: 10px;
    padding: 8px 14px;
    cursor: pointer;
    border-radius: 6px;
}

/* @keyframes scrollInfinite { */
 /*    from { transform: translateX(0); }*/
   /*  to { transform: translateX(-50%); }*/
/* }*/

@keyframes progressMove {
    from { width: 0%; }
    to { width: 100%; }
}

/* TABLET FIX */
@media (max-width: 1024px) {

    .london-layout {
        flex-direction: column;
    }

    .left-panel {
        width: 100%;
        border-right: none;
        border-bottom: 2px solid #bff747;
        padding-right: 0;
        padding-bottom: 30px;
        margin-bottom: 40px;
    }

    .right-panel {
        width: 100%;
        padding-left: 0;
    }

    .left-panel h2 {
        font-size: 32px;
    }

}

/* MOBILE FIX */
@media (max-width: 768px) {

    .london-industries-section {
        padding: 60px 15px;
    }

    .left-panel h2 {
        font-size: 24px;
    }

    .left-panel p {
        font-size: 14px;
    }

    .industry-card {
        min-width: 85%;
    }

    .carousel-track {
        gap: 15px;
    }

    .nav-arrows {
        position: relative;
        margin-top: 20px;
        text-align: center;
    }

}

/* SMALL MOBILE FIX */
@media (max-width: 480px) {

    .industry-card {
        min-width: 100%;
        padding: 25px 20px;
    }

    .icon-circle {
        width: 55px;
        height: 55px;
        font-size: 20px;
    }

}