:root {
    --primary: #0b3c5d;
    --accent: #1ca9c9;
    --light-bg: #f4f9fb;
    --dark: #222;
}

.vision-section {
    padding: 90px 10%;
    background: var(--light-bg);
    overflow: hidden;
}

.vision-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

/* Text */
.vision-text {
    width: 55%;
		color:white
    opacity: 0;
    transform: translateX(-60px);
    transition: all 1s ease;
}

.vision-text h2 {
    font-size: 40px;
    color: white;
    margin-bottom: 20px;
		background:blue
}

.vision-text p {
    font-size: 16px;
		color:white
    line-height: 1.7;
    margin-bottom: 15px;
}

.vision-text ul {
    margin-top: 20px;
}

.vision-text ul li {
    list-style: none;
    margin-bottom: 10px;
    padding-left: 28px;
    position: relative;
}

.vision-text ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

/* Image */
.vision-image {
    width: 45%;
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    transform: scale(0.9);
    opacity: 0;
    transition: all 1s ease;
}

.vision-image img {
    width: 100%;
    display: block;
    transition: transform 0.8s ease;
}

.vision-image:hover img {
    transform: scale(1.08);
}

/* Overlay effect */
.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom right,
        rgba(11,60,93,0.2),
        rgba(28,169,201,0.25)
    );
}

/* Animation Active */
.vision-section.show .vision-text {
    opacity: 1;
    transform: translateX(0);
}

.vision-section.show .vision-image {
    opacity: 1;
    transform: scale(1);
}

/* Responsive */
@media(max-width: 900px) {
    .vision-container {
        flex-direction: column;
    }
    .vision-text,
    .vision-image {
        width: 100%;
    }
}
