     /* Global Styles */
     * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: Arial, sans-serif;
    }
    
    
    
    body {
        font-family: Arial, sans-serif;
        margin: 0;
        padding: 0;
        background-color: #000000;
        color: aliceblue;
        
    }
    
    
    
    
    /* Hero Section */
    .hero {
        background-image: linear-gradient(135deg, rgb(0, 0, 0), rgb(78, 75, 75), rgb(0, 0, 0));
        padding-top: 80px;
        
        height: auto;
        display: flex;
        justify-content: center;
        width: 100%;
        align-items: center;
        
    }
    .video_viewer {
        display: flex;
        justify-content: center; /* Center the video horizontally */
    }
    
    .produc_video {
        max-width:720px;
        height: auto;
        display: flex;
        justify-content: center; /* Center the video horizontally */
        border-radius: 10px;
        border: 0.5px solid #444444;
        box-shadow: 0 2px 4px rgba(41, 40, 40, 0.1);
        
        
      }
      
      .produc_video video {
        width: 100%;
        height: auto;
        
      }
      
    
    /* Hero Images */
    .hero {
      width: 100%;
    }
    .slider {
      max-width: 100%;
    }
    .slider img {
      max-width: 900px;
        
    }
    
    
    
    .hero h2 {
        font-size: 48px;
        margin: 0;
    }
    .hero p {
        font-size: 20px;
    }
    .cta-button {
        background-color: #ff6f00;
        padding: 15px 30px;
        font-size: 20px;
        color: white;
        border: none;
        cursor: pointer;
        margin-top: 20px;
        border-radius: 5px;
        text-decoration: none;
    }
    .cta-button:hover {
        background-color: #ff8c1a;
    }
    .section {
        padding: 40px 20px 100px 20px;
        max-width: 1200px;
        margin: 0 auto;
        
    }
    .section h2 {
      
       
        text-align: center;
        
        font-size: 60px;
        line-height: 64px;
        background-image: linear-gradient(135deg, rgb(84, 84, 88), white, rgb(84, 84, 88));
        background-clip: text;
        color: transparent;
        
        
    }
    .feature-list {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-around;
        margin-top: 40px;
    }
    .feature-item {
        width: 30%;
        text-align: center;
        margin-bottom: 20px;
    }
    .feature-item img {
        width: 60px;
        height: 60px;
    }
    
    .feature-item h3 {
        font-size: 24px;
        margin-top: 10px;
        
    }
    .feature-item p {
        font-size: 16px;
        margin-top: 10px;
    }
    .specifications {
        display: flex;
        justify-content: center;
        margin-top: 40px;
        background-color: #000000;
        padding: 10px;
        border-radius: 10px;
        align-items: center;
        border: 1px solid #444444;
    }
    .specifications div { 
        padding: 30px;
        
      
    }
    .specifications h3 {
        font-size: 28px;
        margin-bottom: 15px;
    }
    .specifications ul {
        list-style-type: none;
        padding: 0;
    }
    .specifications ul li {
        font-size: 16px;
        margin: 5px 0;
    }


    .solutions-section {
      text-align: center;
      padding: 40px 20px;
  }

  .solutions-section h2 {
      font-size: 2rem;
      margin-bottom: 10px;
  }

  .solutions-section p {
      max-width: 800px;
      margin: 0 auto 20px;
      font-size: 1rem;
      line-height: 1.8;
      color: #666;
  }

  .solution {
      display: flex;
      
      justify-content: center;
      align-items: center;
      border: 1px solid #444444;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
      margin: 20px auto;
      max-width: 900px;
      border-radius: 8px;
      overflow: hidden;
  }

  .solution img {
      flex: 1 1 50%;
      max-width: 400px;
      height: auto;
      object-fit: cover;
  }

  .solution-content {
      flex: 1 1 50%;
      padding: 20px;
      text-align: left;
  }

  .solution-content h3 {
      font-size: 1.5rem;
      margin-bottom: 10px;
      color: #ffffff;
  }

  .solution-content p {
      font-size: 1rem;
      line-height: 1.6;
      color: #ffffff;
  }
    
    
     /* Payloads Section*/
      
    
     .payloads_section {
        padding: 2rem;
        text-align: center;
        
      }
      .payloads_section h2 {
        
        font-size: 60px;
        line-height: 84px;
        background-image: linear-gradient(135deg, rgb(84, 84, 88), white, rgb(87, 88, 84));
        background-clip: text;
        color: transparent;
        padding-bottom: .5em;
        margin-bottom: -0.1em;
       
    
      }
      .payload-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
        
        
      }
      
      .payload-item {
        background-color: #000000;
        border-radius: 8px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        padding: 1.5rem;
        text-align: center;
        transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transition */
        border: 1px solid #444444;
        
      }
      
      .payload-item img {
        max-width: 100%;
        height: auto;
        border-radius: 8px;
        margin-bottom: 1rem;
        transition: transform 0.3s ease; /* Smooth image scaling */
      }
      
      .payload-item h3 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
      }
      
      .payload-item p {
        color: #ffffff;
        font-size: 0.9rem;
      }
        /* Hover effect for .payload-item */
        .payload-item:hover {
            transform: translateY(-10px); /* Lift the card slightly */
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2); /* Enhance the shadow */
          }
          
          .payload-item:hover img {
            transform: scale(1.1); /* Slight zoom on the image */
          }
    
    
     .threedd_viewer{
        width: 100%;
        height: auto;
        justify-content:center;
        display: flex;
        background-image: linear-gradient(135deg, rgb(0, 0, 0), rgb(41, 39, 39), rgb(0, 0, 0));
        
     
    
      }
      .threedd{
        width: 1600px;
        height: 1000px;
      }
    
      .head_viewer{
        
        height: auto;
        justify-content:center;
        display: flex;
        position: absolute;
        left: 5%;
        
       
        
     
    
      }
      .head_threedd{
        width: 200px;
        height: 80px;
        position: relative;
       
      }
    
      .maintenance {
    
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    }
    
    .Maintenance_Plan {
    
    padding: 20px;
    text-align: center;
    max-width: 1200px;
    }
    
    h1 {
    margin-bottom: 10px;
    }
    
    table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background-color: #000000;
    }
    
    th, td {
    border: 1px solid #444444;
    padding: 10px;
    text-align: center;
    }
    
    th {
    background-color: #0a0a0a;
    font-weight: bold;
    }
    
    td:first-child {
    text-align: left;
    }
    
    td {
    color: #ccc;
    }
    
    td span {
    font-weight: bold;
    color: #fff;
    }
    
    a {
    color: #1e90ff;
    text-decoration: none;
    }
    
    a:hover {
    text-decoration: underline;
    }
    
      /* Media Queries */
    @media (max-width: 1024px) {
        .feature-item {
            width: 45%;
        }
        .specifications {
            flex-direction: column;
            align-items: center;
        }
        .specifications div {
            width: 100%;
            margin-bottom: 20px;
        }
        .cta-button {
            font-size: 18px;
            padding: 10px 20px;
        }
        .threedd{
        width: 1200px;
        height: 800px;
      }
    
    }
    
    @media (max-width: 768px) {
        .feature-item {
            width: 100%;
        }
        .hero h2 {
            font-size: 32px;
        }
        .hero p {
            font-size: 16px;
        }
        .cta-button {
            font-size: 16px;
            padding: 8px 15px;
        }
        .slider img {
        max-width:400px;/* Full-width images */
        height: auto;
        
    }
    .threedd{
        width: 900px;
        height: 400px;
      }
    
    
    }
    
    
    
    @media (max-width: 480px) {
        .hero h2 {
            font-size: 24px;
        }
        .hero p {
            font-size: 14px;
        }
        .section h2 {
            font-size: 24px;
        }
        .payload-item {
            padding: 1rem;
        }
        footer p {
            font-size: 14px;
        }
    
      
      
    }
    