.chain_section {
  width: 100%;
  background-color: #fff;
  padding: 0;
  margin: 0;
}

.chain_wrapper {
  position: relative;
  display: flex;
  flex-direction: row-reverse; /* ✅ صورة يمين */
  align-items: center;
  justify-content: flex-start;
  min-height: 30%;
  overflow: hidden;
}
.chain_image_side {
  width: 70%;
  padding: 20px 50px;
  box-sizing: border-box;
}

.chain_image {
  width: 90%;
  height: 50vh; /* ✅ 30% من طول الشاشة */
  display: block;
}

/* ✅ الصندوق بمكانه ويتداخل مع الصورة */
.chain_text_side{
  position: absolute;
  left: calc(20% - 200px); /* ✅ هذا يخلي نص الصندوق داخل الصورة */
  top: 40%;
  transform: translateY(-50%);
  background-color: #333;
  color: #e8f0f7;
  padding: 30px;
  width: 35%;

  max-width: 90vw;
  box-shadow: 0 0 10px rgba(0,0,0,0.15);
  z-index: 2;
}

html[dir="rtl"] .chain_text_side {
    position: absolute;
    right: calc(20% - 200px);
    top: 40%;
    transform: translateY(-50%);
    background-color: #333;
    color: #e8f0f7;
    padding: 30px;
    width: 35%;
    max-width: 90vw;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

.chain_title{
  font-size: 22px;
  font-weight: bold;
  color: #c8be2b;
  margin-bottom: 15px;
  line-height: 1.4;
}

.chain_paragrapg {
  font-size: 15px;
  line-height: 1.8;
  margin: 0;
}
@media (max-width: 768px) {
  .chain_wrapper {
    flex-direction: column;
    align-items: center;
  }

  .chain_image_side {
    width: 100%;
    padding: 0;
  }

  .chain_image {
    width: 100%;
    height: auto;
  }

  .chain_text_side {
    position: static;
    width: 100%;
    margin-top: 20px;
    transform: none;
    left: auto;
    top: auto;
    box-shadow: none;
    padding: 20px;
  }

  .chain_text_side h3 {
    font-size: 20px;
    text-align: center;
  }

  .chain_text_side p {
    font-size: 14px;
    text-align: center;
  }
}


/********************************************************************************/

.coldchain-section {
  font-family: 'Segoe UI', sans-serif;
  background-color: #fff;
  color: #333;
}



.lead-paragraph {
  max-width: 900px;
  margin: 0 auto 30px auto;
  color: #555;
  font-size: 15px;
  line-height: 1.9;
}

.sub-title {
  font-size: 24px;
  font-weight: bold;
  color: #b6aa2a;
  margin-bottom: 20px;
  margin-top: 20px;
}

.desc-paragraph {
  max-width: 900px;
  margin: 0 auto;
  color: #444;
  font-size: 20px;
  line-height: 1.9;
  text-align: start;
}

