@charset "UTF-8";
/*
Website Designed & Developed by ANSU INFO
© 2025 ANSU Info Tech / 安速信息技术
www.ansu.xin
*/

:root {
  --default-font: "Verdana",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Verdana",  sans-serif;
  --nav-font: "Verdana",  sans-serif;
}
:root { 
  --background-color: #f1f0ec; 
  --default-color: #000000;
  --heading-color: #000000;
  --accent-color: #ab1b20; 
  --surface-color: #ffffff;
  --contrast-color: #ffffff; 
}

:root {
  --nav-color: #000000; 
  --nav-hover-color: #ab1b20;
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #ffffff; 
  --nav-dropdown-color: #000000; 
  --nav-dropdown-hover-color: #ab1b20; 
}

.light-background {
  --background-color: #f1f0ec;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

.container {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

@media (min-width: 992px) {
  .container {
    width: 88%;
  }
}

/* 1920屏 (≥1400px) */
@media (min-width: 1400px) {
  .container {
    max-width: 1680px;
  }
}

/* 2K屏 (≥1600px, 2560px 宽) */
@media (min-width: 1600px) {
  .container {
    max-width: 2200px;
  }
}

/* 4K屏 (≥2560px, 3840px 宽) */
@media (min-width: 2560px) {
  .container {
    max-width: 3300px;
  }
}

.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.pulsating-play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--accent-color) 50%, color-mix(in srgb, var(--accent-color), transparent 75%) 52%);
  border-radius: 50%;
  display: block;
  position: relative;
  overflow: hidden;
}

.pulsating-play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-play-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid color-mix(in srgb, var(--accent-color), transparent 30%);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.pulsating-play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.pulsating-play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

.pulsating-play-btn:hover:after {
  border-left: 15px solid var(--accent-color);
  transform: scale(20);
}

@keyframes pulsate-play-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

.header {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 2px 0;
  transition: all 0.5s;
  z-index: 999;
  position: sticky;
  top: 0;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 80px;
  margin-right: 60px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

.header .logo {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 10;
}

.logo::after {
  content: "";
  position: absolute;
  bottom: -30px; /* 与分隔线衔接 */
  left: 25%;
  transform: translateX(-50%);
  width: 110px;
  height: 32px;
  border-bottom: 1px solid #828282;
  border-radius: 0 0 50% 50% / 0 0 100% 100%;
  z-index: 2;
  background: var(--background-color); /* 填充背景，防止弧和线之间有缝隙 */
}

/* Desktop Navigation */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu>ul>li {
    white-space: nowrap;
    padding: 20px 80px;
  }

  .navmenu>ul>li:last-child {
    padding-right: 0;
  }
  .navmenu>ul>li:first-child {
    padding-left: 0;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    font-size: 15px;
    padding: 0 2px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu>ul>li>a:before {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -30px;
    left:50%;
    transform: translateX(-50%);
    background-color: var(--accent-color);
    visibility: hidden;
    transition: all 0.3s ease-in-out 0s;
  }

  .navmenu a:hover:before,
  .navmenu li:hover>a:before,
  .navmenu .active:before {
    visibility: visible;
    width: 172px;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }
  .navmenu .mobilelogo img{
    width: 150px;
    margin-bottom: 30px;
    margin-top: 20px;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    line-height: 46px;
    background-color: #f7f7f7;
    border-bottom: 1px solid #fff;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/* 左右菜单 */
.nav-left, .nav-right {
  display: flex;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

.nav-left a, .nav-right a {
  color: var(--nav-color);
  font-size: 16px;
  text-decoration: none;
  transition: 0.3s;
}

.nav-left a:hover, .nav-right a:hover,
.nav-left a.active, .nav-right a.active {
  color: var(--nav-hover-color);
  font-weight: 700;
}

@media (max-width: 1200px) {
  .navmenu .active:before{
        visibility: visible;
        width: 100%;
  }
}

/* 下方全屏实线（带缺口） */
.divider-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #828282;
  transform: scaleY(0.5); /* 视觉上更细 */
  transform-origin: top;
  z-index: 1;
}
.divider-line::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px; /* 缺口宽度，与弧宽度保持一致 */
  height: 1px;
  background-color: var(--background-color);
}

/*---------------- 移动端 ----------------*/
@media (max-width: 1199px) {
  .nav-left, .nav-right {
    display: none !important;
  }


  .logo {
    margin: 0 10px;
  }

  /* 移动端折叠导航 */
  .navmenu {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    padding-top: 60px;
    z-index: 9998;
    overflow-y: auto;
    transition: 0.3s;
  }

  .navmenu ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .mobile-nav-toggle {
    display: block;
    color: var(--nav-color);
    font-size: 38px;
    cursor: pointer;
    position: absolute;
    right: 15px;
    top: 30px;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    display: block;
  }
}

.footer {
  --background-color: #14212a;
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  position: relative;
}

.footer .footer-top {
  padding-top: 50px;
}

.footer .footer-nav{
  margin-top: -50px;
}

.footer .footer-about .footlogo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .footlogo img {
  max-height:80px;
  margin-right: 6px;
  margin-bottom: 30px;
}

.footer .footer-about .footlogo span {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 1px;
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
  color: #adb7c3;
}
.footer h2{
  font-size: 43px;
}

@media (max-width: 640px) {
  .footer h2{
    font-size: 30px;
  }
}

.footer .dazi{
  margin-bottom: 55px;
}
.footer h4 {
  font-size: 16px;
  font-weight: 600;
  position: relative;
  padding-bottom: 12px;
  margin-bottom: 15px;
}

.footer h4::after {
  content: "";
  position: absolute;
  display: block;
  width: 20px;
  height: 2px;
  background: var(--accent-color);
  bottom: 0;
  left: 0;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: #adb7c3;
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding: 30px 0;
  color: #adb7c3;
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 5px;
  font-size: 13px;
}

.footer .social-links a {
  font-size: 15px;
  display: inline-block;
  color: #adb7c3;
  line-height: 1;
  padding: 8px 0;
  margin-right: 50px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--contrast-color);
  text-decoration: none;
}

.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  position: relative;
}

.page-title .heading {
  padding: 80px 0;
}

.page-title .heading h1 {
  font-size: 80px;
  font-weight: 500;
  padding-top: 60px;
}

.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 20px 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.page-title nav ol li+li {
  padding-left: 10px;
}

.page-title nav ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

@media (max-width: 767px) {
  .page-title .heading{
    padding: 0;
  }
  .page-title .heading h1{
    font-size: 30px;
    font-weight: 500;
    padding-top: 20px;
  }
}

section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

.section-title {
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 18px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #000;
  position: relative;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: var(--accent-color);
  margin: 4px 10px;
}

.section-title div {
  color: var(--heading-color);
  margin: 0;
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: var(--heading-font);
}

.hero {
  width: 100%;
  min-height: 24vh;
  position: relative;
  padding: 20px 0 15px 0;
  display: flex;
  align-items: center;
}

.hero h2 {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 56px;
}

.hero p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 30px 0 30px 0;
  font-size: 17px;
  font-weight: 400;
  border-left: 2px solid #9A2226;
  padding-left: 20px;
}

.hero .hero-img{
  margin-top: 50px;
}

.hero .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px 12px 28px;
  border-radius: 50px;
  transition: 0.5s;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero .btn-get-started:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  color: var(--default-color);
  font-weight: 600;
}

.hero .btn-watch-video i {
  color: var(--accent-color);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.hero .btn-watch-video:hover {
  color: var(--accent-color);
}

.hero .btn-watch-video:hover i {
  color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  .hero p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  .hero .btn-get-started,
  .hero .btn-watch-video {
    font-size: 13px;
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

.team-4 {
  padding-top: 10px;
  --default-color: #ffffff;
  padding-bottom: 60px;
}

.team-4 .section-title h2 {
  color: #000;
  margin-bottom: -15px;
}

.team-4 .member {
  text-align: center;
  position: relative;
  height: 100%;
}

.team-4 .member img {
  border-radius: 12px;
}

.team-4 .member .linkedin-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.team-4 .member .linkedin-overlay a {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #ffffff;
  font-weight: 500;
  font-size: 1.2rem;
}

.team-4 .member .linkedin-overlay i {
  font-size: 4rem;
  margin-bottom: 0.3rem;
}

.team-4 .member .member-info {
  opacity: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  inset: 0;
  transition: 0.2s;
  border-radius: 12px;
}

.team-4 .member .member-info-content {
  margin-top: -50px;
  transition: margin 0.2s;
}

.team-4 .member .member-extra {
  position: absolute;
  left: 20px;
  bottom: 20px;
  text-align: left;
  color: #fff;
}

.team-4 .member .member-extra h5 {
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 25px;
  color: #fff;
}

.team-4 .member .member-extra p {
  font-size: 15px;
  margin-bottom: 35px;
}

.team-4 .member .member-extra .more-link {
  font-size: 13px;
  font-weight: 600;
  color: #ffdddd;
  text-decoration: none;
}

.team-4 .member .member-extra .more-link:hover {
  text-decoration: underline;
}

.team-4 .member .member:hover .member-info {
  background: rgb(154, 34, 38);
  opacity: 1;
  transition: 0.4s;
}

.team-4 .member:hover .member-info {
  background: rgb(154, 34, 38);
  opacity: 1;
  transition: 0.4s;
}

.team-4 .member:hover .member-info-content {
  margin-top: -150px;
  transition: margin 0.4s;
  justify-content: center;
  align-items: center;
}

.team-4 .member h4 {
  color: var(--contrast-color);
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 50px;
}

.team-4 .member span {
  display: block;
  font-size: 43px;
}

.team-4 .member .social {
  margin-top: 15px;
}

.team-4 .member .social a {
  transition: 0.3s;
  color: var(--default-color);
}

.team-4 .member .social a:hover {
  color: var(--accent-color);
}

.team-4 .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

.member-info-content .webicon {
  display: block;
  margin: 0 auto;
  float: none !important;
  width: 180px; 
  height: 180px;
  object-fit: contain;
}

@media (max-width: 767px) {
  .team-4 .member-info-content{
    justify-content: center;
    align-items: center;
  }
  .team-4 .member .webicon{
    width: 65%;
    display: inline-flex
;
  }
  .team-4 .member h4 {
     font-size: 34px;
  }
  .team-4 .member .member-extra h5 {
    font-size: 20px;
    margin-bottom: 15px;
  }
  .team-4 .member span {
    font-size: 34px;
  }
  .team-4 .member .member-extra p {
    margin-bottom: 25px;
}
}

.category-cards {
  padding-top: 60px;
  padding-bottom: 20px;
}

.category-cards .category-card {
  position: relative;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 12px;
  overflow: hidden;
  height: 550px;
  background-color: var(--surface-color);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
}

.category-cards .category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px color-mix(in srgb, var(--default-color), transparent 85%);
  border-color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.category-cards .category-card:hover .category-image img {
  transform: scale(1.1);
}

.category-cards .category-card:hover .shop-btn i {
  transform: translateX(5px);
}

.category-cards .category-card.small-card {
  height: 280px;
}

.category-cards .category-card .category-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.category-cards .category-card .category-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.category-cards .category-card .category-content-top {
  position: relative;
  z-index: 2;
  color: var(--contrast-color);
}

.category-cards .category-card .category-content-top .category-title {
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  font-family: var(--heading-font);
  color: inherit;
}

.category-cards .category-card .category-content-top a{
  color: #000;
}
.category-cards .category-card .category-content-top a:hover{
  color: #ab1b20;
}
.category-cards .category-card .category-content-top .post-excerpt{
   color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.category-cards .category-card .category-content-top .category-title div {
  font-weight: 400;
  font-size: 1rem;
}

.category-cards .category-card .category-content-top .category-subtitle {
  font-size: 1rem;
  margin-bottom: 1rem;
  line-height: 1.4;
  color: inherit;
}

.category-cards .category-card .category-content-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 3;
}

.category-cards .category-card .category-content-bottom .news-label {
  font-size: 0.95rem;
  font-weight: 400;
  color: inherit;
}

.category-cards .category-card .category-content-bottom .shop-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 400;
  font-size: 0.95rem;
  text-decoration: none;
  padding: 0.6rem 1.5rem;
  border-radius: 25px;
  backdrop-filter: blur(10px);
  opacity: 1;
  transform: translateY(0);
  transition: all 0.3s ease;
}

.category-cards .category-card .category-content-bottom .shop-btn i {
  transition: transform 0.3s ease;
}

.category-cards .category-card .category-content-bottom .shop-btn:hover i {
  transform: translateX(5px);
}

.category-cards .card-light {
  background-color: #fff;
  border: 1px solid #ddd;
}

.category-cards .card-light .category-content-top,
.category-cards .card-light .category-content-bottom {
  color: #000;
}

.category-cards .card-light .shop-btn {
  background-color: #f5f5f5;
  color: #000;
  border: 1px solid #ccc;
}

.category-cards .card-light .shop-btn:hover {
  background-color: #000;
  color: #fff;
}

.category-cards .card-dark {
  border: none;
}

.category-cards .card-dark .category-content-top,
.category-cards .card-dark .category-content-bottom {
  color: #fff;
}

.category-cards .category-card .category-content-top .card-description{
  color: #fff;
  width: 60%;
}

.category-cards .card-dark .card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1;
}

.category-cards .card-dark .shop-btn {
  background-color: rgba(255, 255, 255, 0.2);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.category-cards .card-dark .shop-btn:hover {
  background-color: #fff;
  color: #000;
}

@media (max-width: 991px) {
  .category-cards .category-card {
    height: 300px;
  }

  .category-cards .category-card.small-card {
    height: 250px;
  }

  .category-cards .category-title {
    font-size: 1.3rem;
  }

  .category-cards .category-subtitle {
    font-size: 0.9rem;
  }
}

@media (max-width: 767px) {
  .category-cards .category-card {
    height: 250px;
  }

  .category-cards .category-card.small-card {
    height: 220px;
  }

  .category-cards .category-title {
    font-size: 1.2rem;
  }

  .category-cards .shop-btn {
    font-size: 0.9rem;
    padding: 0.6rem 1.2rem;
  }
  .category-cards .category-card .category-content-top .category-title {
    font-size: 1.2rem;
  }
  .divider-line{
    display: none;
  }
  .logo::after{
    display: none;
  }
  .category-cards .category-card .category-content-top .card-description{
  color: #fff;
  width: 90%;
}

}

.blog-posts {
  padding-top: 10px;
  padding-bottom: 60px;
}

.blog-posts .post-box {
  transition: 0.3s;
  height: 100%;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 12px;
}

.blog-posts .post-box .post-img {
  overflow: hidden;
  position: relative;
  border-radius: 12px;
}

.blog-posts .post-box .post-img img {
  transition: 0.5s;
}

.blog-posts .post-box .meta {
  margin-top: 15px;
}

.blog-posts .post-box .meta .post-date {
  font-size: 15px;
  font-weight: 400;
  color: #8d8d8d;
}

.blog-posts .post-box .meta .post-author {
  font-size: 15px;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-posts .post-box .post-title {
  color: var(--heading-color);
  font-size: 20px;
  font-weight: 400;
  margin: 15px 0 0 0;
  position: relative;
  transition: 0.3s;
}

.blog-posts .post-box p {
  margin: 15px 0 0 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-posts .post-box .readmore {
  display: flex;
  align-items: center;
  font-weight: 400;
  transition: 0.3s;
}

.blog-posts .post-box .readmore i {
  line-height: 0;
}

.blog-posts .post-box:hover .post-title {
  color: var(--accent-color);
}

.blog-posts .post-box:hover .post-img img {
  transform: scale(1.1);
}

.blog-posts .post-box-special {
  border: 1px solid #ddd;
  background-color: transparent;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 600px;
}
.blog-posts .post-box-special:hover {
    transform: translateY(-10px); 
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); 
}

.blog-posts .post-box-special .content-top .post-date {
  display: block;
  margin-bottom: 10px;
  color:#8d8d8d;
}

.blog-posts .post-box-special .content-top .post-title {
  font-size: 20px;
  font-weight: 400;
  color: var(--heading-color);
}

.blog-posts .post-box-top .content-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 50px;
}

.blog-posts .post-box-special .content-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.blog-posts .post-box-special .content-bottom .news-label {
  font-size: 16px;
  font-weight: 400;
  color: var(--default-color);
}

.blog-posts .post-box-top .content-bottom .readmore {
  display: flex;
  align-items: center;
  font-weight: 400;
  text-decoration: none;
  gap: 0.5rem;
  padding: 0.6rem 1.5rem;
  font-size: 0.95rem;
  border-radius: 25px;
  border: 1px solid #ccc;
  color: #000;
  background-color: #f5f5f5;
  transition: all 0.3s ease;
  margin-right: 10px;
}

.blog-posts .post-box-top .content-bottom .readmore:hover {
  background-color: #000;
  color: #fff;
}

.blog-posts .post-box-special .content-bottom .readmore {
  display: flex;
  align-items: center;
  font-weight: 400;
  text-decoration: none;
  gap: 0.5rem;
  padding: 0.6rem 1.5rem;
  font-size: 0.95rem;
  border-radius: 25px;
  border: 1px solid #ccc;
  color: #000;
  background-color: #f5f5f5;
  transition: all 0.3s ease;
}

.blog-posts .post-box-special .content-bottom .readmore i {
  margin-left: 4px;
}

.blog-posts .post-box-special .content-bottom .readmore:hover {
  background-color: #000;
  color: #fff;
}

.blog-posts-3 .featured-post {
  border-radius: 13px;
  overflow: hidden;
  transition: all 0.3s ease;
  margin-bottom: 30px;
  border: 1px solid #ccc;
}
.blog-posts-3 .blognew{
  font-size: 15px;
  font-weight: 500;
}
.blog-posts-3 .blogsy{
  font-size: 15px;
  font-weight: 500;
  color: var(--accent-color);
}
.blog-posts-3 .blogcat{
  font-size: 15px;
  font-weight: 500;
}
.blog-posts-3 .blogcat a{
  color: #000;
}
.blog-posts-3 .blogcat a:hover{
  color:var(--accent-color);
}
.blog-posts-3 .blogsz{
  font-size: 15px;
  font-weight: 500;
}

.blog-posts-3 .featured-post:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.blog-posts-3 .featured-post:hover .featured-img img {
  transform: scale(1.05);
}

.blog-posts-3 .featured-post:hover .post-title a {
  color: var(--accent-color);
}

.blog-posts-3 .featured-img {
  position: relative;
  height: 320px;
  overflow: hidden;
}

.blog-posts-3 .featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-posts-3 .featured-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #000 20%));
  color: var(--contrast-color);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-posts-3 .featured-content {
  padding: 32px;
}

.blog-posts-3 .post-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.blog-posts-3 .post-title {
  margin: 0 0 20px 0;
}

.blog-posts-3 .post-title a {
  color: var(--heading-color);
  font-size: 26px;
  font-weight: 500;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.blog-posts-3 .post-title a:hover {
  color: var(--accent-color);
}

.blog-posts-3 .post-excerpt {
  color: var(--default-color);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 28px;
}

.blog-posts-3 .post-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.blog-posts-3 .author-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.blog-posts-3 .author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.blog-posts-3 .author-details {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.blog-posts-3 .author-name {
  font-size: 15px;
  font-weight: 500;
  color: var(--heading-color);
}

.blog-posts-3 .read-time {
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-posts-3 .read-more {
  color: #444;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  position: relative;
  border-radius: 25px;
  padding: 0.65rem 1.5rem;
  border: 1px solid #ccc;
}

.blog-posts-3 .read-more::after {
  /*content: "→";*/
  margin-left: 8px;
  transition: margin-left 0.3s ease;
}

.blog-posts-3 .read-more:hover::after {
  margin-left: 12px;
}

.blog-posts-3 .recent-post {
  background-color: var(--surface-color);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
  transition: all 0.3s ease;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.blog-posts-3 .recent-post:hover {
  transform: translateX(5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border-color: color-mix(in srgb, var(--accent-color), transparent 80%);
}

.blog-posts-3 .recent-post:hover .recent-title a {
  color: var(--accent-color);
}

.blog-posts-3 .recent-post:hover .recent-img img {
  transform: scale(1.05);
}

.blog-posts-3 .recent-img {
  height: 120px;
  overflow: hidden;
}

.blog-posts-3 .recent-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-posts-3 .recent-content {
  padding: 20px;
}

.blog-posts-3 .recent-title {
  margin: 8px 0 12px 0;
}

.blog-posts-3 .recent-title a {
  color: var(--heading-color);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.blog-posts-3 .recent-title a:hover {
  color: var(--accent-color);
}

.blog-posts-3 .recent-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 12px;
}

.blog-posts-3 .recent-meta .author {
  color: var(--heading-color);
  font-weight: 500;
}

.blog-posts-3 .recent-meta .date {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-posts-3 .category {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 90%), color-mix(in srgb, var(--accent-color), transparent 80%));
  color: var(--accent-color);
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.blog-posts-3 .category:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-1px);
}

.blog-posts-3 .post-date {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: 500;
}

@media (max-width: 991px) {
  .blog-posts-3 .featured-post {
    margin-bottom: 40px;
  }

  .blog-posts-3 .featured-img {
    height: 250px;
  }

  .blog-posts-3 .featured-content {
    padding: 24px;
  }

  .blog-posts-3 .post-title a {
    font-size: 24px;
  }

  .blog-posts-3 .post-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .blog-posts-3 .recent-post {
    display: flex;
    margin-bottom: 16px;
  }

  .blog-posts-3 .recent-img {
    flex: 0 0 100px;
    height: 100px;
  }

  .blog-posts-3 .recent-content {
    flex: 1;
    padding: 16px;
  }

  .blog-posts-3 .recent-title a {
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .blog-posts-3 .post-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .blog-posts-3 .recent-post {
    flex-direction: column;
  }

  .blog-posts-3 .recent-img {
    flex: none;
    height: 120px;
  }
  .blog-posts-3 .border-secondary{
    display: none;
  }
  .blog-posts .post-box-special {
    height: 300px;
}
}

.pagination-2 {
  padding-top: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.pagination-2 ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.pagination-2 li {
  margin: 0 5px;
  transition: 0.3s;
}

.pagination-2 li a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 7px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pagination-2 li a.active,
.pagination-2 li a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.pagination-2 li a.active a,
.pagination-2 li a:hover a {
  color: var(--contrast-color);
}

.why-us {
  padding-top: 100px;
  position: relative;
  overflow: hidden;
  padding-bottom: 40px;
}

.why-us::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  opacity: 0.03;
  z-index: 0;
}

.why-us .container {
  position: relative;
  z-index: 1;
}

.why-us .image-showcase {
  position: relative;
}

.why-us .image-showcase .main-image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.why-us .image-showcase .main-image-wrapper .main-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.why-us .image-showcase .main-image-wrapper .image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(0, 0, 0, 0.3), transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}

.why-us .image-showcase .main-image-wrapper .image-overlay .overlay-content {
  text-align: center;
  color: var(--contrast-color);
  display: flex;
  align-items: center;
}

.why-us .image-showcase .main-image-wrapper .image-overlay .overlay-content .play-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.why-us .image-showcase .main-image-wrapper .image-overlay .overlay-content .play-icon:hover {
  transform: scale(1.1);
}

.why-us .image-showcase .main-image-wrapper .image-overlay .overlay-content span {
  font-weight: 600;
  font-size: 1.1rem;
  padding: 0 0 15px 10px;
}

.why-us .image-showcase .main-image-wrapper:hover .main-image {
  transform: scale(1.05);
}

.why-us .image-showcase .floating-stats {
  position: absolute;
  top: -30px;
  right: -20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.why-us .image-showcase .floating-stats .stat-badge {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 20px;
  border-radius: 15px;
  text-align: center;
  min-width: 120px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transform: rotate(5deg);
}

.why-us .image-showcase .floating-stats .stat-badge:nth-child(2) {
  transform: rotate(-3deg);
  background: var(--surface-color);
  color: var(--default-color);
}

.why-us .image-showcase .floating-stats .stat-badge .stat-number {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.why-us .image-showcase .floating-stats .stat-badge .stat-text {
  font-size: 0.9rem;
  opacity: 0.9;
}

.why-us .image-showcase .experience-card {
  position: absolute;
  bottom: -25px;
  left: -25px;
  padding: 25px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
  max-width: 280px;
}

.why-us .image-showcase .experience-card .card-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 30%));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-us .image-showcase .experience-card .card-icon i {
  font-size: 1.5rem;
  color: var(--contrast-color);
}

.why-us .image-showcase .experience-card .card-content h5 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--heading-color);
}

.why-us .image-showcase .experience-card .card-content p {
  font-size: 0.9rem;
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.why-us .section-badge{
  border-top: 1px solid #ccc;
  padding-top: 40px;
}
.why-us h5{
  color: #992226;
  font-size: 17px;
}
.why-us .content-wrapper {
  padding-left: 2rem;
  border-top: 1px solid #ccc;
  padding-top: 60px;
}

.why-us .content-wrapper .section-badge {
  display: inline-flex;
  align-items: center;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.why-us .content-wrapper .section-badge i {
  color: var(--accent-color);
}

.why-us .content-wrapper h2 {
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 3.2rem;
  color: var(--heading-color);
}

.why-us .content-wrapper .lead-text {
  font-size: 1.2rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 3rem;
}

.why-us .content-wrapper .benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.why-us .content-wrapper .benefits-grid .benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.why-us .content-wrapper .benefits-grid .benefit-item .benefit-icon {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 20%));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-us .content-wrapper .benefits-grid .benefit-item .benefit-icon i {
  font-size: 1.2rem;
  color: var(--contrast-color);
}

.why-us .content-wrapper .benefits-grid .benefit-item .benefit-content h4 {
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
  color: var(--heading-color);
  line-height: 32px;
}

.why-us .content-wrapper .benefits-grid .benefit-item .benefit-content p {
  font-size: 1.05rem;
  line-height: 1.6;
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.why-us .content-wrapper .achievement-highlights {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 2rem 0;
  margin-bottom: 2.5rem;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 15px;
  background: var(--surface-color);
  justify-content: center;
}

.why-us .content-wrapper .achievement-highlights .highlight-item {
  text-align: center;
}

.why-us .content-wrapper .achievement-highlights .highlight-item .highlight-number {
  display: block;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 5px;
}

.why-us .content-wrapper .achievement-highlights .highlight-item .highlight-label {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-weight: 500;
}

.why-us .content-wrapper .achievement-highlights .highlight-divider {
  width: 1px;
  height: 40px;
  background: color-mix(in srgb, var(--default-color), transparent 85%);
}

.why-us .content-wrapper .action-buttons {
  display: flex;
  gap: 1.5rem;
}

.why-us .content-wrapper .action-buttons .btn {
  padding: 15px 35px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.why-us .content-wrapper .action-buttons .btn.btn-primary {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 20%));
  border: none;
  color: var(--contrast-color);
}

.why-us .content-wrapper .action-buttons .btn.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.why-us .content-wrapper .action-buttons .btn.btn-outline {
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  background: transparent;
}

.why-us .content-wrapper .action-buttons .btn.btn-outline:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
}

@media (max-width: 992px) {
  .why-us {
    padding: 80px 0;
  }

  .why-us .content-wrapper {
    padding-left: 0;
    margin-top: 3rem;
  }

  .why-us .content-wrapper h2 {
    font-size: 2.3rem;
  }

  .why-us .content-wrapper .benefits-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .why-us .content-wrapper .achievement-highlights {
    flex-direction: column;
    gap: 1.5rem;
  }

  .why-us .content-wrapper .achievement-highlights .highlight-divider {
    width: 40px;
    height: 1px;
  }

  .why-us .content-wrapper .action-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .why-us .image-showcase .main-image-wrapper .main-image {
    height: 400px;
  }

  .why-us .image-showcase .floating-stats {
    position: relative;
    top: 20px;
    right: 0;
    flex-direction: row;
    justify-content: center;
  }

  .why-us .image-showcase .experience-card {
    position: relative;
    bottom: 0;
    left: 0;
    margin-top: 2rem;
    max-width: 100%;
  }
}

@media (max-width: 576px) {
  .why-us {
    padding: 20px 0;
  }

  .why-us .content-wrapper {
    padding-left: 0;
    margin-top: 0;
  }

  .why-us .content-wrapper{
    padding-top: 15px;
  }

  .why-us .content-wrapper h2 {
    font-size: 1.8rem;
    margin-bottom: 25px;
  }

  .why-us .content-wrapper .lead-text {
    font-size: 1.1rem;
  }

  .why-us .image-showcase .floating-stats {
    flex-direction: column;
    gap: 10px;
  }

  .why-us .image-showcase .floating-stats .stat-badge {
    min-width: 100px;
    padding: 15px;
  }

  .why-us .image-showcase .floating-stats .stat-badge .stat-number {
    font-size: 1.5rem;
  }
}

.stats {
  padding-top: 60px;
  padding-bottom: 59px;
}

.stats .stats-hero {
  margin-bottom: 2.5rem;
}

.stats .stats-hero .headline {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 1.2;
}

.stats .stats-hero .lead {
  color: var(--default-color);
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 0;
}

.stats .stats-hero .stats-rating {
  background: var(--surface-color);
  border-radius: 2rem;
  box-shadow: 0 4px 32px color-mix(in srgb, var(--accent-color), transparent 90%);
  min-width: 270px;
  gap: 8px;
}

.stats .stats-hero .stats-rating .stats-rating-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  background: color-mix(in srgb, var(--accent-color), transparent 85%);
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 80%);
}

.stats .stats-hero .stats-rating .rating-score .fs-5 {
  color: var(--accent-color);
}

.stats .stats-hero .stats-rating .rating-score .stars {
  color: color-mix(in srgb, var(--accent-color), #ffd700 70%);
  font-size: 1.15rem;
}

.stats .stats-hero .stats-rating .user-feedback {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 0.95rem;
  font-family: var(--default-font);
}

.stats .stats-counters {
  margin-top: 0.5rem;
}

.stats .stats-counters .stats-counter-card {
  margin-top: 10px;
  border-top: 1px solid #ccc;
  padding: 2.75rem 1rem 1.25rem 0rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s;
}

.stats .stats-counters .statstitle{
  font-size: 19px;
  color: #666;
}

.stats .stats-counters .stats-counter-card .counter-value {
  color: var(--accent-color);
  font-family: var(--heading-font);
  font-size: 4rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  display: flex;
  align-items: flex-end;
}

.stats .stats-counters .stats-counter-card .counter-value .purecounter {
  font-size: inherit;
  color: inherit;
}
.stats .stats-counters .stats-counter-card .counter-value sup{
  top: -1.2em !important;
  font-size: 36px;
  font-weight: 900;
}

.stats .stats-counters .stats-counter-card .label {
  color: #868686;
  font-size: 1.1rem;
  font-family: var(--default-font);
  font-weight: 500;
  margin-top: 0.3rem;
  letter-spacing: 0.02em;
}

@media (max-width: 992px) {
  .stats .stats-hero .headline {
    font-size: 1.7rem;
  }

  .stats .stats-counters .stats-counter-card {
    font-size: 0.97rem;
    padding: 1.2rem 0.7rem 1rem 0.7rem;
  }
}

@media (max-width: 767px) {
  .stats{
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .stats .stats-hero {
    flex-direction: column;
  }

  .stats .stats-hero .headline {
    font-size: 1.3rem;
    text-align: center;
  }

  .stats .stats-hero .lead {
    font-size: 1rem;
    text-align: center;
  }

  .stats .stats-hero .stats-rating {
    margin-inline: auto;
  }

  .stats .stats-counters .stats-counter-card {
    padding-top: 2rem;
    font-size: 0.93rem;
    padding-left: 0;
  }
  .stats .stats-counters .stats-counter-card .counter-value {
    font-size: 1.8rem;
  }
  .stats .stats-counters .stats-counter-card .counter-value sup{
    top: -1em !important;
    font-size: 20px;
  }
}

.stats .bi-star-fill,
.stats .bi-star-half {
  color: #ffae00;
  font-size: 1.18em;
  vertical-align: -0.13em;
  margin-right: 2px;
}

.stats .bi-star-fill:last-child,
.stats .bi-star-half:last-child {
  margin-right: 0;
}

.about .intro-section {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 80px;
}

.about .intro-section .content-wrapper .intro-label {
  display: inline-block;
  color: var(--accent-color);
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  position: relative;
}

.about .intro-section .content-wrapper .intro-label::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 1px;
  background-color: var(--accent-color);
}

.about .intro-section .content-wrapper .intro-title {
  font-family: var(--heading-font);
  font-size: 3rem;
  font-weight: 300;
  color: var(--heading-color);
  line-height: 1.2;
  margin-bottom: 30px;
}

.about .intro-section .content-wrapper .intro-description {
  font-size: 1.2rem;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  margin-bottom: 0;
}

.about .leadership-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-bottom: 80px;
}

.about .leadership-grid .featured-leader .leader-image-large {
  margin-bottom: 40px;
  border-radius: 8px;
  overflow: hidden;
}

.about .leadership-grid .featured-leader .leader-image-large img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.about .leadership-grid .featured-leader .leader-details h3 {
  font-family: var(--heading-font);
  font-size: 2rem;
  font-weight: 300;
  color: var(--heading-color);
  margin-bottom: 8px;
}

.about .leadership-grid .featured-leader .leader-details .leader-title {
  color: var(--accent-color);
  font-size: 1rem;
  font-weight: 500;
  display: block;
  margin-bottom: 25px;
}

.about .leadership-grid .featured-leader .leader-details .leader-bio {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 35px;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
}

.about .leadership-grid .featured-leader .leader-details .leader-stats {
  display: flex;
  gap: 40px;
  margin-bottom: 35px;
  padding: 25px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.about .leadership-grid .featured-leader .leader-details .leader-stats .stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about .leadership-grid .featured-leader .leader-details .leader-stats .stat-item .stat-number {
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--heading-color);
  margin-bottom: 5px;
}

.about .leadership-grid .featured-leader .leader-details .leader-stats .stat-item .stat-label {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.about .leadership-grid .featured-leader .leader-details .social-connect {
  display: flex;
  gap: 15px;
}

.about .leadership-grid .featured-leader .leader-details .social-connect .social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 50%;
  color: var(--default-color);
  transition: all 0.3s ease;
}

.about .leadership-grid .featured-leader .leader-details .social-connect .social-link:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
  transform: translateY(-2px);
}

.about .leadership-grid .leadership-team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.about .leadership-grid .leadership-team-grid .team-member .member-photo {
  position: relative;
  margin-bottom: 25px;
  border-radius: 8px;
  overflow: hidden;
}

.about .leadership-grid .leadership-team-grid .team-member .member-photo img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.about .leadership-grid .leadership-team-grid .team-member .member-photo .member-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.6));
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 20px;
}

.about .leadership-grid .leadership-team-grid .team-member .member-photo .member-overlay .member-social {
  display: flex;
  gap: 10px;
}

.about .leadership-grid .leadership-team-grid .team-member .member-photo .member-overlay .member-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  color: var(--default-color);
  transition: all 0.3s ease;
}

.about .leadership-grid .leadership-team-grid .team-member .member-photo .member-overlay .member-social a:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.about .leadership-grid .leadership-team-grid .team-member .member-photo:hover .member-overlay {
  opacity: 1;
}

.about .leadership-grid .leadership-team-grid .team-member .member-photo:hover img {
  transform: scale(1.05);
}

.about .leadership-grid .leadership-team-grid .team-member .member-info h4 {
  font-family: var(--heading-font);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--heading-color);
  margin-bottom: 5px;
}

.about .leadership-grid .leadership-team-grid .team-member .member-info .member-role {
  color: var(--accent-color);
  font-size: 0.95rem;
  font-weight: 500;
  display: block;
  margin-bottom: 15px;
}

.about .leadership-grid .leadership-team-grid .team-member .member-info .member-description {
  font-size: 0.95rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 0;
}

.about .leadership-philosophy {
  background-color: color-mix(in srgb, var(--accent-color), transparent 96%);
  padding: 60px 40px;
  border-radius: 8px;
  text-align: center;
}

.about .leadership-philosophy .philosophy-content {
  max-width: 700px;
  margin: 0 auto;
}

.about .leadership-philosophy .philosophy-content h3 {
  font-family: var(--heading-font);
  font-size: 2rem;
  font-weight: 300;
  color: var(--heading-color);
  margin-bottom: 25px;
}

.about .leadership-philosophy .philosophy-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  margin-bottom: 40px;
}

.about .leadership-philosophy .philosophy-content .philosophy-points {
  display: flex;
  justify-content: center;
  gap: 50px;
}

.about .leadership-philosophy .philosophy-content .philosophy-points .point {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.about .leadership-philosophy .philosophy-content .philosophy-points .point i {
  font-size: 1.5rem;
  color: var(--accent-color);
  margin-bottom: 5px;
}

.about .leadership-philosophy .philosophy-content .philosophy-points .point span {
  font-size: 0.95rem;
  color: var(--default-color);
  text-align: center;
  max-width: 140px;
}

@media (max-width: 992px) {
  .about .intro-section {
    margin-bottom: 60px;
  }

  .about .intro-section .content-wrapper .intro-title {
    font-size: 2.2rem;
  }

  .about .intro-section .content-wrapper .intro-description {
    font-size: 1.1rem;
  }

  .about .leadership-grid {
    grid-template-columns: 1fr;
    gap: 60px;
    margin-bottom: 60px;
  }

  .about .leadership-grid .featured-leader .leader-image-large img {
    height: 400px;
  }

  .about .leadership-grid .featured-leader .leader-details .leader-stats {
    gap: 25px;
  }

  .about .leadership-grid .leadership-team-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .about .leadership-philosophy {
    padding: 50px 30px;
  }

  .about .leadership-philosophy .philosophy-content .philosophy-points {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .about .intro-section {
    margin-bottom: 50px;
  }

  .about .intro-section .content-wrapper .intro-title {
    font-size: 1.8rem;
  }

  .about .leadership-grid {
    gap: 50px;
  }

  .about .leadership-grid .featured-leader .leader-details .leader-stats {
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }

  .about .leadership-grid .leadership-team-grid {
    grid-template-columns: 1fr;
  }

  .about .leadership-grid .leadership-team-grid .team-member .member-photo img {
    height: 320px;
  }

  .about .leadership-philosophy {
    padding: 40px 20px;
  }

  .about .leadership-philosophy .philosophy-content h3 {
    font-size: 1.6rem;
  }

  .about .leadership-philosophy .philosophy-content .philosophy-points {
    flex-direction: column;
    gap: 25px;
  }
}

/*--------------------------------------------------------------
# Chefs Section
--------------------------------------------------------------*/
.chefs .chef-highlight {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.chefs .chef-highlight .chef-image {
  overflow: hidden;
  margin-bottom: 0;
}

.chefs .chef-highlight .chef-image img {
  transition: transform 0.6s;
  width: 100%;
  object-fit: cover;
}

.chefs .chef-highlight .chef-image:hover img {
  transform: scale(1.05);
}

.chefs .chef-highlight .chef-details h3 {
  color: #000;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 2.5rem;
  padding-top: 30px;
  border-top: 1px solid #ccc;
}

.chefs .teamtitle{
  padding-top: 30px;
  border-top: 1px solid #ccc;
  margin-bottom: 100px;
}

.chefs .teamms{
  padding-top: 30px;
  border-top: 1px solid #ccc;
  margin-bottom: 100px;
  font-size: 38px;
  font-weight: 700;
}

.chefs .chef-highlight .chef-details h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.chefs .chef-highlight .chef-details .chef-awards {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.chefs .chef-highlight .chef-details .chef-awards span {
  font-size: 0.9rem;
  padding: 0.35rem 0.8rem;
  border-radius: 50px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  display: inline-flex;
  align-items: center;
}

.chefs .chef-highlight .chef-details .chef-awards span i {
  margin-right: 0.4rem;
  color: var(--accent-color);
}

.chefs .chef-highlight .chef-details p {
  margin-bottom: 1.5rem;
  line-height: 2;
}

.chefs .chef-highlight .chef-details .chef-signature {
  display: block;
  max-width: 180px;
  margin-top: 1.5rem;
}

.chefs .chef-highlight .chef-details .chef-signature img {
  max-width: 100%;
  height: auto;
}

@media (max-width: 991px) {
  .chefs .chef-highlight {
    margin-bottom: 2.5rem;
  }
}

.chefs .team-container {
  padding-left: 1rem;
}

@media (max-width: 991px) {
  .chefs .team-container {
    padding-left: 0;
  }
}

@media (max-width: 767px) {
  .chefs{
    padding-top:25px;
  }
  .chefs .teamtitle {
    margin-bottom: 30px;
  }
  .chefs .teamms{
    margin-bottom: 30px;
  }
}

.chefs .chef-card {
  background-color: var(--surface-color);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
  height: 100%;
}

.chefs .chef-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.chefs .chef-card:hover .social-links {
  opacity: 1;
  visibility: visible;
}

.chefs .chef-card .chef-img {
  position: relative;
  overflow: hidden;
  /* hover蒙版 */
}

.chefs .chef-card .chef-img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.5s;
}

.chefs .chef-card .chef-img:hover img {
  transform: scale(1.05);
}

.chefs .chef-card .chef-img .chef-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(153, 34, 38, 0.5);
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 1;
}

.chefs .chef-card .chef-img:hover .chef-overlay {
  opacity: 1;
}

.chefs .chef-card .chef-img .chef-caption.base-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2rem 1.5rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent 70%);
  color: #fff;
  z-index: 2;
}

.chefs .chef-card .chef-img .chef-caption.base-caption h5 {
  margin: 0;
  color: #fff;
  font-size: 1.7rem;
  font-weight: 500;
}
.chefs .chef-card .chef-img .chef-caption.base-caption h6 {
  margin: 0;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 500;
}

.chefs .chef-card .chef-img .chef-caption.base-caption p {
  margin: 0.7rem 0 0;
  font-size: 0.875rem;
}

.chefs .chef-card .chef-img .chef-caption.base-caption .text {
  margin: 0.5rem 0 0;
  font-size: 0.675rem;
}

.chefs .chef-card .chef-img .chef-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(153, 34, 38, 0.8);
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 0;
}

.chefs .chef-card .chef-img .chef-overlay .hover-caption {
  position: absolute;
  bottom: calc(3rem + 100px);
  left: 1.5rem;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.chefs .chef-card .chef-img .chef-overlay .hover-caption .btn {
  font-size: 1rem;
  padding: 0.35rem 1.5rem;
  margin-bottom: 30px;
  align-self: flex-start;
  border-radius: 25px;
  background: none;
  border: 1px solid #fff;
  color: #fff;
}

.chefs .chef-card .chef-img .chef-overlay .hover-caption p {
  margin: 0;
  font-size: 1rem;
  padding-right: 25px;
}

.chefs .chef-card .chef-img:hover .chef-overlay {
  opacity: 1;
}

.chefs .chef-card .chef-img .social-links {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  display: flex;
  gap: 1rem;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.chefs .chef-card .chef-img .social-links a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--surface-color);
  color: var(--accent-color);
  border-radius: 50%;
  transition: background-color 0.3s, color 0.3s;
}

.chefs .chef-card .chef-img .social-links a:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.chefs .chef-card .chef-info {
  padding: 1.5rem;
}

.chefs .chef-card .chef-info h4 {
  font-size: 1.25rem;
  margin-bottom: 0.3rem;
  font-weight: 600;
}

.chefs .chef-card .chef-info .role {
  color: var(--accent-color);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  display: block;
}

.chefs .chef-card .chef-info .details {
  margin-bottom: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

.starter-section {
  padding: 20px 0;
}
.starter-section img {
  width: 100%;
  height: auto;
  display: block;
}

.about-2 .small-title {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--accent-color);
}

.about-2 .about-title {
  font-size: 1rem;
  margin: 0 0 1rem 0;
  font-weight: 700;
  line-height: 1.2;
  border-top: 1px solid #ccc;
  padding-top: 36px;
}

.about-2 .about-title1{
  font-size: 1rem;
  margin: 0 0 1rem 0;
  font-weight: 700;
  line-height: 1.2;
  border-top: 1px solid #ccc;
  padding-top: 36px;
  padding-bottom: 80px;
}

@media (max-width: 992px) {
  .about-2 .about-title {
    font-size: 1em;
  }
  .about-2 .about-title1 {
    font-size: 1em;
  }
}

.about-2 .about-description {
  color: #000;
  font-size: 1.125rem;
  line-height: 1.6;
  border-top: 1px solid #ccc;
  padding-top: 36px;
}

.about-2 .about-description1 {
  color: #000;
  font-size: 2.5rem;
  line-height: 1.6;
  border-top: 1px solid #ccc;
  padding-top: 36px;
  padding-bottom: 80px;
  font-weight: 600;
}

@media (min-width: 992px) {
  .about-2 .description-wrapper {
    /*border-left: 1px solid var(--accent-color);
    padding-left: 30px;*/
  }
}

.about-2 .content-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.about-2 .content-card .card-image {
  margin-bottom: 1.5rem;
  overflow: hidden;
  border-radius: 12px;
}

.about-2 .content-card .card-image img {
  transition: transform 0.5s ease;
}

.about-2 .content-card .card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.about-2 .content-card .card-content h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.about-2 .content-card .card-content p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 1.5rem;
  flex: 1;
}

.about-2 .content-card .card-content .read-more {
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.about-2 .content-card .card-content .read-more:hover {
  gap: 0.75rem;
}

.about-2 .content-card .card-content .read-more:hover i {
  transform: translateX(5px);
}

.about-2 .content-card .card-content .read-more i {
  transition: transform 0.3s ease;
}

.about-2 .content-card:hover .card-image img {
  transform: scale(1.05);
}

@media (max-width: 767px) {
  .about-2 .about-title1{
    padding-bottom: 20px;
  }
  .about-2 .about-description1{
    padding-bottom: 20px;
  }
}

.contact-2 {
  padding-top: 60px;
  padding-bottom: 60px;
}

.contact-2 .contact-info-box {
  border-top: 1px solid #ccc;
  padding-top: 25px;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.contact-2 .contact-info-box:hover {
  transform: translateY(-5px);
}

.contact-2 .contact-info-box .icon-box {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-2 .contact-info-box .icon-box i {
  font-size: 24px;
}

.contact-2 .contact-info-box .info-content h4 {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 10px;
  margin-top: 15px;
}

.contact-2 .contact-info-box .info-content p {
  margin-bottom: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 18px;
  line-height: 1.5;
}

.contact-2 .contact-info-box .info-content .yewu{
  color: #777;
}

.contact-2 .contact-info-box .info-content p:last-child {
  margin-bottom: 0;
}

.contact-2 .contact-info-box .info-content .qr-img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border: 1px solid #fff;
  margin-top: 60px;
}

.contact-2 .contact-info-box .info-content .btn {
  background: none;
  border: #505050 1px solid;
  color: #000;
  border-radius: 50px;
  padding: 8px 25px;
}

.contact-2 .map-section {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.contact-2 .map-section iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.contact-2 .form-container-overlap {
  position: relative;
  margin-top: -150px;
  margin-bottom: 60px;
  z-index: 10;
}

.contact-2 .contact-form-wrapper {
  background-color: var(--surface-color);
  border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  padding: 40px;
}

.contact-2 .contact-form-wrapper h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 30px;
  position: relative;
}

.contact-2 .contact-form-wrapper h2:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background-color: var(--accent-color);
}

.contact-2 .contact-form-wrapper .form-group {
  margin-bottom: 20px;
}

.contact-2 .contact-form-wrapper .form-group .input-with-icon {
  position: relative;
}

.contact-2 .contact-form-wrapper .form-group .input-with-icon i {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 18px;
  z-index: 10;
}

.contact-2 .contact-form-wrapper .form-group .input-with-icon i.message-icon {
  top: 28px;
}

.contact-2 .contact-form-wrapper .form-group .input-with-icon textarea+i {
  top: 25px;
  transform: none;
}

.contact-2 .contact-form-wrapper .form-group .input-with-icon .form-control {
  border-radius: 8px;
  padding: 12px 15px 12px 45px;
  height: 3.5rem;
  color: var(--default-color);
  background-color: var(--surface-color);
  font-size: 15px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact-2 .contact-form-wrapper .form-group .input-with-icon .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.25rem color-mix(in srgb, var(--accent-color), transparent 90%);
}

.contact-2 .contact-form-wrapper .form-group .input-with-icon .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.contact-2 .contact-form-wrapper .form-group .input-with-icon textarea.form-control {
  height: 180px;
  resize: none;
  padding-top: 15px;
}

.contact-2 .contact-form-wrapper .btn-submit {
  background-color: var(--accent-color);
  border: none;
  color: var(--contrast-color);
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.contact-2 .contact-form-wrapper .btn-submit:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.contact-2 .contact-form-wrapper .btn-submit:active {
  transform: translateY(0);
  box-shadow: 0 3px 10px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.contact-2 .contact-form-wrapper .loading,
.contact-2 .contact-form-wrapper .error-message,
.contact-2 .contact-form-wrapper .sent-message {
  margin-top: 10px;
  margin-bottom: 20px;
}

@media (max-width: 992px) {
  .contact-2 .form-container-overlap {
    margin-top: -120px;
  }

  .contact-2 .contact-form-wrapper {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .contact-2{
    padding-bottom: 0px;
  }
  .contact-2 .contact-info-box .info-content .yewu{
    font-size: 15px;
  }
  .contact-2 .contact-info-box .info-content h4{
    font-size: 30px;
  }
  .contact-2 .contact-info-box .info-content .qr-img{
    width: 130px;
    height: 130px;
    margin-top: 20px;
  }
  .contact-2 .contact-info-box {
    margin-bottom: 20px;
  }

  .contact-2 .form-container-overlap {
    margin-top: -100px;
  }

  .contact-2 .contact-form-wrapper {
    padding: 25px;
  }

  .contact-2 .contact-form-wrapper h2 {
    font-size: 24px;
  }

  .contact-2 .map-section {
    height: 450px;
  }

}

@media (max-width: 576px) {
  .contact-2 .form-container-overlap {
    margin-top: -80px;
  }

  .contact-2 .contact-form-wrapper {
    padding: 20px;
  }

  .contact-2 .btn-submit {
    width: 100%;
  }

  .contact-2 .map-section {
    height: 400px;
  }
}

.contact {
  padding-top: 60px;
  padding-bottom: 60px;
  /* 新增预算按钮样式 */
}

.contact .contact-form-container {
  padding: 60px 0;
  border-top: 1px solid #ccc;
}

.contact .contact-form-container .form-intro {
  margin-bottom: 60px;
}

.contact .contact-form-container .form-intro h2 {
  font-size: 50px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 20px;
  color: var(--heading-color);
  letter-spacing: -0.5px;
}

.contact .contact-form-container .form-intro p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--default-color);
  margin-bottom: 0;
  opacity: 0.85;
}

.contact .contact-form-container .contact-form .row {
  margin-bottom: 40px;
}

.contact .contact-form-container .contact-form .row:last-of-type {
  margin-bottom: 0;
}

.contact .contact-form-container .contact-form .form-field {
  position: relative;
  margin-bottom: 40px;
}

.contact .contact-form-container .contact-form .form-field.message-field {
  margin-bottom: 50px;
}

.contact .contact-form-container .contact-form .form-field .field-label {
  position: absolute;
  top: -10px;
  left: 0;
  font-size: 13px;
  font-weight: 500;
  color: var(--heading-color);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  opacity: 0.8;
}

.contact .contact-form-container .contact-form .form-field .form-input {
  width: 100%;
  border: none;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  background: transparent;
  padding: 20px 0 15px 0;
  font-size: 16px;
  color: var(--default-color);
  transition: all 0.3s ease;
}

.contact .contact-form-container .contact-form .form-field .form-input:focus {
  outline: none;
  border-bottom-color: var(--accent-color);
  background: transparent;
}

.contact .contact-form-container .contact-form .form-field .form-input::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  opacity: 1;
}

.contact .contact-form-container .contact-form .form-field .message-input {
  resize: vertical;
  min-height: 120px;
  font-family: inherit;
  padding-top: 25px;
}

.contact .contact-form-container .contact-form .send-button {
  background: transparent;
  border: 1px solid var(--accent-color);
  color: var(--accent-color);
  padding: 18px 40px;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.contact .contact-form-container .contact-form .send-button .button-arrow {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.contact .contact-form-container .contact-form .send-button:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.contact .contact-form-container .contact-form .send-button:hover .button-arrow {
  transform: translateX(5px);
}

.contact .contact-sidebar {
  height: 100%;
  padding: 60px 0px;
  border-top: 1px solid #ccc;
}

.contact .contact-sidebar .contact-header {
  margin-bottom: 60px;
}

.contact .contact-sidebar .contact-header h3 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 150px;
  color: var(--heading-color);
  letter-spacing: -0.3px;
}

.contact .contact-sidebar .contact-header p {
  font-size: 16px;
  line-height: 1.7;
  color: #646464;
  margin-bottom: 0;
  opacity: 0.85;
  border-left: 2px solid #ab1b20 ;
  padding-left: 10px;

}

.contact .budget-options {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  padding-top: 68px;
  padding-bottom: 36px;
  border-bottom: 1px solid #ccc;
  margin-bottom: 80px;
}

.contact .budget-options .budget-option input {
  display: none;
}

.contact .budget-options .budget-option span {
  display: inline-block;
  padding: 10px 22px;
  border: 1px solid var(--accent-color);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  color: var(--accent-color);
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact .budget-options .budget-option input:checked+span {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.contact .budget-options .budget-option span:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 85%);
}

@media (max-width: 992px) {
  .contact .contact-form-container {
    padding: 40px 0;
  }

  .contact .contact-sidebar {
    padding: 40px 30px;
    margin-bottom: 40px;
  }
}

@media (max-width: 768px) {
  .contact{
    padding-top: 0px;
  }
  .contact .contact-sidebar .contact-header h3{
    margin-bottom: 30px;
  }
  .contact .contact-sidebar .contact-header p{
    font-size: 14px;
  }
  .contact .contact-form-container .form-intro h2 {
    font-size: 28px;
  }
  .contact .contact-form-container .form-intro {
    margin-bottom: 40px;
    text-align: center;
  }

  .contact .contact-form-container .contact-form .row {
    margin-bottom: 20px;
  }

  .contact .contact-form-container .contact-form .form-field {
    margin-bottom: 30px;
  }

  .contact .contact-sidebar {
    padding: 30px 25px;
  }

  .contact .contact-sidebar .contact-header {
    margin-bottom: 10px;
  }
  .contact .contact-sidebar{
    margin-bottom: 0px;
  }
  .contact .budget-options{
    gap: 10px;
  }
  .contact .contact-form-container .contact-form .send-button{
    padding: 12px 20px;
    font-size: 18px;
  }
}

.portfolio .portfolio-filters {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
  padding: 0;
  list-style: none;
  padding-bottom: 36px;
  border-bottom: 1px solid #ccc;
}

.portfolio .portfolio-filters li {
  padding: 8px 20px;
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
}

.portfolio .portfolio-filters li:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 80%);
}

.portfolio .portfolio-filters li.filter-active {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

@media (max-width: 768px) {
  .portfolio .portfolio-filters {
    justify-content: center;
    margin-top: 50px;
  }
}

.portfolio .caselist {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
  font-size: 1.1rem;
  color: var(--default-color);
  margin-bottom: 50px;
}

.portfolio .caselist span {
  position: relative;
  padding-right: 20px;
  cursor: pointer;
  transition: color 0.3s ease;
}

.portfolio .caselist span a{
  color: #000;
}

.portfolio .caselist span:hover {
  color: var(--accent-color);
}

.portfolio .caselist span:not(:last-child)::after {
  content: "|";
  position: absolute;
  right: 0;
  color: #999;
}

.portfolio .portfolio-card {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.portfolio .portfolio-card:hover {
  transform: translateY(-10px);
}

.portfolio .portfolio-card:hover .portfolio-img .portfolio-overlay {
  opacity: 1;
}

.portfolio .portfolio-card:hover .portfolio-img img {
  transform: scale(1.1);
}

.portfolio .portfolio-card .portfolio-img {
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}

.portfolio .portfolio-card .portfolio-img img {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}

.portfolio .portfolio-card .portfolio-img .portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  opacity: 0;
  transition: all 0.3s ease;
}

.portfolio .portfolio-card .portfolio-img .portfolio-overlay a {
  width: 45px;
  height: 45px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.portfolio .portfolio-card .portfolio-img .portfolio-overlay a:hover {
  background-color: color-mix(in srgb, var(--accent-color), #fff 20%);
  transform: translateY(-5px);
}

.portfolio .portfolio-card .portfolio-info {
  padding: 20px 0px;
}

.portfolio .portfolio-card .portfolio-info h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--heading-color);
}

.portfolio .portfolio-card .portfolio-info p {
  font-size: 0.9rem;
  color: var(--default-color);
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid #ccc;
}

.portfolio .portfolio-card .portfolio-info .portfolio-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.portfolio .portfolio-card .portfolio-info .portfolio-tags span {
  font-size: 0.8rem;
  padding: 4px 12px;
  border-radius: 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
}

.portfolio .btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 12px 30px;
  font-weight: 500;
  border-radius: 50px;
  transition: all 0.3s ease;
  font-size: 22px;
}

.portfolio .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 10%);
  border-color: color-mix(in srgb, var(--accent-color), #000 10%);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .portfolio{
    padding: 0;
  }
}

.hero-2 {
  width: 100%;
  min-height: 40vh;
  position: relative;
  padding: 60px 0 60px 0;
  display: flex;
  align-items: center;
  background-size: cover;
}

.hero-2 span {
  margin: 25px 0px;
}

.hero-2 h3 {
  margin: 0 0 10px 0;
  font-size: 42px;
  font-weight: 600;
}

.hero-2 h3 span {
  color: var(--accent-color);
}

.hero-2 p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 5px 0 30px 0;
  font-size: 20px;
  font-weight: 400;
}

.hero-2 .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px;
  border-radius: 50px;
  transition: 0.5s;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero-2 .btn-get-started:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero-2 .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  color: var(--default-color);
  font-weight: 500;
}

.hero-2 .btn-watch-video i {
  color: var(--accent-color);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.hero-2 .btn-watch-video:hover {
  color: var(--accent-color);
}

.hero-2 .btn-watch-video:hover i {
  color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.hero-2 .animated {
  margin-bottom: 60px;
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (min-width: 992px) {
  .hero-2 .animated {
    max-width: 10%;
  }
}

@media (max-width: 991px) {
  .hero-2 .animated {
    max-width: 50%;
  }
}

@media (max-width: 575px) {
  .hero-2 .animated {
    max-width: 50%;
  }
}

@media (max-width: 640px) {
  .hero-2 h1 {
    font-size: 28px;
    line-height: 36px;
  }

  .hero-2 p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  .hero-2 .btn-get-started,
  .hero-2 .btn-watch-video {
    font-size: 13px;
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

.service-details {
  padding-top: 60px;
  padding-bottom: 60px;
}

.service-details .services-list {
  background-color: var(--surface-color);
  padding: 10px 30px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  margin-bottom: 20px;
}

.service-details .services-list a {
  display: block;
  line-height: 1;
  padding: 8px 0 8px 15px;
  border-left: 3px solid color-mix(in srgb, var(--default-color), transparent 70%);
  margin: 20px 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.service-details .services-list a.active {
  color: var(--heading-color);
  font-weight: 700;
  border-color: var(--accent-color);
}

.service-details .services-list a:hover {
  border-color: var(--accent-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 50px;
  font-weight: 700;
  margin-bottom: 30px;
  border-top: 1px solid #ccc;
  padding-top: 30px;
}

.service-details h4 {
  border-top: 1px solid #ccc;
  padding-top: 30px;
  font-size: 20px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}

.hero-show {
  width: 100%;
  position: relative;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-show img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-3 {
  width: 100%;
  min-height: 40vh;
  position: relative;
  padding: 120px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-3 img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-3 .hero-icon {
  width: 150px;
  height: 150px;
  object-fit: contain;
  display: block;
  margin: 0 auto; 
}

.hero-3 .icon {
  margin-bottom: 50px; 
}

.hero-3:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero-3 .container {
  position: relative;
  z-index: 3;
}

.hero-3 h2 {
  margin-top: 50px;
  font-size: 48px;
  font-weight: 700;
}

.hero-3 p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 10px 0 20px 0;
  font-size: 24px;
}

@media (max-width: 768px) {
  .hero-3 h2 {
    font-size: 32px;
    line-height: 36px;
  }

  .hero-3 p {
    font-size: 18px;
    line-height: 24px;
  }
}

.hero-4 {
  width: 100%;
  min-height: 80vh;
  position: relative;
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 80px;
}

.hero-4 img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-4:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero-4 .container {
  position: relative;
  z-index: 3;
}

.hero-4 h2 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
}

.hero-4 p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 10px 0 20px 0;
  font-size: 24px;
}

@media (max-width: 768px) {
  .hero-4 h2 {
    font-size: 32px;
    line-height: 36px;
  }

  .hero-4 p {
    font-size: 18px;
    line-height: 24px;
  }
}

.call-to-action {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.call-to-action .container {
  position: relative;
  z-index: 2;
}

.call-to-action .cta-content {
  padding-right: 20px;
}

@media (max-width: 992px) {
  .call-to-action .cta-content {
    padding-right: 0;
    margin-bottom: 50px;
  }
}

.call-to-action .badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--accent-color) 0%, color-mix(in srgb, var(--accent-color), #6c5ce7 50%) 100%);
  color: var(--contrast-color);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 4px 15px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.call-to-action .badge i {
  font-size: 16px;
}

.call-to-action h2 {
  font-size: 6.1rem;
  font-weight: 500;
  margin: 20px 0;
  line-height: 1.3;
}

@media (max-width: 768px) {
  .call-to-action{
    padding: 50px 0px 10px 0px;
  }
  .call-to-action h2 {
    font-size: 2rem;
  }
  .call-to-action .cta-content{
    margin-bottom: 0px;
  }
  .call-to-action .lead{
    margin-bottom: 10px;
  }
}

.call-to-action .lead {
  font-size: 1.1rem;
  color: #000;
  margin-bottom: 30px;
  line-height: 1.6;
}

.call-to-action .features-list .feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.call-to-action .features-list .feature-item i {
  color: #22c55e;
  font-size: 18px;
  flex-shrink: 0;
}

.call-to-action .features-list .feature-item span {
  font-weight: 500;
  color: var(--default-color);
}

.call-to-action .cta-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 30px;
}

@media (max-width: 576px) {
  .call-to-action .cta-buttons {
    flex-direction: column;
  }
}

.call-to-action .cta-buttons .btn {
  padding: 14px 32px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.call-to-action .cta-buttons .btn.btn-primary {
  background: linear-gradient(135deg, var(--accent-color) 0%, color-mix(in srgb, var(--accent-color), #6c5ce7 50%) 100%);
  color: var(--contrast-color);
  box-shadow: 0 6px 20px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.call-to-action .cta-buttons .btn.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 50%);
}

.call-to-action .cta-buttons .btn.btn-outline {
  background: var(--surface-color);
  color: var(--default-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.call-to-action .cta-buttons .btn.btn-outline:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
  transform: translateY(-2px);
}

.call-to-action .trust-indicators small {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.call-to-action .trust-indicators .rating {
  display: flex;
  align-items: center;
  gap: 2px;
}

.call-to-action .trust-indicators .rating i {
  color: #fbbf24;
  font-size: 14px;
}

.call-to-action .trust-indicators .rating span {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: 500;
  font-size: 14px;
}

.academics {
  padding-top: 60px;
  padding-bottom: 60px;
}

.academics .section-heading {
  color: var(--heading-color);
  margin-bottom: 1.5rem;
  font-weight: 700;
  border-top: 1px solid #ccc;
  padding-top: 20px;
}
.academics .xiangmu{
  padding: 100px 0;
}
.academics .section-intro .xm-heading{
  font-size: 1.68rem;
  color: #4d4d4d;
  font-weight: 400;
}
.academics .xmziduan{
  font-size: 1.68rem;
  color: #4d4d4d;
  font-weight: 400;
}
.academics .xmjj{
  font-size: 17px;
  color: #000;
  padding-right: 100px;
}
.academics .xmzd{
  font-size: 48px;
  color: #000;
  font-weight: 700;
  padding-bottom: 20px;
  border-bottom: 1px solid #ccc;
  margin-bottom: 40px;
}
.academics .tyyewu{
  border-top: 1px solid #ccc;
  padding-top: 20px;
}

.academics .lead {
  font-size: 1.2rem;
  margin-bottom: 1.25rem;
}

.academics .btn {
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.academics .btn.btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.academics .btn.btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 10%);
  border-color: color-mix(in srgb, var(--accent-color), #000 10%);
}

.academics .btn.btn-outline {
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  color: var(--default-color);
}

.academics .btn.btn-outline:hover {
  background-color: transparent;
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.academics .key-metrics .metric-card {
  padding: 1.5rem;
  border-radius: 8px;
  height: 100%;
  transition: all 0.3s ease;
}

.academics .key-metrics .metric-card:hover {
  transform: translateY(-5px);
}

.academics .key-metrics .metric-card h2 {
  color: var(--accent-color);
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.academics .key-metrics .metric-card h2 sup {
  font-size: 0.6em;
  position: relative;
  top: -0.4em; 
  margin-left: 2px; 
}

.academics .key-metrics .metric-card p {
  margin-bottom: 2rem;
  font-size: 1.2rem;
  color: #646464;
  padding-bottom: 15px;
  border-bottom: 1px solid #b3b3b3;
}

.academics .key-metrics img {
  border-radius: 12px;
  margin-top: 30px;
}

.academics .programs-section,
.academics .faculty-section {
  padding-top: 2rem;
}

.academics .programs-section .section-header,
.academics .faculty-section .section-header {
  margin-bottom: 2rem;
}

.academics .programs-section .section-header h3,
.academics .faculty-section .section-header h3 {
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.academics .programs-section .section-header p,
.academics .faculty-section .section-header p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.academics .programs-filters {
  padding: 0;
  margin: 0 0 2rem 0;
  list-style: none;
  text-align: center;
}

.academics .programs-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 20px;
  margin: 0 5px 10px 5px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  color: var(--default-color);
  background-color: var(--surface-color);
  border-radius: 4px;
  transition: all 0.3s ease;
}

.academics .programs-filters li:hover,
.academics .programs-filters li.filter-active {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.academics .program-card {
  background-color: var(--surface-color);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px color-mix(in srgb, var(--heading-color), transparent 95%);
  transition: all 0.3s ease;
  height: 100%;
}

.academics .program-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px color-mix(in srgb, var(--heading-color), transparent 92%);
}

.academics .program-card:hover .program-img img {
  transform: scale(1.1);
}

.academics .program-card .program-img {
  position: relative;
  overflow: hidden;
}

.academics .program-card .program-img img {
  transition: all 0.5s ease;
  height: 200px;
  width: 100%;
  object-fit: cover;
}

.academics .program-card .program-img .program-tag {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 5px 10px;
  font-size: 0.8rem;
  border-radius: 4px;
}

.academics .program-card .program-content {
  padding: 1.5rem;
}

.academics .program-card .program-content h4 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.academics .program-card .program-content p {
  font-size: 0.9rem;
  margin-bottom: 1rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.academics .program-card .program-content .program-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.academics .program-card .program-content .program-meta .meta-item {
  display: flex;
  align-items: center;
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.academics .program-card .program-content .program-meta .meta-item i {
  margin-right: 5px;
  color: var(--accent-color);
}

.academics .program-card .program-content .program-link {
  display: inline-block;
  color: var(--accent-color);
  font-weight: 500;
  font-size: 0.9rem;
}

.academics .program-card .program-content .program-link i {
  transition: all 0.3s ease;
  margin-left: 5px;
}

.academics .program-card .program-content .program-link:hover {
  color: color-mix(in srgb, var(--accent-color), #000 15%);
}

.academics .program-card .program-content .program-link:hover i {
  transform: translateX(5px);
}

.academics .faculty-card {
  background-color: var(--surface-color);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px color-mix(in srgb, var(--heading-color), transparent 95%);
  transition: all 0.3s ease;
  height: 100%;
}

.academics .faculty-card:hover {
  transform: translateY(-5px);
}

.academics .faculty-card:hover .faculty-img img {
  transform: scale(1.1);
}

.academics .faculty-card .faculty-img {
  overflow: hidden;
}

.academics .faculty-card .faculty-img img {
  transition: all 0.5s ease;
  height: 300px;
  width: 100%;
  object-fit: cover;
}

.academics .faculty-card .faculty-content {
  padding: 1.25rem;
  text-align: center;
}

.academics .faculty-card .faculty-content h4 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
  font-weight: 600;
}

.academics .faculty-card .faculty-content .faculty-position {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.academics .faculty-card .faculty-content .faculty-social {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
}

.academics .faculty-card .faculty-content .faculty-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.academics .faculty-card .faculty-content .faculty-social a:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.academics .swiper-wrapper {
  height: auto !important;
}

@media (max-width: 992px) {
  .academics .section-intro {
    margin-bottom: 2rem;
  }

  .academics .faculty-card .faculty-img img {
    height: 250px;
  }
}

@media (max-width: 768px) {
  .academics{
    padding-bottom: 0;
  }
  .academics .key-metrics .metric-card h2 {
    font-size: 2rem;
  }

  .academics .xmjj{
    padding-right:0;
  }

  .academics .programs-filters li {
    padding: 6px 15px;
    margin: 0 3px 8px 3px;
    font-size: 14px;
  }
}

.clients .client-item {
  padding: 0.6rem 2rem;
  text-align: center;
  height: 100%;
  border-radius: 8px;
  border: 1px solid #6a6968;
  transition: all 0.3s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 1200px) {
  .clients .col-custom {
    flex: 0 0 20%;
    max-width: 20%;
  }
}

.clients .clients-intro h3{
  font-size: 15px;
  padding-top: 30px;
  border-top: 1px solid #ccc;
  padding-bottom: 40px;
}

.clients .clients-intro p{
  font-size: 42px;
  padding-top: 30px;
  border-top: 1px solid #ccc;
  font-weight: 700;
  padding-bottom: 40px;
}


.clients .client-item img {
  max-width: 100%;
  transition: all 0.3s ease-in-out;
  opacity: 0.8;
}

.clients .client-item:hover {
  transform: translateY(-5px);
  border-color: var(--accent-color);
}

.clients .client-item:hover img {
  filter: grayscale(0);
  opacity: 1;
}

@media (max-width: 1199px) {
  .clients .client-item {
    padding: 1.25rem;
  }
}

@media (max-width: 767px) {
  .clients .client-item {
    padding: 1rem;
  }
  .clients .clients-intro h3{
    padding-bottom: 0
  }
}
.blogcontent{
  line-height: 32px;
  padding: 10px;
  font-size: 18px;
  color: #444;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
/* 视频容器 */
.video-responsive {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 40.9%; /* 22/9 ≈ 2.44 → 1/2.44 ≈ 40.9% */
    overflow: hidden;
    margin-bottom: 50px;
}

/* iframe 视频 */
.video-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* 可选：移动端自适应更高一些，避免太扁 */
@media (max-width: 768px) {
    .video-responsive {
        padding-bottom: 56.25%; /* 16:9，手机端不要太扁 */
    }
}

.post-details {
  margin: 0 auto;
}
.post-details .content{
  max-width: 1200px;
  margin: 0 auto; 
  line-height: 42px;
}

.post-details .hero-img {
  position: relative;
  width: 100%;
  height: 500px;
  margin: -60px auto 3rem;
  border-radius: 0 0 16px 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.post-details .hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-details .hero-img .meta-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}

.post-details .hero-img .meta-overlay .meta-categories .category {
  color: var(--contrast-color);
  background-color: var(--accent-color);
  padding: 0.4rem 1rem;
  border-radius: 30px;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.post-details .hero-img .meta-overlay .meta-categories .category:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.post-details .hero-img .meta-overlay .meta-categories .divider {
  color: var(--contrast-color);
  margin: 0 0.75rem;
}

.post-details .hero-img .meta-overlay .meta-categories .reading-time {
  color: var(--contrast-color);
  font-size: 0.9rem;
}

.post-details .hero-img .meta-overlay .meta-categories .reading-time i {
  margin-right: 0.3rem;
}

@media (max-width: 768px) {
  .post-details .hero-img {
    height: 350px;
    margin-top: -30px;
    margin-bottom: 2rem;
  }
}

.post-details .article-content {
  padding: 0 1rem;
}

.post-details .article-content .content-header {
  margin-bottom: 3rem;
}

.post-details .article-content .content-header .title {
  font-size: 4.2rem;
  line-height: 1.2;
  margin-bottom: 2rem;
  font-weight: 700;
  color: var(--heading-color);
}

@media (max-width: 768px) {
  .post-details .article-content .content-header .title {
    font-size: 2rem;
  }
}

.post-details .article-content .content-header .author-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.post-details .article-content .content-header .author-info .author-details {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.post-details .article-content .content-header .author-info .author-details .author-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.post-details .article-content .content-header .author-info .author-details .info h4 {
  margin: 0;
  font-size: 1.1rem;
  color: var(--heading-color);
}

.post-details .article-content .content-header .author-info .author-details .info .role {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.post-details .article-content .content-header .author-info .post-meta {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.95rem;
}

.post-details .article-content .content-header .author-info .post-meta i {
  margin-right: 0.3rem;
}

.post-details .article-content .content-header .author-info .post-meta .divider {
  margin: 0 0.75rem;
}

.post-details .article-content .content {
  font-size: 1.15rem;
  line-height: 2;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
}

.post-details .article-content .content .lead {
  font-size: 1.3rem;
  color: var(--heading-color);
  margin-bottom: 2rem;
  font-weight: 500;
}

.post-details .article-content .content h2 {
  font-size: 2rem;
  color: var(--heading-color);
  margin: 3rem 0 1.5rem;
}

.post-details .article-content .content p {
  margin-bottom: 1.5rem;
}

.post-details .article-content .content ul {
  margin-bottom: 2rem;
  padding-left: 1.2rem;
}

.post-details .article-content .content ul li {
  margin-bottom: 0.75rem;
  position: relative;
}

.post-details .article-content .content .content-image {
  margin: 2.5rem 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.post-details .article-content .content .content-image.right-aligned {
  float: right;
  max-width: 450px;
  margin: 1rem 0 2rem 2rem;
}

@media (max-width: 768px) {
  .post-details .article-content .content .content-image.right-aligned {
    float: none;
    max-width: 100%;
    margin: 2rem 0;
  }
  .post-details .backicon{
    display: none;
  }
}

.post-details .article-content .content .content-image img {
  width: 100%;
  height: auto;
}

.post-details .article-content .content .content-image figcaption {
  padding: 1rem;
  text-align: center;
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  background-color: color-mix(in srgb, var(--surface-color), transparent 50%);
}

.post-details .article-content .content .highlight-box {
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.post-details .article-content .content .highlight-box h3 {
  color: var(--heading-color);
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.post-details .article-content .content .highlight-box .trend-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.post-details .article-content .content .highlight-box .trend-list li {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  padding: 0.5rem 0;
}

.post-details .article-content .content .highlight-box .trend-list li i {
  color: var(--accent-color);
  font-size: 1.5rem;
  margin-right: 1rem;
}

.post-details .article-content .content .highlight-box .trend-list li span {
  color: var(--heading-color);
  font-weight: 500;
}

.post-details .article-content .content .content-grid {
  margin: 3rem 0;
}

.post-details .article-content .content .content-grid .info-card {
  background: var(--surface-color);
  border-radius: 12px;
  padding: 2rem;
  height: 100%;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.post-details .article-content .content .content-grid .info-card:hover {
  transform: translateY(-5px);
}

.post-details .article-content .content .content-grid .info-card i {
  font-size: 2rem;
  color: var(--accent-color);
  margin-bottom: 1rem;
}

.post-details .article-content .content .content-grid .info-card h4 {
  color: var(--heading-color);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.post-details .article-content .content .content-grid .info-card p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
}

.post-details .article-content .content blockquote {
  position: relative;
  margin: 3rem 0;
  padding: 2rem 3rem;
  background: var(--surface-color);
  border-radius: 12px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.post-details .article-content .content blockquote::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 20px;
  font-size: 8rem;
  color: color-mix(in srgb, var(--accent-color), transparent 85%);
  font-family: serif;
  line-height: 1;
}

.post-details .article-content .content blockquote p {
  font-size: 1.3rem;
  font-style: italic;
  color: var(--heading-color);
  margin: 0 0 1rem;
  position: relative;
}

.post-details .article-content .content blockquote cite {
  font-style: normal;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.95rem;
  display: block;
}

.post-details .article-content .meta-bottom {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  display: grid;
  gap: 2rem;
}

.post-details .article-content .meta-bottom h4 {
  color: var(--heading-color);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.post-details .article-content .meta-bottom .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.post-details .article-content .meta-bottom .tags .tag {
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  padding: 0.5rem 1rem;
  border-radius: 30px;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.post-details .article-content .meta-bottom .tags .tag:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.post-details .article-content .meta-bottom .social-links {
  display: flex;
  gap: 1rem;
}

.post-details .article-content .meta-bottom .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.post-details .article-content .meta-bottom .social-links a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.post-details .article-content .meta-bottom .social-links a i {
  font-size: 1.2rem;
}
.btn-circle {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 92px;
  height: 92px;
  background-color: #a30000; /* 红色背景，可根据品牌色调整 */
  color: #fff;
  border-radius: 50%;
  text-decoration: none;
  font-size: 56px;
  font-weight: 700;
  transition: background-color 0.3s ease;
}

.btn-circle:hover {
  background-color: #c60000;
  color: #fff;
}
.backicon .small{
  font-size: 20px;
  color: #848484;
}