.our-vision-section {
    background-color: #f7f7f7;
    padding: 45px 20px;
    text-align: center;
}

.our-vision-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.5rem;
    color: #1f2937; /* dark gray */
    margin-bottom: 30px;
    font-weight: 700;
}

.section-description {
    font-size: 1.125rem;
    color: #4b5563; /* muted gray */
    line-height: 1.8;
    margin-bottom: 20px;
}

.section-description strong {
    color: #111827; /* deeper gray for emphasis */
}


.ict-day-section {
    background: linear-gradient(135deg, #0e9ad7, #3b82f6);
    padding: 100px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ict-day-container {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 50px 30px;
    max-width: 800px;
    width: 100%;
    text-align: center;
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.ict-day-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.ict-day-subtitle,
.ict-day-details {
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 400;
}

.school-locations{
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}

.school-locations li{
    font-size: 1.1rem;
    margin: 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 16px;
    border-radius: 10px;
}

.school-locations li strong {
    color: #ffffff;
}


.ict-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0 auto 30px;
    max-width: 900px;
    justify-content: center;
    text-align: left;
}

.ict-features li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 12px 16px 12px 40px;
}

.ict-features li::before {
    content: '✅';
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.1rem;
}


.projects-stories-section {
    background: #f9fafb;
    padding: 50px 20px;
    text-align: center;
    border-top: 4px solid #e5e7eb;
}

.projects-stories-section .container {
    max-width: 900px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.2rem;
    color: #1d4ed8; /* blue accent */
    font-weight: 700;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #374151;
    margin-bottom: 15px;
}

.coming-soon {
    font-size: 1rem;
    color: #6b7280;
    margin-bottom: 40px;
}

.student-quote {
    font-size: 1.2rem;
    color: #111827;
    background: #fff;
    padding: 25px;
    border-left: 4px solid #1d4ed8;
    border-radius: 10px;
    max-width: 700px;
    margin: 0 auto;
    font-style: italic;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.quote-author {
    display: block;
    font-size: 0.95rem;
    color: #6b7280;
    margin-top: 10px;
    font-style: normal;
}
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}

.vision-card {
    background: linear-gradient(135deg, #f3f4f6, #ffffff);
    border-radius: 18px;
    padding: 30px 25px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    border: 1px solid #e5e7eb;
    position: relative;
    overflow: hidden;
}

.vision-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
}

.vision-card:nth-child(1) {
    background: linear-gradient(135deg, #e0f2fe, #ffffff);
}
.vision-card:nth-child(2) {
    background: linear-gradient(135deg, #ede9fe, #ffffff);
}
.vision-card:nth-child(3) {
    background: linear-gradient(135deg, #fef3c7, #ffffff);
}
.vision-card:nth-child(4) {
    background: linear-gradient(135deg, #dcfce7, #ffffff);
}

.vision-card .icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.vision-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 10px;
}

.vision-card p {
    font-size: 1rem;
    color: #374151;
}

.vision-subtext {
    font-size: 1.1rem;
    color: #4b5563; /* Muted dark gray */
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.vision-callout {
    background: linear-gradient(90deg, #fdf2f8, #f0fdf4);
    border-left: 6px solid #6366f1;
    padding: 20px 25px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 500;
    color: #1e293b;
    margin-top: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    text-align: center;
}

.vision-cards-section {
    margin-top:15px;
}
/* Responsive */
@media (max-width: 600px) {
    .ict-day-container {
        padding: 20px 15px;
    }

    .ict-day-title {
        font-size: 1.5rem;
    }

    .ict-day-subtitle,
    .ict-day-details {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .section-subtitle {
        text-align: left;
    }
    .coming-soon {
        text-align: left;
    }
    .our-vision-section {
        padding: 25px 5px;
    }
    .section-description {
        text-align: left;
        font-size: 1rem;
    }
    .ict-day-section {
        padding: 35px 10px;
    }
    .projects-stories-section {
        padding: 30px 5px;
    }
    .vision-subtext {
        text-align: left;
    }

    .ict-features li {
        flex: 1 1 100%;
        font-size: 14px;
    }
    .school-locations li {
        font-size: 15px;
    }
}

