/* ========================================
   Mission Vision Section
   ======================================== */

.mission-vision-section {
    padding: 150px 0;
    background-color: #000;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.mission-vision-section::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -5%;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 40%, transparent 70%);
    z-index: 0;
    animation: floatCircle1 20s ease-in-out infinite;
}

.mission-vision-section::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: 5%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.04) 40%, transparent 70%);
    z-index: 0;
    animation: floatCircle2 25s ease-in-out infinite;
}

@keyframes floatCircle1 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 1;
    }
    33% {
        transform: translate(-50px, 60px) scale(1.15);
        opacity: 0.7;
    }
    66% {
        transform: translate(30px, -50px) scale(0.9);
        opacity: 0.85;
    }
}

@keyframes floatCircle2 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 1;
    }
    33% {
        transform: translate(60px, -30px) scale(1.1);
        opacity: 0.75;
    }
    66% {
        transform: translate(-40px, 50px) scale(0.85);
        opacity: 0.9;
    }
}

/* Add subtle particle effect */
.mission-vision-section .mission-vision-container::before {
    content: '';
    position: absolute;
    top: 15%;
    left: 35%;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 50%, transparent 70%);
    z-index: 0;
    animation: floatParticle1 18s ease-in-out infinite;
    animation-delay: 2s;
}

.mission-vision-section .mission-vision-container::after {
    content: '';
    position: absolute;
    bottom: 15%;
    right: 30%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.02) 50%, transparent 70%);
    z-index: 0;
    animation: floatParticle2 22s ease-in-out infinite;
    animation-delay: 5s;
}

@keyframes floatParticle1 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translate(50px, -60px) scale(1.4);
        opacity: 1;
    }
}

@keyframes floatParticle2 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translate(-40px, 50px) scale(1.3);
        opacity: 1;
    }
}

.mission-vision-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.mission-item {
    position: relative;
    padding: 50px;
    background: rgba(255, 255, 255, 0.03);
    transition: all 0.4s ease;
}

.mission-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: rgba(255, 255, 255, 0.05);
    transition: width 0.4s ease;
    z-index: -1;
}

.mission-item:hover::before {
    width: 100%;
}

.mission-item:hover {
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-10px);
}

.mission-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 4px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.5);
}

.mission-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: 0.5px;
    color: #fff;
}

.mission-description {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

/* ========================================
   Division Section
   ======================================== */

.division-section {
    padding: 100px 40px;
    background-color: #f8f8f8;
}

.division-container {
    max-width: 1200px;
    margin: 0 auto;
}

.division-item {
    margin-bottom: 60px;
}

.division-item:last-child {
    margin-bottom: 0;
}

.division-number {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.division-title {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* ========================================
   Section Title (Common)
   ======================================== */

.section-title {
    font-size: 36px;
    font-weight: 700;
    letter-spacing: 1px;
    margin: 0;
}

/* ========================================
   Scroll Fade In Animation
   ======================================== */

.fade-in-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}
