body{font-family: "Arial","微軟正黑體";background: #FFF; }
button:focus{outline:none}
.container{position: relative;max-width: 80%;}
a:hover{text-decoration: none;}
.course-name:hover{text-decoration: none;}
ul{margin-left: -3%;}
p{font-size: 20px;}
h3{display: flex;align-items: center;justify-content: center;font-size: 25px;font-weight: 400;}
h4{line-height: 1.8;text-align: center;}
h6{font-size: 1.8rem;}
section#form {padding:50px 30px !important;background: linear-gradient(90deg, #008D97, #00CCBB);}
form {margin: 0;}
/* First */


body {
    font-family: 'Noto Sans TC', sans-serif;
    background-color: #f8fafc;
    color: #334155;
    line-height: 1.8;
}
a:hover { text-decoration: none; }
.section-padding { padding: 80px 0; }
.section-padding-sm { padding: 64px 0; }
.bg-slate-900 { background-color: #0f172a; }
.bg-slate-800 { background-color: #1e293b; }
.bg-slate-100 { background-color: #f1f5f9; }
.bg-slate-50 { background-color: #f8fafc; }
.bg-amber-50 { background-color: #edf8f7;}
.bg-green-main { background-color: #00874e; }
.text-slate-900 { color: #0f172a; }
.text-slate-800 { color: #1e293b; }
.text-slate-700 { color: #334155; }
.text-slate-600 { color: #475569; }
.text-slate-500 { color: #64748b; }
.text-slate-400 { color: #94a3b8; }
.text-yellow-main { color: #eab308; }
.text-green-main { color: #00a29a; }
.text-white { color: #ffffff; }
.text-cyan-main { color: #06b6d4; }
.font-black { font-weight: 900; }
.font-bold { font-weight: 700; }
.tracking-wide { letter-spacing: .08em; }
.tracking-widest { letter-spacing: .16em; }
.rounded-xl { border-radius: 1rem; }
.rounded-2xl { border-radius: 1.25rem; }
.shadow-soft { box-shadow: 0 10px 30px rgba(15, 23, 42, .10); }
.shadow-strong { box-shadow: 0 20px 45px rgba(15, 23, 42, .18); }
.title-line {
    width: 64px;
    height: 4px;
    background: #eab308;
    margin: 16px auto 0;
}
.title-line.green { background: #00874e; }

/* Hero */
.hero {
    position: relative;
    min-height: 600px;
    height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: #0f172a;
}
.hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .5;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(15, 23, 42, .92), rgba(15, 23, 42, .42));
}
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.hero-label {
    display: inline-block;
    padding: 4px 16px;
    margin-bottom: 24px;
    border-left: 4px solid #eab308;
    background: rgba(255,255,255,.10);
    color: #facc15;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .16em;
}
#visual h1 {
    color: #fff;
    font-size: 60px;
    line-height: 1.25;
    font-weight: 900;
    margin-bottom: 24px;
}
.gradient-text {
    color: #facc15;
    background: linear-gradient(to right, #facc15, #fef08a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-lead {
    max-width: 760px;
    color: #FFF;
    font-size: 20px;
    line-height: 1.9;
    margin-bottom: 32px;
}
.btn-hero {
    display: inline-flex;
    align-items: center;
    padding: 12px 32px;
    border-radius: 999px;
    background: #00a29a;;
    color: #FFF;
    font-weight: 800;
    box-shadow: 0 10px 25px rgba(234, 179, 8, .3);
    transition: all .25s ease;
}
.btn-hero:hover {
    background: #facc15;
    color: #0f172a;
    transform: translateY(-2px);
}



/* 主視覺 */
header#visual {
  position: relative;
  padding: 0;
  margin: 0;
  background-color: #212836;
  overflow: hidden;
  height: 100vh;
  display: flex;
  align-items: center;
}

/* 背景影片 */
header#visual .bg-video {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;

  width: 100%;
  height: 100%;
  object-fit: cover;

  opacity: .6;
}

/* 遮罩 */
header#visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(15, 23, 42, .92),rgba(15, 23, 42, 0) 15%, rgba(15, 23, 42, 0));
  /*background: linear-gradient(to bottom, rgba(0,141,151,0.87) 0%,rgba(2, 4, 4, 0.34) 15%,rgba(0,204,201,0.24) 100%);*/
  z-index: 1;
}

/* SVG 標題圖 */
header#visual .header-title {
  width: 50%;
  margin: 0 auto;
  cursor: pointer;
  position: relative;
  z-index: 3;
  opacity: .9;
  display: block;

  /* 讓 SVG 上下置中 */
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

header#visual .header-title img {
  width: 100%;
  display: block;
}

/* 單元一來賓介紹 */
.profile-section {
  background: linear-gradient(90deg, #F8FFFD, #BCFBF5);
  padding: 24px 30px;
}

.profile-box {
  background: #fff;
  position: relative;
  min-height: 350px;
}

.profile-title-box {
  background: #008D97;
  height: 350px;
  display: flex;
  align-items: center;
  padding-left: 88px;
  position: relative;
}

.profile-title-box h2 {
  color: #FFF;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 1px;
  margin: 0;
}

.profile-line {
  width: 7px;
  height: 220px;
  background: #e5a900;
  position: absolute;
  left: 0;
  top: 65px;
}

.profile-photo {
  margin-left: -60px;
  position: relative;
  z-index: 2;
}

.profile-photo img {
  width: 310px;
  height: 222px;
  object-fit: cover;
  display: block;
}

.profile-content {
  padding: 0 95px 0 35px;
}

.profile-content p {
  line-height: 2.1;
  letter-spacing: 1px;
  color: #222;
  margin: 0;
}
/*Q&A*/
#QA{
  background: url("../images/QA_BG.jpg") no-repeat center;
  background-size: cover;
  background-attachment: fixed;
}
/* 李知遠談初入職場的技術挫折 */
.quote-photo-row {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 32px;
}

.quote-photo-row .quote-box {
  flex: 1;
  margin-bottom: 0;
}

.quote-side-photo {
  flex: 0 0 220px;
}

.quote-side-photo img {
  width: 220px;
  object-fit: cover;
  display: block;
}

/* 右圖 / 左圖微調 */
.photo-right .quote-side-photo {
  margin-left: 6px;
}

.photo-left .quote-side-photo {
  margin-right: 6px;
}


/* 手機版 */
@media (max-width: 767px) {
  .quote-photo-row {
    flex-direction: column;
    gap: 18px;
  }

  .photo-left .quote-side-photo {
    order: -1;
  }

  .quote-side-photo {
    flex: none;
    width: 180px;
  }
  .quote-side-photo img {
  display: none;
  }
}


/* 手機版 */
@media (max-width: 767px) {
  .profile-section {
    padding: 20px 15px;
  }

  .profile-box {
    min-height: auto;
  }

  .profile-title-box {
    height: auto;
    padding: 35px 25px 25px 45px;
  }

  .profile-title-box h2 {
    font-size: 26px;
  }

  .profile-line {
    width: 6px;
    height: 90px;
    top: 25px;
  }

  .profile-photo {
    margin-left: 0;
    padding: 25px;
  }

  .profile-photo img {
    width: 100%;
    height: auto;
  }

  .profile-content {
    padding: 0 25px 35px;
  }

  .profile-content p {
    font-size: 15px;
    line-height: 1.9;
  }
}


/* Cards */
.profile-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(15, 23, 42, .10);
    height: 100%;
}
.profile-img-wrap {
    position: relative;
    min-height: 280px;
    background: #e2e8f0;
}
.profile-img-wrap img,
.cover-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.profile-content { padding: 32px; }

/* Journey */
.journey-section {
    position: relative;
    background-color: #0f172a;
    color: #fff;
    overflow: hidden;
}
.journey-bg {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1517245386807-bb43f82c33c4?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') center/cover no-repeat;
    opacity: .10;
}
.journey-card {
    position: relative;
    background: #fff;
    color: #1e293b;
    padding: 48px 32px 32px;
    border-radius: .75rem;
    box-shadow: 0 20px 45px rgba(0,0,0,.25);
    margin-top: 48px;
    height: calc(100% - 48px);
}
.journey-no {
    position: absolute;
    top: -42px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}
.journey-no span {
    display: block;
    color: #fff;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 6px;
}
.journey-dot {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #eab308;
    border: 4px solid #0f172a;
    box-shadow: 0 4px 10px rgba(0,0,0,.3);
    margin: 0 auto;
}
.tag-yellow {
    display: inline-block;
    padding: 3px 16px;
    border-radius: .25rem;
    background: #eab308;
    color: #fff;
    font-weight: 800;
}

/* Q&A */
.talk-cover {
    min-height: 250px;
    background: url('https://images.unsplash.com/photo-1497215728101-856f4ea42174?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80') center/cover no-repeat;
}
.talk-title {
    background: #eab308;
    color: #fff;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.glass-label {
    display: inline-block;
    width: max-content;
    max-width: 100%;
    padding: 4px 12px;
    border-radius: .25rem;
    background: rgba(255,255,255,.20);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 16px;
}
.qa-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 1.25rem;
    padding: 48px;
    margin-bottom: 48px;
    overflow: hidden;
}
.quote-box {
    padding: 24px;
    border-radius: .5rem;
    margin-top: 24px;
}
.quote-box.slate {
    background: #FFF;
    border-left: 4px solid #00a29a;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.quote-box.yellow {
    background: #fefce8;
    border-left: 4px solid #eab308;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.quote-box.red {
    background: #edf8f7;
    color: #00a29a;
    margin-left: 44px;
}
.avatar-dot {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 32px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    margin-right: 12px;
    font-weight: 800;
}
.avatar-dot.slate { background: #e2e8f0; color: #475569; }
.avatar-dot.yellow { background: #fef08a; color: #854d0e; }
.indent-text { margin-left: 44px; }

/* Numbers */
.number-section {
    background: linear-gradient(90deg, #008D97, #00CCBB);
    color: #fff;
}
.number-box {
    padding: 32px 24px;
}
.number-box + .number-box {
    border-left: 1px solid rgba(255,255,255,.3);
}
.number-title {
    display: inline-block;
    padding: 0 32px 8px;
    border-bottom: 1px solid rgba(255,255,255,.3);
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 16px;
}
.number-main {
    display: flex;
    align-items: baseline;
    justify-content: center;
    color: #fff;
    font-size: 72px;
    line-height: 1;
    font-weight: 900;
}
.number-main span {
    font-size: 60px;
    margin-left: 4px;
    color: #F98938;
}

/* 數字跑 */
.number-box {
    opacity: 0;
    transform: translateY(24px);
    transition: all .7s ease;
}

.number-box.is-show {
    opacity: 1;
    transform: translateY(0);
}

.number-box:nth-child(2) {
    transition-delay: .15s;
}

/* Table */
.compare-table-wrap {
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    overflow: auto;
    box-shadow: 0 15px 35px rgba(15,23,42,.12);
}
.compare-table {
    min-width: 800px;
    margin-bottom: 0;
}
.compare-table th,
.compare-table td {
    padding: 16px;
    vertical-align: middle;
    border-color: #e2e8f0 !important;
}
.compare-table thead th {
    font-weight: 800;
    border-bottom-width: 1px;
}
.th-green { background: #00874e; color: #fff; }
.th-yellow { background: #eab308; color: #0f172a; }
.td-green { background: rgba(220, 252, 231, .5); }
.td-yellow { background: rgba(254, 252, 232, .65); }

/* 強效考科配置 */
.table-wrap{background:#fff;border-radius:28px;box-shadow:0 22px 55px rgba(11,42,73,.08);padding:18px;overflow:auto;}
.compare-table,.exam-table{min-width:840px;margin:0;}
.compare-table th,.compare-table td,.exam-table th,.exam-table td{vertical-align:middle;border-color:#dfe7ef;padding:18px;}
.compare-table thead th,.exam-table thead th{background:#071b33;color:#fff;font-weight:900;border-color:#071b33;}
.compare-table tbody th{background:#f8fbff;font-weight:900;color:#0e3b66;}
.highlight-col{background:#fff9ec;font-weight:700;}
.exam-table .must{background:#f26b2c;color:#fff;font-weight:900;text-align:center;}
.exam-table .choose{background:#008D97;color:#fff;font-weight:900;text-align:center;}
.course-name {
    font-weight: 900;
    color: #2b7378;
    text-decoration: underline;
}
/* Course */
.notice-box {
    background: #fff;
    border-left: 4px solid #eab308;
    border-radius: 1rem;
    padding: 28px;
    box-shadow: 0 10px 25px rgba(15,23,42,.08);
}
.course-card {
    height: 100%;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(15,23,42,.10);
}
.course-head {
    background: #00bfa5;
    color: #fff;
    padding: 24px;
}
.course-badge {
    display: inline-block;
    background: rgba(255,255,255,.2);
    color: #fff;
    padding: 3px 8px;
    border-radius: .25rem;
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 8px;
}
.elective-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: .75rem;
    overflow: hidden;
    box-shadow: 0 8px 22px rgba(15,23,42,.08);
    margin-bottom: 24px;
}
.elective-head {
    background: #26a69a;
    color: #fff;
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.elective-body { padding: 20px; }
.hint-box {
    display: inline-block;
    background: #fef3c7;
    color: #92400e;
    padding: 14px 24px;
    border-radius: .5rem;
    font-weight: 800;
}

/* Final */
.ccie-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(90deg, #008D97, #00CCBB);
    color: #fff;
}
.stage-card {
    position: relative;
    background: rgba(30,41,59,.85);
    border: 1px solid #334155;
    border-radius: .75rem;
    padding: 32px;
    height: 100%;
}
.stage-label {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: #eab308;
    color: #0f172a;
    padding: 4px 16px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 800;
    white-space: nowrap;
}
.mentor-wrap {
    margin-top: 64px;
    padding: 5px;
    border-radius: 1.25rem;
    background: linear-gradient(135deg, #eab308, #ca8a04);
    box-shadow: 0 22px 45px rgba(0,0,0,.25);
}
.mentor-inner {
    background: #0f172a;
    border-radius: 1rem;
    padding: 48px;
    position: relative;
    overflow: hidden;
}
.quote-mark {
    position: absolute;
    top: 0;
    right: 20px;
    color: rgba(255,255,255,.08);
    font-size: 160px;
    line-height: 1;
    font-family: Georgia, serif;
}
/* Cisco原廠參考資料按鈕 */
.download-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 405px;
  max-width: 100%;
  padding: 16px 28px;
  border: 1px solid #fff;
  border-radius: 50px;
  background: transparent;
  color: #fff;
  font-weight: bold;
  font-size: 18px;
  letter-spacing: 0.05em;
  cursor: pointer;
  outline: none;
}

.download-btn:hover {
  background: rgba(255, 255, 255, 0.12);
}

.download-btn:focus {
  outline: none;
}

.btn-file-icon {
  font-size: 26px;
  line-height: 1;
}

.btn-text {
  flex: 1;
  text-align: center;
}


/* 右邊箭頭 */
.btn-arrow {
  position: relative;
  width: 22px;
  height: 14px;
  display: inline-block;
}

.btn-arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 18px;
  height: 1.5px;
  background: #fff;
  transform: translateY(-50%);
}

.btn-arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 8px;
  height: 8px;
  border-top: 1.5px solid #fff;
  border-right: 1.5px solid #fff;
  transform: translateY(-50%) rotate(45deg);
}


/* Video */
.video-card {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 1.25rem;
    border: 4px solid #22d3ee;
    box-shadow: 0 12px 30px rgba(15,23,42,.14);
    transition: all .25s ease;
    margin-bottom: 24px;
}
.video-card:hover { transform: translateY(-5px) scale(1.02); }
.video-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: all .25s ease;
}
.video-card:hover img { opacity: .82; }

.border-emerald { border-color: #34d399; }
.border-orange { border-color: #fb923c; }
.bg-cyan { background: #06b6d4; }
.bg-emerald { background: #10b981; }
.bg-orange { background: #f97316; }

footer {
    background: #0f172a;
    color: #94a3b8;
    padding: 32px 0;
    border-top: 1px solid #1e293b;
    font-size: 14px;
}
@media (max-width: 767px) {

  header#visual {
    height: 100vh;
    min-height: 520px;
  }

  header#visual .bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  header#visual .header-title {
    width: 82%;
    height: 100vh;
    margin: 0 auto;
    padding: 0 15px;

    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-30px);
  }

  header#visual .header-title img {
    width: 100%;
    max-width: 420px;
  }
  #visual h1 {
    font-size: 30px;
    padding-top:15%;
  }
  .hero-lead {
      margin-bottom: 0;
  }

}

@media (max-width: 991px) {
    .hero h1 { font-size: 48px; }
}
@media (max-width: 767px) {
    
    .section-padding { padding: 56px 0; }
    .section-padding-sm { padding: 48px 0; }
    .hero {
        height: auto;
        min-height: 620px;
        padding: 90px 0;
    }
    .hero h1 { font-size: 34px; }
    .hero-lead { font-size: 17px; }
    .profile-img-wrap { min-height: 240px; }
    .qa-card { padding: 28px 20px; }
    .quote-box { padding: 20px; }
    .quote-box.red,
    .indent-text { margin-left: 0; }
    .number-box + .number-box {
        border-left: 0;
        border-top: 1px solid rgba(255,255,255,.3);
    }
    .number-main { font-size: 58px; }
    .mentor-inner { padding: 32px 20px; }
    .display-mobile-h2 { font-size: 30px; }
    .download-btn {
        width: 100%;
        padding: 16px 40px;
    }
    .mentor-inner {
        padding: 32px 24px;
    }
    .quote-mark {
        font-size: 110px;
        right: 12px;
    }

    .mentor-inner .h4 {
        font-size: 20px;
    }    
}



    
/* btnLink */
section#btnLink{padding: 10% 0 80px 0;position: relative;}
section#btnLink:before {content: "";width: 100%;height: 100%;position: absolute;top: 0;left: 0;background: url("../images/UCOM.jpg") no-repeat center;background-size: cover;z-index: 0;background-attachment: fixed;
}
section#btnLink button{width: 100%; margin: 15px auto 25px auto; display: block;background:#2F7DE1;color:#FFF; border: 4px solid #FFF; border-radius: 50px; padding: 13px 20px; font-weight: bold; font-size:1.6rem;height: 72px;}
section#btnLink button:hover{transform: translateY(5px);opacity: 0.6;}
section#btnLink .row{margin: 0;}

      
@media(min-width: 1441px){.container {max-width: 1320px;}}

@media(max-width: 767px){

.container{max-width: 100%;}
/* visual */
header#visual{height: 35vh;}

        
/* First */

/* btnLink */
#btnLink .card{flex-direction: column;}
section#btnLink .btn{width: 100%;}
section#btnLink button{font-size: 1.2rem;}

        
}
      