#vision-mission {
    background: linear-gradient(135deg, #4e0f8a 0%, #6a00ff 100%);
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
    color: #ffffff;
}

#vision-mission::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/art/bl2.png');
    background-size: 300px;
    background-repeat: no-repeat;
    background-position: right -50px top -50px;
    opacity: 0.05;
    z-index: 0;
    animation: float-bg 15s ease-in-out infinite;
}

#vision-mission::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/art/bl4.png');
    background-size: 300px;
    background-repeat: no-repeat;
    background-position: left -50px bottom -50px;
    opacity: 0.05;
    z-index: 0;
    animation: float-bg 15s ease-in-out infinite reverse;
}

.vision-mission-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.vision-box, .mission-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    flex: 1;
    min-width: 300px;
    max-width: 550px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    transform: translateY(20px);
    opacity: 0;
    animation: slide-up 0.8s ease-out forwards;
}

.vision-box {
    animation-delay: 0.2s;
}

.mission-box {
    animation-delay: 0.4s;
}

.vision-box:hover, .mission-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 219, 88, 0.3);
}

.section-icon {
    font-size: 2.5em;
    margin-bottom: 20px;
    display: inline-block;
    animation: pulse 2s infinite;
}

.vision-box h2, .mission-box h2 {
    font-family: 'Chewy', cursive;
    font-size: 2.5em;
    color: #ffdb58;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.vision-box p, .mission-box p {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Animations */
@keyframes float-bg {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(2deg);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        text-shadow: 0 0 10px rgba(255, 219, 88, 0.3);
    }
    50% {
        transform: scale(1.1);
        text-shadow: 0 0 20px rgba(255, 219, 88, 0.7);
    }
}

@keyframes slide-up {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Media Queries */
@media only screen and (max-width: 1000px) {
    .vision-mission-container {
        flex-direction: column;
        align-items: center;
    }
    
    .vision-box, .mission-box {
        max-width: 100%;
    }
}

@media only screen and (max-width: 768px) {
    #vision-mission {
        padding: 60px 15px;
    }
    
    .vision-box h2, .mission-box h2 {
        font-size: 2em;
    }
    
    .vision-box, .mission-box {
        padding: 30px;
    }
}

@media only screen and (max-width: 480px) {
    .vision-box h2, .mission-box h2 {
        font-size: 1.8em;
    }
    
    .section-icon {
        font-size: 2em;
    }
    
    .vision-box p, .mission-box p {
        font-size: 1em;
    }
    
    .vision-box, .mission-box {
        padding: 25px;
    }
} 