/* Visionary Section Styles */

.visionary-section {
    background:  #001D24;
    position: relative;
}

.visionary-bg-gradient {
    background: linear-gradient(135deg, rgba(33, 60, 66, 0.1) 0%, rgba(13, 13, 43, 0.3) 100%);
}

/* Visionary Image */
.visionary-image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.visionary-image-wrapper {
    position: relative;
    width: 500px;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(30%);
}

.visionary-image-circle {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    z-index: 2;
    background: linear-gradient(135deg, #001D24, #213C42);
}

.visionary-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.visionary-circle-border {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 380px;
    height: 380px;
    border-radius: 50%;
    border: 3px solid rgba(0, 205, 255, 0.3);
    z-index: 1;
    animation: pulseBorder 3s ease-in-out infinite;
}

@keyframes pulseBorder {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.05);
        opacity: 1;
    }
}

.visionary-image-placeholder {
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 205, 255, 0.1), rgba(0, 205, 255, 0.1));
    border: 3px dashed rgba(0, 205, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Visionary Content */
.visionary-content {
    position: relative;
}

.visionary-icon {
    animation: rotateIcon 20s linear infinite;
}

@keyframes rotateIcon {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.visionary-content h2 {
    text-shadow: 0 0 30px rgba(0, 205, 255, 0.3);
}

/* Responsive Visionary */
@media (max-width: 1024px) {
    .visionary-image-wrapper {
        width: 350px;
        height: 350px;
    }
    
    .visionary-image-circle {
        width: 300px;
        height: 300px;
    }
    
    .visionary-circle-border {
        width: 330px;
        height: 330px;
    }
    
    .visionary-image-placeholder {
        width: 300px;
        height: 300px;
    }
}

@media (max-width: 768px) {
    .visionary-image-wrapper {
        width: 300px;
        height: 300px;
        margin: 0 auto;
    }
    
    .visionary-image-circle {
        width: 250px;
        height: 250px;
    }
    
    .visionary-circle-border {
        width: 280px;
        height: 280px;
    }
    
    .visionary-image-placeholder {
        width: 250px;
        height: 250px;
    }
    
    .visionary-content {
        text-align: center;
    }
    
    .visionary-icon {
        margin: 0 auto;
    }
}

.vision-section-img {
    width: 500px;
    height: 500px;
    left: -10%;
    bottom: -40%;
    animation: rotateInfinite 40s ease-in infinite;
}

@keyframes rotateInfinite {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Legacy Text Section */
.legacy-text-section {
    background: linear-gradient(180deg, #00597D 0%, #00A2E3 100%);
    position: relative;
}

.legacy-section-img {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: auto;
    opacity: 0.4;
    transition: transform 0.1s ease-out;
    will-change: transform;
}

.mision-values-objective{
    background: linear-gradient(180deg, #00597D 0%, #00A2E3 100%);
}