/* HEADER STYLING */
.header_banner {
    background: linear-gradient(to right, #0f172a, #1e293b);
    color: white;
    text-align: center;
    padding: 80px 0;
}
.header_banner h1 {
    font-weight: bold;
}
.highlight {
    color: #22c55e;
    border-bottom: 2px solid #d07d01;
}

/* SIDEBAR STYLING */
.sidebar {
    padding-right: 20px; /* Add spacing to match screenshot */
}
.sidebar .list-group {
    border-radius: 10px;
    overflow: hidden;
    position: sticky;
    top: 100px;
}
.sidebar .list-group-item {
    border: none;
    font-weight: 600;
    padding: 12px 15px;
    position: relative;
}
/* Add horizontal line */
.sidebar .list-group-item:not(:last-child) {
    border-bottom: 1px solid #ddd; /* Light gray horizontal line */
}
/* Active menu item */
.sidebar .list-group-item.active {
    color: #28a745;
    border-left: 4px solid #28a745;
    background-color: #fff;
    font-weight: bold;
}
/* MAIN CONTENT AREA */
.project-section {
    background: #fff;
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 10px;
  /*  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);*/
}
.text-primary1{
    color: #3182EB;
font-family: Poppins;
font-size: 24px;
font-style: normal;
font-weight: 400;
line-height: 28px; /* 116.667% */
}

/* TITLE AND IMAGE INLINE */
.project-title {
    color: #071A43;
    font-family: Poppins;
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    display: flex;
    align-items: center;
    margin-bottom: 10px; 
}
.project-title img {
    width: 60px;
    margin-right: 10px;
}

/* DESCRIPTION STYLING */
.project-description {
    color: #404349;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    margin-left: 40px;
    margin-top: 10px; 
}

/* IMAGE CONTAINER */
.project-image-container {
    display: flex;
    justify-content: space-between;
    gap: 15px; /* Adds spacing between images */
    padding: 15px 0;
    margin-left: 40px;
}
.project-image-container img {
    width: 30%;
    border-radius: 10px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
    background-color: #f8f9fa;
    padding: 20px;
}
hr{
    background: rgba(83, 108, 157, 0.10);
    height: 1.6px;
    margin-left: 40px;
}
/* MOBILE RESPONSIVENESS */
@media (max-width: 768px) {
    .sidebar {
        margin-bottom: 20px;
    }
    .project-image-container {
        flex-direction: column;
        align-items: center;
    }
    .project-image-container img {
        width: 80%;
        margin-bottom: 15px;
    }
}
