.text-align-justify {
    text-align: justify;
}

.gradient-text {
    background: linear-gradient(15deg, #44AAB9 10%, #59e5fa 20%, #fff 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gradient-bg {
    /* background: linear-gradient(75deg, #001023 10%, #031c3b 90%); */
    background-color: #001023;
}

.ai-icon::before {
    content: "";
    display: inline-block;
    width: 88px;
    height: 88px;
    background: url(../images/icon_ai.png) center no-repeat;
    background-size: contain;
}

.dashboard-icon::before {
    content: "";
    display: inline-block;
    width: 88px;
    height: 88px;
    background: url(../images/icon_dashboard.png) center no-repeat;
    background-size: contain;
}

.crm-icon::before {
    content: "";
    display: inline-block;
    width: 88px;
    height: 88px;
    background: url(../images/icon_crm.png) center no-repeat;
    background-size: contain;
}

.text-white {
    color: #fff !important;
}

.text-white-l {
    color: rgba(255, 255, 255, .6);
}

.fixed-menu {
    position: fixed;
    top: 50%;
    right: -40px;
    /* 初始在畫面外 */
    width: 50px;
    height: 150px;
    transform: translateY(-50%);
    background-color: #5ae5fa;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    border-radius: 8px 0 0 8px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    opacity: 0;
    transition: right 0.4s ease, opacity 0.4s ease;
    pointer-events: none;
    /* 防止在隱藏時被點到 */
}

/* 當啟用顯示時，加入 .visible 類別 */
.fixed-menu.visible {
    right: 0;
    opacity: 1;
    pointer-events: auto;
}

.fixed-menu button {
    width: 30px;
    height: 30px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
    color: #fff;
    background: none;
    font-size: 20px;
}

.fixed-menu button:hover {
    color: #ffffff6d;
}

.col-sm-6 {
    width: 50%;
}