

.sww-industries {

    position: relative;

    overflow: hidden;

    padding: 120px 0 110px;

    background:
        radial-gradient(
            circle at 50% 45%,
            rgba(86,5,144,.12),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #ffffff 0%,
            #fbf8ff 50%,
            #ffffff 100%
        );

    isolation: isolate;
}


/* =========================================
   BACKGROUND GRID
========================================= */

.sww-grid {

    position: absolute;

    inset: 0;

    opacity: .35;

    background-image:

        linear-gradient(
            rgba(86,5,144,.035) 1px,
            transparent 1px
        ),

        linear-gradient(
            90deg,
            rgba(86,5,144,.035) 1px,
            transparent 1px
        );

    background-size: 55px 55px;

    mask-image:
        radial-gradient(
            circle at center,
            black,
            transparent 70%
        );

    pointer-events: none;
}


/* =========================================
   AMBIENT GLOWS
========================================= */

.sww-glow {

    position: absolute;

    border-radius: 50%;

    filter: blur(70px);

    pointer-events: none;

    z-index: -1;

    animation: glowMove 8s ease-in-out infinite alternate;
}


.sww-glow-one {

    width: 300px;
    height: 300px;

    left: -100px;
    top: 20%;

    background: rgba(86,5,144,.10);
}


.sww-glow-two {

    width: 350px;
    height: 350px;

    right: -150px;
    top: 35%;

    background: rgba(157,78,221,.10);

    animation-delay: 2s;
}


.sww-glow-three {

    width: 220px;
    height: 220px;

    left: 45%;
    bottom: -100px;

    background: rgba(86,5,144,.08);

    animation-delay: 4s;
}


@keyframes glowMove {

    from {
        transform: translate3d(0,0,0);
    }

    to {
        transform: translate3d(35px,-25px,0);
    }

}


/* =========================================
   BADGE
========================================= */

.sww-industry-badge {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    padding: 9px 18px;

    margin-bottom: 20px;

    border: 1px solid rgba(86,5,144,.12);

    border-radius: 50px;

    background: rgba(255,255,255,.65);

    box-shadow:
        0 10px 30px rgba(50,20,80,.06);

    backdrop-filter: blur(15px);

    color: #000;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1.6px;
}


.badge-dot {

    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: #560590;

    box-shadow:
        0 0 0 5px rgba(86,5,144,.10);

    animation: badgePulse 2s infinite;
}


@keyframes badgePulse {

    0%,100% {
        box-shadow:
            0 0 0 4px rgba(86,5,144,.10);
    }

    50% {
        box-shadow:
            0 0 0 8px rgba(86,5,144,.03);
    }

}


/* =========================================
   HEADING
========================================= */

.sww-industry-heading {

    margin: 0;

    color: #18131f;

    font-size: clamp(36px,5vw,58px);

    font-weight: 850;

    line-height: 1.08;

    letter-spacing: -2px;
}


.sww-industry-heading span {

    display: block;

    margin-top: 5px;

    background:
        linear-gradient(
            100deg,
            #e4c90c,
            #d1b80d,
            #fadd11
        );

    background-size: 200% auto;

    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;

    animation: gradientText 5s linear infinite;
}


@keyframes gradientText {

    to {
        background-position: 200% center;
    }

}


.sww-industry-intro {

    max-width: 720px;

    margin: 22px auto 0;

    color: #77717e;

    font-size: 17px;

    line-height: 1.8;
}


/* =========================================
   INTERACTIVE STAGE
========================================= */

.sww-industry-stage {

    position: relative;

    width: 100%;

    max-width: 1000px;

    height: 760px;

    margin: 30px auto 0;

    perspective: 1200px;

    transform-style: preserve-3d;
}


/* =========================================
   MOUSE GLOW
========================================= */

.sww-mouse-glow {

    position: absolute;

    width: 280px;
    height: 280px;

    left: 50%;
    top: 50%;

    transform: translate(-50%,-50%);

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(81, 177, 215, 0.13),
            transparent 70%
        );

    pointer-events: none;

    transition:
        left .15s ease-out,
        top .15s ease-out;
}


/* =========================================
   SVG CONNECTIONS
========================================= */

.sww-connections {

    position: absolute;

    inset: 0;

    width: 100%;

    height: 100%;

    overflow: visible;

    pointer-events: none;

    z-index: 1;
}


.sww-line {

    fill: none;

    stroke: url(#lineGradient);

    stroke-width: 1.5;

    stroke-dasharray: 5 9;

    filter: url(#lineGlow);

    opacity: .55;

    animation:
        lineFlow 5s linear infinite;
}


.sww-line:nth-child(2) {
    animation-delay: .4s;
}

.sww-line:nth-child(3) {
    animation-delay: .8s;
}

.sww-line:nth-child(4) {
    animation-delay: 1.2s;
}

.sww-line:nth-child(5) {
    animation-delay: 1.6s;
}


@keyframes lineFlow {

    to {
        stroke-dashoffset: -70;
    }

}


/* =========================================
   ORBIT RINGS
========================================= */

.sww-orbit-ring {

    position: absolute;

    left: 50%;
    top: 50%;

    border-radius: 50%;

    transform:
        translate(-50%,-50%)
        rotateX(60deg);

    border: 1px solid rgba(86,5,144,.10);

    pointer-events: none;

    z-index: 0;
}


.ring-large {

    width: 710px;
    height: 710px;

    animation:
        orbitSpin 35s linear infinite;
}


.ring-medium {

    width: 490px;
    height: 490px;

    border-style: dashed;

    animation:
        orbitSpinReverse 25s linear infinite;
}


@keyframes orbitSpin {

    from {
        transform:
            translate(-50%,-50%)
            rotateX(60deg)
            rotateZ(0deg);
    }

    to {
        transform:
            translate(-50%,-50%)
            rotateX(60deg)
            rotateZ(360deg);
    }

}


@keyframes orbitSpinReverse {

    from {
        transform:
            translate(-50%,-50%)
            rotateX(60deg)
            rotateZ(360deg);
    }

    to {
        transform:
            translate(-50%,-50%)
            rotateX(60deg)
            rotateZ(0deg);
    }

}


/* =========================================
   CENTER HUB
========================================= */

.sww-center-hub {

    position: absolute;

    left: 50%;
    top: 50%;

    z-index: 10;

    width: 225px;
    height: 225px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;

    transform:
        translate(-50%,-50%)
        translateZ(80px);

    border-radius: 50%;

    color: #111;

    background:
        linear-gradient(
            145deg,
            rgba(203, 189, 35, 0.98),
            rgba(228,201,12,.96)
        );

    border:
        1px solid rgba(255,255,255,.35);

    box-shadow:

        0 30px 80px
        rgba(86,5,144,.32),

        inset 0 2px 2px
        rgba(255,255,255,.25),

        inset 0 -15px 35px
        rgba(35,0,60,.20);

    backdrop-filter: blur(20px);

    transition:
        transform .2s ease-out;
}


.sww-center-hub::before {

    content: "";

    position: absolute;

    inset: -14px;

    border-radius: 50%;

    border: 1px solid rgba(157,78,221,.25);

    animation:
        centerRing 4s ease-in-out infinite;
}


@keyframes centerRing {

    0%,100% {
        transform: scale(.96);
        opacity: .5;
    }

    50% {
        transform: scale(1.04);
        opacity: 1;
    }

}


.hub-icon {

    width: 52px;
    height: 52px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 8px;

    border-radius: 50%;

    background:
        rgba(255,255,255,.13);

    border:
        1px solid rgba(255,255,255,.16);

    font-size: 22px;
}


.sww-center-hub h3 {

    margin: 0;

    font-size: 25px;

    font-weight: 800;
}


.sww-center-hub strong {

    font-size: 15px;

    font-weight: 500;

    color: rgba(255,255,255,.9);
}


.sww-center-hub p {

    margin: 7px 0;

    color: #fff;

    font-size: 11px;

    line-height: 1.45;
}


.hub-count {

    padding: 5px 12px;

    border-radius: 30px;

    background:
        rgba(255,255,255,.12);

    font-size: 10px;

    font-weight: 700;
}


/* =========================================
   GLASS BUBBLES
========================================= */

.sww-industry-bubble {

    position: absolute;

    z-index: 20;

    width: 145px;
    height: 145px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;

    padding: 16px;

    border-radius: 50%;

    color: #26202e;

    text-decoration: none;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.034),
            rgba(255,255,255,.38)
        );

    border:
        1px solid rgba(202, 199, 199, 0.8);

    

    backdrop-filter:
        blur(18px)
        saturate(140%);

    -webkit-backdrop-filter:
        blur(18px)
        saturate(140%);

    transform-style: preserve-3d;

    transition:
        transform .35s cubic-bezier(.2,.8,.2,1),
        box-shadow .35s ease,
        border-color .35s ease;

    animation:
        bubbleFloat 5s ease-in-out infinite;
}


.sww-industry-bubble:hover {

    color: #00BFFF;

    transform:
        translateY(-12px)
        scale(1.10)
        rotateX(5deg)
        rotateY(-5deg);

    border-color:
        rgba(0,191,255,.45);

}


.bubble-shine {

    position: absolute;

    width: 55px;
    height: 25px;

    top: 17px;
    left: 30px;

    border-radius: 50%;

    background:
        rgba(255,255,255,.75);

    filter: blur(7px);

    transform:
        rotate(-25deg);

    opacity: .7;
}


/* =========================================
   BUBBLE ICON
========================================= */

.sww-bubble-icon {

    position: relative;

    width: 49px;
    height: 49px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 8px;

    border-radius: 50%;

    color: #111;

    background:
        linear-gradient(
            145deg,
            rgba(158, 169, 6, 0.14),
            rgba(157,78,221,.06)
        );

    border:
        1px solid rgba(86,5,144,.08);

    box-shadow:
        inset 0 1px 2px
        rgba(255,255,255,.8);

    font-size: 19px;

    transition: .35s ease;
}


.sww-industry-bubble:hover .sww-bubble-icon {

    color: #fff;

    background:#00BFFF;

    transform:
        translateZ(20px)
        rotate(-8deg);

    box-shadow:
        0 10px 25px
        rgba(152, 152, 152, 0.25);
}


.sww-industry-bubble strong {

    font-size: 12px;

    line-height: 1.3;

    font-weight: 600;
}


.sww-industry-bubble small {

    margin-top: 3px;

    color: #918b97;

    font-size: 9px;

    line-height: 1.3;
}


/* =========================================
   BUBBLE POSITIONS
========================================= */

.bubble-1 {
    left: 4%;
    top: 19%;
    animation-delay: 0s;
}

.bubble-2 {
    left: 24%;
    top: 2%;
    animation-delay: .7s;
}

.bubble-3 {
    right: 24%;
    top: 2%;
    animation-delay: 1.2s;
}

.bubble-4 {
    right: 4%;
    top: 19%;
    animation-delay: 1.8s;
}

.bubble-5 {
    left: 0%;
    top: 47%;
    animation-delay: 2.2s;
}

.bubble-6 {
    right: 0%;
    top: 47%;
    animation-delay: 2.8s;
}

.bubble-7 {
    left: 8%;
    bottom: 12%;
    animation-delay: 3.2s;
}

.bubble-8 {
    left: 27%;
    bottom: 1%;
    animation-delay: 3.8s;
}

.bubble-9 {
    right: 27%;
    bottom: 1%;
    animation-delay: 4.2s;
}

.bubble-10 {
    right: 8%;
    bottom: 12%;
    animation-delay: 4.8s;
}

.bubble-11 {
    left: 16%;
    top: 34%;
    animation-delay: 1s;
}

.bubble-12 {
    right: 16%;
    top: 34%;
    animation-delay: 2s;
}


/* =========================================
   FLOATING PARTICLES
========================================= */

.sww-particle {

    position: absolute;

    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: #9d4edd;

    box-shadow:
        0 0 15px
        rgba(157,78,221,.8);

    animation:
        particleFloat 6s ease-in-out infinite;
}


.particle-1 {
    left: 17%;
    top: 16%;
}

.particle-2 {
    left: 42%;
    top: 8%;
    animation-delay: 1s;
}

.particle-3 {
    right: 17%;
    top: 22%;
    animation-delay: 2s;
}

.particle-4 {
    left: 20%;
    bottom: 24%;
    animation-delay: 3s;
}

.particle-5 {
    right: 25%;
    bottom: 18%;
    animation-delay: 4s;
}

.particle-6 {
    right: 42%;
    top: 23%;
    animation-delay: 5s;
}


@keyframes particleFloat {

    0%,100% {
        transform:
            translateY(0)
            scale(1);

        opacity: .5;
    }

    50% {
        transform:
            translateY(-25px)
            scale(1.5);

        opacity: 1;
    }

}


/* =========================================
   BUBBLE FLOAT
========================================= */

@keyframes bubbleFloat {

    0%,100% {
        margin-top: 0;
    }

    50% {
        margin-top: -9px;
    }

}


/* =========================================
   CTA
========================================= */

.sww-industry-cta {

    margin-top: -5px;

    position: relative;

    z-index: 30;
}


.sww-industry-cta p {

    margin-bottom: 20px;

    color: #77717e;

    font-size: 16px;
}


.sww-industry-cta strong {

    color: #d2bc22;
}


.sww-industry-button {

    display: inline-flex;

    align-items: center;

    gap: 11px;

    padding: 15px 27px;

    border-radius: 50px;

    color: #fff;

   background: #333;
  border: none;

    box-shadow:
        0 15px 35px
        rgba(86,5,144,.22);

    text-decoration: none;

    font-size: 14px;

    font-weight: 700;

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}


.sww-industry-button:hover {

    color: #fff;

    transform:
        translateY(-4px);

  
}


.sww-industry-button i {

    transition:
        transform .3s ease;
}


.sww-industry-button:hover i {

    transform:
        translateX(5px);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .sww-industry-stage {

        height: 700px;
    }

    .sww-industry-bubble {

        width: 125px;
        height: 125px;
    }

    .sww-center-hub {

        width: 190px;
        height: 190px;
    }

    .ring-large {

        width: 600px;
        height: 600px;
    }

    .ring-medium {

        width: 410px;
        height: 410px;
    }

    .bubble-11 {
        left: 10%;
    }

    .bubble-12 {
        right: 10%;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .sww-industries {

        padding:
            80px 0 75px;
    }

    .sww-industry-heading {

        font-size: 36px;

        letter-spacing: -1.2px;
    }

    .sww-industry-intro {

        padding:
            0 10px;

        font-size: 15px;
    }


    /* Disable desktop orbit */

    .sww-industry-stage {

        height: auto;

        display: grid;

        grid-template-columns:
            repeat(2, 1fr);

        gap: 15px;

        margin-top: 45px;
    }


    .sww-connections,
    .sww-orbit-ring,
    .sww-mouse-glow {

        display: none;
    }


    /* Center */

    .sww-center-hub {

        position: relative;

        left: auto;
        top: auto;

        transform: none;

        grid-column:
            1 / -1;

        margin:
            0 auto 20px;

        width: 190px;
        height: 190px;
    }


    /* Bubbles */

    .sww-industry-bubble {

        position: relative;

        left: auto !important;
        right: auto !important;
        top: auto !important;
        bottom: auto !important;

        width: 145px;
        height: 145px;

        margin: auto;

        animation-duration: 5s;
    }


    .sww-industry-bubble:hover {

        transform:
            scale(1.05)
            translateY(-5px);
    }


    .sww-particle {

        display: none;
    }


    .sww-industry-cta {

        margin-top: 40px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 420px) {

    .sww-industry-stage {

        gap: 10px;
    }

    .sww-industry-bubble {

        width: 135px;
        height: 135px;
    }

    .sww-bubble-icon {

        width: 42px;
        height: 42px;

        font-size: 17px;
    }

    .sww-industry-bubble strong {

        font-size: 11px;
    }

    .sww-industry-bubble small {

        font-size: 8px;
    }

}


/* =========================================
   REDUCE MOTION
========================================= */

@media (prefers-reduced-motion: reduce) {

    .sww-industry-bubble,
    .sww-line,
    .sww-orbit-ring,
    .sww-particle,
    .sww-glow,
    .sww-center-hub,
    .badge-dot {

        animation: none !important;
    }

}