﻿
/* Hero Section Styles */
.hero-section {
    background-image: url('/lib/images/mission vision.webp'); /* replace with your image */
    background-size: cover;
    background-position: center;
    height: 80vh;
    position: relative;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    background-color: rgba(0, 0, 0, 0.5); /* dark overlay for readability */
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-family: 'Segoe UI', sans-serif;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-primary {
    padding: 12px 25px;
    background-color: #ff6b00;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

    .btn-primary:hover {
        background-color: #e65a00;
    }
/* Fade-in animation */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1.2s ease-out forwards;
    animation-delay: 0.5s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/*================mission vision section================*/
.mission-vision-section {
    padding: 60px 20px;
    background-color: #f9f9f9;
}

.mv-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    text-align: center;
}

.mv-box {
    flex: 1 1 400px;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.mv-icon {
    width: 60px;
    height: 60px;
    background-color: #17b4a7;
    color: white;
    border-radius: 50%;
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.mv-box h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #111;
}

.mv-box p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .mv-container {
        flex-direction: column;
        gap: 20px;
    }
}

/*========core value section==========*/
.core-values-section {
    padding: 60px 20px;
    background-color: #fff;
    text-align: center;
}

.cv-container {
    max-width: 1089px;
    margin: 0 auto;
}
.cv-title {
    font-size: 32px;
    margin-bottom: 10px;
    color: #111;
}

.cv-intro {
    color: #666;
    font-size: 16px;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.cv-card {
    background-color: #f9f9f9;
    border-radius: 12px;
    padding: 30px 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

    .cv-card:hover {
        transform: translateY(-5px);
    }

.cv-icon {
    background-color: #17b4a7;
    color: #fff;
    font-size: 24px;
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cv-card h4 {
    font-size: 18px;
    color: #111;
    margin-bottom: 10px;
}

.cv-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
}
.cv-card {
    background-color: #f9f9f9;
    border-radius: 12px;
    padding: 30px 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    will-change: transform;
}

    .cv-card:hover {
        transform: scale(1.05);
        box-shadow: 0 8px 20px rgba(23, 180, 167, 0.3); /* Optional glow */
    }
    .cv-card:hover {
        animation: bubbleBounce 0.4s ease;
    }

@keyframes bubbleBounce {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.07);
    }

    100% {
        transform: scale(1.05);
    }
}

/*===========4a section=============*/
.learning-timeline-section {
    background-color: #fff;
    padding: 80px 20px;
    color: #333;
}

.timeline-heading {
    text-align: center;
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 60px;
}

.timeline-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 0;
}

    .timeline-wrapper::before {
        content: "";
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 4px;
        height: 100%;
        background-color: #27ae60;
        z-index: 1;
    }

.timeline-item {
    position: relative;
    width: 100%;
    margin: 40px 0;
}

.timeline-content {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: relative;
    z-index: 2;
}

.timeline-item.left .timeline-content {
    justify-content: flex-start;
}

.timeline-icon {
    width: 40px;
    height: 40px;
    background-color: #27ae60;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    box-shadow: 0 0 0 6px #fff;
}

.timeline-card {
    background-color: #f9f9f9;
    padding: 24px;
    border-radius: 8px;
    border: 1px solid #eee;
    width: 45%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-item.left .timeline-card {
    margin-right: auto;
    text-align: right;
}

.timeline-item.right .timeline-card {
    margin-left: auto;
    text-align: left;
}

.timeline-card:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.timep {
    text-align: center;
    margin-bottom: 33px;
    margin-top: -27px;
    font-size: medium;
}
/* Responsive */
@media (max-width: 768px) {
    .timeline-card {
        width: 90%;
        text-align: center !important;
    }

    .timeline-item.left .timeline-card,
    .timeline-item.right .timeline-card {
        margin: 0 auto;
    }

    .timeline-icon {
        left: 50%;
        transform: translateX(-50%);
    }
}


/*==============cta================*/
.cta-mission {
    background: linear-gradient(135deg, #4f46e5, #6d28d9); /* Indigo to Purple */
    color: #fff;
    text-align: center;
    padding: 80px 20px;
}

    .cta-mission h2 {
        font-size: 36px;
        margin-bottom: 20px;
        font-weight: 700;
    }

    .cta-mission p {
        font-size: 18px;
        max-width: 700px;
        margin: 0 auto 40px;
        line-height: 1.6;
        color: #e0e0ff;
    }

.cta-button {
    display: inline-block;
    padding: 14px 30px;
    background-color: #ffffff;
    color: #4f46e5;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}

    .cta-button:hover {
        background-color: #e0e7ff;
        color: #4338ca;
    }

@media (max-width: 600px) {
    .cta-mission h2 {
        font-size: 28px;
    }

    .cta-mission p {
        font-size: 16px;
    }
}