﻿/* ===== Technology Page ===== */

.technology-wrapper {
    max-width: 980px;
    margin: auto;
    padding: 40px 20px;
    font-family: "Segoe UI", Arial, sans-serif;
    line-height: 1.7;
    color: #222;
}

/* Header */
.technology-header h1 {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #0d2e55;
}

.technology-intro {
    font-size: 1.15rem;
    color: #444;
    max-width: 720px;
}

/* Sections */
.technology-section {
    margin-top: 50px;
}

    .technology-section h2 {
        font-size: 1.6rem;
        margin-bottom: 18px;
        font-weight: 600;
        color: #0f3d7d;
    }

/* Bullet List */
.technology-bullets {
    list-style: disc;
    padding-left: 24px;
}

    .technology-bullets li {
        margin-bottom: 8px;
        font-size: 1rem;
    }

/* Image box */
.technology-imgbox {
    text-align: center;
    margin-bottom: 25px;
}

    .technology-imgbox img {
        width: 100%;
        max-width: 680px;
        border-radius: 8px;
    }

    .technology-imgbox h3 {
        margin-top: 10px;
        font-size: 1.1rem;
        color: #333;
    }

/* CTA */
.technology-cta {
    padding-top: 40px;
    border-top: 1px solid #ccc;
    text-align: center;
}

.technology-btn {
    display: inline-block;
    padding: 12px 32px;
    background: #0062d9;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    margin-top: 12px;
    font-size: 1.05rem;
    transition: 0.3s;
}

    .technology-btn:hover {
        background: #004fae;
        box-shadow: 0 6px 16px rgba(0,0,0,0.15);
    }

/* ===== 滑入動畫（與 Services 一樣，但 class 分開） ===== */

.technology-animate {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .8s ease, transform .8s ease;
}

    .technology-animate.active {
        opacity: 1;
        transform: translateY(0);
    }

.technology-img-animate {
    opacity: 0;
    transform: scale(0.97);
    transition: opacity .9s ease, transform .9s ease;
}

    .technology-img-animate.active {
        opacity: 1;
        transform: scale(1);
    }
