:root {
  /* التدرّج الذهبي للخلفيات */
  --main-gradient: linear-gradient(180deg, #E5C97D 12.66%, #CDA349 46.55%, #7A5A2A 81.77%);
  /* ذهبي صلب للنص والحدود */
  --gold: #E5C97D;
  --gold-deep: #CDA349;

  /* الخلفية الداكنة */
  --bg1: #0a0a0a;
  --bg2: #1c1c1c;

  /* ألوان نصوص */
  --text: #ffffff;
  --muted-soft: #d9d9d9;
}

* {
  box-sizing: border-box
}

body {
  margin: 0;
  font-family: 'tajawal', sans-serif;
  color: var(--text);
  background-color: #232323;
}

/* ------- Navbar ------- */
.aurum-nav {
  background: rgba(18, 18, 18, 0.72);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.aurum-nav .navbar-brand {
  color: #f2f2f2
}

.aurum-nav .nav-link {
  color: #eaeaea
}

.aurum-nav .nav-link.active {
  color: var(--gold)
}

.aurum-nav .nav-link:hover {
  color: var(--gold)
}

/* أزرار */
.soft-shadow {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25)
}

.btn-gold {
  background: var(--main-gradient);
  color: #111;
  font-weight: 700;
  border: 0;
  border-radius: 10px;
  padding: 0.7rem 1.25rem;
}

.btn-gold:hover {
  filter: brightness(1.05);
  color: #111
}

.btn-outline-gold {
  background: transparent;
  border: 1px solid var(--gold-deep);
  color: var(--main-gradient);
  font-weight: 700;
  font-size: 14px;
  border-radius: 7px;
  padding: 0.6rem 1.25rem;
}



.location-line .fa-location-dot {
  color: var(--main-gradient) !important;
}

/* يطبق التدرّج على الـ ::before بتاع الأيقونة */
.location-line .fa-location-dot::before {
  background: var(--main-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  /* احتياطي */
}

/* ------- Hero ------- */
.hero {
  min-height: 100vh; /* أفضل من height ثابت */
  display: flex;
  align-items: center;
  background: url('./assets/images/Frame 2147223485.png') no-repeat center center;
  background-size: cover;
  padding: 0 50px;
  position: relative;
}

.hero-content h1 {
  line-height: 1.3;
}

.text-muted-soft {
  color: var(--muted-soft);
}

/* موبايل */
@media (max-width: 767.98px) {
  .hero {
    padding: 0 20px;        
    text-align: center;       
    background-position: center top; 
  }

  .hero-content h1 {
    font-size: 28px !important;
  }

  .hero-content .eyebrow {
    font-size: 28px !important;
  }

  .hero-content p {
    font-size: 16px !important;
  }

  .hero .btn {
    font-size: 13px !important;
    padding: 8px 18px;
  }
}




/* نص متدرّج للعنوان AURUM الصغير */
.text-gradient {
  background: var(--main-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* لون ذهبي ثابت للنص */
.text-gold {
  color: var(--gold-deep)
}

/* موبايل: الأزرار بعرض كامل */
@media (max-width: 576px) {

  .btn-gold,
  .btn-outline-gold {
    width: 100%
  }
}



.section-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.section-title {
  margin: 0;
  font-weight: 800;
  font-size: 1.8rem;
  color: #f6f6f6;
}

.deco-line {
  width: 88px;
  height: 10px;
  position: relative;
  display: inline-block;
}

.deco-line::before,
.deco-line::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  transform: translateY(-50%);
  background: linear-gradient(90deg, transparent, rgba(229, 201, 125, .6), transparent);
}

.deco-line::after {
  top: auto;
  bottom: -6px;
  height: 1px;
  opacity: .7;
  background: linear-gradient(90deg, transparent, rgba(205, 163, 73, .45), transparent);
}

/* ===== Copy ===== */
.text-muted-soft {
  color: var(--muted-soft)
}

.eyebrow {
  font-size: 1.05rem;
  letter-spacing: .06em;
}

.text-gradient {
  background: var(--main-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.about-headline {
  font-size: 1.9rem;
  line-height: 1.35;
}

/* ===== Placeholder Photo (اترك مكان الصورة) ===== */
.about-photo {
  border-radius: 14px;
  height: 270px;
  /* نفس الإحساس الظاهر بالصورة */

  border: 1px solid rgba(229, 201, 125, 0.25);
  position: relative;
  overflow: hidden;
}

.about-photo.placeholder::after {
  content: "مساحة صورة";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #bfbfbf;
  font-weight: 600;
  letter-spacing: .05em;
}

/* ===== Puzzle Badge ===== */
.puzzle-badge {
  width: 180px;
  height: 180px;
  position: absolute;
  right: 34%;
  top: 38%;
  transform: rotate(-12deg);
  filter: drop-shadow(0 18px 40px rgba(0, 0, 0, .35));
  pointer-events: none;
}

.puzzle-svg {
  width: 100%;
  height: 100%;
  display: block
}

.puzzle-text {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-weight: 800;
  letter-spacing: .08em;
  color: #3a2b10;
  mix-blend-mode: multiply;
}

/* ===== Gold Checks ===== */
.gold-checks {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.gold-checks li {
  position: relative;
  padding-right: 36px;
  color: #f0f0f0;
}

.gold-checks li::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--main-gradient);
  box-shadow: 0 2px 10px rgba(205, 163, 73, .45);
}

.gold-checks li::after {
  content: "";
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-60%) rotate(45deg);
  width: 6px;
  height: 12px;
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  color: #fff !important;

}

/* ===== Gold Cards ===== */
.gold-card {
  position: relative;
  border-radius: 16px;
  padding: 22px 20px 20px;
  background-color: #2F2F2F;
}

.gold-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 14px;
  padding: 1.8px;
  background: var(--main-gradient);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: .25;
  pointer-events: none;
}

.gold-card-title {
  margin: 0 0 10px;
  font-weight: 800;
  color: #f7f7f7;
  font-size: 1.15rem;
}

/* أيقونة مربعة ذهبية أعلى الكرت */
.card-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--main-gradient);
  display: grid;
  place-items: center;
  box-shadow: 0 8px 24px rgba(205, 163, 73, .35);
  margin-bottom: 10px;
  margin-top: -37px;
}

.icon {
  width: 20px;
  height: 20px;
  fill: #2a210f;
}

/* نقاط ذهبية داخل القيم */
.gold-dots {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
  color: #fff !important;

}

.gold-dots li {
  position: relative;
  padding-right: 18px;
  color: #eaeaea;
}


/* للموبايل */
@media (max-width: 767.98px) {
  .projects .project-frame .row {
    padding: 1rem !important; /* تقليل البادينج */
  }
  .projects img {
    width: 100%;        /* تاخد عرض الكول */
    object-fit: cover;  /* تمنع التشويه */
  }
}

.gold-dots li::before {
  content: "";
  position: absolute;
  right: 0;
  top: .6em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--main-gradient);
  color: #fff !important;
}

/* زر واتساب عائم */
.whatsapp-fab {
  position: fixed;
  right: 18px;
  top: 90%;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .35);
  z-index: 1000;
}

.w-icon {
  width: 20px;
  height: 26px;
  fill: #fff
}

.text-project {
  font-size: 24px;
  font-weight: 700;
  font: bold;
  margin-top: 30px;
}

/* ===== Responsive tweaks ===== */
@media (max-width: 991.98px) {
  .puzzle-badge {
    right: auto;
    left: 10%;
    top: 46%;
    transform: rotate(-10deg);
  }

  .about-photo {
    height: 230px
  }
}

@media (max-width: 575.98px) {
  .about-headline {
    font-size: 1.6rem
  }

  .about-photo {
    height: 200px
  }

  .puzzle-badge {
    width: 150px;
    height: 150px;
    left: 6%;
    top: 48%;
  }
}


.project-box {
  position: relative;
  border-radius: 14px;
  padding: 18px;
  border: 2px solid rgba(229, 201, 125, .22);

}
.gradient-border{
  --b: 1px;                 /* سُمك الحد */
  --r: 14px;                /* نصف القطر */

  border: var(--b) solid transparent;
  border-radius: var(--r);
  background:
    linear-gradient(var(--bg), var(--bg)) padding-box, /* داخل العنصر */
    var(--main-gradient) border-box;                   /* البوردر */
  /* لو عندك padding مسبق، سيبه كما هو */
}

.text-muted-soft {
  color: var(--muted-soft)
}

.text-gold {
  color: var(--gold-deep)
}

.text-gradient {
  background: var(--main-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.btn-gold {
  background: var(--main-gradient);
  color: #111;
  border: 0;
  border-radius: 12px;
  padding: .75rem 1.25rem;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(205, 163, 73, .28);
}

.btn-gold:hover {
  filter: brightness(1.06);
  color: #111
}

/* ------- Section titles (مزخرفة) ------- */
.section-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px
}

.section-title {
  margin: 0;
  font-weight: 800;
  font-size: 1.8rem;
  color: #f6f6f6
}

.deco-line {
  width: 88px;
  height: 10px;
  position: relative;
  display: inline-block
}

.deco-line::before,
.deco-line::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(229, 201, 125, .6), transparent);
}

.deco-line::before {
  top: 50%;
  transform: translateY(-50%)
}

.deco-line::after {
  bottom: -6px;
  opacity: .7;
  background: linear-gradient(90deg, transparent, rgba(205, 163, 73, .45), transparent)
}

/* ====== Projects Slider Card ====== */
.project-frame {
  position: relative;
  border-radius: 16px;
  background: #2F2F2F;
  padding: 20px;
}
.round-nav{
  background-color:transparent !important;
  cursor: pointer;
}
.project-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 14px;
  padding: 2px;
  background: var(--main-gradient);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: .18;
  pointer-events: none;
}

/* صورة المشروع (Placeholder) */
.project-photo {
  border-radius: 12px;
  height: 280px;
  width: 100%;

  border: 1px solid rgba(229, 201, 125, .24);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .35), 0 0 0 2px rgba(229, 201, 125, .05) inset;
  position: relative;
  overflow: hidden;
}

.project-photo::after {
  content: "مساحة صورة المشروع";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #bfbfbf;
  font-weight: 700;
  letter-spacing: .04em;
}

/* صندوق التفاصيل */
.project-details {
  border-radius: 12px;
  height: 100%;
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(229, 201, 125, .20);
  padding: 18px 18px 16px;
}
.project-slider { overflow: hidden; }
.project-frame { opacity: 0; transform: translateX(10%); transition: opacity .4s ease, transform .4s ease; display: none; }
.project-frame.is-active { display: block; opacity: 1; transform: translateX(0); }

/* النقط */
.slider-dots { display: flex; gap: .5rem; align-items: center; }
.slider-dots .dot { width: 10px; height: 10px;  background: #c9c9c9; cursor: pointer; }
.slider-dots .dot.is-active { background: #d4af37; /* ذهبي */ }




/* نقاط + علامة صح ذهبية */
ul {
  list-style: none;
}

/* Dots (Slider indicator زخرفة) */
.slider-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #b4b4b4;
  opacity: .45;
}

.dot.is-active {
  width: 30px;
  height: 10px;
  opacity: 1;
  background: var(--main-gradient);
}


/* ====== لماذا نحن؟ (بطاقات نحيفة بإطار ذهبي) ====== */

.why-card {
  position: relative;
  border-radius: 14px;
  background: #2F2F2F;
  padding: 20px;
  color: #eaeaea;
  transition: background .3s ease;
  box-shadow: 0 0 0 2px rgba(229, 201, 125, .05) inset;
  overflow: hidden;
  width: 100%;         /* ياخد مساحة العمود */
  max-width: 500px;    /* أقصى عرض */
  margin: 0 auto;      /* يتوسّط في العمود */
}

.card-why-us {
  background: #2F2F2F;
  padding: 30px;
  border-radius: 16px;
}
@media (max-width: 575.98px) {
  #about img {
    max-height: 250px;  /* تصغير الطول */
    object-fit: cover;  /* تقص الصورة بدل ما تتمدد */
  }
}

/* الخط العلوي */
.why-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 1px;
  background: var(--main-gradient);
}

/* الخط السفلي */
.why-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50%;
  height: 1px;
  background: var(--main-gradient);
}

/* الخط الجانبي (يسار) */
.why-card .side-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  background: var(--main-gradient);
}

.why-card h5 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: .5rem;
}

.why-card:hover {
  background: rgba(255, 255, 255, .04);
}

/* ريسبونسيف للنصوص */
@media (max-width: 991.98px) {
  .why-card h5 {
    font-size: 20px;
  }
  .why-card p {
    font-size: 14px;
  }
}

@media (max-width: 575.98px) {
  .card-why-us {
    padding: 20px;
  }
  .why-card {
    max-width: 100%; /* الكارت ياخد الشاشة كلها */
  }
  .why-card h5 {
    font-size: 18px;
  }
  .why-card p {
    font-size: 13px;
  }
}


/* ====== CTA Card ====== */
.cta-card {
  position: relative;
  border-radius: 16px;
  padding: 20px;
  background: #2F2F2F;
}

.cta-photo {
  border-radius: 12px;
  height: 180px;
  width: 100%;
  background:
    radial-gradient(50% 40% at 50% 30%, rgba(229, 201, 125, .14), transparent 70%),
    rgba(255, 255, 255, .02);
  border: 1px solid rgba(229, 201, 125, .24);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .35), 0 0 0 2px rgba(229, 201, 125, .05) inset;
  position: relative;
  overflow: hidden;
}

.cta-photo::after {
  content: "مساحة صورة";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #bfbfbf;
  font-weight: 700;
}

@media (max-width: 575.98px) {
  .btn-gold {
    width: 100%
  }

  .project-photo {
    height: 220px
  }
}


/* footer */
.aurum-footer {
  background: #2c2c2b;
  border-top: 1px solid rgba(229, 201, 125, .18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .03);
}

.footer-head {
  color: var(--gold-deep);
  font-weight: 800;
  font-size: 1.05rem;
  margin-bottom: 1rem;
}

/* روابط */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: .55rem;
}

.footer-links a {
  color: #ededed;
  text-decoration: none;
  transition: .2s;
}

.footer-links a:hover {
  color: var(--gold)
}

/* تواصل */
.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: .65rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #efefef;
}

.contact-text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis
}

.icon-box {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: var(--main-gradient);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.icon-box svg {
  width: 15px;
  height: 15px;
  fill: #2a210f
}

/* لوجو + سوشيال */
.footer-logo {
  height: 64px;
  display: block;
  margin: 20px;
}

.socials .social-btn {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--main-gradient);
  text-decoration: none;
}

.socials .social-btn svg {
  width: 22px;
  height: 22px;
  fill: #2a210f
}

/* حافة سفلية خفيفة للتشطيب */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .06);
  color: #bdbdbd;
  font-size: .9rem;
}

@media (max-width: 991.98px) {
  .aurum-footer .row {
    text-align: center; /* النصوص تبقى في النص */
  }

  .aurum-footer .footer-links,
  .aurum-footer .footer-list {
    justify-content: center;
  }

  .aurum-footer .contact-item {
    justify-content: center; /* أيقونات + نصوص في النص */
  }

  .aurum-footer .footer-head {
    text-align: center;
  }

  .aurum-footer .socials {
    justify-content: center;
  }
}
.project-slider{
  padding: 0 !important;
}


@media (max-width: 575.98px) {
  .socials {
    justify-content: center
  }
}