.max-size-800 {
    max-width: 800px;
    max-height: 800px;
    width: 100%; /* To fill available width */
    height: auto; /* To maintain aspect ratio */
}

.max-size-800 img {
    max-width: 100%;
    max-height: 100%;
}

.fill {
    min-height: 50vh;
}

.nav-link-active {
    border-width: 10px;
    border-bottom: #ff5e00 solid;
    margin-bottom: 5px;
}

.text-sm {
    font-size: 0.6rem;
}

.text-xs {
    font-size: 0.5rem;
}

.product {
    text-transform: uppercase;
    font-weight: bold;
}


.fixed-height-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.fixed-height-card .card-body {
    display: flex;
    flex-direction: column;
}

.fixed-height-card .card-body img {
    flex-shrink: 0;
}

.fixed-height-card .card-body h4 {
    flex-shrink: 0;
    margin-bottom: 1rem;
}

.fixed-height-card .card-body p {
    flex-grow: 1;
    margin-bottom: 1rem;
}

.fixed-height-card .card-body .more {
    flex-shrink: 0;
}

.fixed-height-card-2 {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.fixed-height-card-2 .card-body {
    flex-grow: 1;
}

.rounded-icon {
    width: 300px;
    height: 300px;
    object-fit: cover; 
    border-radius: 50%; 
  }
  
  /* Delete here */
  .timeline {
    position: relative;
    padding: 2rem 0;
}

/* Vertical bar in the center */
.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background-color: #FF5C00;
    transform: translateX(-50%);
}

.milestone {
    position: relative;
    margin-bottom: 3rem;
}

.milestone .milestone-content {
    width: 45%;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    border-radius: 10px;
}

.milestone-left {
    text-align: right;
}

.milestone-right {
    text-align: left;
}

.milestone-left .milestone-content {
    margin-right: 55%;
}

.milestone-right .milestone-content {
    margin-left: 55%;
}

/* Align milestone icons along the vertical bar */
.milestone .milestone-icon {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #FF5C00;
    color: white;
    padding: 15px;
    border-radius: 50%;
    z-index: 1;
}

.milestone .milestone-icon i {
    font-size: 24px;
}

@media (max-width: 768px) {
    .timeline::before {
        left: 10%;
        transform: none;
    }

    .milestone-left .milestone-content, 
    .milestone-right .milestone-content {
        width: 90%;
        margin-left: 20%;
        margin-right: 0;
        text-align: left;
    }

    .milestone .milestone-icon {
        left: 10%;
        transform: translate(-50%, -50%);
    }
}