@charset "UTF-8";
body {
  font-family: "Microsoft JhengHei", "PingFang TC", sans-serif;
  color: #333333;
  line-height: 1.6;
}

.navbar {
  background: url("../images/navbar/img-1.jpg");
  background-size: 350px auto;
  background-repeat: repeat;
  background-position: center;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.navbar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.317);
  z-index: 0;
}
.navbar .container {
  position: relative;
  z-index: 1;
}
.navbar .navbar-brand {
  font-weight: bold;
  color: #ff6b00;
}
.navbar .navbar-brand img {
  transition: transform 0.3s ease;
  height: 60px;
}
.navbar .navbar-brand img:hover {
  transform: scale(1.05);
}
.navbar .nav-link {
  color: #333333;
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}
.navbar .nav-link:hover {
  color: #ff6b00;
}

@media (max-width: 768px) {
  .navbar {
    background: url("../images/navbar/img-1.jpg");
    background-size: 350px auto;
    background-repeat: repeat;
    background-position: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  }
  .navbar::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.317);
    z-index: 0;
  }
  .navbar .container {
    position: relative;
    z-index: 1;
  }
  .navbar .navbar-brand {
    font-weight: bold;
    color: #ff6b00;
  }
  .navbar .navbar-brand img {
    transition: transform 0.3s ease;
    height: 45px;
  }
  .navbar .navbar-brand img:hover {
    transform: scale(1.05);
  }
  .navbar .nav-link {
    color: #333333;
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
  }
  .navbar .nav-link:hover {
    color: #ff6b00;
  }
}
.hero-section {
  background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url("../images/banner/img-1.jpg");
  background-size: cover;
  background-position: center;
  padding-top: 80px;
}
.hero-section h1 {
  color: #ff6b00;
  margin-bottom: 1rem;
}
.hero-section .btn-primary {
  background-color: #ff6b00;
  border-color: #ff6b00;
}
.hero-section .btn-primary:hover {
  background-color: #cc5600;
  border-color: #cc5600;
}

#about .about-content h3 {
  color: #ff6b00;
  border-bottom: 2px solid #ffd700;
  padding-bottom: 0.5rem;
  display: inline-block;
}

#services .card {
  overflow: hidden;
  border: none;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
#services .card .img-box {
  width: 100%;
  height: 250px;
  background-color: #ff6b00;
  display: flex;
  justify-content: center;
  align-items: center;
}
#services .card .img-box img {
  width: 60%;
  -o-object-fit: cover;
     object-fit: cover;
  filter: invert(1);
}
#services .card:hover {
  transform: translateY(-5px);
}
#services .card .card-title {
  color: #ff6b00;
  border-bottom: 2px solid #ffd700;
  padding-bottom: 0.5rem;
  display: inline-block;
}

@media (max-width: 768px) {
  #services .card {
    overflow: hidden;
    border: none;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
  }
  #services .card .img-box {
    width: 100%;
    height: 150px;
    background-color: #ff6b00;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #services .card .img-box img {
    width: 60%;
    -o-object-fit: cover;
       object-fit: cover;
    filter: invert(1);
  }
  #services .card:hover {
    transform: translateY(-5px);
  }
  #services .card .card-title {
    color: #ff6b00;
    border-bottom: 2px solid #ffd700;
    padding-bottom: 0.5rem;
    display: inline-block;
  }
}
#process .process-steps {
  position: relative;
}
#process .process-steps::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 30px;
  width: 2px;
  background: #ffd700;
  opacity: 0.3;
}
#process .process-step {
  position: relative;
  padding-left: 80px;
  margin-bottom: 3rem;
}
#process .process-step:last-child {
  margin-bottom: 0;
}
#process .process-step .step-number {
  position: absolute;
  left: 0;
  top: 0;
  width: 60px;
  height: 60px;
  background: #ff6b00;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
}
#process .process-step .step-number:hover {
  background: #ffd700;
  color: #333333;
}
#process .process-step .step-content {
  background: rgb(255, 255, 235);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
#process .process-step .step-content h3 {
  color: #ff6b00;
  margin-bottom: 1rem;
}

#teachers .teacher-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
#teachers .teacher-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
#teachers .teacher-card .teacher-image {
  overflow: hidden;
  height: 450px;
  position: relative;
}
#teachers .teacher-card .teacher-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  transition: transform 0.3s ease;
}
#teachers .teacher-card .teacher-image:hover img {
  transform: scale(1.05);
}
#teachers .teacher-card .teacher-image .teacher-name-box {
  position: absolute;
  bottom: 2rem;
  right: -3.5rem;
  z-index: 5;
  display: flex;
  flex-direction: column;
  transform: rotate(-5deg);
  align-items: center;
}
@media (max-width: 768px) {
  #teachers .teacher-card .teacher-image .teacher-name-box {
    right: -3rem;
  }
}
#teachers .teacher-card .teacher-image .teacher-name-box .teacher-name {
  color: white;
  background: #ff6b00;
  font-size: 2rem;
  font-weight: bold;
  display: inline-block;
  padding: 0.5rem 6rem 0.5rem 6rem;
  margin-bottom: 0;
  text-align: center;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  /* 定義緞帶形狀 */
  -webkit-clip-path: polygon(10% 0%, 90% 0%, 80% 50%, 90% 100%, 10% 100%, 20% 50%);
          clip-path: polygon(10% 0%, 90% 0%, 80% 50%, 90% 100%, 10% 100%, 20% 50%);
}
@media (max-width: 768px) {
  #teachers .teacher-card .teacher-image .teacher-name-box .teacher-name {
    font-size: 1.5rem;
    padding: 0.5rem 6rem 0.5rem 6rem;
  }
}
#teachers .teacher-card .teacher-image .teacher-name-box .teacher-education {
  color: #ff6b00;
  font-size: 1.1rem;
  font-weight: 500;
  background: white;
  padding: 0rem 1rem;
  border-radius: 2rem;
  margin-bottom: 0;
  display: inline-block;
  margin-bottom: -0.15rem;
  z-index: 3;
  text-align: center;
  flex-grow: 0;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
@media (max-width: 768px) {
  #teachers .teacher-card .teacher-image .teacher-name-box .teacher-education {
    font-size: 1rem;
  }
}
#teachers .teacher-card .teacher-info {
  padding: 2rem;
  position: relative;
}
#teachers .teacher-card .teacher-info .teacher-section {
  margin-bottom: 1.5rem;
}
#teachers .teacher-card .teacher-info .teacher-section h4 {
  background: #ff6b00;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 0.8rem;
  display: inline-block;
  margin-bottom: 0;
}
#teachers .teacher-card .teacher-info .teacher-section hr {
  margin-top: 0;
  border: 1px solid #ff6b00;
  opacity: 0.8;
}
#teachers .teacher-card .teacher-info .teacher-section ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
#teachers .teacher-card .teacher-info .teacher-section ul li {
  position: relative;
  margin-bottom: 0.5rem;
  color: #555;
  font-size: 0.95rem;
}
#teachers .teacher-card .teacher-info .teacher-section ul li:last-child {
  margin-bottom: 0;
}
#teachers .teacher-card .teacher-info .teacher-section ul li.experience-item {
  display: flex;
  align-items: center;
  margin-bottom: 0.8rem;
  font-size: 1.05rem;
  border-bottom: 1px solid #ddd;
  padding-bottom: 0.5rem;
}
#teachers .teacher-card .teacher-info .teacher-section ul li.experience-item .institution {
  flex: 2;
  color: #555;
  font-weight: 500;
}
#teachers .teacher-card .teacher-info .teacher-section ul li.experience-item .position {
  flex: 1;
  color: #ff6b35;
  font-weight: 600;
  text-align: left;
}
@media (max-width: 768px) {
  #teachers .teacher-card .teacher-info .teacher-section ul li.experience-item .position {
    text-align: right;
  }
}

@media (max-width: 768px) {
  #teachers .teacher-card .teacher-image {
    height: 350px;
  }
  #teachers .teacher-card .teacher-info {
    padding: 1.5rem;
  }
  #teachers .teacher-card .teacher-info .teacher-name {
    font-size: 1.5rem;
  }
  #teachers .teacher-card .teacher-info .teacher-education {
    font-size: 1rem;
  }
  #teachers .teacher-card .teacher-info .teacher-section h4 {
    font-size: 1.1rem;
  }
  #teachers .teacher-card .teacher-info .teacher-section ul li {
    font-size: 0.9rem;
  }
}
#verification {
  padding: 8rem 0;
}
#verification .verification-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
#verification .verification-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
#verification .verification-card.verification-card-full {
  justify-content: center;
  text-align: center;
}
#verification .verification-card .verification-icon {
  width: 60px;
  height: 60px;
  background: #ff6b00;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
#verification .verification-card .verification-icon i {
  color: white;
  font-size: 1.5rem;
}
#verification .verification-card .verification-content {
  flex: 1;
}
#verification .verification-card .verification-content h3 {
  color: #ff6b00;
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 1rem;
  border-bottom: 2px solid #ffd700;
  padding-bottom: 0.5rem;
  display: inline-block;
}
#verification .verification-card .verification-content p {
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 0;
}
#verification .verification-card .verification-content p .price-highlight {
  color: #ff6b00;
  font-weight: bold;
  font-size: 1.2rem;
}

@media (max-width: 768px) {
  #verification {
    padding: 4rem 0;
  }
  #verification .verification-card {
    padding: 1.5rem;
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  #verification .verification-card .verification-icon {
    width: 50px;
    height: 50px;
  }
  #verification .verification-card .verification-icon i {
    font-size: 1.2rem;
  }
  #verification .verification-card .verification-content h3 {
    font-size: 1.2rem;
  }
  #verification .verification-card .verification-content p {
    font-size: 0.95rem;
  }
}
.verification-levels .level-section {
  margin-bottom: 3rem;
}
.verification-levels .level-section:last-child {
  margin-bottom: 0;
}
.verification-levels .level-section .level-header {
  margin-bottom: 1.5rem;
  text-align: center;
}
.verification-levels .level-section .level-header h4 {
  color: #ff6b00;
  font-size: 1.5rem;
  font-weight: bold;
  display: inline-block;
  padding: 0.8rem 2rem;
  background: linear-gradient(135deg, rgba(255, 107, 0, 0.1), rgba(255, 215, 0, 0.1));
  border-radius: 2rem;
  border: 2px solid #ff6b00;
  margin-bottom: 0;
}
.verification-levels .level-section .level-header h4 i {
  margin-right: 0.5rem;
  color: #ffd700;
}
.verification-levels .level-section .level-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid transparent;
}
.verification-levels .level-section .level-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border-color: #ff6b00;
}
.verification-levels .level-section .level-card .level-number {
  background: #ff6b00;
  color: white;
  font-size: 1.2rem;
  font-weight: bold;
  text-align: center;
  padding: 0.8rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  box-shadow: 0 2px 8px rgba(255, 107, 0, 0.3);
}
.verification-levels .level-section .level-card .level-skills .skill-item {
  background: #f8f9fa;
  color: #555;
  padding: 0.5rem 0.8rem;
  margin-bottom: 0.5rem;
  border-radius: 6px;
  font-size: 0.9rem;
  border-left: 3px solid #ff6b00;
  transition: all 0.3s ease;
}
.verification-levels .level-section .level-card .level-skills .skill-item:last-child {
  margin-bottom: 0;
}
.verification-levels .level-section .level-card .level-skills .skill-item:hover {
  background: rgba(255, 107, 0, 0.1);
  color: #ff6b00;
  transform: translateX(5px);
}
.verification-levels .level-section .level-card .level-skills .skill-item.special {
  background: rgba(255, 215, 0, 0.2);
  color: #ff6b00;
  font-weight: bold;
  border-left-color: #ffd700;
}
.verification-levels .level-section .level-card .level-skills .skill-item.special:hover {
  background: rgba(255, 215, 0, 0.3);
}

@media (max-width: 768px) {
  .verification-levels .level-section {
    margin-bottom: 2rem;
  }
  .verification-levels .level-section .level-header {
    margin-bottom: 1rem;
  }
  .verification-levels .level-section .level-header h4 {
    font-size: 1.3rem;
    padding: 0.6rem 1.5rem;
  }
  .verification-levels .level-section .level-card {
    padding: 1.2rem;
    margin-bottom: 1rem;
  }
  .verification-levels .level-section .level-card .level-number {
    font-size: 1.1rem;
    padding: 0.6rem;
  }
  .verification-levels .level-section .level-card .level-skills .skill-item {
    font-size: 0.85rem;
    padding: 0.4rem 0.6rem;
  }
}
#works .work-img {
  width: 100%;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.5rem;
}

@media (max-width: 768px) {
  #works .work-img {
    width: 100%;
    height: 300px;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 0.5rem;
  }
}
#contact {
  background: rgba(255, 215, 0, 0.3);
}
#contact h3 {
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 1rem;
}
#contact .contact-info .contact-item {
  display: flex;
  padding: 1rem;
  background: #fff;
  border-radius: 0.5rem;
  text-decoration: none;
  color: #333333;
  gap: 1rem;
  margin-bottom: 1rem;
  transition: 0.5s;
}
#contact .contact-info .contact-item:hover {
  background: #ff6b00;
  color: white;
}
#contact .contact-info .contact-item:hover p {
  color: white;
}
#contact .contact-info .contact-item:hover h4 {
  color: white;
}
#contact .contact-info .contact-item:hover .icon-box {
  background: white;
}
#contact .contact-info .contact-item:hover .icon-box i {
  color: #ff6b00;
}
#contact .contact-info .contact-item h4 {
  font-size: 1.2rem;
}
#contact .contact-info .contact-item p {
  color: #ff6b00;
  font-size: 1.4rem;
  font-weight: 500;
  margin: 0;
}
#contact .contact-info .contact-item .icon-box {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  background: #ff6b00;
  flex-shrink: 0;
}
#contact .contact-info .contact-item .icon-box i {
  color: white;
}
#contact .social-links .btn {
  margin-bottom: 0.5rem;
  border: 1px solid #ff6b00;
  color: #ff6b00;
}
#contact .social-links .btn:hover {
  background: #ff6b00;
  color: white;
}
#contact .social-links .btn i {
  margin-right: 0.5rem;
}

@media (max-width: 768px) {
  #contact {
    background: rgba(255, 215, 0, 0.3);
  }
  #contact h3 {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 1rem;
  }
  #contact .contact-info .contact-item {
    display: flex;
    padding: 1rem;
    background: #fff;
    border-radius: 0.5rem;
    text-decoration: none;
    color: #333333;
    gap: 1rem;
    margin-bottom: 1rem;
    transition: 0.5s;
    text-align: start;
  }
  #contact .contact-info .contact-item:hover {
    background: #ff6b00;
    color: white;
  }
  #contact .contact-info .contact-item:hover p {
    color: white;
  }
  #contact .contact-info .contact-item:hover h4 {
    color: white;
  }
  #contact .contact-info .contact-item:hover .icon-box {
    background: white;
  }
  #contact .contact-info .contact-item:hover .icon-box i {
    color: #ff6b00;
  }
  #contact .contact-info .contact-item h4 {
    font-size: 1.1rem;
  }
  #contact .contact-info .contact-item p {
    color: #ff6b00;
    font-size: 1.2rem;
    font-weight: 500;
    margin: 0;
  }
  #contact .contact-info .contact-item .icon-box {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    background: #ff6b00;
    flex-shrink: 0;
  }
  #contact .contact-info .contact-item .icon-box i {
    color: white;
  }
  #contact .social-links .btn {
    margin-bottom: 0.5rem;
    border: 1px solid #ff6b00;
    color: #ff6b00;
  }
  #contact .social-links .btn:hover {
    background: #ff6b00;
    color: white;
  }
  #contact .social-links .btn i {
    margin-right: 0.1rem;
  }
}
footer {
  background-color: #343a40;
  border-top: 3px solid #ffd700;
}
footer a {
  color: white;
  text-decoration: none;
}
footer a:hover {
  color: #ffd700;
}

@media (max-width: 768px) {
  .hero-section {
    text-align: center;
  }
  .hero-section .btn {
    margin-top: 1rem;
  }
  .contact-info,
  .social-links {
    text-align: center;
    margin-bottom: 2rem;
  }
  #process .process-steps::before {
    left: 25px;
  }
  #process .process-step {
    padding-left: 60px;
  }
  #process .process-step .step-number {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
  #process .process-step .step-content {
    padding: 1.5rem;
  }
}
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  background: #ff6b00;
}

.nav-pills .nav-link {
  color: #ff6b00;
}/*# sourceMappingURL=main.css.map */