* {
  box-sizing: border-box;
}

body {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  color: #333;
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s;
}

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

.section-padding {
  padding: 80px 0;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s;
  background: #1e3c8a;
  box-shadow: none;
}

.header .container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 90px;
  position: relative;
  padding: 0 15px;
}

.header .nav .nav-link {
  color: #fff;
}

.header .logo-sub {
  color: rgba(255, 255, 255, 0.9);
}

.header .header-right {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #fff;
}

.header .header-right .search-icon {
  width: 52px;
  height: 30px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 216px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.4s ease;
  overflow: hidden;
  position: relative;
}

.header .header-right .search-icon img {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.4s ease;
}

.header .header-right .search-icon input {
  position: absolute;
  left: 15px;
  top: 0;
  width: 0;
  height: 100%;
  border: none;
  background: transparent;
  color: inherit;
  font-size: 12px;
  opacity: 0;
  outline: none;
  padding: 0;
  transition: all 0.4s ease;
}

.header .header-right .search-icon input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.header .header-right .search-icon:hover, .header .header-right .search-icon:focus-within {
  width: 180px;
  height: 30px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 216px;
  justify-content: flex-start;
}

.header .header-right .search-icon:hover img, .header .header-right .search-icon:focus-within img {
  left: 160px;
  /* Move icon to the right */
  transform: translate(0, -50%);
}

.header .header-right .search-icon:hover input, .header .header-right .search-icon:focus-within input {
  width: 130px;
  opacity: 1;
  padding-right: 30px;
}

.header .header-right a.talent-btn {
  display: inline-block;
  width: 104px;
  height: 30px;
  background: #fff;
  border-radius: 15px;
  text-align: center;
  line-height: 30px;
  color: #2c53b3;
  font-size: 16px;
}

.logo {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: 10px;
}

.logo .logo-main {
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 4px;
  padding: 6px 12px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.logo .logo-main img {
  height: 48px;
  object-fit: contain;
  display: block;
}

.logo .logo-sub {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 1px;
  font-weight: 500;
  margin-left: 2px;
  text-transform: uppercase;
}

.nav {
  display: flex;
  gap: 40px;
  align-items: center;
  height: 100%;
}

.nav .nav-link {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  position: relative;
  padding: 10px 0;
  opacity: 0.9;
  display: block;
}

.nav .nav-link:hover, .nav .nav-link.active {
  opacity: 1;
}

.nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: #fff;
  transition: width 0.3s;
}

.nav .nav-link:hover::after, .nav .nav-link.active::after {
  width: 30px;
}

.nav .nav-link.nav-talent {
  display: none;
}

.dropdown {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
}

.dropdown .dropdown-toggle {
  padding-right: 0;
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}

.dropdown .dropdown-toggle::after {
  content: '';
  display: block;
  width: 12px !important;
  height: 12px !important;
  background: url("../images/down.png") no-repeat center center/contain;
  border: none;
  transform: none;
  transition: none !important;
  position: static;
  margin: 0 !important;
}

.dropdown:hover .mega-menu,
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.dropdown:hover .dropdown-toggle::after {
  background-image: url("../images/up.png");
  transform: none;
  margin-top: 0 !important;
  width: 12px !important;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  border-top: 3px solid #2c53b3;
  z-index: 1001;
  transition: all 0.3s;
}

.dropdown-menu a {
  display: block;
  padding: 12px 20px;
  color: #555;
  border-bottom: 1px solid #f5f5f5;
  transition: all 0.2s;
  text-align: center;
}

.dropdown-menu a:last-child {
  border-bottom: none;
}

.dropdown-menu a:hover {
  background: #f0f7ff;
  color: #2c53b3;
}

.mega-menu {
  position: absolute;
  top: 100%;
  left: -100px;
  /* Adjust centering */
  width: 600px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  /* Removed transform/transition for direct show */
  border-top: 3px solid #2c53b3;
  z-index: 1001;
}

.mega-menu .menu-content {
  display: flex;
  padding: 20px;
}

.mega-menu .menu-links {
  flex: 1;
  display: flex;
  flex-direction: column;
  border-right: 1px solid #eee;
  padding-right: 20px;
}

.mega-menu .menu-links a {
  padding: 10px 15px;
  color: #555;
  border-radius: 4px;
  transition: all 0.2s;
  text-align: left;
}

.mega-menu .menu-links a:hover {
  background: #f0f7ff;
  color: #2c53b3;
  padding-left: 20px;
}

.mega-menu .menu-featured {
  width: 200px;
  padding-left: 20px;
}

.mega-menu .menu-featured .featured-image {
  width: 100%;
  height: 150px;
  background: #eee;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.mega-menu .menu-featured .featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mega-menu .menu-featured .featured-image .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  z-index: 1002;
  cursor: pointer;
  width: 30px;
  height: 21px;
}

.mobile-menu-btn span {
  display: block;
  width: 100%;
  height: 3px;
  background: #fff;
  border-radius: 3px;
  transition: all 0.3s;
  position: relative;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.header.scrolled {
  background: #1e3c8a !important;
  box-shadow: none !important;
}

.header.scrolled .nav .nav-link {
  color: #fff !important;
}

.header.scrolled .header-right {
  color: #fff !important;
}

.header.scrolled .search-icon {
  background: rgba(255, 255, 255, 0.15) !important;
  border-color: transparent !important;
}

/* Page Banner */
.page-banner {
  margin-top: 90px;
  height: 350px;
  background: url("../images/xiangqing.png") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
}

.page-banner .banner-content h1 {
  font-size: 48px;
  font-weight: 700;
  color: #144290;
  margin-bottom: 10px;
}

.page-banner .banner-content .subline {
  font-size: 20px;
  color: #144290;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-banner .banner-content .breadcrumbs {
  font-size: 14px;
  color: #2c53b3;
  display: inline-block;
  padding: 5px 15px;
  border-radius: 20px;
}

.page-banner .banner-content .breadcrumbs a {
  color: #2c53b3;
}

.page-banner .banner-content .breadcrumbs a:hover {
  color: #2c53b3;
}

.page-banner .banner-content .breadcrumbs span {
  color: #2c53b3;
}

/* Details Section */
.details-section {
  background: #f8f9fa;
  min-height: 600px;
}

.details-layout {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

.details-main {
  flex: 3;
  width: 75%;
}

.details-sidebar {
  flex: 1;
  width: 25%;
}

.article-content {
  background: #fff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.article-content .article-title {
  font-size: 28px;
  font-weight: bold;
  color: #333;
  margin-bottom: 20px;
  line-height: 1.4;
}

.article-content .article-meta {
  display: flex;
  gap: 20px;
  color: #999;
  font-size: 14px;
  margin-bottom: 30px;
  border-bottom: 1px solid #eee;
  padding-bottom: 20px;
}

.article-content .article-meta .meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
}

.article-content .article-meta .meta-item:last-child {
  margin-left: auto;
}

.article-content .article-meta .meta-item i {
  display: inline-block;
  width: 15px;
  height: 15px;
}

.article-content .article-meta .meta-item i.icon-user {
  background: url(../images/wangzhan.png) no-repeat;
  background-size: cover;
}

.article-content .article-meta .meta-item i.icon-time {
  background: url(../images/time.png) no-repeat;
  background-size: cover;
}

.article-content .article-meta .meta-item i.icon-eye {
  background: url(../images/chakan.png) no-repeat;
  background-size: cover;
}

.article-content .article-summary {
  background: #FFEDD5;
  padding: 20px;
  color: #F0692F;
  line-height: 1.8;
  margin-bottom: 30px;
  font-size: 15px;
  border-radius: 4px;
  font-weight: 700;
}

.article-content .article-body {
  font-size: 16px;
  line-height: 1.8;
  color: #000;
}

.article-content .article-body p {
  margin-bottom: 20px;
  text-indent: 2em;
}

.article-content .article-body figure {
  margin: 30px 0;
  text-align: center;
}

.article-content .article-body figure img {
  max-width: 100%;
  border-radius: 4px;
}

.article-content .article-body figure figcaption {
  margin-top: 10px;
  color: #707070;
  font-size: 14px;
}

.article-content .article-nav {
  margin-top: 50px;
  border-top: 1px solid #eee;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: #666;
}

.article-content .article-nav a {
  color: #333;
}

.article-content .article-nav a:hover {
  color: #2c53b3;
}

.article-content .back-btn-wrap {
  text-align: center;
  margin-top: 40px;
}

.article-content .back-btn-wrap .btn-back {
  display: inline-block;
  padding: 10px 40px;
  background: #2c53b3;
  color: #fff;
  border-radius: 4px;
  transition: all 0.3s;
}

.article-content .back-btn-wrap .btn-back:hover {
  background: #22408a;
}

.sidebar-widget {
  background: #fff;
  border: 1px solid #dae7f7;
  border-radius: 20px;
  box-shadow: none;
  margin-bottom: 30px;
}

.sidebar-widget .widget-title {
  padding: 20px;
  padding-bottom: 0px;
  background: linear-gradient(180deg, #F0F4FD 0%, rgba(240, 244, 253, 0) 100%);
  font-size: 18px;
  color: #333;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.sidebar-widget .widget-title small {
  font-size: 12px;
  color: #999;
  margin-left: 10px;
  font-weight: normal;
}

.sidebar-widget.widget-related .widget-title {
  flex-direction: column;
  border-left: none;
  padding-left: 0;
  text-align: center;
  font-size: 24px;
  color: #3c69c5;
  font-weight: bold;
}

.sidebar-widget.widget-related .widget-title small {
  display: block;
  font-size: 14px;
  color: #8faadd;
  margin-left: 0;
  margin-top: 5px;
  font-weight: normal;
}

.sidebar-widget.widget-recommend .widget-title {
  border-left: none;
  padding-left: 20px;
  font-size: 20px;
  color: #1a3c8e;
  font-weight: bold;
  position: relative;
  display: flex;
  align-items: center;
}

.sidebar-widget.widget-recommend .widget-title::before {
  content: '';
  display: block;
  width: 4px;
  height: 24px;
  background-color: #1a3c8e;
  border-radius: 3px;
  margin-right: 12px;
}

.sidebar-widget .related-list {
  padding: 0px 20px;
}

.sidebar-widget .related-list li {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px dashed #eee;
}

.sidebar-widget .related-list li:last-child {
  border: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.sidebar-widget .related-list li a {
  display: block;
  font-size: 14px;
  color: #333;
  margin-bottom: 10px;
  line-height: 1.5;
  font-weight: 500;
}

.sidebar-widget .related-list li a:hover {
  color: #2c53b3;
}

.sidebar-widget .related-list li .date {
  font-size: 12px;
  color: #999;
  text-align: right;
  display: block;
}

.sidebar-widget .recommend-list {
  padding: 0px 20px;
}

.sidebar-widget .recommend-list li {
  margin-bottom: 15px;
}

.sidebar-widget .recommend-list li .rec-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.sidebar-widget .recommend-list li .rec-item .rec-img {
  width: 90px;
  height: 65px;
  flex-shrink: 0;
  border-radius: 6px;
  overflow: hidden;
}

.sidebar-widget .recommend-list li .rec-item .rec-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sidebar-widget .recommend-list li .rec-item .rec-text {
  font-size: 14px;
  color: #333;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-weight: 500;
}

.sidebar-widget .recommend-list li .rec-item:hover .rec-text {
  color: #2c53b3;
}

/* Contact Section V2 (Copied from News/About) */
.contact-section-v2 {
  background: #F3F7FF;
  padding-bottom: 0;
}

.contact-card-v2 {
  background: #fff;
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  top: 50px;
  margin-bottom: 100px;
  height: 630px;
  background: #144290;
  padding-left: 80px;
}

.contact-left {
  padding-top: 60px;
  width: 40%;
  background: #144290;
  color: #fff;
  position: relative;
  padding-right: 60px;
}

.contact-left .line-deco {
  width: 40px;
  height: 2px;
  background: #fff;
  margin-bottom: 15px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 15px;
}

.contact-left .subtitle-en {
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  vertical-align: middle;
  margin-bottom: 15px;
  text-transform: capitalize;
  letter-spacing: 1px;
}

.contact-left h3 {
  font-size: 36px;
  margin-bottom: 10px;
  color: #fff;
  font-weight: bold;
  letter-spacing: 1px;
}

.contact-left .contact-desc {
  margin-top: 20px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 10px;
  line-height: 1.8;
}

.contact-left .contact-info-list .c-item {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
  font-size: 15px;
  color: #fff;
}

.contact-left .contact-info-list .c-item .icon-wrap {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  flex-shrink: 0;
}

.contact-left .contact-info-list .c-item img {
  width: 36px;
  height: 36px;
  border: none;
}

.contact-left .work-hours {
  margin-top: 60px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

.contact-right {
  padding-left: 90px;
  padding-right: 90px;
  padding-top: 60px;
  width: 66%;
  background: #DFEAFF;
  box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.15);
  border-radius: 50px 50px 50px 50px;
}

.contact-right .simple-form .form-row {
  display: flex;
  gap: 30px;
  margin-bottom: 25px;
}

.contact-right .simple-form .form-group {
  margin-bottom: 30px;
}

.contact-right .simple-form .form-group.half {
  flex: 1;
}

.contact-right .simple-form .form-group label {
  display: block;
  margin-bottom: 12px;
  font-size: 15px;
  color: #333;
  font-weight: bold;
}

.contact-right .simple-form .form-group input,
.contact-right .simple-form .form-group textarea {
  width: 100%;
  padding: 15px 20px;
  border: none;
  background: #fff;
  border-radius: 6px;
  font-size: 14px;
  color: #333;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
  transition: all 0.3s;
}

.contact-right .simple-form .form-group input::placeholder,
.contact-right .simple-form .form-group textarea::placeholder {
  color: #ccc;
}

.contact-right .simple-form .form-group input:focus,
.contact-right .simple-form .form-group textarea:focus {
  outline: none;
  box-shadow: 0 4px 15px rgba(26, 60, 142, 0.15);
}

.contact-right .simple-form .form-group textarea {
  resize: none;
  height: 188px;
}

.contact-right .simple-form .form-submit-row {
  text-align: right;
  margin-top: 30px;
}

.contact-right .simple-form .btn-submit {
  background: #1a3c8e;
  color: #fff;
  border: none;
  padding: 10px 50px;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 5px 15px rgba(26, 60, 142, 0.2);
  margin-top: 20px;
}

.contact-right .simple-form .btn-submit:hover {
  background: #194BA1;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(26, 60, 142, 0.3);
}

/* Footer */
.footer {
  background-color: #1a2233;
  padding: 60px 0 40px;
  color: #fff;
  font-size: 14px;
  margin-top: 0;
}

.footer .footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.footer .footer-top .footer-logo {
  font-size: 26px;
  font-weight: bold;
  color: #fff;
  letter-spacing: 1px;
}

.footer .footer-top .footer-nav {
  display: flex;
  gap: 40px;
}

.footer .footer-top .footer-nav a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  transition: color 0.3s;
}

.footer .footer-top .footer-nav a:hover, .footer .footer-top .footer-nav a.active {
  color: #fff;
}

.footer .footer-line {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin-bottom: 30px;
}

.footer .footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 40px;
  height: 40px;
  background: #2c53b3;
  color: #fff;
  text-align: center;
  line-height: 40px;
  border-radius: 5px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 999;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: #1e3c8a;
}

/* Animation Keyframes */
@keyframes fadeInUpShort {
  0% {
    opacity: 0;
    transform: translate3d(0, 80px, 0);
    filter: blur(10px);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    filter: blur(0);
  }
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translate3d(-80px, 0, 0);
    filter: blur(10px);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    filter: blur(0);
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translate3d(80px, 0, 0);
    filter: blur(10px);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    filter: blur(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translate3d(0, 80px, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes clipUp {
  0% {
    opacity: 0;
    transform: translate3d(0, 40px, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes zoomInUp {
  0% {
    opacity: 0;
    transform: scale3d(0.8, 0.8, 0.8) translate3d(0, 50px, 0);
  }
  100% {
    opacity: 1;
    transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
  }
}

/* WOW.js Custom Classes */
.wow {
  visibility: hidden;
  animation-play-state: paused;
}

.animated {
  visibility: visible;
  animation-fill-mode: both;
  animation-play-state: running;
}

.fadeInUpShort {
  animation-name: fadeInUpShort;
  animation-duration: 1s;
  animation-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
}

.fadeInUp {
  animation-name: fadeInUp;
  animation-duration: 1s;
  animation-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
}

.fadeInLeft {
  animation-name: fadeInLeft;
  animation-duration: 1s;
  animation-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
}

.fadeInRight {
  animation-name: fadeInRight;
  animation-duration: 1s;
  animation-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
}

.clipUp {
  animation-name: clipUp;
  animation-duration: 0.8s;
  animation-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.zoomInUp {
  animation-name: zoomInUp;
  animation-duration: 0.8s;
  animation-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
}

/* Responsive */
@media (max-width: 992px) {
  .header {
    background: #1e3c8a;
    height: 70px;
    position: relative;
  }
  .header .container {
    height: 70px;
    position: sticky;
  }
  .logo {
    margin-top: 5px;
  }
  .logo .logo-main {
    font-size: 20px;
    padding: 4px 8px;
    gap: 6px;
  }
  .logo .logo-main img {
    height: 48px;
  }
  .logo .logo-sub {
    font-size: 9px;
    margin-left: 1px;
  }
  .header.menu-open {
    background: #1e3c8a;
  }
  .mobile-menu-btn {
    display: flex !important;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2000;
  }
  .mobile-menu-btn span {
    background: #fff !important;
  }
  .header-right {
    display: none !important;
  }
  .nav .nav-link.nav-talent {
    display: block;
  }
  .header .nav {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background: #fff;
    flex-direction: column;
    padding: 20px;
    gap: 0;
    z-index: 1001;
    overflow-y: auto;
    border-top: 1px solid #eee;
  }
  .header .nav.open {
    display: flex;
  }
  .header.scrolled .nav .nav-link {
    color: #333 !important;
  }
  .nav .nav-link {
    padding: 15px 0;
    border-bottom: 1px solid #f9f9f9;
    width: 100%;
    color: #333 !important;
    font-size: 15px;
    text-align: left;
    padding-left: 10px;
  }
  .nav .nav-link::after {
    display: none;
  }
  .dropdown {
    display: block;
    width: 100%;
    height: auto;
  }
  .dropdown .dropdown-toggle {
    justify-content: space-between;
    width: 100%;
    padding-right: 10px;
  }
  .dropdown-menu {
    position: static;
    width: 100%;
    box-shadow: none;
    border: none;
    background: #f9f9f9;
    display: none;
    opacity: 1;
    visibility: visible;
    padding: 0;
    transform: none;
  }
  .dropdown-menu a {
    display: block;
    text-align: left;
    padding: 12px 20px;
    color: #666;
    font-size: 14px;
    border-bottom: 1px solid #eee;
  }
  .dropdown-menu a:last-child {
    border-bottom: none;
  }
  .dropdown.open .dropdown-menu {
    display: block;
  }
  .mega-menu {
    position: static;
    width: 100%;
    box-shadow: none;
    border: none;
    background: #f9f9f9;
    display: none;
    opacity: 1;
    visibility: visible;
    padding: 0;
  }
  .mega-menu .menu-content {
    flex-direction: column;
    padding: 0;
  }
  .mega-menu .menu-links {
    border: none;
    padding: 0;
  }
  .mega-menu .menu-links a {
    text-align: left;
    padding: 12px 20px;
    color: #666;
    font-size: 14px;
    border-bottom: 1px solid #eee;
  }
  .mega-menu .menu-featured {
    display: none;
  }
  .dropdown.open .mega-menu {
    display: block;
  }
  /* Details Mobile Styles */
  .page-banner {
    margin-top: 0;
    height: auto;
    padding: 60px 15px;
  }
  .page-banner .banner-content h1 {
    font-size: 28px;
  }
  .page-banner .banner-content .subline {
    font-size: 16px;
    margin-bottom: 30px;
  }
  .details-layout {
    flex-direction: column;
  }
  .details-main,
  .details-sidebar {
    width: 100%;
  }
  .article-content {
    padding: 25px 15px;
  }
  .article-content .article-title {
    font-size: 22px;
    line-height: 1.4;
    margin-bottom: 15px;
  }
  .article-content .article-meta {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
  }
  .article-content .article-meta .meta-item {
    font-size: 12px;
    white-space: nowrap;
  }
  .article-content .article-meta .meta-item i {
    width: 14px;
    height: 14px;
  }
  .article-content .article-summary {
    padding: 15px;
    font-size: 14px;
    line-height: 1.6;
  }
  .article-content .article-body {
    font-size: 15px;
    line-height: 1.7;
  }
  .article-content .article-body figure {
    margin: 20px 0;
  }
  .article-content .article-nav {
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
  }
  /* Contact Mobile Styles */
  .contact-card-v2 {
    border-radius: 20px !important;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin: 0 15px 30px 15px;
    height: auto !important;
    display: flex;
    flex-direction: column;
    padding-left: 0 !important;
    top: 0;
    background: #fff;
  }
  .contact-left {
    border-radius: 20px 20px 0 0;
    padding: 40px 20px;
    width: 100%;
    height: auto;
    text-align: center;
  }
  .contact-left .line-deco {
    display: none;
  }
  .contact-right {
    width: 100%;
    padding: 30px 20px;
    border-radius: 0 0 20px 20px;
  }
  .contact-right .simple-form .form-row {
    flex-direction: column;
    gap: 15px;
  }
  .contact-right .simple-form .form-group {
    margin-bottom: 20px;
  }
  /* Footer Mobile */
  .footer {
    padding: 40px 0 20px;
  }
  .footer .footer-top {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  .footer .footer-top .footer-nav {
    flex-direction: column;
    gap: 15px;
  }
  .footer .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}
