.vision-background {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #f8f9fa;
}

.vision-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    background-image: radial-gradient(#000 1px, transparent 1px);
    background-size: 20px 20px;
}

.vision-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.vision-image-section {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.vision-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.vision-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.vision-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.vision-image-wrapper:hover img {
    transform: scale(1.05);
}

.vision-image-wrapper:hover .vision-image-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: #fff;
}

.overlay-content h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.vision-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.vision-card {
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.vision-card:hover {
    transform: translateY(-10px);
}

.vision-icon-wrapper {
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.vision-icon {
    position: relative;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-outer-circle {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid #0099ff;
    border-radius: 50%;
    animation: rotate 10s linear infinite;
}

.icon-inner-circle {
    position: absolute;
    width: 70%;
    height: 70%;
    background: #0099ff;
    border-radius: 50%;
    opacity: 0.1;
}

.vision-icon i {
    font-size: 30px;
    color: #0099ff;
    position: relative;
    z-index: 1;
}

.vision-content h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
}

.vision-content p {
    color: #666;
    line-height: 1.6;
}

.vision-hover-effect {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #0099ff;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.vision-card:hover .vision-hover-effect {
    transform: scaleX(1);
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 768px) {
    .vision-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .vision-card {
        padding: 20px;
    }
    
    .vision-icon {
        width: 60px;
        height: 60px;
    }
    
    .vision-icon i {
        font-size: 24px;
    }
    
    .vision-content h3 {
        font-size: 18px;
    }
} 