/* screen - x23 */

.x23 {
    align-items: flex-start;
    background-image: url(../img/23@3x.jpg);
    background-position: 50% 50%;
    background-size: cover;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    gap: 120px;
    min-height: 100vh;
    padding: 0 0 100px 0;
    width: 100%;
  }
  
  .x23 .content {
    margin-top: 80px;  /* 为导航栏预留空间 */
    height: calc(100vh - 120px);  /* 动态计算高度 */
    display: flex; /* 改为块级flex容器 */
    flex-direction: column;
    gap: 24px;
    position: relative;
    z-index: 10;
    width: 100%; /* 填充父容器宽度 */
    padding: 20px; /* 添加内边距 */
  }
  
  .x23 .title {
    color: var(--humanmadecojpwhite);
    font-family: var(--font-family-montserrat);
    font-size: var(--font-size-xl);
    font-weight: 900;
    letter-spacing: 0;
    line-height: 120px;
    margin-top: -1.00px;
    position: relative;
    width: 684px;
  }
  
  .x23 .lorem-ipsum-dolor-si-1 {
    color: var(--humanmadecojpwhite);
    font-family: var(--font-family-lato);
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 25px;
    position: relative;
    width: 568px;
    margin: 0 auto;
    display: block; 
  }
  .x23 .h3_center {
    color: var(--humanmadecojpwhite);
    font-family: var(--font-family-lato);
    font-size: 24px;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 30px;
    position: relative;
    width: 568px;
    margin: 0 auto;
    display: block; 
  }
  .x23 .primary-button {
    align-items: flex-start;
    background-color: var(--humanmadecojpwhite);
    border-radius: 999px;
    display: inline-flex;
    flex: 0 0 auto;
    gap: 10px;
    overflow: hidden;
    padding: 24px 48px;
    position: relative;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
  }
  
  .x23 .primary-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
    background-color: #f0f0f0;
  }
  
  .x23 .get-started {
    color: #100e19;
    font-family: var(--font-family-lato);
    font-size: var(--font-size-m);
    font-weight: 900;
    letter-spacing: 0;
    line-height: 18px;
    margin-top: -1.00px;
    position: relative;
    white-space: nowrap;
    width: fit-content;
    transition: color 0.3s ease-in-out;
  }
  
  .x23 .primary-button:hover .get-started {
    color: #000000;
  }
  
  .x23 .card-list {
    align-items: flex-start;
    align-self: center;
    display: inline-flex;
    gap: 24px;
    position: relative;
    margin-top: 120px;
  }
  
  .x23 .card-list-item {
    -webkit-backdrop-filter: blur(32px) brightness(100%);
    backdrop-filter: blur(32px) brightness(100%);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.12) 100%);
    border-radius: 40px;
    height: 240px;
    overflow: hidden;
    position: relative;
    width: 412px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    transform-style: preserve-3d;
    perspective: 1000px;
  }
  
  .x23 .card-list-item:hover {
    transform: translateY(-15px) rotateX(5deg) rotateY(-5deg);
    box-shadow: 0 15px 30px rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(32px) brightness(120%);
    -webkit-backdrop-filter: blur(32px) brightness(120%);
  }
  
  .x23 .frame-14302 {
    align-items: flex-start;
    display: inline-flex;
    flex-direction: column;
    gap: 16px;
    left: 54px;
    position: relative;
    top: 44px;
  }
  
  .x23 .number {
    letter-spacing: 0;
    line-height: 32px;
    margin-top: -1.00px;
    position: relative;
    white-space: nowrap;
    width: fit-content;
    transition: transform 0.4s ease-out;
  }
  
  .x23 .card-list-item:hover .number {
    transform: scale(1.1);
  }
  
  .x23 .lorem-ipsum-dolor-si {
    letter-spacing: 0;
    line-height: 32px;
    position: relative;
    width: 305px;
    transition: all 0.4s ease;
  }
  
  .x23 .card-list-item:hover .lorem-ipsum-dolor-si {
    color: rgba(255, 255, 255, 1);
  }
  
  .x23 .card-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.1), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
  }
  
  .x23 .card-list-item:hover .card-glow {
    opacity: 1;
  }
  
  /* Header Styles */
  .x23 .header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 80px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: all 0.3s ease;
  }
  
  .x23 .header.scrolled {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    /* padding: 20px 80px; */
  }
  
  .x23 .logo {
    color: var(--humanmadecojpwhite);
    font-family: var(--font-family-montserrat);
    font-weight: 900;
    font-size: 24px;
    letter-spacing: 1px;
  }
  
  .x23 .nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
  }
  
  .x23 .nav-links a {
    color: var(--humanmadecojpwhite);
    font-family: var(--font-family-lato);
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 8px 0;
    position: relative;
  }
  
  .x23 .nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--humanmadecojpwhite);
    transition: width 0.3s ease;
  }
  
  .x23 .nav-links a:hover::after {
    width: 100%;
  }
  
  /* Section Styles */
  .x23 section {
    width: 100%;
    padding: 80px;
    box-sizing: border-box;
    position: relative;
  }
  
  .x23 .section-title {
    color: var(--humanmadecojpwhite);
    font-family: var(--font-family-montserrat);
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 60px;
    text-align: center;
  }
  
  /* Services Section */
  .x23 .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .x23 .service-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 40px;
    padding: 40px 30px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
  }
  
  .x23 .service-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 30px rgba(255, 255, 255, 0.1);
  }
  
  .x23 .service-icon {
    font-size: 40px;
    margin-bottom: 20px;
  }
  
  .x23 .service-title {
    color: var(--humanmadecojpwhite);
    font-family: var(--font-family-lato);
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 15px;
  }
  
  .x23 .service-desc {
    color: rgba(255, 255, 255, 0.8);
    font-family: var(--font-family-lato);
    font-size: 16px;
    line-height: 1.6;
  }
  
  /* Work Section */
  .x23 .work-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .x23 .work-item {
    border-radius: 40px;
    overflow: hidden;
    position: relative;
    height: 400px;
    cursor: pointer;
    transition: all 0.4s ease;
  }
  
  .x23 .work-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  }
  
  .x23 .work-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: all 0.5s ease;
  }
  
  /* .x23 .work-image-1 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(../img/slice-it-all_16x9-cover.avif);
    background-position: center;
  } */
  
  .x23 .work-image-2 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(../img/Red\ Panda\ Portrait.jpeg);
    background-position: center;
  }
  
  .x23 .work-image-3 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(../img/Elegant\ Flamingo\ Portrait.jpeg);
    background-position: center;
  }
  
  .x23 .work-item:hover .work-image {
    transform: scale(1.1);
  }
  
  .x23 .work-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    transition: all 0.4s ease;
  }
  
  .x23 .work-title {
    color: var(--humanmadecojpwhite);
    font-family: var(--font-family-lato);
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 5px;
  }

  .x23 .work-category {
    color: rgba(255, 255, 255, 0.7);
    font-family: var(--font-family-lato);
    font-size: 16px;
  }
  
  /* Testimonials Section */
  .x23 .testimonials-section {
    padding: 80px 40px;
  }
  
  .x23 .testimonials-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .x23 .testimonial-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 40px;
    padding: 40px;
    flex: 1 1 400px;
    transition: all 0.4s ease;
  }
  
  .x23 .testimonial-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 30px rgba(255, 255, 255, 0.1);
  }
  
  .x23 .testimonial-text {
    color: var(--humanmadecojpwhite);
    font-family: var(--font-family-lato);
    font-size: 18px;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 30px;
    position: relative;
  }
  
  .x23 .testimonial-text::before {
    content: '"';
    font-size: 60px;
    font-family: serif;
    color: rgba(255, 255, 255, 0.2);
    position: absolute;
    top: -20px;
    left: -20px;
  }
  
  .x23 .author-name {
    color: var(--humanmadecojpwhite);
    font-family: var(--font-family-lato);
    font-size: 18px;
    font-weight: 900;
  }
  
  .x23 .author-company {
    color: rgba(255, 255, 255, 0.7);
    font-family: var(--font-family-lato);
    font-size: 14px;
    margin-top: 5px;
  }
  
  /* Contact Section */
  .x23 .contact-section {
    padding: 80px 40px;
  }
  
  .x23 .contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .x23 .contact-info {
    flex: 1 1 300px;
  }
  
  .x23 .contact-info h3 {
    color: var(--humanmadecojpwhite);
    font-family: var(--font-family-lato);
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 25px;
  }
  
  .x23 .contact-info p {
    color: rgba(255, 255, 255, 0.8);
    font-family: var(--font-family-lato);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
  }
  
  .x23 .contact-form {
    flex: 1 1 500px;
  }
  
  .x23 .form-group {
    margin-bottom: 20px;
  }
  
  .x23 .form-input,
  .x23 .form-textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 10px;
    padding: 15px;
    color: var(--humanmadecojpwhite);
    font-family: var(--font-family-lato);
    font-size: 16px;
    transition: all 0.3s ease;
  }
  
  .x23 .contact-form.animate-fadeInUp.delay-300 .form-input,
  .x23 .contact-form.animate-fadeInUp.delay-300 .form-textarea {
    border-radius: 40px;
  }
  
  .x23 .form-textarea {
    height: 150px;
    resize: vertical;
  }
  
  .x23 .form-input:focus,
  .x23 .form-textarea:focus {
    background: rgba(255, 255, 255, 0.15);
    outline: none;
  }
  
  .x23 .form-submit {
    background-color: var(--humanmadecojpwhite);
    color: #100e19;
    font-family: var(--font-family-lato);
    font-size: 16px;
    font-weight: 900;
    border: none;
    border-radius: 999px;
    padding: 15px 40px;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .x23 .form-submit:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
    background-color: #f0f0f0;
  }
  
  /* Footer */
  .x23 .footer {
    width: 100%;
    padding: 80px 80px 40px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    margin-top: auto; 
  }
  
  .x23 .footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 40px;
    gap: 30px;
    padding: 0;
  }
  
  .x23 .footer-logo {
    color: var(--humanmadecojpwhite);
    font-family: var(--font-family-montserrat);
    font-weight: 900;
    font-size: 24px;
    letter-spacing: 1px;
  }
  
  .x23 .footer-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
  }
  
  .x23 .footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-family: var(--font-family-lato);
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .x23 .footer-links a:hover {
    color: var(--humanmadecojpwhite);
  }
  
  .x23 .footer-social {
    display: flex;
    gap: 15px;
  }
  
  .x23 .social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 20px;
  }
  
  .x23 .social-icon:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
  }
  
  .x23 .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0 0;
    text-align: center;
    width: 100%;
  }
  
  .x23 .footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-family: var(--font-family-lato);
    font-size: 14px;
  }
  
  /* Responsive Adjustments */
  
  
  @media (max-width: 480px) {
    .x23 .logo { 
        font-size: 20px !important;
        width: auto !important;    /* 保持原有宽度 */
        min-width: 200px;          /* 设置最小宽度 */
    }
    .content iframe {
      height: 90vh !important;  /* 从95vh微调到90vh */
      min-height: 400px; 
        width: 90% !important;      /* 小屏幕同样保持90% */
        min-width: 90% !important;  /* 同步修改最小宽度 */
        height: 80vh; 
    }
    .x23 .content {
      padding: 0; /* 移除移动端内边距 */
      overflow: hidden; /* 防止内容溢出 */
      margin: 100px auto 0; /* 上边距增加20px */
  }
  .x23 .h3_center {
    width: 100% !important;   /* 新增移动端宽度设置 */
    margin: 0 auto !important;  /* 保持居中效果 */
    
}
.x23 .lorem-ipsum-dolor-si-1 {
  width: 100% !important;   /* 新增移动端宽度设置 */
  margin: 0 auto !important;  /* 保持居中效果 */
}
  }

  /* 添加中间尺寸适配 */
  @media (max-width: 768px) and (min-width: 481px) {
      .x23 .logo animate-fadeInUp{ 
          font-size: 18px !important;
          width: auto !important;    /* 保持原有宽度 */
          min-width: 220px;          /* 设置最小宽度 */
      }
      
      .x23 .content {
        padding: 0; /* 移除移动端内边距 */
        overflow: hidden; /* 防止内容溢出 */
        margin: 100px auto 0; /* 上边距增加20px */
        
    }

    
    .content iframe {
        width: 90% !important;
        height: 85vh !important;  /* 从80vh调整为85vh */
        min-height: 500px;       /* 最小高度增加到500px */
        min-width: 90%;
        border-radius: 0; /* 移除圆角 */
    }
    .x23 .h3_center {
      width: 100% !important;   /* 新增移动端宽度设置 */
      margin: 0 auto !important;  /* 保持居中效果 */
      
  }
  .x23 .lorem-ipsum-dolor-si-1 {
    width: 100% !important;   /* 新增移动端宽度设置 */
    margin: 0 auto !important;  /* 保持居中效果 */
  }

    }
    
    @media (max-width: 768px) {
      .x23 .header {
        padding: 20px 40px;
        flex-direction: column;
        gap: 20px;
      }
      
      .x23 section {
        padding: 60px 20px;
      }
      
      .x23 .section-title {
        font-size: 36px;
        margin-bottom: 40px;
      }
      
      .x23 .work-grid {
        grid-template-columns: 1fr;
      }
      .x23 .content {
        
        padding: 0; 
        margin: 100px auto 0; /* 上边距增加20px */
        overflow: hidden;
    }
    
    .content iframe {
        width: 90% !important;      /* 调整为屏幕90%宽度 */
        min-width: 90% !important;  /* 同步修改最小宽度 */
        margin: 0 auto;             /* 新增居中效果 */
        border-radius: 0;
        height: 80vh; 
    }
    .x23 .h3_center {
      width: 100% !important;   /* 新增移动端宽度设置 */
      margin: 0 auto !important;  /* 保持居中效果 */
      
  }
  .x23 .lorem-ipsum-dolor-si-1 {
    width: 100% !important;   /* 新增移动端宽度设置 */
    margin: 0 auto !important;  /* 保持居中效果 */
  }
    }



