.text_justify {
	text-align: justify;
}
.project-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.meta-box {
    margin-bottom: 15px;
}

.meta-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f9f9f9;
    padding: 15px 20px;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, background-color 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.meta-link:hover {
    background-color: #6421FF;
    color: white;
    transform: translateY(-5px);
}

.meta-link .meta-title {
    font-size: 18px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.meta-link .meta-arrow {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.meta-link:hover .meta-arrow {
    transform: translateX(5px);
}

.meta-link.active {
    background-color: #6421FF;
    color: white;
}

.meta-link.active .meta-title {
    color: white;
}

.meta-link.active .meta-arrow {
    color: white;
}

.meta-box {
    display: flex;
    align-items: stretch;
}

.meta-box a {
    display: block;
    width: 100%;
    height: 100%;
}

.meta-wrapper {
    display: flex;
    flex-direction: column; /* Stack items vertically */
}
.project-details-meta .meta-box:not(:first-child) {
	margin: 5px;
	padding: 5px;
}
.project-details-meta {
	padding: 10px;
}
