
    :root {
      --primary: #6366f1;
      --primary-dark: #4f46e5;
      --accent: #8b5cf6;
      --text: #1f2937;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
      line-height: 1.6;
      color: var(--text);
      min-height: 100vh;
      
    }

    /* Fixed Header */
    header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      background: rgba(255, 255, 255, 0.96);
      backdrop-filter: blur(12px);
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
      z-index: 1000;
      transition: all 0.3s ease;
    }

    .nav-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 80px;
    }

    /* Logo */
    .logo {
      font-size: 28px;
      font-weight: 800;
      background: linear-gradient(90deg, var(--primary), var(--accent));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .logo::before {
      content: "◆";
      font-size: 32px;
    }

    /* Desktop Navigation */
    .nav-menu {
      display: flex;
      gap: 40px;
      list-style: none;
    }

    .nav-menu a {
      text-decoration: none;
      color: var(--text);
      font-weight: 600;
      font-size: 16px;
      transition: all 0.3s ease;
      position: relative;
    }

    .nav-menu a::after {
      content: '';
      position: absolute;
      width: 0;
      height: 2px;
      bottom: -4px;
      left: 0;
      background: var(--primary);
      transition: width 0.3s ease;
    }

    .nav-menu a:hover::after {
      width: 100%;
    }

    .nav-menu a:hover {
      color: var(--primary);
      transform: translateY(-2px);
    }

    /* Mobile Menu Button */
    .mobile-menu-btn {
      display: none;
      flex-direction: column;
      gap: 4px;
      cursor: pointer;
      padding: 8px;
      z-index: 1001;
    }

    .bar {
      width: 28px;
      height: 3px;
      background: var(--text);
      border-radius: 3px;
      transition: all 0.3s ease;
    }

    /* Hero Banner with Night City */
    .hero {
      height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding-top: 80px;
      background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.75)),
                  url('https://softwarespanel.com/img/software-banner-1.jpg') no-repeat center center/cover;
      color: white;
      position: relative;
    }

    .hero-content {
      max-width: 800px;
      padding: 0 20px;
      z-index: 2;
    }

    .hero h1 {
      font-size: 3.8rem;
      margin-bottom: 20px;
      line-height: 1.1;
      text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
    }

    .hero p {
      font-size: 1.3rem;
      margin-bottom: 40px;
      opacity: 0.95;
      text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    }

    .cta-button {
      padding: 16px 40px;
      background: var(--primary);
      color: white;
      border: none;
      border-radius: 50px;
      font-size: 18px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 0 10px 30px rgba(99, 102, 241, 0.5);
    }

    .cta-button:hover {
      background: var(--primary-dark);
      transform: translateY(-5px);
      box-shadow: 0 15px 40px rgba(99, 102, 241, 0.6);
    }

    /* Mobile Menu - Blue Violet Background */
    .nav-menu.mobile-menu {
      position: fixed;
      top: 80px;
      left: -100%;
      width: 100%;
      height: calc(100vh - 80px);
      background: linear-gradient(135deg, #4f46e5, #7c3aed, #a855f7);
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 35px;
      transition: left 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
      z-index: 999;
    }

    .nav-menu.mobile-menu.active {
      left: 0;
    }

    .nav-menu.mobile-menu a {
      color: white;
      font-size: 24px;
      font-weight: 700;
      text-decoration: none;
      transition: all 0.3s ease;
      text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }

    .nav-menu.mobile-menu a:hover {
      color: #e0e7ff;
      transform: scale(1.08);
    }

    /* Responsive Design */
    @media (max-width: 992px) {
      .nav-menu.desktop-menu {
        display: none;
      }

      .mobile-menu-btn {
        display: flex;
      }
    }

    @media (min-width: 993px) {
      .nav-menu.mobile-menu {
        display: none;
      }
    }

    /* Header scroll effect */
    header.scrolled {
      height: 70px;
      background: rgba(255, 255, 255, 0.98);
    }

    /* Animations */
    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(50px); }
      to { opacity: 1; transform: translateY(0); }
    }
  
  .sparkle-blink {
    font-family: 'Arial Black', sans-serif;
    font-size: 20px;
    font-weight: bold;
    text-align: left;
    cursor: default;
    
    /* Animation: 1s for blinking, 3s for color shifting */
    animation: blink-animation 1s steps(5, start) infinite, 
               color-change 2s linear infinite;
  }

  /* The Blinking Logic */
  @keyframes blink-animation {
    to {
      visibility: hidden;
    }
  }

  /* The Sparkling Color Logic */
  @keyframes color-change {
    0% { color: #ff0000; text-shadow: 0 0 10px #ff0000; }
    25% { color: #ff00ff; text-shadow: 0 0 20px #ff00ff; }
    50% { color: #00ffff; text-shadow: 0 0 10px #00ffff; }
    75% { color: #ffff00; text-shadow: 0 0 20px #ffff00; }
    100% { color: #ff0000; text-shadow: 0 0 10px #ff0000; }
  }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

   

    h2 {
      text-align: center;
      margin-bottom: 40px;
      font-size: 2.5rem;
      color: #333;
    }

    .products-container {
        padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 25px;
    }

    .product-card {
      background: white;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      transition: all 0.3s ease;
    }

    .product-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    }

    .product-card img {
      width: 100%;
      height: 220px;
      object-fit: cover;
    }

    .product-content {
      padding: 20px;
      text-align: center;
    }

    .product-content h3 {
      font-size: 1.4rem;
      margin-bottom: 12px;
      color: #222;
    }

    .product-content p {
      color: #666;
      line-height: 1.6;
      font-size: 0.95rem;
    }

    /* Responsive Design */
    @media (max-width: 992px) {
      .products-container {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on tablets */
      }
    }

    @media (max-width: 576px) {
      .products-container {
        grid-template-columns: 1fr; /* 1 column on mobile */
        gap: 20px;
      }

      h2 {
        font-size: 2rem;
      }

      .product-card img {
        height: 200px;
      }
    }
 
  
  footer {
      background-color: #111111;
      color: #ffffff;
      padding: 60px 0 20px;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 40px;
    }

    .footer-column h3 {
      color: #ffffff;
      margin-bottom: 20px;
      font-size: 18px;
    }

    .footer-column ul {
      list-style: none;
    }

    .footer-column ul li {
      margin-bottom: 12px;
    }

    .footer-column ul li a {
      color: #cccccc;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .footer-column ul li a:hover {
      color: #ffffff;
    }

    .copyright {
      background-color: #0a0a0a;
      color: #777777;
      text-align: center;
      padding: 20px 0;
      margin-top: 40px;
      font-size: 14px;
      border-top: 1px solid #222222;
    }

    /* Responsive Design */
    @media (max-width: 992px) {
      .footer-container {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 576px) {
      .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
      }
    }

    .violet-btn {
      background-color: #8B00FF;     /* Vibrant Violet */
      color: white;
      padding: 14px 28px;
      font-size: 16px;
      font-weight: 600;
      border: none;
      border-radius: 50px;           /* Rounded corners */
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 0 4px 15px rgba(139, 0, 255, 0.4);
    }

    .violet-btn:hover {
      background-color: #9F2BFF;     /* Lighter violet on hover */
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(139, 0, 255, 0.5);
    }

    .violet-btn:active {
      transform: translateY(1px);
    }
    
    .two-column {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 30px;
      margin-top: 20px;
      padding: 20px;
    }

    .column {
      background: white;
      padding: 25px;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    }

    .column h2 {
      margin-bottom: 15px;
      color: #333;
    }

    /* Mobile Responsive */
    @media (max-width: 768px) {
      .two-column {
        grid-template-columns: 1fr; /* Stacks into single column on mobile */
        gap: 20px;
      }
      
     
    

 
  .content-section {
    max-width: 1200px;
    margin: 20px auto;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    padding: 20px;
    color: #333;
  }

  /* Desktop/Tablet: Text wraps around the image */
  .wrapped-image {
    float: left;
    width: 300px; /* Fixed or percentage width */
    max-width: 100%;
    height: auto;
    margin: 0 25px 15px 0;
    border-radius: 4px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  }

  /* Mobile: Text stacks below the image */
  @media screen and (max-width: 600px) {
    .wrapped-image {
      float: none;      /* Removes the wrap */
      display: block;   /* Makes it a block element */
      margin: 0 auto 20px auto; /* Centers the image */
      width: 100%;      /* Image takes full width */
    }
    
    h2 {
      text-align: center;
    }
  }

  /* Standard Clearfix */
  .clearfix::after {
    content: "";
    clear: both;
    display: table;
  }
