html, body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
nav a {
  position: relative !important;
  display: inline-block !important;
  overflow: hidden !important;
  font-size: 20px;
}
nav a .lang-ar,
nav a .lang-en {
  position: relative !important;
  display: inline-block !important;
  padding-bottom: 4px !important;
}
.mobile-menu {
  transform-origin: top;
  transition: all 0.3s ease;
}
nav a .lang-ar::after,
nav a .lang-en::after {
  content: '' !important;
  position: absolute !important;
  height: 2px !important;
  background-color: #bb9365 !important; /* رمادي غامق */
  bottom: 0 !important;
  width: 0% !important;
  transition: width 0.3s ease, left 0.3s ease, right 0.5s ease !important;
}
nav a:hover .lang-ar::after {
  right: 0 !important;
  left: auto !important;
  width: 100% !important;
}
nav a:hover .lang-en::after {
  left: 0 !important;
  right: auto !important;
  width: 100% !important;
}
nav a:focus .lang-ar::after {
  right: 0 !important;
  left: auto !important;
  width: 100% !important;
}
nav a:focus .lang-en::after {
  left: 0 !important;
  right: auto !important;
  width: 100% !important;
}
html[dir="ltr"] .lang-ar { display: none !important; }
html[dir="ltr"] .lang-en { display: block !important; }
html[dir="rtl"] .lang-ar { display: block !important; }
html[dir="rtl"] .lang-en { display: none !important; }
.logo-image{
    width: 80px;
    height: 60px;
    border-radius: 70%;
}
.header{
    background-color: #ccccce;
}
.nav-button-color{
    background-color: #bb9365 !important;
    color: #fff;
}
.nav-button-color:hover{
    background-color: gray !important;
}
/* headeeeeeeeeeeeeeeeeeeeeeeeeeeeeeer */ 
.conect-with-us-arbic {
  padding: 15px 25px;
  border: none;
  border-radius: 15px;
  color: #212121;
  z-index: 1;
  background: #e8e8e8;
  position: relative;
  font-weight: bold !important;
  font-size: 17px !important;
  -webkit-box-shadow: 4px 8px 19px -3px rgba(0,0,0,0.27);
  box-shadow: 4px 8px 19px -3px rgba(0,0,0,0.27);
  transition: all 400ms;
  overflow: hidden;
}
.conect-with-us-arbic::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 0;
  border-radius: 15px;
  background-color: #bb9365;
  z-index: -1;
  transition: all 400ms ease;
}
.conect-with-us-arbic.arabic::before {
  right: 0;
  left: auto;
}
.conect-with-us-arbic.english::before {
  left: 0;
  right: auto;
}
.conect-with-us-arbic:hover {
  color: #e8e8e8;
}
.conect-with-us-arbic:hover::before {
  width: 100%;
}
/* about ussss */
.card-hover {
  position: relative;
  background-color: #e3e4e5 !important;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  transition: color 0.6s ease;
}

/* الخلفية البنية، مخفية أولاً بدائرة صغيرة في المنتصف */
.card-hover::before {
  content: "";
  position: absolute;
  inset: 0;               /* يغطي الكارت كامل */
  background: #bb9365;
  clip-path: circle(0% at 50% 50%);
  transition: clip-path 0.6s ease-in-out;
  z-index: 0;
}

/* عند التحويم يتوسع الدائرة لتغطي الكارت كله */
.card-hover:hover::before {
  clip-path: circle(150% at 50% 50%);
}

/* محتوى الكارت فوق الخلفية */
.card-hover > * {
  position: relative;
  z-index: 1;
}

/* النص الأبيض عند التحويم */
.card-hover:hover h3,
.card-hover:hover p,
.card-hover:hover li {
  color: white;
  transition: 0.6s;
}

/* المحافظة على محاذاة النص حسب اللغة */
.card-hover.lang-ar {
  text-align: right;
}

.card-hover.lang-en {
  text-align: left;
}
/* choooooooooooooooooooooooooooooooooooooooooooooose card */
.choose-card {
  background-color: #eeeeee !important;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.choose-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}
.icon-wrapper {
  width: 64px;
  height: 64px;
  background: linear-gradient(to bottom right, #bb9365, #d4b491);
  color: white;
  border-radius: 50%;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 6px 12px rgba(187, 147, 101, 0.3);
}
.choose-card h3 {
  color: #1f2937;
}
.choose-card p {
  color: #4b5563;
  font-size: 0.95rem;
  line-height: 1.6;
}
.choose-card {
  position: relative;
  background-color: #ffffff;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  overflow: hidden;
  cursor: pointer;
  z-index: 1;
}
.choose-card::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom left, #bb936580, #bb9365cc);
  transition: top 0.5s ease;
  z-index: 0;
}
.choose-card:hover::before {
  top: 0;
}
.choose-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.choose-card * {
  position: relative;
  z-index: 1;
}
.icon-wrapper {
  width: 64px;
  height: 64px;
  background: linear-gradient(to bottom right, #bb9365, #d4b491);
  color: white;
  border-radius: 50%;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 6px 12px rgba(187, 147, 101, 0.3);
}
.choose-card h3 {
  color: #1f2937;
}
.choose-card p {
  color: #4b5563;
  font-size: 0.95rem;
  line-height: 1.6;
}
.why-choose-color{
    color: #bb9365;
}
/* counteeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeer */
#counter .counter-card {
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: #ffffff;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  background-color: #e3e4e5 !important;
}
#counter .counter-card::before {
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to left, #bb9365cc, #d4b491aa);
  transition: all 0.5s ease;
  z-index: 0;
}
[dir="rtl"] #counter .counter-card::before {
  right: 0;
  left: auto;
  transform: translateX(100%);
}
[dir="rtl"] #counter .counter-card:hover::before {
  transform: translateX(0);
}
[dir="ltr"] #counter .counter-card::before {
  left: 0;
  right: auto;
  transform: translateX(-100%);
}
[dir="ltr"] #counter .counter-card:hover::before {
  transform: translateX(0);
}
#counter .counter-card * {
  position: relative;
  z-index: 1;
}
#counter .counter-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.counter-color-ss {
  color: #bb9365;
}
/* ******************************************************** */
.about-image{
  height: 520px;
}
.color-conacte{
    color: #bb9365;
}
@keyframes slideIn {
  0% {
    opacity: 0;
    transform: translateY(-40px) translateX(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0) translateX(0);
  }
}
.animate-slide-in {
  animation: slideIn 1s ease-out forwards;
}
/* conecteeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeed */
.contact-icon {
  color: #bb9365;
  transition: color 0.3s ease;
}
.contact-btn {
  background-color: #ccccce;
  color: #212121;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: transform 0.3s ease;
}
.contact-btn::before {
  content: '';
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to left, #bb9365, #a67d50);
  z-index: -1;
  transition: transform 0.5s ease;
}
[dir="rtl"] .contact-btn::before {
  right: 0;
  left: auto;
  transform: translateX(100%);
}
[dir="rtl"] .contact-btn:hover::before {
  transform: translateX(0);
}
[dir="ltr"] .contact-btn::before {
  left: 0;
  right: auto;
  transform: translateX(-100%);
}
[dir="ltr"] .contact-btn:hover::before {
  transform: translateX(0);
}
.contact-btn:hover {
  color: white;
  transform: translateY(-3px);
}
/* foteeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeer */
.footer{
  background-color: #ccccce;
}
.p-footer{
  text-align: center;
}
.h3-footer{
  text-align: center;
}
.ul-flex{
  display: flex !important;
  flex-direction: column !important;
}
.about-color-ss{
  color: #a67d50;
}
.services-color-ss{
  color: #a67d50;
}
.project-color-ss{
  color: #a67d50;
}
.ssss{
  color: #000;
}
@media (max-width : 780px) {
.iframe-site{
  height: 350px;
}
}
.whats-icon {
  position: fixed;
  bottom: 2rem;
  right: 1rem;
  z-index: 999;
  background-color: #25D366;
  color: white;
  padding: 0.75rem 0.9rem;
  border-radius: 50%;
  box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: pulse-whatsapp 2.5s infinite;
}
/* أيقونة واتساب داخل الزر */
.whats-icon i {
  transition: transform 0.3s ease;
}
/* حركة عند التحويم */
.whats-icon:hover {
  transform: scale(1.1) rotate(3deg);
  box-shadow: 0 15px 30px rgba(37, 211, 102, 0.5);
}
.whats-icon:hover i {
  transform: scale(1.2);
}
/* أنيميشن نبض */
@keyframes pulse-whatsapp {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 12px rgba(37, 211, 102, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}
.header {
  background-color: #ccccce;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
.header.scrolled {
  opacity: 0.85;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  backdrop-filter: saturate(180%) blur(10px);
  color: #4B5563 !important;
}
@media (max-width: 768px) {
  .about-image {
    height: 320px; /************************************ تقليل الارتفاع على الشاشات الصغيرة ************************************/
    width: 100%;   
    object-fit: cover;
  }
}
.order-2 form input,
.order-2 form textarea {
  background-color: #eae9e9 !important;
  border: 1px solid #ccc !important;
  padding: 10px !important;
  border-radius: 8px !important;
  color: #333 !important;
}
.order-2 form input:focus,
.order-2 form textarea:focus {
  outline: none !important;
  border-color: #bb9365 !important;
  box-shadow: 0 0 5px rgba(187, 147, 101, 0.5) !important;
}
[dir="rtl"] .text-right {
    text-align: right;
}
[dir="ltr"] .text-right {
    text-align: left;
}

.learn-more-btn {
    background-color: #bb9365;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.learn-more-btn:hover {
    background-color: #a17c52; /* لون أغمق عند المرور */
    box-shadow: 0 4px 10px rgba(187, 147, 101, 0.4);
    transform: translateY(-2px);
}

.project-card img {
    transition: transform 0.4s ease;
}

.project-card:hover img {
    transform: scale(1.05);
}


.logo-image-two{
  width: 80px;
  height: 60px;
  border-radius: 50%;
}
/* ====== Colors & Base ====== */
#services {
  background: #ccccce;
}
.services-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #1a1a1a;
}
.services-title .highlight {
  color: #bb9365;
  border-bottom: 2px solid #bb9365;
}
.services-desc {
  margin-top: 1rem;
  font-size: 1.125rem;
  line-height: 1.75rem;
  color: #444;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
/* ====== Service Card ====== */
.service-card {
  position: relative;
  overflow: hidden;
  border-radius: 0.75rem;
  background: #fff;
  padding: 2rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: all 0.4s ease;
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* Overlay background effect */
.service-card .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #bb9365; /* اللون الأساسي */
  transform: translateY(100%);
  opacity: 0;
  transition: all 0.5s ease-in-out;
  z-index: 0;
}

.service-card .overlay.gradient {
  background: linear-gradient(135deg, #bb9365, #a0845a);
}

.service-card:hover .overlay {
  transform: translateY(0);
  opacity: 1;
}

/* Card content */
.service-card .card-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.service-card i {
  font-size: 3rem;
  color: #000;
  transition: transform 0.3s ease;
}

.service-card:hover i {
  transform: scale(1.1);
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: bold;
  color: #000;
  margin: 1rem 0;
}

.service-card p {
  color: #333;
  line-height: 1.6;
}