.about-section {
    background: #f5f5f5;
}

.about-tag {
    color: #d40000;
    font-weight: 600;
    font-size: 14px;
}

.about-title {
    font-size: 36px;
    font-weight: 700;
    color: #1d3557;
    margin-top: 10px;
    margin-bottom: 20px;
}

.about-subtitle {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

.about-text {
    font-size: 15px;
    line-height: 1.8;
    color: #444;
}

.about-img img {
    border-radius: 4px;
}

.faculty-section {
    padding: 80px 20px;
    background: #f7f7f7;
}

.container {
    max-width: 1200px;
    margin: auto;
}

.faculty-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

/* LEFT CONTENT */

.faculty-content {
    flex: 1;
}

.faculty-content h2 {
    font-size: 38px;
    margin-bottom: 20px;
    font-weight: 700;
}

.faculty-content h2 span {
    color: #c40000;
}

.faculty-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 15px;
}

/* IMAGE */

.faculty-image {
    flex: 1;
}

.faculty-image img {
    width: 100%;
    border-radius: 10px;
    display: block;
}

/* TABLET */

@media(max-width:992px) {

    .faculty-wrapper {
        gap: 30px;
    }

    .faculty-content h2 {
        font-size: 32px;
    }

}

/* MOBILE */

@media(max-width:768px) {

    .faculty-wrapper {
        flex-direction: column;
    }

    .faculty-content {
        text-align: center;
    }
}


.timeline-section {
    padding: 100px 0;
    position: relative;

    background-image: url("/static/images/bg-pattern.png");
    /* your image */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.timeline-container {
    position: relative;
    max-width: 1300px;
    margin: auto;
}

/* Center line */
.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    width: 4px;
    height: 100%;
    background: #ddd;
    transform: translateX(-50%);
}

/* Animated line */
.timeline-progress {
    width: 100%;
    height: 0;
    background: #b22222;
    transition: height 0.2s linear;
}

/* Timeline items */
.timeline-item {
    width: 50%;
    padding: 30px;
    position: relative;
}

/* .timeline-item.left {
    text-align: right;
} */

.timeline-item.right {
    margin-left: 50%;
}

.timeline-item h3 {
    text-align: center;
    font-size: 25px;
}

/* Cards */

.timeline-card {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.timeline-card img {
    width: 100%;
    border-radius: 5px;
    margin-bottom: 15px;
}

.timeline-card ul {
    font-size: 14px;
    padding-left: 18px;
}

.timeline-card ul li {
    margin-bottom: 6px;
}