/* Strategy Section */
.esg-page-wrapper {
    overflow: hidden;
}

.strategy-section {
    position: relative;
    background: #0f4c75;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding: 96px 0 104px;
}

.strategy-section .strategy-header {
    width: 100%;
}

.strategy-section .strategy-header h2 {
    color: var(--global--color-white);
    margin-bottom: 82px;
}

/* Arc Container */
.strategy-section .arc-container {
    position: relative;
    max-width: 926px;
    width: 100%;
    height: 116px;
    margin: 0 auto;
}

/* Desktop SVG - show by default */
.strategy-section .arc-desktop {
    display: block;
}

/* Mobile SVG - hide by default */
.strategy-section .arc-mobile {
    display: none;
}

.strategy-section .arc-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Arc SVG Elements */
.strategy-section .arc-full,
.strategy-section .arc-segment-0,
.strategy-section .arc-segment-1,
.strategy-section .arc-segment-2 {
    fill: #00759B;
    transition: fill 0.3s ease;
}

/* Points positioned on arc */
.strategy-section .point {
    position: absolute;
    transform: translate(-50%, -50%);
    z-index: 2;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Point positions on the arc */
.strategy-section .point-1 {
    left: 105px;
    top: 59%;
}

.strategy-section .point-2 {
    left: 50%;
    top: 0%;
}

.strategy-section .point-3 {
    right: 64px;
    top: 60%;
}

/* Point Design */
.strategy-section .point-inner-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--global--color-cristal-blue);
    border: 1px solid rgba(255, 255, 255, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    transform: scale(0.52);
}

/* Active point styles */
.strategy-section .point.active .point-inner-circle {
    background: #3282b8;
    transform: scale(1);
    border-color: #3282b8;
}

/* Inactive point styles */
.strategy-section .point:not(.active) .point-inner-circle {
    background: var(--global--color-cristal-blue);
    border-color: rgba(255, 255, 255, 1);
}

.strategy-section .point:not(.active) .point-inner-circle::after {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 1);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.strategy-section .point-number {
    color: white;
}

/* Hide number for inactive points */
.strategy-section .point:not(.active) .point-number {
    transform: scale(0);
}

.strategy-section .point.active .point-number {
    transform: scale(1);
}

/* Swiper Container */
.strategy-section .swiper-strategy {
    margin-top: 45px;
    overflow: visible;
    touch-action: pan-y pinch-zoom; /* Enable touch scrolling */
}

.strategy-section .swiper-slide {
    width: 500px !important;
}

@media (max-width: 767px) {
    .strategy-section .swiper-slide {
        width: 100% !important;
    }
}

.strategy-section .swiper-slide .swiper-slide-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
    color: var(--global--color-white);
}

/* Fade effect for swiper slides */
.strategy-section .swiper-slide {
    opacity: .5;
    transition: opacity 0.6s ease;
}

.strategy-section .swiper-slide.swiper-slide-active {
    opacity: 1;
}

.strategy-section .content-image {
    width: 290px;
    height: 290px;
    border-radius: 100%;
    overflow: hidden;
    margin-bottom: 40px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.strategy-section .content-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.strategy-section .content-text {
    text-align: center;
}

.strategy-section .content-text h3 {
    margin-bottom: 22px;
    text-align: center;
}

.strategy-section .content-text p {
    margin-bottom: 0;
    line-height: 21px;
    font-weight: 300;
}

/* Animation Classes - Removed unused progress classes */

@media (max-width: 991px) {
    .strategy-section .swiper-slide {
        width: 350px !important;
    }

    .strategy-section .arc-container {
        width: 350px;
        height: 45px;
    }

    /* Hide desktop SVG, show mobile SVG */
    .strategy-section .arc-desktop {
        display: none;
    }

    .strategy-section .arc-mobile {
        display: block;
    }

    .strategy-section .point-1 {
        left: 39px;
        top: 60%;
    }

    .strategy-section .point-2 {
        left: 50%;
        top: 0%;
    }

    .strategy-section .point-3 {
        right: 0;
        top: 61%;
    }
}

@media (max-width: 767.98px) {
    .strategy-section {
        padding: 56px 0 75px;
    }

    .strategy-section .strategy-header h2 {
        margin-bottom: 50px;
        text-align: center;
    }

    .strategy-section .content-image {
        margin-bottom: 30px;
        width: 240px;
        height: 240px;
    }

    .strategy-section .swiper-slide {
        width: 100% !important;
    }

    .strategy-section .content-text {
        max-width: 340px;
        margin-left: auto;
        margin-right: auto;
        width: 100%;
        padding: 0 20px;
    }

    /* Ensure touch events work on mobile */
    .strategy-section .swiper-strategy {
        touch-action: pan-x pan-y;
        -webkit-overflow-scrolling: touch;
    }

    .strategy-section .swiper-wrapper {
        touch-action: pan-x pan-y;
    }
}