body {
  font-family: 'Cairo', sans-serif;
  background: white;
  color: #fff;
}

.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  background: radial-gradient(circle, #111, #000);
}

.hero-logo {
    max-width: 500px; /* ديسكتوب */
}

@media (max-width: 768px) {
    .hero-logo {
        max-width: 300px; /* جوال */
    }
}

.text-primary {
  color: #C9A24D !important;
}

.section {
  padding: 80px 0;
}

.section-title {
  color: #C9A24D;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 800;
}

.program-card {
  background: #C9A24D !important;
  border: 1px solid #C9A24D;
  color: #fff;
  padding: 25px;
  text-align: center;
  border-radius: 12px;
  transition: 0.3s;
}

.program-card:hover {
  transform: translateY(-5px);
}

.footer {
  padding: 20px;
  border-top: 1px solid #222;
}

.contact-link {
  color: #C9A24D;
  font-size: 18px;
  text-decoration: none;
}

.socials a {
  color: #C9A24D;
  margin: 0 6px;
}
.axis-header {
  padding: 120px 0 60px;
  background: linear-gradient(to bottom, #111, #000);
}

.axis-header h1 {
  color: #C9A24D;
  font-weight: 800;
}

.axis-header h2 {
  font-weight: 700;
}

.program-detail {
  background: #111;
  border: 1px solid #C9A24D;
  padding: 25px;
  border-radius: 14px;
  height: 100%;
}

.program-detail h5 {
  color: #C9A24D;
  margin-bottom: 15px;
}

.program-detail ul {
  padding-right: 20px;
}

.program-detail li {
  margin-bottom: 6px;
}
.program-icon {
  font-size: 42px;
  color: white !important;
  margin-bottom: 15px;
  display: block;
}

.program-card {
  background: #111;
  border: 1px solid #C9A24D;
  padding: 30px;
  text-align: center;
  border-radius: 14px;
  transition: 0.3s;
}

.program-card:hover {
  transform: translateY(-6px);
}

.program-detail h5 i {
  color: #C9A24D;
}

.nav-link {
  color: white;
  font-size: 18px;
}

#counter {
    border: 2px solid #C9A24D !important;
    color: white;
    background-color: #C9A24D;
    padding: 0px 10px;
    border-radius: 20px;
    margin-right: 9px;
}

.nav-item :hover{
  color: #C9A24D !important;
  font-weight: bolder;
}

.break-line-top {
  border-top: 1px solid rgba(201, 162, 77, 0.3);
}

/* ====== Breadcrumb ====== */
.breadcrumb-custom {
  background: transparent;
  justify-content: center;
  margin-bottom: 25px;
}

.breadcrumb-custom a {
  color: #C9A24D;
  text-decoration: none;
}

.breadcrumb-custom .active {
  color: #aaa;
}

/* ====== Program Cards ====== */
.program-detail {
  background: #111;
  border: 1px solid #C9A24D;
  padding: 25px;
  border-radius: 14px;
  height: 100%;
}

.program-detail h5 {
  color: #C9A24D;
  margin-bottom: 15px;
}

.program-detail h5 i {
  margin-left: 6px;
}

.program-detail ul {
  padding-right: 20px;
}

.program-detail li {
  margin-bottom: 6px;
  color: wheat;
}

/* ====== Axis Backgrounds ====== */
.bg-hero-1 { background-image: url("../images/background.gif");}
.axis-bg-1 { background-image: url("../images/background.gif"); }
.axis-bg-2 { background-image: url("../images/background.gif"); }
.axis-bg-3 { background-image: url("../images/background.gif"); }
.axis-bg-4 { background-image: url("../images/background.gif"); }
.axis-bg-5 { background-image: url("../images/background.gif"); }

.info-card .bi {
      font-size: 70px !important;
}

.info-card {
  text-align: center;
}
.big-icon {
  font-size: 140px;
  color: black !important;
}
/* ===== Strategy Section ===== */
.strategy-section {
  background: white;
  position: relative;
}

.strategy-subtitle {
  color: #aaa;
  max-width: 600px;
  margin: auto;
}

/* Timeline */
.strategy-timeline {
  position: relative;
  margin-top: 60px;
  padding: 40px 0;
}

.strategy-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: linear-gradient(to bottom, transparent, #C9A24D, transparent);
  transform: translateX(-50%);
}

/* Item */
.strategy-item {
  position: relative;
  display: flex;
  justify-content: center;
  margin-bottom: 80px;
}

/* Content */
.strategy-content {
  width: 45%;
  background: #C9A24D;
  border: 1px solid rgba(201,162,77,0.4);
  padding: 30px;
  border-radius: 16px;
}

.strategy-content h4 {
  color: white;
  margin-bottom: 12px;
}

.strategy-content p {
  color: #ddd;
  line-height: 1.8;
}

/* Left / Right */
.strategy-content.left {
  margin-right: auto;
  text-align: right;
}

.strategy-content.right {
  margin-left: auto;
  text-align: right;
}

/* Dot */
.strategy-dot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 64px;
  height: 64px;
  background: white;
  border: 3px solid #C9A24D;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.strategy-dot i {
  font-size: 26px;
  color: #C9A24D;
}

/* Responsive */
@media (max-width: 991px) {
  .strategy-timeline::before {
    left: 20px;
  }

  .strategy-item {
    flex-direction: column;
    padding-left: 60px;
  }

  .strategy-dot {
    left: 20px;
    transform: none;
  }

  .strategy-content {
    width: 100%;
    text-align: right;
  }
}

/* ===== Footer ===== */
.footer-main {
  background: radial-gradient(circle at top, #111, #000);
  padding: 60px 0 30px;
  border-top: 1px solid rgba(201,162,77,0.3);
}

.footer-logo {
  max-width: 140px;
}

.footer-title {
  color: #C9A24D;
  margin-bottom: 15px;
  font-weight: 700;
}

.footer-text {
  color: #bbb;
  line-height: 1.8;
  font-size: 14px;
}

.footer-main a {
  color: #ddd;
  text-decoration: none;
}

.footer-main a:hover {
  color: #C9A24D;
}

.footer-main i {
  color: #C9A24D;
  margin-left: 6px;
}

/* Social Icons */
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(201,162,77,0.4);
  margin: 0 4px;
  transition: 0.3s;
}

.footer-social a:hover {
  background: #C9A24D;
  color: #000;
}

.footer-social a i {
  font-size: 18px;
}

/* Handle */
.social-handle {
  margin-top: 10px;
  font-size: 14px;
  color: #aaa;
}

/* Line & Copy */
.footer-line {
  border-color: rgba(201,162,77,0.2);
  margin: 30px 0 15px;
}

.footer-copy {
  font-size: 13px;
  color: #888;
}

/* ===== Program Panels ===== */
.program-panels {
  background: white;
}

.program-panel {
  display: flex;
  align-items: stretch;
  border: 2px solid #C9A24D;
  background: #C9A24D;
  border: 1px solid rgba(201,162,77,0.35);
  border-radius: 20px;
  margin-bottom: 25px;
  overflow: hidden;
  transition: 0.4s ease;
}

.program-panel:hover {
  transform: translateY(-6px);
  border-color: #C9A24D;
}

/* Number */
.program-number {
  min-width: 110px;
  background: white;
  color: #C9A24D;
  font-size: 32px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Body */
.program-body {
  flex: 1;
  padding: 30px;
}

.program-body h5 {
  color: white;
  margin-bottom: 12px;
  font-weight: 700;
}

.program-body ul {
  padding-right: 18px;
}

.program-body li {
  margin-bottom: 6px;
  color: black;
}

/* Side Icon */
.program-side {
  width: 90px;
  background: #030303;
  display: flex;
  align-items: center;
  justify-content: center;
}

.program-side i {
  font-size: 34px;
  color: #C9A24D;
}

/* Highlighted Program */
.program-panel.highlight {
  border: 2px solid #C9A24D;
  background: #C9A24D;
}

/* Responsive */
@media (max-width: 768px) {
  .program-panel {
    flex-direction: column;
  }

  .program-number {
    width: 100%;
    font-size: 26px;
  }

  .program-side {
    width: 100%;
    padding: 15px 0;
  }
}

/* ===== Contact Page ===== */

/* Hero */
.contact-hero {
  padding: 120px 0 80px;
  background: radial-gradient(circle at top, #1a1406, #000);
  border-bottom: 1px solid rgba(201,162,77,0.3);
}

.contact-hero h1 {
  color: #C9A24D;
  font-weight: 800;
}

.contact-hero p {
  color: #bbb;
  margin-top: 10px;
}

/* Cards */
.contact-section {
  background: white;
}

.contact-card {
  background: #111;
  border: 1px solid rgba(201,162,77,0.35);
  border-radius: 20px;
  padding: 40px 25px;
  text-align: center;
  height: 100%;
  transition: 0.4s ease;
}

.contact-card:hover {
  transform: translateY(-8px);
  border-color: #C9A24D;
}

/* Highlight (WhatsApp) */
.contact-card.highlight {
  background: radial-gradient(circle at top, #1a1406, #000);
  border: 2px solid #C9A24D;
}

/* Icon */
.contact-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: rgba(201,162,77,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-icon i {
  font-size: 32px;
  color: #C9A24D;
}

/* Text */
.contact-card h5 {
  color: #C9A24D;
  margin-bottom: 10px;
  font-weight: 700;
}

.contact-card a {
  color: #ddd;
  text-decoration: none;
  font-size: 15px;
}

.contact-card a:hover {
  color: #C9A24D;
}

/* Social Icons */
.contact-socials {
  margin: 15px 0 10px;
}

.contact-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(201,162,77,0.4);
  margin: 0 4px;
  transition: 0.3s;
  color: #C9A24D;
}

.contact-socials a:hover {
  background: #C9A24D;
  color: #000;
}

.contact-handle {
  font-size: 14px;
  color: #aaa;
}

/* Footer */
.footer-copy {
  padding: 20px;
  font-size: 13px;
  color: #888;
  border-top: 1px solid rgba(201,162,77,0.2);
}

/* ===== Split Contact Page ===== */
.contact-split {
  background: white;
}

/* Side */
.contact-side {
  background: white;
  border-left: 1px solid rgba(201,162,77,0.3);
}

.contact-side-content {
  padding: 80px 60px;
  color: #fff;
}

.contact-logo {
  max-width: 160px;
}

.contact-side h1 {
  color: #C9A24D;
  font-weight: 800;
  margin-bottom: 15px;
}

.contact-side p {
  color: #bbb;
  line-height: 1.8;
}

.contact-handle-box {
  margin-top: 30px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(201,162,77,0.4);
  padding: 10px 20px;
  border-radius: 30px;
  color: #C9A24D;
  font-weight: 600;
}

/* Main */
.contact-main {
  background: white;
}

.contact-main-content {
  padding: 80px 60px;
  width: 100%;
}

/* Contact Lines */
.contact-line {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 25px 0;
  border-bottom: 1px solid rgba(201,162,77,0.2);
}

.contact-line:last-child {
  border-bottom: 0;
}

.contact-line-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(201,162,77,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-line-icon i {
  font-size: 26px;
  color: #C9A24D;
}

.contact-line h5 {
  color: #C9A24D;
  margin-bottom: 6px;
  font-weight: 700;
}

.contact-line a {
  color: #C9A24D;
  text-decoration: none;
}

.contact-line a:hover {
  color: black;
}

/* Highlight WhatsApp */
.contact-line.highlight {
  background: radial-gradient(circle at right, white);
  border-radius: 16px;
  padding: 30px;
  border: 1px solid #C9A24D;
}

/* Social Icons */
.contact-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(201,162,77,0.4);
  margin-left: 6px;
  color: #C9A24D;
  transition: 0.3s;
}

.contact-socials a:hover {
  background: white !important;
  color: #000;
}

/* Responsive */
@media (max-width: 991px) {
  .contact-side,
  .contact-main {
    min-height: auto;
  }

  .contact-side-content,
  .contact-main-content {
    padding: 50px 30px;
    text-align: center;
  }

  .contact-line {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

.footer-main .bi {
    margin-left: 0px;
}

.footer-main p .bi {
    margin-left: 6px ;
}

p ,h5 , li {
  color: black;
}

.bi{
   color: #C9A24D;
}

.bg-dark {
    background-color: #C9A24D !important;
}

.section-title {
  color: black !important;
}

.program-card h5, .program-card p {
  color: white !important;
}

.axis-header p {
  color: white !important;
}

.program-panel .program-body li {
    color: white;
}

.strategy-content p {
    color: white;
}
.hero p {
  color: white;
}

.contact-main {
    background: #c9a24d;
}

.contact-side-content p {
  color: black !important;
}
.contact-line h5 {
  color: black !important;
}

.contact-socials a {
  background-color: black !important;
}

.view-more {
  font-size: 12px;
  color: black;
}

.navbar .dropdown-menu {
  border: 1px solid rgba(201,162,77,0.4);
}

.navbar .dropdown-item {
  color: #ddd;
  padding: 10px 20px;
}

.navbar .dropdown-item:hover {
background: black;
  color: #C9A24D;
}

.dropdown-menu li {
  text-align: right !important;
}

.contact-line a {
  color: black !important;
}

.bg-dark .section-title,
.bg-dark .section-title .bi,
.bg-dark .big-icon,
.bg-dark li,
.bg-dark p,
.bg-dark .text-muted {
    color: white !important;
}
    