.occupational-health-and-safety-animation-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 40px;
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
    background: 
        linear-gradient(rgba(10, 25, 47, 0.85), rgba(10, 25, 47, 0.95)),
        linear-gradient(90deg, rgba(60, 179, 113, 0.03) 1px, transparent 1px),
        linear-gradient(rgba(60, 179, 113, 0.03) 1px, transparent 1px);
    background-size: 100% 100%, 20px 20px, 20px 20px;
    border-radius: 4px;
    border: 1px solid rgba(60, 179, 113, 0.2);
    backdrop-filter: blur(10px);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.3), inset 0 0 20px rgba(60, 179, 113, 0.05);
    position: relative;
    overflow: hidden;
}

.occupational-health-and-safety-animation-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(60, 179, 113, 0.8), transparent);
    animation: scan-line 4s linear infinite;
}

@keyframes scan-line {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.occupational-health-and-safety-arrow-1,
.occupational-health-and-safety-arrow-2,
.occupational-health-and-safety-arrow-3 {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.2);
    margin: 0 15px;
    transform: rotate(0deg);
    transition: transform 0.3s ease, color 0.3s ease;
}

.occupational-health-and-safety-arrow-default-color {
    color: rgba(255, 255, 255, 0.2);
}

.occupational-health-and-safety-arrow-music-color {
    color: #3cb371;
    text-shadow: 0 0 10px rgba(60, 179, 113, 0.5);
}

.occupational-health-and-safety-arrow-photo-film-color {
    color: #f0c646;
    text-shadow: 0 0 10px rgba(240, 198, 70, 0.5);
}

.occupational-health-and-safety-arrow-file-word-color {
    color: #346fd3;
    text-shadow: 0 0 10px rgba(52, 111, 211, 0.5);
}

.occupational-health-and-safety-arrow-globe-color {
    color: #ffc50d;
    text-shadow: 0 0 10px rgba(255, 197, 13, 0.5);
}

.occupational-health-and-safety-arrow-file-pdf-color {
    color: #ff3434;
    text-shadow: 0 0 10px rgba(255, 52, 52, 0.5);
}

.occupational-health-and-safety-training {
    border-radius: 4px;
    width: 100px;
    aspect-ratio: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    position: relative;
    background: rgba(10, 25, 47, 0.6);
    border: 1px solid rgba(60, 179, 113, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.occupational-health-and-safety-training:hover {
    border-color: rgba(60, 179, 113, 0.6);
    box-shadow: 0 0 15px rgba(60, 179, 113, 0.2);
}

.occupational-health-and-safety-training-carousel {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.occupational-health-and-safety-clients-carousel {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.occupational-health-and-safety-client-container {
    flex-direction: row;
    align-items: center;
    display: flex;
}

.occupational-health-and-safety-client {
    border-radius: 4px;
    width: 75px;
    aspect-ratio: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    position: relative;
    background-color: rgba(10, 25, 47, 0.6);
    color: #b0c4de;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.occupational-health-and-safety-client:hover {
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.occupational-health-and-safety-client-employees {
    border-radius: 15px;
    width: 55px;
    aspect-ratio: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    position: relative;
    background-color: rgba(60, 179, 113, 0.1);
    color: #3cb371;
    border: 1px solid rgba(60, 179, 113, 0.2);
}

.occupational-health-and-safety-training-music {
    background-color: rgba(60, 179, 113, 0.2);
    color: #3cb371;
    border-color: #3cb371;
    box-shadow: 0 0 15px rgba(60, 179, 113, 0.2);
}

.occupational-health-and-safety-training-photo-film {
    background-color: rgba(240, 198, 70, 0.2);
    color: #f0c646;
    border-color: #f0c646;
    box-shadow: 0 0 15px rgba(240, 198, 70, 0.2);
}

.occupational-health-and-safety-training-file-word {
    background-color: rgba(52, 111, 211, 0.2);
    color: #346fd3;
    border-color: #346fd3;
    box-shadow: 0 0 15px rgba(52, 111, 211, 0.2);
}

.occupational-health-and-safety-training-globe {
    background-color: rgba(255, 197, 13, 0.2);
    color: #ffc50d;
    border-color: #ffc50d;
    box-shadow: 0 0 15px rgba(255, 197, 13, 0.2);
}

.occupational-health-and-safety-training-file-pdf {
    background-color: rgba(255, 52, 52, 0.2);
    color: #ff3434;
    border-color: #ff3434;
    box-shadow: 0 0 15px rgba(255, 52, 52, 0.2);
}

.occupational-health-and-safety-primary-focus {
    font-size: 56px;
    width: 100px;
    z-index: 2;
    transform: scale(1.1);
}

.occupational-health-and-safety-secondary-focus {
    font-size: 36px;
    width: 85px;
    opacity: 0.7;
}

.occupational-health-and-safety-tertiary-focus {
    font-size: 26px;
    width: 60px;
    opacity: 0.4;
}

.circle-ohs-az {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 1px dashed rgba(60, 179, 113, 0.3);
    position: relative;
}

.ohs-az {
    animation: orbitOHS 14s linear infinite;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(0deg) translateX(150px) rotate(0deg);
    width: 40px;
    height: 40px;
    background-color: rgba(5, 31, 61, 0.9);
    border: 1px solid #3cb371;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #3cb371;
    box-shadow: 0 0 10px rgba(60, 179, 113, 0.3);
    position: absolute;
    z-index: 100;
    font-size: 20px;
    pointer-events: auto;
    backdrop-filter: blur(5px);
}

.az-ecosystem-logo {
    width: 65px;
    height: 65px;
    background-color: rgba(5, 31, 61, 0.9);
    border: 1px solid #3cb371;
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 20px rgba(60, 179, 113, 0.4);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 100;
    pointer-events: auto;
}

.az-ecosystem-logo img {
    width: 55px;
    height: 55px;
    border-radius: 10px;
    opacity: 0.9;
}

.material-symbols-outlined {
    font-size: 20px;
}

.ohs-1 { animation-delay: 0s; }
.ohs-2 { animation-delay: -2s; }
.ohs-3 { animation-delay: -4s; }
.ohs-4 { animation-delay: -6s; }
.ohs-5 { animation-delay: -8s; }
.ohs-6 { animation-delay: -10s; }
.ohs-7 { animation-delay: -12s; }


@keyframes orbitOHS {
    from { transform: translate(-50%, -50%) rotate(0deg) translateX(100px) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg) translateX(100px) rotate(-360deg); }
}

@media (max-width: 1600px) {
    .occupational-health-and-safety-animation-container {
        gap: 35px;
        padding: 20px;
        max-width: 960px;
        flex-direction: column;
        align-items: center;
    }

    .occupational-health-and-safety-training-carousel {
        flex-direction: row;
        gap: 35px;
        align-items: center;
        justify-content: center;
    }

    .occupational-health-and-safety-arrow-1,
    .occupational-health-and-safety-arrow-2,
    .occupational-health-and-safety-arrow-3 {
        font-size: 28px;
        margin: 30px 18px;
        transform: rotate(90deg);
    }

    .circle-ohs-az {
        width: 180px;
        height: 180px;
    }

    .ohs-az {
        width: 34px;
        height: 34px;
        font-size: 16px;
        transform: translate(-50%, -50%) rotate(0deg) translateX(90px) rotate(0deg);
    }

    .az-ecosystem-logo {
        width: 60px;
        height: 60px;
    }

    .az-ecosystem-logo img {
        width: 50px;
        height: 50px;
    }

    .material-symbols-outlined {
        font-size: 16px;
    }

    .occupational-health-and-safety-clients-carousel {
        flex-direction: row;
        gap: 35px;
        align-items: center;
        justify-content: center;
    }

    .occupational-health-and-safety-client-container {
        flex-direction: column;
        align-items: center;
    }

    .occupational-health-and-safety-primary-focus {
        font-size: 50px;
        width: 90px;
    }

    .occupational-health-and-safety-secondary-focus {
        font-size: 32px;
        width: 72px;
    }

    .occupational-health-and-safety-tertiary-focus {
        font-size: 22px;
        width: 52px;
    }

    .occupational-health-and-safety-client {
        width: 65px;
        font-size: 30px;
    }

    .occupational-health-and-safety-client-employees {
        width: 48px;
        font-size: 22px;
    }

    @keyframes orbitOHS {
        from { transform: translate(-50%, -50%) rotate(0deg) translateX(90px) rotate(0deg); }
        to { transform: translate(-50%, -50%) rotate(360deg) translateX(90px) rotate(-360deg); }
    }
}

@media (max-width: 1200px) {
    .occupational-health-and-safety-animation-container {
        gap: 25px;
        padding: 15px;
        max-width: 720px;
        flex-direction: row;
        align-items: center;
        justify-content: space-around;
    }

    .occupational-health-and-safety-training-carousel {
        flex-direction: column;
        gap: 25px;
        align-items: center;
    }

    .occupational-health-and-safety-arrow-1,
    .occupational-health-and-safety-arrow-2,
    .occupational-health-and-safety-arrow-3 {
        font-size: 24px;
        margin: 25px 15px;
        transform: rotate(0deg);
    }

    .circle-ohs-az {
        width: 160px;
        height: 160px;
    }

    .ohs-az {
        width: 30px;
        height: 30px;
        font-size: 14px;
        transform: translate(-50%, -50%) rotate(0deg) translateX(75px) rotate(0deg);
    }

    .az-ecosystem-logo {
        width: 52px;
        height: 52px;
    }

    .az-ecosystem-logo img {
        width: 42px;
        height: 42px;
    }

    .material-symbols-outlined {
        font-size: 14px;
    }

    .occupational-health-and-safety-clients-carousel {
        flex-direction: column;
        gap: 25px;
        align-items: center;
    }

    .occupational-health-and-safety-client-container {
        flex-direction: row;
        align-items: center;
    }

    .occupational-health-and-safety-primary-focus {
        font-size: 42px;
        width: 72px;
    }

    .occupational-health-and-safety-secondary-focus {
        font-size: 28px;
        width: 60px;
    }

    .occupational-health-and-safety-tertiary-focus {
        font-size: 20px;
        width: 44px;
    }

    .occupational-health-and-safety-client {
        width: 55px;
        font-size: 26px;
    }

    .occupational-health-and-safety-client-employees {
        width: 40px;
        font-size: 20px;
    }

    @keyframes orbitOHS {
        from { transform: translate(-50%, -50%) rotate(0deg) translateX(75px) rotate(0deg); }
        to { transform: translate(-50%, -50%) rotate(360deg) translateX(75px) rotate(-360deg); }
    }
}

@media (max-width: 800px) {
    .occupational-health-and-safety-animation-container {
        gap: 20px;
        padding: 10px;
        max-width: 480px;
        flex-direction: column;
        align-items: center;
    }

    .occupational-health-and-safety-training-carousel {
        flex-direction: row;
        gap: 20px;
        align-items: center;
        justify-content: center;
    }

    .occupational-health-and-safety-arrow-1,
    .occupational-health-and-safety-arrow-2,
    .occupational-health-and-safety-arrow-3 {
        font-size: 20px;
        margin: 20px 12px;
        transform: rotate(90deg);
    }

    .circle-ohs-az {
        width: 140px;
        height: 140px;
    }

    .ohs-az {
        width: 28px;
        height: 28px;
        font-size: 12px;
        transform: translate(-50%, -50%) rotate(0deg) translateX(65px) rotate(0deg);
    }

    .az-ecosystem-logo {
        width: 44px;
        height: 44px;
    }

    .az-ecosystem-logo img {
        width: 34px;
        height: 34px;
    }

    .material-symbols-outlined {
        font-size: 12px;
    }

    .occupational-health-and-safety-clients-carousel {
        flex-direction: row;
        gap: 20px;
        align-items: center;
        justify-content: center;
    }

    .occupational-health-and-safety-client-container {
        flex-direction: column;
        align-items: center;
    }

    .occupational-health-and-safety-primary-focus {
        font-size: 36px;
        width: 64px;
    }

    .occupational-health-and-safety-secondary-focus {
        font-size: 24px;
        width: 52px;
    }

    .occupational-health-and-safety-tertiary-focus {
        font-size: 18px;
        width: 36px;
    }

    .occupational-health-and-safety-client {
        width: 45px;
        font-size: 22px;
    }

    .occupational-health-and-safety-client-employees {
        width: 34px;
        font-size: 18px;
    }

    @keyframes orbitOHS {
        from { transform: translate(-50%, -50%) rotate(0deg) translateX(65px) rotate(0deg); }
        to { transform: translate(-50%, -50%) rotate(360deg) translateX(65px) rotate(-360deg); }
    }
}

@media (max-width: 600px) {
    .occupational-health-and-safety-animation-container {
        gap: 15px;
        padding: 8px;
        max-width: 360px;
    }

    .occupational-health-and-safety-arrow-1,
    .occupational-health-and-safety-arrow-2,
    .occupational-health-and-safety-arrow-3 {
        font-size: 18px;
        margin: 18px 10px;
    }

    .occupational-health-and-safety-training {
        width: 50px;
        font-size: 20px;
    }

    .circle-ohs-az {
        width: 120px;
        height: 120px;
    }

    .ohs-az {
        width: 24px;
        height: 24px;
        font-size: 10px;
        transform: translate(-50%, -50%) rotate(0deg) translateX(55px) rotate(0deg);
    }

    .az-ecosystem-logo {
        width: 38px;
        height: 38px;
    }

    .az-ecosystem-logo img {
        width: 30px;
        height: 30px;
    }

    .material-symbols-outlined {
        font-size: 10px;
    }

    .occupational-health-and-safety-clients-carousel {
        flex-direction: row;
        gap: 15px;
        align-items: center;
        justify-content: center;
    }

    .occupational-health-and-safety-client-container {
        flex-direction: column;
        align-items: center;
    }

    .occupational-health-and-safety-primary-focus {
        font-size: 30px;
        width: 52px;
    }

    .occupational-health-and-safety-secondary-focus {
        font-size: 20px;
        width: 44px;
    }

    .occupational-health-and-safety-tertiary-focus {
        font-size: 16px;
        width: 32px;
    }

    .occupational-health-and-safety-client {
        width: 40px;
        font-size: 20px;
    }

    .occupational-health-and-safety-client-employees {
        width: 30px;
        font-size: 16px;
    }

    @keyframes orbitOHS {
        from { transform: translate(-50%, -50%) rotate(0deg) translateX(55px) rotate(0deg); }
        to { transform: translate(-50%, -50%) rotate(360deg) translateX(55px) rotate(-360deg); }
    }
}

@media (max-width: 400px) {
    .occupational-health-and-safety-animation-container {
        gap: 10px;
        padding: 6px;
        max-width: 280px;
    }

    .occupational-health-and-safety-arrow-1,
    .occupational-health-and-safety-arrow-2,
    .occupational-health-and-safety-arrow-3 {
        font-size: 16px;
        margin: 15px 8px;
    }

    .occupational-health-and-safety-training {
        width: 40px;
        font-size: 18px;
    }

    .circle-ohs-az {
        width: 90px;
        height: 90px;
    }

    .ohs-az {
        width: 18px;
        height: 18px;
        font-size: 9px;
        transform: translate(-50%, -50%) rotate(0deg) translateX(45px) rotate(0deg);
    }

    .az-ecosystem-logo {
        width: 32px;
        height: 32px;
    }

    .az-ecosystem-logo img {
        width: 22px;
        height: 22px;
    }

    .material-symbols-outlined {
        font-size: 9px;
    }

    .occupational-health-and-safety-clients-carousel {
        flex-direction: row;
        gap: 10px;
        align-items: center;
        justify-content: center;
    }

    .occupational-health-and-safety-client-container {
        flex-direction: column;
        align-items: center;
    }

    .occupational-health-and-safety-primary-focus {
        font-size: 28px;
        width: 48px;
    }

    .occupational-health-and-safety-secondary-focus {
        font-size: 18px;
        width: 36px;
    }

    .occupational-health-and-safety-tertiary-focus {
        font-size: 14px;
        width: 28px;
    }

    .occupational-health-and-safety-client {
        width: 35px;
        font-size: 18px;
    }

    .occupational-health-and-safety-client-employees {
        width: 28px;
        font-size: 14px;
    }

    @keyframes orbitOHS {
        from { transform: translate(-50%, -50%) rotate(0deg) translateX(45px) rotate(0deg); }
        to { transform: translate(-50%, -50%) rotate(360deg) translateX(45px) rotate(-360deg); }
    }
}

