/* ========================================
   VISION PAGE STYLES
   ======================================== */

:root {
    --primary-color: #0C359E;
    --secondary-color: #00224d;
    --accent-color: #4A90E2;
    --gradient-blue: linear-gradient(135deg, #0C359E 0%, #4A90E2 100%);
}

/* Vision Hero Section */
.vision-hero {
    position: relative;
    min-height: 60vh;
    background: linear-gradient(135deg, #0C359E 0%, #1a4bb8 100%);
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/vision.jpg') center/cover no-repeat;
    opacity: 0.15;
    mix-blend-mode: overlay;
}

.vision-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.vision-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
}

.vision-hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

/* Core Vision Section */
.core-vision-section {
    padding: 100px 0;
    background: white;
    position: relative;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 25px;
    line-height: 1.2;
}

.highlight {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(12, 53, 158, 0.1);
    z-index: -1;
}

.intro-text {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.vision-image-wrapper {
    position: relative;
    padding: 20px;
}

.vision-main-img {
    transition: transform 0.5s ease;
}

.vision-image-wrapper:hover .vision-main-img {
    transform: scale(1.02);
}

.floating-stat {
    position: absolute;
    bottom: -20px;
    right: 0;
    background: white;
    padding: 25px 35px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    border-left: 5px solid var(--primary-color);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-color);
}

.stat-text {
    font-size: 0.9rem;
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
}

/* Vision Cards */
.vision-card {
    background: white;
    border-radius: 24px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    border: 1px solid #f0f0f0;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.vision-card.featured {
    background: var(--secondary-color);
    color: white;
}

.vision-card.featured h3 {
    color: white;
}

.vision-card.featured p {
    color: rgba(255, 255, 255, 0.8);
}

.vision-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(12, 53, 158, 0.12);
    border-color: var(--primary-color);
}

.vision-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: rgba(12, 53, 158, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    transition: all 0.4s ease;
}

.featured .vision-icon {
    background: rgba(255, 255, 255, 0.1);
}

.vision-card:hover .vision-icon {
    background: var(--gradient-blue);
    transform: rotateY(180deg);
}

.vision-icon svg {
    fill: var(--primary-color);
    transition: all 0.4s ease;
}

.featured .vision-icon svg {
    fill: white;
}

.vision-card:hover .vision-icon svg {
    fill: white;
}

.vision-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.vision-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

/* Innovation Highlight */
.innovation-highlight {
    padding: 100px 0;
    background: #f8faff;
}

.innovation-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--secondary-color);
}

.innovation-text p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
}

.vision-list {
    list-style: none;
    padding: 0;
}

.vision-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--secondary-color);
    font-size: 1.05rem;
}

.vision-list li i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* Future Commitment */
.future-commitment {
    padding: 120px 0;
    background: white;
    border-top: 1px solid #f0f0f0;
}

.future-commitment h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.future-commitment .lead {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.btn-primary-vision {
    display: inline-block;
    padding: 16px 40px;
    background: var(--gradient-blue);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(12, 53, 158, 0.2);
}

.btn-primary-vision:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(12, 53, 158, 0.3);
    color: white;
}

/* Scroll Reveal */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 991px) {
    .vision-hero-title {
        font-size: 2.8rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .vision-image-wrapper {
        margin-top: 50px;
    }
}

@media (max-width: 768px) {
    .vision-hero-title {
        font-size: 2.2rem;
    }
    
    .vision-hero {
        min-height: 50vh;
    }
    
    .core-vision-section,
    .innovation-highlight,
    .future-commitment {
        padding: 60px 0;
    }
    
    .floating-stat {
        padding: 15px 25px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
}
