/* --- VISION PAGE HEADER --- */
.vision-header {
    /* You can use a specific image like 'vision-bg.jpg' here */
    background: linear-gradient(to right, var(--primary), #005f73);
    padding: 100px 0;
    text-align: center;
    color: #ffffff;
}

.vision-header h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.vision-header p {
    font-size: 1.25rem;
    opacity: 0.9;
}

/* --- TEXT UTILITIES --- */
.text-center {
    text-align: center;
}

.lead-text {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    color: #555;
}

/* --- VISION GRID LAYOUT --- */
.vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 20px 0;
}

/* --- CARD STYLING --- */
.vision-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 5px solid var(--primary); /* Uses color from style.css */
    position: relative;
    overflow: hidden;
}

.vision-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.vision-card h3 {
    margin-bottom: 20px;
    color: var(--text-dark);
    font-size: 1.5rem;
}

/* --- ICONS --- */
.icon-circle {
    width: 60px;
    height: 60px;
    background-color: #e0faff; /* Light cyan background */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-bottom: 20px;
    color: var(--primary);
}

/* --- LISTS INSIDE CARDS --- */
.vision-card ul {
    list-style: none;
    padding: 0;
}

.vision-card ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: #555;
    line-height: 1.6;
}

/* Custom bullet point using CSS */
.vision-card ul li::before {
    content: '✔';
    position: absolute;
    left: 0;
    color: var(--primary); /* Green checkmark or Theme color */
    font-weight: bold;
}

/* --- CTA BANNER --- */
.cta-banner {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    text-align: center;
    padding: 60px 20px;
    color: #000;
}

.cta-banner h2 {
    margin-bottom: 20px;
}

.white-border {
    border: 2px solid #000;
    background: transparent;
}

.white-border:hover {
    background: #000;
    color: #fff;
}

/* --- RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 768px) {
    .vision-header h1 {
        font-size: 2rem;
    }
    
    .vision-card {
        padding: 20px;
    }
}