.slider-wrapper {
    width: 90%;
    height: 300px;
    margin-bottom: 100px;
}

.slider-item {
    height: 300px;
    background: linear-gradient(135deg, #e3f2fd, #fce4ec);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
}


/* Content alignment */
.content-section {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Paragraph width */
.content-text {
    max-width: 650px;
    text-align: center;
}

/* Heading animation */
.animated-heading {
    opacity: 0;
    transform: translateX(-50px);
    animation: slideInLeft 0.8s ease-out forwards;
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Read more */
.read-toggle {
    cursor: pointer;
    color: #0d6efd;
    font-weight: 500;
}

/* Button */
.join-btn {
    margin-top: 20px;
    padding: 10px 24px;
}
/* Wrapper that animates */
.more-wrapper {
    display: block;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.5s ease, opacity 0.4s ease;
}

/* Expanded state */
.more-wrapper.expanded {
    max-height: 300px; /* enough for text */
    opacity: 1;
}

/* Toggle link */
.read-toggle {
    cursor: pointer;
    color: #0d6efd;
    font-weight: 500;
}
