 @font-face {
            font-family: 'AlibabaSans-Regular';
            src: url('https://assets-persist.lovart.ai/agent-static-assets/AlibabaSans-Regular.otf') format('opentype');
            font-weight: normal;
            font-style: normal;
        }
        
        @font-face {
            font-family: 'AlibabaSans-Medium';
            src: url('https://assets-persist.lovart.ai/agent-static-assets/AlibabaSans-Medium.otf') format('opentype');
            font-weight: 500;
            font-style: normal;
        }
        
        @font-face {
            font-family: 'AlibabaSans-Bold';
            src: url('https://assets-persist.lovart.ai/agent-static-assets/Alibaba-PuHuiTi-Bold.otf') format('opentype');
            font-weight: bold;
            font-style: normal;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'AlibabaSans-Regular', sans-serif;
            background-color: #0a0e1a;
            color: #ffffff;
            overflow-x: hidden;
            width: 1440px;
        }
        
        .container {
            width: 100%;
            max-width: 1440px;
            margin: 0 auto;
            padding: 0 80px;
        }
        
        /* Header Styles */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(10, 14, 26, 0.95);
            padding: 20px 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            display: flex;
            align-items: center;
        }
        
        .logo-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #ff00aa 0%, #00a1ff 100%);
            border-radius: 10px;
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            margin-right: 15px;
        }
        
        .logo-icon::before {
            content: "S";
            font-family: 'AlibabaSans-Bold', sans-serif;
            font-size: 28px;
            color: white;
            position: relative;
            z-index: 2;
        }
        
        .logo-icon::after {
            content: "";
            position: absolute;
            width: 80%;
            height: 3px;
            background-color: rgba(255, 255, 255, 0.7);
            top: 50%;
            left: 10%;
        }
        
        .logo-text {
            font-family: 'AlibabaSans-Bold', sans-serif;
            font-size: 24px;
            letter-spacing: 1px;
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 40px;
        }
        
        nav ul li a {
            color: #ffffff;
            text-decoration: none;
            font-family: 'AlibabaSans-Medium', sans-serif;
            font-size: 16px;
            position: relative;
            padding-bottom: 5px;
            transition: all 0.3s ease;
        }
        
        nav ul li a:hover {
            color: #00a1ff;
        }
        
        nav ul li a::after {
            content: "";
            position: absolute;
            width: 0;
            height: 2px;
            background: linear-gradient(135deg, #ff00aa 0%, #00a1ff 100%);
            bottom: 0;
            left: 0;
            transition: width 0.3s ease;
        }
        
        nav ul li a:hover::after {
            width: 100%;
        }
        
        /* Hero Section */
        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            padding-top: 80px;
              left:2.5%;
        
        }
        
        .hero-bg {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            z-index: -1;
        }
        
        .wave {
            position: absolute;
            width: 100%;
            height: 100%;
            opacity: 0.1;
            background: linear-gradient(135deg, #ff00aa 0%, #00a1ff 100%);
            filter: blur(100px);
            transform: skewY(-5deg);
            top: 30%;
        }
        
        .hero-content {
            max-width: 800px;
        }
        
        .hero h1 {
            font-family: 'AlibabaSans-Bold', sans-serif;
            font-size: 72px;
            line-height: 1.1;
            margin-bottom: 30px;
            background: linear-gradient(135deg, #ffffff 0%, #d0d0d0 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .hero h1 span {
            background: linear-gradient(135deg, #ff00aa 0%, #00a1ff 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .hero p {
            font-size: 20px;
            line-height: 1.6;
            margin-bottom: 40px;
            color: rgba(255, 255, 255, 0.8);
            max-width: 600px;
        }
        
        .btn {
            display: inline-block;
            padding: 15px 40px;
            background: linear-gradient(135deg, #ff00aa 0%, #00a1ff 100%);
            color: white;
            border-radius: 30px;
            font-family: 'AlibabaSans-Medium', sans-serif;
            font-size: 16px;
            text-decoration: none;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            box-shadow: 0 5px 15px rgba(255, 0, 170, 0.3);
        }
        
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(255, 0, 170, 0.4);
        }
        
        /* About Section */
        .about {
            padding: 120px 0;
            position: relative;
        }
        
        .section-title {
            font-family: 'AlibabaSans-Bold', sans-serif;
            font-size: 48px;
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }
        
        .section-title::after {
            content: "";
            position: absolute;
            width: 60px;
            height: 4px;
            background: linear-gradient(135deg, #ff00aa 0%, #00a1ff 100%);
            bottom: -10px;
            left: 0;
        }
        
        .about-content {
            display: flex;
            align-items: center;
            gap: 60px;
            margin-top: 60px;
        }
        
        .about-text {
            flex: 1;
        }
        
        .about-text p {
            font-size: 18px;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 30px;
        }
        
        .about-image {
            flex: 1;
            position: relative;

        }
          
        
        .about-image-container {
            width: 100%;
            height: 400px;
            background-color: #151a2e;
            border-radius: 20px;
            overflow: hidden;
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .about-image-container::before {
            content: "";
            position: absolute;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(255, 0, 170, 0.1) 0%, rgba(0, 161, 255, 0.1) 100%);
            top: 0;
            left: 0;
        }
        
        .about-image-container img {
            width: 100%;
            height: auto;
        }
        
        /* Services Section */
        .services {
            padding: 120px 0;
            background-color: rgba(15, 20, 35, 0.5);
            position: relative;
            width:100%;
            left:3%;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 60px;

        }
        
        .service-card {
            background-color: #151a2e;
            border-radius: 15px;
            padding: 40px 30px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.05);
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
            border-color: rgba(255, 0, 170, 0.3);
        }
        
        .service-card::before {
            content: "";
            position: absolute;
            width: 100px;
            height: 100px;
            background: linear-gradient(135deg, rgba(255, 0, 170, 0.1) 0%, rgba(0, 161, 255, 0.1) 100%);
            border-radius: 50%;
            top: -50px;
            right: -50px;
        }
        
        .service-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, rgba(255, 0, 170, 0.2) 0%, rgba(0, 161, 255, 0.2) 100%);
            border-radius: 15px;
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 25px;
        }
        
        .service-icon i {
            font-size: 30px;
            background: linear-gradient(135deg, #ff00aa 0%, #00a1ff 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .service-card h3 {
            font-family: 'AlibabaSans-Bold', sans-serif;
            font-size: 24px;
            margin-bottom: 15px;
        }
        
        .service-card p {
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.6;
            font-size: 16px;
        }
        
        /* Projects Section */
        .projects {
            padding: 120px 0;
            position: relative;
        }
        
        .projects-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 60px;
        }
        
        .project-card {
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            height: 300px;
            cursor: pointer;
        }
        
        .project-image {
            width: 100%;
            height: 100%;
            background-color: #151a2e;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 24px;
            color: rgba(255, 255, 255, 0.3);
            font-family: 'AlibabaSans-Bold', sans-serif;
        }
        
        .project-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, rgba(10, 14, 26, 0.9) 0%, rgba(10, 14, 26, 0.3) 100%);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 30px;
            opacity: 0;
            transition: all 0.3s ease;
        }
        
        .project-card:hover .project-overlay {
            opacity: 1;
        }
        
        .project-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
        }
        
        .project-category {
            font-size: 14px;
            color: #00a1ff;
            margin-bottom: 10px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .project-title {
            font-family: 'AlibabaSans-Bold', sans-serif;
            font-size: 24px;
            margin-bottom: 10px;
        }
        
        /* Contact Section */
        .contact {
            padding: 120px 0;
            background-color: rgba(15, 20, 35, 0.5);
            position: relative;
              left:3%;
        }
        
        .contact-container {
            display: flex;
            gap: 60px;
            margin-top: 60px;
        }
        
        .contact-form {
            flex: 1;
            background-color: #151a2e;
            border-radius: 20px;
            padding: 40px;
            border: 1px solid rgba(255, 255, 255, 0.05);
        }
        
        .form-group {
            margin-bottom: 25px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 10px;
            font-family: 'AlibabaSans-Medium', sans-serif;
            color: rgba(255, 255, 255, 0.8);
        }
        
        .form-control {
            width: 100%;
            padding: 15px;
            background-color: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            color: white;
            font-family: 'AlibabaSans-Regular', sans-serif;
            font-size: 16px;
            transition: all 0.3s ease;
        }
        
        .form-control:focus {
            outline: none;
            border-color: #00a1ff;
            box-shadow: 0 0 0 3px rgba(0, 161, 255, 0.2);
        }
        
        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }
        
        .contact-info {
            flex: 1;
        }
        
        .contact-info h3 {
            font-family: 'AlibabaSans-Bold', sans-serif;
            font-size: 28px;
            margin-bottom: 30px;
        }
        
        .info-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 30px;
        }
        
        .info-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, rgba(255, 0, 170, 0.1) 0%, rgba(0, 161, 255, 0.1) 100%);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            margin-right: 20px;
        }
        
        .info-icon i {
            font-size: 20px;
            background: linear-gradient(135deg, #ff00aa 0%, #00a1ff 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .info-content h4 {
            font-family: 'AlibabaSans-Medium', sans-serif;
            font-size: 18px;
            margin-bottom: 5px;
            color: rgba(255, 255, 255, 0.9);
        }
        
        .info-content p, .info-content a {
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.6;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .info-content a:hover {
            color: #00a1ff;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 40px;
        }
        
        .social-link {
            width: 45px;
            height: 45px;
            background: linear-gradient(135deg, rgba(255, 0, 170, 0.1) 0%, rgba(0, 161, 255, 0.1) 100%);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: all 0.3s ease;
        }
        
        .social-link:hover {
            transform: translateY(-5px);
            background: linear-gradient(135deg, #ff00aa 0%, #00a1ff 100%);
        }
        
        .social-link i {
            font-size: 20px;
            color: white;
        }
        
        /* Footer */
        footer {
            background-color: #0a0e1a;
            padding: 80px 0 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }
        
        .footer-content {
            display: flex;
            justify-content: space-between;
            margin-bottom: 60px;
        }
        
        .footer-logo {
            max-width: 300px;
        }
        
        .footer-logo .logo {
            margin-bottom: 20px;
        }
        
        .footer-logo p {
            color: rgba(255, 255, 255, 0.6);
            line-height: 1.6;
            font-size: 14px;
        }
        
        .footer-links h4 {
            font-family: 'AlibabaSans-Bold', sans-serif;
            font-size: 18px;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-links h4::after {
            content: "";
            position: absolute;
            width: 30px;
            height: 2px;
            background: linear-gradient(135deg, #ff00aa 0%, #00a1ff 100%);
            bottom: 0;
            left: 0;
        }
        
        .footer-links ul {
            list-style: none;
        }
        
        .footer-links ul li {
            margin-bottom: 10px;
        }
        
        .footer-links ul li a {
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 14px;
        }
        
        .footer-links ul li a:hover {
            color: #00a1ff;
            padding-left: 5px;
        }
        
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            color: rgba(255, 255, 255, 0.5);
            font-size: 14px;
        }
        @media (max-width: 768px) { 
            .container {
                padding: 0 20px;
            }
        
            header, .hero, .services, .contact {
                width: 100%;
                left: 0;
            }
        
            .hero h1 {
                font-size: 35px;
            }
        
            .about-content {
                flex-direction: column;
                justify-content: center;
                align-items: flex-start;
             
            }
           
        .about-image{
          width:50%;
          
        }
        .about-text{
            width:50%;
              order: 2;
      
           
        }
            .services-grid, .projects-grid {
                grid-template-columns:0.5fr;
            }
            .contact-container{
                flex-direction: column;
            }
            .contact-form, .contact-info {
                width:50%;
            }
            .footer-content{
                flex-direction: column;
          
           font-size: 30px;
       
               
            }
   
            .copyright p {
  position: absolute;
  left: 0;
}


         .copyright{
            position: relative;
            left:0;
         }
           
        }
        .menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

        @media (max-width: 480px) {
         .hero h1 {
  font-size:35px;
  width: 380px; 
 
}
            .hero p {
                font-size: 16px;
               width:350px;
            }

        .about{
            width:50%;
            align-items: center;
            justify-content: center;
        }
        .about-text{
            width:50%;
        }
            .about-image{
          width:50%;
          
        }
        .service-card{
            width:50%;
            
        
        }
        .projects-grid{
            grid-template-columns:0.25fr;
        }
    .contact-form, .contact-info {
                width:27%;
            }
            nav ul {
    display: none;
    flex-direction: column;
    background-color: rgba(119, 123, 137, 0.95);
    position: absolute;
    top: 60px;
    right: 20px;
    width: 200px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
  }

  nav ul.show {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
    }
    @media (min-width: 1440px) { 
        body {
            width: 100%;
        }
        .container {
            max-width: 90%;
       
        }
        .header-container{
            width:100%;
        }
    
    }
