
.container-about-mikrotik {
  display: flex; 
  justify-content: space-between; 
  direction: rtl; 
 background-color: #111127;
  padding: 44px 40px;
}
.box-m {
  width: 48%; 
  border: 1px solid #ccc;
  padding: 30px;
  box-sizing: border-box; 
  text-align: justify;
  background-color: #fff;
  margin-bottom: 20px;
  border-radius:50px;
}

.box-m img {
  max-width: 100%; 
  height: auto; 
  display: block; 
  margin:0 auto;
}

.box-m h2 {
  font-size: 1.5em;
  margin-bottom: 10px;
  color: #333;
  text-align:center;
}

.box-m p {
  font-size: 1em; 
  color: #666;
  line-height: 1.6;
}


@media (max-width: 768px) {
  .container-about-mikrotik {
    flex-direction: column; 
    align-items: center;
padding: 30px 10px;
  }
  .box-m {
    width: 100%; 
    margin-bottom: 15px;
  }
}




.image-row-container {
  display: flex; 
  width: 100%;
  direction: rtl; 
  flex-wrap: wrap; 
background-color:#fff;
padding-top:30px;
}

.image-item-ab {
  width: 30%; 
  text-align: center; 
  margin-bottom: 20px; 
}

.image-item-ab img {
  max-width: 100%; 
  height: auto; 
  display: block; 
  margin-left: auto; 
  margin-right: auto; 

  
}

.image-caption {
  margin-top: 10px; 
  font-size: 1.1em;
  color: #333;
  font-weight: bold;
}

@media (max-width: 768px) {
  .image-item-ab {
    width: 45%; 
    margin-left: 2.5%; 
    margin-right: 2.5%;
  }
  .image-row-container {
      justify-content: center; 
  }
}



/* Routerboard Products Section Styles */
.routerboard-section-container {
    text-align: center;
    margin: 50px 0; 
    padding: 40px 25px; 
    background: linear-gradient(135deg, #2a1a3e 0%, #1e1e2f 100%);
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.routerboard-section-container .section-title {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 40px;
    border-bottom: 3px solid #ab0000; 
    display: inline-block;
    padding-bottom: 12px;
    letter-spacing: 0.5px;
}

.products-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); 
    gap: 30px; 
    margin-bottom: 45px;
    justify-content: center;
}

.products-wrapper .product-item {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}

.products-wrapper .product-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.products-wrapper .product-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.products-wrapper .product-thumbnail {
    text-align: center;
    margin-bottom: 15px;
    height: 200px; 
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f8f8;
    border-radius: 5px;
    overflow: hidden;
}

.products-wrapper .product-thumbnail img {
    max-width: 100%;
    max-height: 100%;
    height: auto;
    display: block;
    border-radius: 5px;
}
.products-wrapper .product-thumbnail.no-image {
    background-color: #f0f0f0;
    color: #aaa;
    font-size: 14px;
}

.products-wrapper .product-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
    min-height: 44px; 
    line-height: 1.2;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.products-wrapper .product-meta {
    margin-top: auto;
    text-align: center;
}

.products-wrapper .price {
    font-size: 19px; 
    font-weight: bold;
    display: block;
    margin-bottom: 20px; 
}


.btn, .btn-routerboard-all {
    display: inline-block;
    padding: 14px 30px;
    font-size: 17px;
    font-weight: 600;
    color: #fff;
    border: none;
    border-radius: 7px;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 10px rgba(33, 150, 243, 0.3);
}

.btn:hover, .btn-routerboard-all:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(33, 150, 243, 0.4);
}

.view-all-btn {
    margin-top: 20px;
}

.no-products-found {
    grid-column: 1 / -1; 
    color: #d32f2f;
    font-size: 16px;
    margin-top: 20px;
    padding: 20px;
    background-color: #ffebee;
    border: 1px solid #f44336;
    border-radius: 5px;
}
