.text-justify {
    text-align: justify !important;
}
/* Horizontal Timeline */
.horizontal-timeline .items {
    border-top: 2px solid #e9ecef;
    position: relative;
    display: flex;
    justify-content: space-between;
    padding-top: 30px;
}
/* Timeline Items */
.horizontal-timeline .items .items-list {
    position: relative;
    text-align: center;
    flex: 1;
    
}

/* Dotted Line from Timeline to Cards */
.horizontal-timeline .items .items-list:before {
    content: "";
    position: absolute;
    height: 36px;
    border-right: 2px dashed #dee2e6;
    top: -36px;
    left: 50%;
    transform: translateX(-50%);
}

/* Timeline Dots */
.timeline-dot {
    width: 20px;
    height: 20px;
    background-color: white;
    border: 4px solid #0d6efd;
    border-radius: 50%;
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

/* Event Card */
.timeline-card {
    border: 3px solid #e9ecef;
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: 10px;    
    overflow: hidden;
    transition: transform 0.3s ease-in-out;
}

/* Hover Effect */
.timeline-card:hover {
    transform: scale(1.05);
}

/* Image on Top */
.timeline-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

/* Card Body */
.timeline-card .card-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 15px;
    border:1px;
}

/* Event Date Badge */
.event-date {
    display: inline-block;
    font-size: 0.9rem;
    padding: 5px 10px;
    border-radius: 5px;
    margin-bottom: 10px;
}

.bg-orange {    background-color: #FF8C42 !important;}
.bg-pastel-blue { background-color: #D4E8FF; color: #003C73; }       /* Soft Sky Blue & Deep Royal Blue */
.bg-pastel-purple { background-color: #E6CCFF; color: #5D1690; }     /* Light Lilac & Vibrant Purple */
.bg-pastel-yellow { background-color: #FFF8C9; color: #9B7500; }     /* Warm Lemon Yellow & Golden Brown */
.bg-pastel-pink { background-color: #FFC8DD; color: #9D1750; }       /* Baby Pink & Rich Raspberry */
.bg-pastel-green { background-color: #CFFFD6; color: #1B7335; }      /* Soft Mint Green & Deep Leaf Green */
.bg-pastel-orange { background-color: #FFE5B4; color: #B34700; }     /* Peach Cream & Warm Coral */
.bg-pastel-red { background-color: #FFA6A6; color: #7C0000; }        /* Soft Cherry Red & Classic Maroon */
.bg-pastel-teal { background-color: #B8E4D6; color: #045D56; }       /* Aqua Teal & Ocean Deep Green */

/* Card Styling */
.activity-card {
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    }
.activity-card:hover {
    transform: translateY(-5px);
}

/* Rounded Image Styling */
.rounded-img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border: 5px solid white;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}
