
   <style>
    :root {
      --primary: #0066cc;
      --primary-dark: #004d99;
      --accent: #00b4d8;
      --accent-dark: #0095b6;
      --dark: #1a1a2e;
      --light: #f8f9fa;
      --gradient-blue: linear-gradient(135deg, #0061ff 0%, #60efff 100%);
      --gradient-purple: linear-gradient(135deg, #7633ff 0%, #9e00ff 100%);
      --gradient-teal: linear-gradient(135deg, #20bf55 0%, #01baef 100%);
      --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
      --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
      background-color: var(--light);
      color: var(--dark);
      overflow-x: hidden;
      scroll-behavior: smooth;
    }

    /* Navigation */
    .navbar {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      padding: 1.5rem 5%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      z-index: 1000;
      transition: var(--transition);
      backdrop-filter: blur(10px);
      background: rgba(255, 255, 255, 0.9);
      box-shadow: var(--shadow);
    }

    .navbar.scrolled {
      padding: 1rem 5%;
      background: rgba(0, 102, 204, 0.95);
    }

    .navbar.scrolled .logo,
    .navbar.scrolled .nav-links a {
      color: white;
    }

    .logo {
      font-size: 1.8rem;
      font-weight: 800;
      color: var(--primary);
      letter-spacing: 1px;
      display: flex;
      align-items: center;
    }

    .logo i {
      margin-right: 0.5rem;
      color: var(--accent);
    }

    .nav-links {
      display: flex;
      gap: 2rem;
    }

    .nav-links a {
      color: var(--dark);
      text-decoration: none;
      font-weight: 600;
      position: relative;
      padding: 0.5rem 0;
      transition: var(--transition);
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--accent);
      transition: var(--transition);
    }

    .nav-links a:hover::after {
      width: 100%;
    }

    .nav-links a:hover {
      color: var(--primary);
    }

    .hamburger {
      display: none;
      cursor: pointer;
      font-size: 1.5rem;
    }

    /* Hero Section */
    .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      padding: 0 5%;
      margin-top: 80px;
      background: url("./assets/sportswearai build.png") no-repeat center center;
      background-size: cover;
      position: relative;
    }

    .hero::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.5);
    }

    .hero-content {
      position: relative;
      z-index: 1;
      max-width: 600px;
      color: white;
    }

    .hero h1 {
      font-size: 3.5rem;
      margin-bottom: 1.5rem;
      line-height: 1.2;
    }

    .hero h1 span {
      color: var(--accent);
      position: relative;
    }

    .hero h1 span::after {
      content: '';
      position: absolute;
      bottom: -5px;
      left: 0;
      width: 100%;
      height: 3px;
      background: var(--accent);
    }

    .hero p {
      font-size: 1.2rem;
      margin-bottom: 2.5rem;
      opacity: 0.9;
    }

    .btn {
      display: inline-block;
      padding: 0.8rem 2rem;
      background: var(--accent);
      color: white;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 600;
      transition: var(--transition);
      border: 2px solid transparent;
      box-shadow: 0 4px 15px rgba(0, 180, 216, 0.3);
    }

    .btn:hover {
      background: transparent;
      border-color: var(--accent);
      transform: translateY(-3px);
      box-shadow: 0 6px 20px rgba(0, 180, 216, 0.4);
    }

    .btn-outline {
      background: transparent;
      border: 2px solid white;
      margin-left: 1rem;
    }

    .btn-outline:hover {
      background: white;
      color: var(--primary);
    }

    /* About Section */
    .section {
      padding: 6rem 5%;
      position: relative;
    }

    .section-title {
      text-align: center;
      margin-bottom: 4rem;
      position: relative;
    }

    .section-title h2 {
      font-size: 2.5rem;
      color: var(--primary);
      margin-bottom: 1rem;
    }

    .section-title p {
      max-width: 700px;
      margin: 0 auto;
      color: #555;
    }

    .section-title::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background: var(--accent);
      border-radius: 2px;
    }

    .about-content {
      display: flex;
      align-items: center;
      gap: 4rem;
      margin-top: 3rem;
    }

    .about-text {
      flex: 1;
    }

    .about-text h3 {
      font-size: 1.8rem;
      margin-bottom: 1.5rem;
      color: var(--primary-dark);
    }

    .about-text p {
      margin-bottom: 1.5rem;
      line-height: 1.7;
      color: #555;
    }

    .about-image {
      flex: 1;
      position: relative;
    }

    .about-image img {
      width: 100%;
      border-radius: 10px;
      box-shadow: var(--shadow);
      transition: var(--transition);
    }

    .about-image:hover img {
      transform: scale(1.02);
    }

    .stats {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 2rem;
      margin-top: 4rem;
    }

    .stat-item {
      text-align: center;
      padding: 1rem;
      background: white;
      border-radius: 10px;
      box-shadow: var(--shadow);
      transition: var(--transition);
    }

    .stat-item:hover {
      transform: translateY(-5px);
    }

    .stat-number {
      font-size: 2.5rem;
      font-weight: 500;
      color: var(--primary);
      margin-bottom: 0.5rem;
    }

    .stat-text {
      color: #666;
      font-weight: 600;
    }

    /* Mission, Vision, Objectives & Goals Section */
    .mvgo-section {
      padding: 6rem 5%;
      background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    }
    
    .mvgo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
    }
    
    .mvgo-card {
      background: white;
      border-radius: 10px;
      padding: 30px;
      box-shadow: var(--shadow);
      transition: var(--transition);
      position: relative;
      overflow: hidden;
      z-index: 1;
    }
    
    .mvgo-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    }
    
    .mvgo-card:before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 5px;
      height: 100%;
      transition: var(--transition);
      z-index: -1;
    }
    
    .mission-card:before { background: var(--primary); }
    .vision-card:before { background: var(--accent); }
    .objectives-card:before { background: #20bf55; }
    .goals-card:before { background: #9e00ff; }
    
    .mvgo-card:hover:before {
      width: 100%;
      opacity: 0.1;
    }
    
    .mvgo-icon {
      width: 70px;
      height: 70px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
      font-size: 1.8rem;
      color: white;
    }
    
    .mission-card .mvgo-icon { background: var(--primary); }
    .vision-card .mvgo-icon { background: var(--accent); }
    .objectives-card .mvgo-icon { background: #20bf55; }
    .goals-card .mvgo-icon { background: #9e00ff; }
    
    .mvgo-card h3 {
      font-size: 1.5rem;
      margin-bottom: 15px;
      color: #333;
    }
    
    .mvgo-card p {
      color: #666;
      line-height: 1.6;
      margin-bottom: 0;
    }
    
    .mvgo-card ul {
      list-style: none;
      padding-left: 0;
    }
    
    .mvgo-card ul li {
      margin-bottom: 10px;
      color: #666;
      position: relative;
      padding-left: 25px;
    }
    
    .mvgo-card ul li i {
      position: absolute;
      left: 0;
      top: 5px;
    }
    
    .objectives-card ul li i { color: #20bf55; }
    .goals-card ul li i { color: #9e00ff; }

    /* Products */
    .products {
      background: white;
    }

    .product-filters {
      display: flex;
      justify-content: center;
      gap: 1rem;
      margin-bottom: 3rem;
      flex-wrap: wrap;
    }

    .filter-btn {
      padding: 0.6rem 1.5rem;
      background: white;
      border: 1px solid #ddd;
      border-radius: 50px;
      cursor: pointer;
      transition: var(--transition);
      font-weight: 600;
      color: #555;
    }

    .filter-btn:hover,
    .filter-btn.active {
      background: var(--primary);
      color: white;
      border-color: var(--primary);
    }

    .product-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      gap: 2rem;
    }

    .product-card {
      background: white;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: var(--shadow);
      transition: var(--transition);
      position: relative;
    }

    .product-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    }

    .product-image {
      height: 250px;
      overflow: hidden;
      position: relative;
    }

    .product-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: var(--transition);
    }

    .product-card:hover .product-image img {
      transform: scale(1.1);
    }

    .product-badge {
      position: absolute;
      top: 1rem;
      right: 1rem;
      background: var(--accent);
      color: white;
      padding: 0.3rem 0.8rem;
      border-radius: 50px;
      font-size: 0.8rem;
      font-weight: 600;
    }

    .product-info {
      padding: 1.5rem;
    }

    .product-category {
      color: var(--accent);
      font-size: 0.9rem;
      font-weight: 600;
      margin-bottom: 0.5rem;
      display: block;
    }

    .product-title {
      font-size: 1.3rem;
      margin-bottom: 0.8rem;
      color: var(--dark);
    }

    .product-desc {
      color: #666;
      margin-bottom: 1.5rem;
      line-height: 1.6;
      font-size: 0.95rem;
    }

    .product-footer {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .product-link {
      color: var(--primary);
      font-weight: 600;
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 0.5rem;
      transition: var(--transition);
    }

    .product-link:hover {
      color: var(--accent);
    }

    .product-link i {
      transition: var(--transition);
    }

    .product-link:hover i {
      transform: translateX(5px);
    }

    /* Footer */
    .footer {
      background: var(--dark);
      color: white;
      padding: 4rem 5% 2rem;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 3rem;
      margin-bottom: 3rem;
    }

    .footer-col h4 {
      font-size: 1.3rem;
      margin-bottom: 1.5rem;
      position: relative;
      padding-bottom: 0.8rem;
    }

    .footer-col h4::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 40px;
      height: 2px;
      background: var(--accent);
    }

    .footer-links {
      list-style: none;
    }

    .footer-links li {
      margin-bottom: 0.8rem;
    }

    .footer-links a {
      color: #aaa;
      text-decoration: none;
      transition: var(--transition);
      display: inline-block;
    }

    .footer-links a:hover {
      color: var(--accent);
      transform: translateX(5px);
    }

    .footer-about p {
      color: #aaa;
      line-height: 1.7;
      margin-bottom: 1.5rem;
    }

    .social-links {
      display: flex;
      gap: 1rem;
    }

    .social-links a {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 50%;
      color: white;
      transition: var(--transition);
    }

    .social-links a:hover {
      background: var(--accent);
      transform: translateY(-5px);
    }

    .footer-bottom {
      text-align: center;
      padding-top: 2rem;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      color: #aaa;
    }

    /* Back to Top */
    .back-to-top {
      position: fixed;
      bottom: 2rem;
      right: 2rem;
      width: 50px;
      height: 50px;
      background: var(--accent);
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      cursor: pointer;
      opacity: 0;
      visibility: hidden;
      transition: var(--transition);
      z-index: 999;
    }

    .back-to-top.active {
      opacity: 1;
      visibility: visible;
    }

    .back-to-top:hover {
      background: var(--accent-dark);
      transform: translateY(-5px);
    }

    /* Responsive */
    @media (max-width: 1200px) {
      .mvgo-grid {
        gap: 20px;
      }
    }

    @media (max-width: 992px) {
      .about-content, .mvgo-grid {
        grid-template-columns: 1fr;
      }
      
      .footer-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .stats {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 768px) {
      .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--primary);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        transition: var(--transition);
      }

      .nav-links.active {
        left: 0;
      }

      .nav-links a {
        color: white;
        font-size: 1.2rem;
      }

      .hamburger {
        display: block;
        color: var(--dark);
      }

      .navbar.scrolled .hamburger {
        color: white;
      }

      .hero h1 {
        font-size: 2.5rem;
      }

      .btn-group {
        flex-direction: column;
      }

      .btn-outline {
        margin-left: 0;
      }
    }

    @media (max-width: 576px) {
      .hero h1 {
        font-size: 2rem;
      }

      .section-title h2 {
        font-size: 2rem;
      }

      .stats {
        grid-template-columns: 1fr;
      }

      .footer-grid {
        grid-template-columns: 1fr;
      }

      .product-grid {
        grid-template-columns: 1fr;
      }
    }
  </style>