.container-fluid-about {
    max-width: 1200px;
    max-height: fit-content;
    margin: 40px auto;
    padding: 30px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-top: 150px;
}

.feature-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-card {
    transition: all 0.3s ease;
    padding: 0px;
    display: flex;
    padding-bottom: 10px;
    max-width: 100%;
    height: 150px;
    flex-direction: column;
    justify-content: space-between;
    background-color: rgba(252, 245, 232, 0.212);
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

.carousel {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Custom carousel height to match content */
.carousel-item img {
    object-fit: cover;
    height: 350px;
}

/* CSS untuk Roadmap yang lebih kompak dan beranimasi */
.roadmap-section {
    position: relative;
    padding: 20px 0;
    width: 70%;
}

.roadmap-timeline {
    position: relative;
    padding: 10px 0;
}

.roadmap-timeline::before {
    content: '';
    position: absolute;
    height: 100%;
    width: 3px;
    background: #00c6aa;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
}

.roadmap-item {
    position: relative;
    margin-bottom: 30px;
    display: flex;
    min-height: 80px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
}

.roadmap-item.animate {
    opacity: 1;
    transform: translateY(0);
}

.roadmap-dot {
    position: absolute;
    width: 18px;
    height: 18px;
    background-color: #00c6aa;
    border-radius: 50%;
    left: 50%;
    top: 15px;
    transform: translateX(-50%);
    z-index: 1;
    border: 3px solid white;
    box-shadow: 0 0 0 3px rgba(0, 198, 170, 0.3);
    transition: all 0.4s ease;
}

.roadmap-item:hover .roadmap-dot {
    transform: translateX(-50%) scale(1.2);
    background-color: #008e7a;
    box-shadow: 0 0 0 4px rgba(0, 198, 170, 0.5);
}

.roadmap-content {
    width: 42%;
    padding: 0 15px;
    position: relative;
}

.roadmap-content.left {
    margin-left: auto;
}

.roadmap-content.right {
    margin-right: auto;
}

.roadmap-card {
    background: white;
    padding: 15px;
    border-radius: 6px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: all 0.3s ease;
    border-top: 3px solid #00c6aa;
}

.roadmap-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.roadmap-content.left .roadmap-card::before {
    content: '';
    position: absolute;
    width: 15px;
    height: 15px;
    background: white;
    left: -7px;
    top: 15px;
    transform: rotate(45deg);
    box-shadow: -3px 3px 5px rgba(0, 0, 0, 0.05);
    border-left: 3px solid #00c6aa;
    border-bottom: 3px solid #00c6aa;
    border-top: 0;
    border-right: 0;
}

.roadmap-content.right .roadmap-card::before {
    content: '';
    position: absolute;
    width: 15px;
    height: 15px;
    background: white;
    right: -7px;
    top: 15px;
    transform: rotate(45deg);
    box-shadow: 3px -3px 5px rgba(0, 0, 0, 0.05);
    border-right: 3px solid #00c6aa;
    border-top: 3px solid #00c6aa;
    border-left: 0;
    border-bottom: 0;
}

.roadmap-date {
    display: inline-block;
    padding: 5px 12px;
    background-color: #00c6aa;
    color: white;
    border-radius: 15px;
    font-weight: bold;
    margin-bottom: 8px;
    font-size: 0.8rem;
}

.roadmap-card h5 {
    font-weight: bold;
    color: #333;
    margin-bottom: 8px;
    font-size: 1rem;
}

.roadmap-card p {
    color: #666;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.small-list {
    padding-left: 15px;
    margin-bottom: 0;
    font-size: 0.85rem;
}

.small-list li {
    margin-bottom: 3px;
    color: #555;
}

/* Animations for items */
.animate-item:nth-child(1) {
    animation-delay: 0.2s;
}

.animate-item:nth-child(2) {
    animation-delay: 0.4s;
}

.animate-item:nth-child(3) {
    animation-delay: 0.6s;
}

.animate-item:nth-child(4) {
    animation-delay: 0.8s;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .roadmap-timeline::before {
        left: 25px;
    }

    .roadmap-dot {
        left: 25px;
    }

    .roadmap-content {
        width: calc(100% - 50px);
        margin-right: 0 !important;
        padding: 0 10px;
    }

    .roadmap-content.left .roadmap-card::before,
    .roadmap-content.right .roadmap-card::before {
        left: -7px;
        right: auto;
        border: none;
        border-left: 3px solid #00c6aa;
        border-bottom: 3px solid #00c6aa;
    }
}

/* Animation keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.roadmap-item {
    animation: fadeInUp 0.6s ease forwards;
}

/* CSS untuk Daftar Perguruan Tinggi */
.universities-section {
    position: relative;
    padding: 20px 0;
    width: 90%;
    margin-bottom: 10px;
}

.university-card {
    padding-bottom: 20px;
    height: 150px;
    display: flex;
    width: 100%;
    max-width: 500px;
    background-color: white;
    border-radius: 5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    padding: 10px;
    cursor: pointer;
    position: relative;
    border-top: 3px solid #00c6aa;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.university-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.university-logo {
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f8f9fa;
    border-bottom: 1px solid #eee;
    height: 120px;
}

.university-logo img {
    max-width: 80px;
    max-height: 100%;
    object-fit: contain;
}

.university-info {
    padding: 15px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: left;
}

.university-info h4 {
    justify-content: center;
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 5px;
    color: #333;
}

.university-stats {
    display: flex;
    justify-content: space-around;
    margin-top: 10px;
    padding-top: 0px;
    border-top: 1px dashed #eee;
}

.stat-item {
    display: flex;
    flex-direction: column;
    padding: 10px;
    align-items: center;
}

.stat-number {
    font-size: 24px;
    font-weight: bold;
    color: #0056b3;
}

.stat-label {
    font-size: 0.75rem;
    color: #888;
}

.university-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 10;
}

.university-card:hover .university-overlay,
.university-card.show-overlay .university-overlay {
    opacity: 1;
    pointer-events: auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .university-card {
        flex-direction: column;
    }

    .university-logo {
        width: 100%;
        height: 150px;
        border-bottom: 1px solid #eee;
    }

    .university-info {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .universities-section {
        margin-left: 0;
        width: 100%;
        padding: 10px;
    }

    .university-card {
        max-width: 100%;
    }
}

/* Animation */
.universities-container {
    justify-content: center;
    align-items: center;
    opacity: 0;
    justify-content: center;
    transform: translateY(20px);
    animation: fadeIn 0.8s ease forwards;
    animation-delay: 0.2s;
    padding-bottom: 100px;
    gap: 5px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}