.mission, .vision {
    color: #ffffff;
    margin-bottom: 20px;
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
}

.mission {
    background-color: #1abc9c;
}

.vision {
    background-color: #3498db;
}

.icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.vision .icon {
    color: black;
}

.mission .icon {
    color: black;
}

.card {
    background-color: #ffffff;
    width: 90%;
    max-width: 500px;
    border-radius: 15px;
    padding: 30px 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.25);
}

.card h2 {
    font-size: 26px;
    margin: 0;
    color: black;
}

.card p {
    font-size: 18px;
    color: black;
    line-height: 1.6;
}

/* ------------------------------------ */
.timeline {
    position: relative;
    max-width: 1000px;
    margin: auto;
}

.timeline::before {
    content: '';
    position: absolute;
    width: 4px;
    background-color: #3498db;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: 20px 40px;
    box-sizing: border-box;
}

.timeline-item h2 {
    font-size: 22px;
    margin: 0;
    color: #3498db;
}

.timeline-item p {
    background-color: #ffffff;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    color: #555555;
    line-height: 1.6;
    margin: 10px 0;
}

.timeline-item .circle {
    position: absolute;
    width: 50px;
    height: 50px;
    background-color: #3498db;
    border-radius: 50%;
    color: #ffffff;
    text-align: center;
    line-height: 50px;
    font-size: 20px;
    font-weight: bold;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    top: 15px;
    z-index: 1;
}

.timeline-item.left {
    left: 0;
    text-align: right;
}

.timeline-item.left .circle {
    right: -25px;
}

.timeline-item.right {
    left: 50%;
    text-align: left;
}

.timeline-item.right .circle {
    left: -25px;
}

@media (max-width: 768px) {
    .timeline-item {
        width: 100%;
        text-align: center;
    }

    .timeline-item.left, .timeline-item.right {
        left: 0;
    }

    .timeline-item .circle {
        left: 50%;
        transform: translateX(-50%);
        right: auto;
        margin-bottom: 20px;
    }

    .timeline::before {
        left: 50%;
    }
}

/* -------------------------------------------------- */
.staircase {
    width: 100%;
    max-width: 1000px;
    position: relative;
    margin: auto;
}

.step {
    position: relative;
    width: 300px;
    background-color: #ffffff;
    padding: 20px 30px;
    margin-bottom: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.step:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.step .year {
    position: absolute;
    top: -40px;
    left: -40px;
    background-color: #3498db;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    color: #ffffff;
    text-align: center;
    line-height: 80px;
    font-size: 24px;
    font-weight: bold;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.step h2 {
    margin: 0;
    font-size: 22px;
    color: #333333;
    margin-bottom: 15px;
}

.step p {
    font-size: 16px;
    color: #555555;
    line-height: 1.6;
}

.staircase .step:nth-child(even) {
    margin-left: 150px;
}

.staircase .step:nth-child(odd) {
    margin-right: 150px;
}

@media (max-width: 768px) {
    .staircase .step {
        margin-left: 0;
        margin-right: 0;
    }

    .step .year {
        left: 50%;
        transform: translateX(-50%);
        top: -50px;
    }
}

/* -------------------------------------- */
.breadcrumb-container {
    position: relative;
    width: 100%;
    height: 460px;
    background: url("../slides/1.jpg") no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.breadcrumb-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
    border-radius: 0;
}

.breadcrumb-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 20px;
}

.breadcrumb-content h1 {
    font-size: 48px;
    margin: 0;
    margin-bottom: 15px;
    color: #ffffff;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 18px;
    background-color: #000000;
}

.breadcrumb a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: #f1c40f;
}

.breadcrumb i {
    color: #ffffff;
}

@media (max-width: 768px) {
    .breadcrumb-content h1 {
        font-size: 32px;
    }

    .breadcrumb {
        font-size: 16px;
    }

    .breadcrumb-container {

        height: 265px;
    }
}

/* ----------------------------- */
.teamcontainer {
            width: 90%;
            margin: 0 auto;
            padding: 50px 0;
        }

        .header {
            text-align: center;
            margin-bottom: 40px;
        }

        .header h1 {
            font-size: 32px;
            color: #3498db;
        }

        /* Flex container for CEO and 4 heads */
        .team-grid {
            display: flex;
            justify-content: space-between;
            gap: 20px;
            flex-wrap: wrap;
        }

        .team-card {
            background-color: #3498db;
            color: white;
            padding: 20px;
            border-radius: 8px;
            width: 230px;
            text-align: center;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            transition: background-color 0.3s ease;
        }

        .team-card h3 {
            margin: 0;
            font-size: 20px;
        }

        .team-card p {
            margin: 5px 0;
            font-size: 14px;
        }

        .team-card:hover {
            background-color: #2980b9;
            cursor: pointer;
        }

        .sub-team {
            margin-top: 20px;
            display: flex;
            flex-direction: column;
            gap: 10px;
            align-items: center;
        }

        .sub-team .team-card {
            background-color: #2980b9;
            width: 200px;
        }

        /* Responsive design */
        @media (max-width: 768px) {
            .team-grid {
                flex-direction: column;
                align-items: center;
            }
        }