* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
.eg-wrap {
  width: 100%;
  background: #2da5da;
  font-family: "Cairo", sans-serif;
  direction: rtl;
  overflow: hidden;
}

.eg-top-bar {
  background: #2da5da;
  border-bottom: 2px solid #f97708;
  padding: 0;
}
.eg-top-inner {
  display: flex;
  align-items: stretch;
  width: 100%;
}
.eg-top-label {
  background: #f97708;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 0 8px;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  flex-shrink: 0;
  letter-spacing: 0.02em;
}
.eg-top-label svg {
  width: 14px;
  height: 14px;
  fill: #fff;
  flex-shrink: 0;
}
.eg-top-ticker-outer {
  flex: 1;
  overflow: hidden;
  position: relative;
}
.eg-top-ticker-outer::before,
.eg-top-ticker-outer::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 40px;
  z-index: 2;
  pointer-events: none;
}
.eg-top-ticker-outer::before {
  right: 0;
  background: linear-gradient(to right, transparent, #2da5da);
}
.eg-top-ticker-outer::after {
  left: 0;
  background: linear-gradient(to left, transparent, #2da5da);
}
.eg-top-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 0;
  will-change: transform;
}
.eg-top-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  white-space: nowrap;
}
.eg-top-item:first-child {
  border-right: none;
}
.eg-top-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #f97708;
  flex-shrink: 0;
}
.eg-top-text {
  color: rgba(255, 255, 255, 0.85);
  font-size: 12.5px;
  font-weight: 400;
}
.eg-top-text b {
  color: #f97708;
  font-weight: 700;
}
/*  */
.eg-cta-strip {
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  flex-wrap: wrap;
}
.eg-cta-left {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.eg-cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(249, 119, 8, 0.15);
  border: 1px solid rgba(249, 119, 8, 0.35);
  border-radius: 99px;
  padding: 3px 12px;
  width: fit-content;
  margin-bottom: 2px;
}
.eg-cta-badge span {
  color: #f97708;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.eg-cta-badge svg {
  width: 10px;
  height: 10px;
  fill: #f97708;
}
.eg-cta-title {
  color: #fff;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.3;
}
.eg-cta-title em {
  color: #f97708;
  font-style: normal;
}
.eg-cta-sub {
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  font-weight: 400;
  margin-top: 2px;
}
.eg-cta-btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  flex-shrink: 0;
}
.eg-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  border-radius: 8px;
  font-family: "Cairo", sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition:
    transform 0.15s,
    opacity 0.15s;
  white-space: nowrap;
}
.eg-btn:active {
  transform: scale(0.97);
}
.eg-btn-call {
  background: #f97708;
  color: #fff;
}
.eg-btn-wa {
  background: #25d366;
  color: #fff;
}
.eg-btn svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  flex-shrink: 0;
}
/*  */
.eg-img-outer {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(
    to left,
    transparent 0%,
    #000 70px,
    #000 calc(100% - 70px),
    transparent 100%
  );
  mask-image: linear-gradient(
    to left,
    transparent 0%,
    #000 70px,
    #000 calc(100% - 70px),
    transparent 100%
  );
}
.eg-img-track {
  display: flex;
  width: max-content;
  align-items: stretch;
  gap: 0;
  will-change: transform;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  touch-action: pan-y;
  position: relative;
}
.eg-img-track:active {
  cursor: grabbing;
}
.eg-img-item {
  flex: 0 0 auto;
  position: relative;
  overflow: hidden;
}
.eg-img-item img {
  display: block;
  width: 300px;
  height: 200px;
  object-position: center;
}
.eg-img-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(5, 47, 90, 0.55) 0%,
    transparent 55%
  );
  pointer-events: none;
}
.eg-img-sep {
  width: 2px;
  background: #f97708;
  flex-shrink: 0;
  opacity: 0.6;
  align-self: stretch;
}

.eg-stats {
  display: flex;
  align-items: stretch;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}
.eg-stat {
  flex: 1;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  border-left: 1px solid rgba(255, 255, 255, 0.07);
}
.eg-stat:last-child {
  border-left: none;
}
.eg-stat-num {
  color: #f97708;
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
}
.eg-stat-lbl {
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  font-weight: 400;
  text-align: center;
}

@keyframes eg-pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}
.eg-live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2da5da;
  display: inline-block;
  animation: eg-pulse 1.8s ease-in-out infinite;
  flex-shrink: 0;
}
