/* =======================================Service======================================= */
/* =======================================backup======================================= */
.backup-section {
    background-color: #11194f;
    color: white;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
    margin-top: 5rem;
  }
  
  .backup-section .container {
    max-width: 1200px;
    margin: auto;
    z-index: 2;
    position: relative;
  }
  
  .backup-section h1 {
    font-size: 48px;
    line-height: 1.2;
    font-weight: bold;
    margin: 0;
    text-align: left;
  }
  
  .shapes .square {
    border: 4px solid #00bfff;
    position: absolute;
    border-radius: 8px;
  }
  
  .top-right {
    top: 20px;
    right: 80px;
    width: 50px;
    height: 50px;
  }
  
  .bottom-right.large {
    bottom: -20px;
    right: 20px;
    width: 120px;
    height: 120px;
    border-radius: 20px;
  }
  
  .text-section {
    padding: 80px 80px;
    background-color: #fff;
    font-size: 18px;
    text-align: left;
    line-height: 1.6;
    color: #333;
  }
  
  .info-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 60px 20px;
    max-width: 1200px;
    margin: auto;
    flex-wrap: wrap;
    margin-top: -4rem;
  }
  
  .image-box {
    flex: 1;
    min-width: 280px;
    text-align: center;
  }
  
  .image-box img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    width: 100%;
    max-width: 500px;
  }
  
  .texts-box {
    flex: 1;
    min-width: 280px;
  }
  
  .texts-box h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #11194f;
  }
  
  .texts-box p {
    font-size: 18px;
    line-height: 1.6;
    color: #444;
  }
  
  /* Tablet view */
  @media (max-width: 992px) {
    .info-section {
      flex-direction: row; /* Ensure the image and text remain side-by-side */
      text-align: left;
      gap: 30px;
      padding: 50px 20px;
    }
  
    .texts-box {
      text-align: left;
      padding-top: 0;
    }
  
    .texts-box h2 {
      font-size: 2rem;
    }
  
    .backup-section h1 {
      font-size: 2.5rem;
    }
  
    .text-section {
      padding: 60px 20px;
      text-align: center;
    }
  }
  
  /* Mobile view */
  @media (max-width: 576px) {
    .backup-section h1 {
      font-size: 1.75rem;
    }
  
    .texts-box h2 {
      font-size: 1.35rem;
    }
  
    .texts-box p,
    .text-section {
      font-size: 1rem;
    }
  
    .image-box img {
      width: 100%;
      height: auto;
      border-radius: 12px;
    }
  
    .text-section {
      padding: 40px 15px;
    }
  
    /* Prevent image from stacking below text */
    .info-section {
      flex-direction: row;
      align-items: center;
    }
  }
  
  .service-navigation {
    background-color: #1b245c;
    padding: 80px 100px;
    color: white;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  
  .service-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
  }
  
  .service-box {
    flex: 1 1 45%;
    min-width: 300px;
  }
  
  .service-box h2 {
    font-size: 32px;
    margin: 0;
    font-weight: 600;
  }
  
  .service-link {
    font-size: 40px;
    font-weight: 700;
    color: #2dc3f4;
    text-decoration: underline;
    margin-top: 10px;
    display: inline-block;
    transition: all 0.3s ease;
  }
  
  .service-box.right {
    text-align: right;
  }



  .network-cyber-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    padding: 40px;
    background-color: #f5f5f5;
  }
  
  .card {
    border-radius: 20px;
    padding: 30px;
    width: 600px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    color: #1a1a1a;
  }
  
  .card h2 {
    font-size: 24px;
    margin-top: 0;
    margin-bottom: 20px;
  }
  
  .card ul {
    list-style-type: disc;
    padding-left: 20px;
    margin: 0;
  }
  
  .card ul li {
    font-size: 18px;
    margin-bottom: 10px;
  }
  
  .infrastructure {
    background-color: #ff8700;
  }
  
  .cyber-protection {
    background-color: #3cf;
  }

  .hard-protection {
    background-color: rgb(233, 0, 183);
  }

  .software {
    background-color: rgb(35, 233, 0);
  }
  
  .server {
    background-color: rgb(255, 255, 255);
  }
  
  
  /* ✅ This part transforms links into buttons on small screens */
  @media (max-width: 768px) {
    .service-container {
      align-items: center;
      text-align: center;
      margin-left: -3rem;
    }
  
    .service-box,
    .service-box.right {
      text-align: center;
    }
  
    .service-box h2 {
      font-size: 15px;
    }
  
    .service-container a {
      font-size: 18px;
      font-weight: 600;
      background-color: #2dc3f4;
      color: #1b245c;
      text-decoration: none;
      padding: 12px 24px;
      border-radius: 6px;
      margin-top: 16px;
      display: inline-block;
    }
  
    .service-link:hover {
      background-color: #1fb5e2;
    }
  }

  
    
/* =======================================service======================================= */  
  










































/* =======================================GETAC======================================= */
.getac-products {
    padding: 4rem 8rem;
    background-color: #f9f9f9;
    margin-top: -6rem;
}

.getac-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.getac-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.getac-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.getac-card img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 1rem;
}

/* Responsive tweaks */
@media (max-width: 768px) {
    .getac-products {
        padding: 3rem 2rem;
    }
}

@media (max-width: 480px) {
    .getac-products {
        padding: 2rem 1rem;
    }
}

/* =======================================Toughpads======================================= */
.toughbook-products {
    padding: 4rem 8rem;
    background-color: #f9f9f9;
    margin-top: -6rem;
}

.toughbook-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.toughbook-card {
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.toughbook-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.toughbook-card img {
    max-width: 100%;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.toughbook-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
    color: #333;
}

.toughbook-card p {
    font-size: 1rem;
    color: #555;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .toughbook-products {
        padding: 3rem 2rem;
    }
}

@media (max-width: 480px) {
    .toughbook-products {
        padding: 2rem 1rem;
    }
}

/* =======================================Toughbook======================================= */
.toughbook-products {
    padding: 4rem 8rem;
    background-color: #f9f9f9;
    margin-top: -6rem;
}

.toughbook-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.toughbook-card {
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.toughbook-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.toughbook-card img {
    max-width: 100%;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.toughbook-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
    color: #333;
}

.toughbook-card p {
    font-size: 1rem;
    color: #555;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .toughbook-products {
        padding: 3rem 2rem;
    }
}

@media (max-width: 480px) {
    .toughbook-products {
        padding: 2rem 1rem;
    }
}


.diagnostic-laptops {
    padding: 4rem 8rem;
    background-color: #f9f9f9;
    margin-top: 6rem;
}

.diagnostic-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.diagnostic-card {
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.diagnostic-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.diagnostic-card img {
    max-width: 100%;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.diagnostic-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    color: #0073e6;
}

.diagnostic-card p {
    font-size: 1rem;
    color: #555;
}

@media (max-width: 768px) {
    .diagnostic-laptops {
        padding: 3rem 2rem;
    }
}

@media (max-width: 480px) {
    .diagnostic-laptops {
        padding: 2rem 1rem;
    }
}


/* =======================================auto diagonistic equipments======================================= */

.product-section {
    padding: 4rem 8rem;
    background-color: #f9f9f9;
    margin-top: 6rem;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.product-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.product-card img {
    max-width: 100%;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.product-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #0073e6;
}

.product-card p {
    font-size: 1rem;
    color: #555;
}

.btn {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    background-color: #0073e6;
    color: white;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #005bb5;
}

@media (max-width: 768px) {
    .product-section {
        padding: 3rem 2rem;
    }
}

@media (max-width: 480px) {
    .product-section {
        padding: 2rem 1rem;
    }
}
