:root {
  --ec-primary: #0f6e6c;
  --ec-primary-2: #0a5a58;
  --ec-green: #0b5d37;
  --ec-bg: #f4f7f7;
  --ec-text: #222;
  --ec-accent: #ffcc00;
}

.ec-body {
  font-family: 'Cairo', sans-serif;
  direction: rtl;
  text-align: right;
  background-color: var(--ec-bg);
  margin-top: 82px;
  overflow-x: hidden;
  width: 100%;
  box-sizing: border-box;
  color: var(--ec-text);
}

.ec-navbar {
  background-color: var(--ec-primary);
  padding: 0.5rem 1rem;
}

.ec-brand, .ec-navbar .nav-link { color: #fff !important; }
.ec-navbar .nav-link:hover { color: var(--ec-accent) !important; }

.ec-hero {
  min-height: 90vh;
  background: linear-gradient(270deg, #008a85, #00726e, #008a85);
  background-size: 600% 600%;
  animation: ecGradient 10s ease infinite;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 120px 20px 60px;
}
@keyframes ecGradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.ec-hero h1 { color: #fff; font-size: 2.7em; margin-bottom: 15px; }
.ec-hero p { font-size: 1.1em; max-width: 700px; margin: auto; margin-bottom: 25px; }
.ec-hero a { background: var(--ec-primary); color: #fff; padding: 15px 35px; border-radius: 10px; text-decoration: none; font-weight: 800; font-size: 1.2em; }
.ec-hero a:hover { transform: scale(1.05); }

.ec-section { background-color: rgba(15, 110, 108, 0.08); padding: 20px; border-radius: 10px; margin-bottom: 30px; }
.ec-card-category { transition: transform .3s ease; margin-bottom: 15px; }
.ec-card-category:hover { transform: translateY(-5px); }
.ec-trust-banner { background: #e6f2f1; color: #066965; padding: 12px; text-align: center; font-weight: 700; }

.ec-timeline-item { position: relative; padding-right: 2rem; margin-bottom: 2rem; }
.ec-timeline-item::before { content: ""; position: absolute; right: 7px; top: 0; height: 100%; width: 2px; background-color: var(--ec-primary); }
.ec-timeline-item::after { content: ""; position: absolute; right: 0; top: 5px; height: 16px; width: 16px; border-radius: 50%; background-color: var(--ec-primary); }
.ec-timeline-date { font-weight: bold; color: var(--ec-primary); margin-bottom: .5rem; }

.ec-footer { background-color: var(--ec-primary); color: #fff; }
.ec-btn-primary { background-color: var(--ec-primary); border: none; color: white; }
.ec-btn-primary:hover { background-color: var(--ec-green); }

strong {color: #0f6e6c;}
.hd strong {color: white;}

.step-card {
  border-right: 4px solid #158886;
  margin-bottom: 1.5rem;
  border-radius: 5px;
  background-color: #fff;
  padding: 1.5rem;
  position: relative;
}

.step-number {
  background-color: #158886;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
  position: absolute;
  right: -20px;
  top: 20px;
}

.step-content {
  padding-right: 30px;
}

.tip-box {
  background-color: rgba(255, 204, 0, 0.1);
  border-right: 4px solid #ffcc00;
  padding: 1rem;
  margin-bottom: 1.5rem;
  border-radius: 5px;
}

.tip-box h5 {
  color: #996d00;
}

.timeline-item {
  position: relative;
  padding-right: 2rem;
  margin-bottom: 2rem;
}

.timeline-item::before {
  content: "";
  position: absolute;
  right: 7px;
  top: 0;
  height: 100%;
  width: 2px;
  background-color: #158886;
}

.timeline-item::after {
  content: "";
  position: absolute;
  right: 0;
  top: 5px;
  height: 16px;
  width: 16px;
  border-radius: 50%;
  background-color: #158886;
}