
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css");
@import url("https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;600;700&display=swap");


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    outline: none;
    border: none;
    text-transform: capitalize;
    transition: all 0.2s linear;
  }
  html {
    font-size: 62.5%;
    overflow-x: hidden;
    scroll-behavior: smooth;
  }
  body {
    background: #f7f7f7;
    font-family: "Cairo", Arial, sans-serif;

    
  }
  
  *::selection {
    background: #2b3dda;
    color: #fff;
  }
  
  html {
    font-size: 62.5%;
    overflow-x: hidden;
  }
  html::-webkit-scrollbar {
    width: 0.8rem;
  }
  html::-webkit-scrollbar-track {
    background: #fff;
  }
  html::-webkit-scrollbar-thumb {
    background: #c6955e ;
  }

  /* pre loader start */
.loader-container {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000;
    background: #e6eff1;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
  }
  .loader-container.fade-out {
    top: -120%;
  }
  /* pre loader end */

  /* navbar starts */
 
  header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 10%; /* مسافة جانبية مناسبة */
    height: 8rem; /* ارتفاع متوسط يناسب المواقع الاحترافية */
    background: rgba(254, 250, 224, 0.9); /* زيادة الشفافية */
    box-shadow: 0 1px 4px rgba(196, 149, 32, 0.5);
  }
  

  header .logo img {
    height: 5.5rem; /* ارتفاع واضح للشعار */
    max-height: 90%;
    width: auto;
    transition: transform 0.3s, opacity 0.3s;
  }
  header .logo img {
    height: 8rem; /* ارتفاع كبير للشعار */
    max-height: 90%; /* ضمان التناسب مع الهيدر */
    width: auto; /* الحفاظ على نسبة العرض إلى الارتفاع */
    transition: transform 0.3s, opacity 0.3s;
  }
  
  header .logo img:hover {
    transform: scale(1.05); /* تأثير تكبير خفيف عند التمرير */
    opacity: 0.95;
  }
  
  header .navbar ul {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  header .navbar li {
    margin-left: 2.5rem;
  }
  
  header .navbar ul li a {
    font-family: "Cairo", sans-serif;
    font-size: 1.8rem; /* تكبير النص ليكون متناسقًا مع الشعار */
    color: #0000008c;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.05rem;
    transition: 0.2s;
  }
  
  header .navbar ul li a.active,
  header .navbar ul li a:hover {
    color: #C5935C;
    border-bottom: 0.2rem solid #C5935C;
    padding: 0.5rem 0;
  }
  
  /* navbar ends */

  /* hamburger icon starts*/
  #menu {
    font-size: 3rem;
    cursor: pointer;
    color: rgba(0, 0, 0, 0.774);
    display: none;
}

@media (max-width: 768px) {
    #menu {
        display: block;
    }
    header .navbar {
      
        position: fixed;
        top: 8rem;
        left: -120%; /* نقل القائمة إلى اليمين */
        width: 75%;
        height: 100%;
        text-align: left; /* محاذاة النصوص لليمين */
        align-items: flex-start; /* محاذاة العناصر على اليمين */
        background-color: #03080cee;
    }
    header .navbar ul {
        flex-flow: column;
        padding: 1rem;
    }
    header .navbar ul li {
        text-align: center;
        width: 100%;
        margin: 1rem 0;
        border-radius: 0.5rem;
        width: 26rem;
    }
    header .navbar ul li a {
        display: block;
        padding: 1rem;
        text-align: right; /* محاذاة النصوص داخل الروابط لليمين */
        color: #fff;
        font-size: 2rem;
    }
    header .navbar ul li a.active,
    header .navbar ul li a:hover {
        padding: 1rem;
        color: #fff;
        border-radius: 0.5rem;
        border-bottom: 0.5rem solid #fffbfbfd;
    }
    .fa-times {
        transform: rotate(180deg);
    }
    header .navbar.nav-toggle {
        left: 0; /* ظهور القائمة من الجهة اليمنى */
    }
}

  /* hamburger icon ends */
 /* hero section starts*/

 .cursor-trail {
  position: fixed;
  width: 8px;
  height: 8px;
  background: #C5935C;
  border-radius: 50%;
  pointer-events: none;
  animation: trailFade 1s forwards;
}

@keyframes trailFade {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(3); opacity: 0; }
}

.home::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #C5935C, #2c3e50);
  mix-blend-mode: multiply;
  animation: gradientShift 10s infinite alternate;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

.slider-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dots-container {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  gap: 10px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.dot.active {
  background-color: #C5935C;
}


.home {
position: relative;
display: flex;
flex-wrap: wrap;
gap: 1.5rem;
min-height: 100vh;
align-items: center;
}
.home img {
position: absolute;
top: 0;
left: 0;
height: 100%;
width: 100%;
object-fit: cover; /* لضمان أن الصورة تغطي المحتوى بالكامل */
z-index: -1; /* لجعل الصورة في الخلفية */
}
.home::before {
content: "";
position: absolute;
top: 0;
left: 0;
height: 100%;
width: 100%;

background-color: rgba(0, 0, 0, 0.5); /* اللون الأسود مع شفافية 50% */
z-index: 1; /* ضعها فوق الصورة */
}
.home .content {
flex: 1 1 40rem;
padding-top: 1rem;
z-index: 1;
}
.home .image {
flex: 1 1 40rem;
z-index: 1;
}
.home .image img {
width: 70%;
margin-left: 6rem;
border-radius: 50%;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
cursor: pointer;
}
.home .image img:hover {
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.home .content {
position: relative;
z-index: 1;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
height: 100vh;
padding: 0 2rem;
}
.home .content h2 {
font-family: "Cairo", Arial, sans-serif;
font-size: 5rem;
font-weight: 800;
color: #ffffff;
}
.home .content h2 span {
font-family: "Cairo", Arial, sans-serif;
font-size: 5rem;
font-weight: 800;
color: #C5935C;
}
.home .content p {
font-weight: bold;
font-family: "Cairo", Arial, sans-serif;
font-size: 2.5rem;
color: #000;
font-weight: 600;
padding: 1rem 0;
}
.home .content p span {
font-weight: bold;
font-family: "Cairo", Arial, sans-serif;
font-size: 2.5rem;
color: #fff;
font-weight: 600;
padding: 1rem 0;
}
.home .btn {
margin-top: 10rem;
position: absolute;
line-height: 0;
padding: 1.6rem 3rem;
border-radius: 4em;
transition: 0.5s;
color: #fff;
background: #C5935C;
box-shadow: 0px 5px 18px rgba(237, 238, 240, 0.856);
font-family: "Cairo", Arial, sans-serif;
}
.home .btn span {
font-weight: 700;
font-size: 1.7rem;
letter-spacing: 0.1rem;
}
.home .btn i {
margin-left: 0.3rem;
font-size: 1.5rem;
transition: 0.3s;
}
.home .btn:hover {
background: #c5925c79;
}
.home .btn:hover i {
transform: translateX(5px);
}
/* social icons start */
.socials {
position: relative;
margin-top: 9rem;
}
.socials .social-icons {
padding-left: 0;
margin-bottom: 0;
list-style: none;
}
.socials .social-icons li {
display: inline-block;
margin-bottom: 14px;
}
.social-icons a {
font-size: 2rem;
display: inline-block;
line-height: 44px;
color: #C5935C;
background-color: #f8f4ff;
width: 44px;
height: 44px;
text-align: center;
margin-right: 8px;
border-radius: 100%;
-webkit-transition: all 0.2s linear;
-o-transition: all 0.2s linear;
transition: all 0.2s linear;
}
.social-icons a:active,
.social-icons a:focus,
.social-icons a:hover {
color: #fff;
background-color: #0e0e0e;
}
.social-icons a.github:hover {
background-color: #0e0e0e;
}
.social-icons a.twitter:hover {
background-color: #0e0e0e;
}
.social-icons a.linkedin:hover {
background-color: #0e0e0e;
}
.social-icons a.dev:hover {
background-color: #070707;
}
.social-icons a.instagram:hover {
background-color: #0e0e0e;
}
/* social icons end */

/* hero media queries starts*/
@media (max-width: 750px) {
.home .btn {
  margin-top: 20rem;
}
.socials {
  margin-top: 12rem;
}
.home .image img {
  margin-top: -12rem;
}
.home .content p {
  font-size: 2.2rem;
}
.home .content p span {
  font-size: 2.2rem;
}

.home .content p span {
  font-size: 2.2rem;
}
.socials {
  position: relative;
}
.social-icons {
  position: relative;

}

}

@media (max-width: 480px) {
.home .btn {
  margin-top: 20rem;
}
.socials {
  margin-top: 12rem;
}
.home .image img {
  margin-top: -12rem;
}
.home .content p {
  font-size: 2.2rem;
}
.home .content p span {
  font-size: 2.2rem;
}

.home .content p span {
  font-size: 2.2rem;
} 
}
/* hero media queries ends*/
/* hero section end */

/* Exchange rates starts section */

 .exchange-section
{
  background: #F9F7F2 ;
  padding: 4rem 2rem;
}




/* التنسيقات العامة    max-width: 800px;
  margin: 20px auto;
  padding: 20px;*/
.exchange-section {
  font-family: 'cairo', sans-serif;
  
 
}

.section-header {
  text-align: center;
  margin-bottom: 30px;
}

.section-header h2 {
  color: #333;
  margin-bottom: 5px;
}

.section-header p {
  color: #666;
  margin: 0;
}

/* حاوية البطاقات */
.cards-container {
  position: relative;
  display: flex;
  align-items: center;
  margin: 0 auto;
}

.scroll-btn {
  background: #f0f0f0;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  z-index: 1;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.scroll-btn:hover {
  background: #e0e0e0;
}

/* بطاقات العملات */
.cards-wrapper {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 10px 0;
  margin: 0 10px;
  flex: 1;
  scrollbar-width: none; /* لإخفاء شريط التمرير في Firefox */
}

.cards-wrapper::-webkit-scrollbar {
  display: none; /* لإخفاء شريط التمرير في Chrome/Safari */
}

.currency-card {
  min-width: 300px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
  scroll-snap-align: start;
  flex-shrink: 0;
}

.card-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.flag {
  width: 40px;
  height: 30px;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.card-header h3 {
  margin: 0;
  color: #333;
  font-size: 18px;
}

.divider {
  height: 1px;
  background: #eee;
  margin: 15px 0;
}

.card-body {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.rate-row {
  display: flex;
  justify-content: space-between;
}

.rate-type {
  color: #666;
  font-size: 14px;
}

.rate-value {
  color: #2c3e50;
  font-weight: bold;
  font-size: 14px;
}

/* عناصر التحكم للهاتف */
.mobile-controls {
  display: none;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
}

.mobile-scroll-btn {
  background: #f0f0f0;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
}
/*
.dots-indicator {
  display: flex;
  gap: 10px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
}

*/

/* التصميم المتجاوب */
@media (max-width: 768px) {
  .scroll-btn {
    display: none;
  }
  
  .mobile-controls {
    display: flex;
  }
  
  .cards-wrapper {
    overflow-x: hidden;
    scroll-snap-type: none;
    flex-wrap: nowrap;
  }
  
  .currency-card {
    min-width: 100%;
    margin: 0 10px;
  }
}


/* Exchange rates ends section */
/* about section starts */
.about {
  background: rgb(255, 255, 255);
  padding: 4rem 2rem;
}

.about .row {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  
}
.about .content p {
  max-width: 800px; /* يمكنك تعديل القيمة حسب الحجم المطلوب */
 
}
.about .row .image {
  flex: 1 1 35%;
  text-align: center;
}

.about .row .image img {
  width: 80%;
  max-width: 400px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.about .row .image img:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

.about .row .content {
  font-family: "Cairo", Arial, sans-serif;
  flex: 1 1 60%;
  padding: 1rem 2rem;
}

.about .row .content h3 {
  font-family: "Cairo", Arial, sans-serif;
  color: #070000;
  font-size: 2.0rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.about .row .content .tag {
  font-family: "Cairo", Arial, sans-serif;

  display: block;
  font-size: 2rem;
  color: #070000;
  font-weight: bold;
  margin-bottom: 1.5rem;
}

.about .row .content p {
  font-family: "Cairo", Arial, sans-serif;
  font-size: 1.6rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 1.5rem;
  text-align: justify;
}
.about .row .content .box-container .box p {
  font-family: "Cairo", Arial, sans-serif;
  text-transform: none;
}
.about .row .content .box-container .box p span {
  color: #c6955e ;
}
.resumebtn {
  margin-top: 6rem;
}
.resumebtn .btn {
  font-family: "Cairo", Arial, sans-serif;
  color: #fff;
 
  padding: 1.7rem 3rem;
  border-radius: 0.5em;
  transition: 0.3s;
  background: rgba(197, 147, 92, 0.8); /* هنا تم تحديد الشفافية بـ 0.5 */
  box-shadow: 0px 5px 18px rgba(0, 0, 0, 0.678);
  font-family: "Cairo", Arial, sans-serif;
 
}
.resumebtn .btn span {
  font-family: "Cairo", Arial, sans-serif;
  font-weight: 600;
  font-size: 1.8rem;
  letter-spacing: 0.1rem;
}
.resumebtn .btn i {
  margin-left: 0.3rem;
  font-size: 1.2rem;
  transition: 0.3s;
}
.resumebtn .btn:hover {
  background: #c5925c79;
}
.resumebtn .btn:hover i {
  transform: translateX(5px);
}
/* about media queries starts */
@media screen and (max-width: 768px) {
  .about .row {
    flex-direction: column;
  }

  .about .row .image img {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }

  .about .row .content {
    font-family: "Cairo", Arial, sans-serif;
    text-align: center;
    padding: 1rem;
  }

  .about .row .content p {
    font-family: "Cairo", Arial, sans-serif;
    text-align: justify;
  }
}
/* about media queries ends */


/* contact section starts */
.contact {
  background: rgb(255, 255, 255);
  padding: 4rem 2rem;
}
.contact .container {
  max-width: 1050px;
  width: 100%;
  background: #fff;
  border-radius: 1.5rem;
  margin: 2rem 5rem;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
}
.contact .container .content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2.5rem 2rem;
}
.contact .content .image-box {
  max-width: 60%;
  margin-left: 4rem;
}
.contact .content .image-box img {
  width: 100%;
  height: 40rem;
  position: relative;
}
.contact .content form {
  width: 45%;
  margin-right: 3.5rem;
}
form .form-group {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.form-group .field {
  height: 50px;
  display: flex;
  position: relative;
  margin: 1rem;
  width: 100%;
}
form i {
  position: absolute;
  top: 50%;
  left: 18px;
  color: #0c3148;
  font-size: 17px;
  pointer-events: none;
  transform: translateY(-50%);
}
form .field input,
form .message textarea {
  width: 100%;
  height: 100%;
  outline: none;
  padding: 0 16px 0 48px;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  border-radius: 5px;
  border: 1px solid rgb(51, 51, 51);
  background: #e5ecfb;
}
.field input::placeholder,
.message textarea::placeholder {
  color: rgb(51, 51, 51);
}
.field input:focus,
.message textarea:focus {
  padding-left: 47px;
  border: 2px solid #669bbc ;
}
.field input:focus ~ i,
.message textarea:focus ~ i {
  color: #669bbc ;
}
form .message {
  position: relative;
  margin: 1rem;
  width: 100%;
}
form .message i {
  top: 25px;
  font-size: 20px;
  left: 15px;
}
form .message textarea {
  min-height: 130px;
  max-height: 230px;
  max-width: 100%;
  min-width: 100%;
  padding: 12px 20px 0 48px;
}
form .message textarea::-webkit-scrollbar {
  width: 0px;
}
form .button-area {
  display: flex;
  float: right;
  flex-direction: row-reverse;
}
.button-area button {
  color: #fff;
  border: none;
  outline: none;
  font-size: 1.8rem;
  cursor: pointer;
  border-radius: 5px;
  padding: 13px 25px;
  background: #0c3148;
  box-shadow: 0px 5px 10px #669bbc ;
  transition: 0.3s ease;
  font-family: "Nunito", sans-serif;
}
.button-area button:hover {
  background: #166291 ;
}
.button-area span {
  font-size: 17px;
  padding: 1rem;
  display: none;
}
.button-area button i {
  position: relative;
  top: 6px;
  left: 2px;
  font-size: 1.5rem;
  transition: 0.3s;
  color: #fff;
}
.button-area button:hover i {
  left: 8px;
}
/* contact section media queries starts */
@media (max-width: 900px) {
  .contact {
    min-height: 70vh;
  }
  .contact .container {
    margin: 3rem 0 2rem 0;
  }
  .contact .container .content {
    padding: 18px 12px;
  }
  .contact .content .image-box {
    display: none;
  }
  .contact .content form {
    width: 100%;
    margin-right: 2rem;
  }
}
.contact .content {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  padding: 2.5rem 2rem;
  gap: 2rem; /* مسافة بين الحاويات */
}

.contact .content .form-box {
  width: 45%;
  background: #fff;
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact .content .map-box {
  width: 45%;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

@media (max-width: 900px) {
  .contact .content {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }

  .contact .content .form-box,
  .contact .content .map-box {
    width: 100%;
  }
}



 
/* Footer Styles */


.footer {
  background: linear-gradient(to bottom,  rgba(254, 250, 224, 0.4), #faedcd );
  padding: 4rem 0 2rem;
  border-top: 1px solid #dee2e6;
  font-family: 'Cairo', sans-serif;
  position: relative;
  font-size: 1.1rem; /* زيادة حجم الخط العام */
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.footer-section:hover {
  transform: translateY(-5px);
}

.footer-logo span {
  font-size: 2.5rem; /* زيادة من 2rem */
  color: #2b2d42;
  font-weight: 700;
  display: block;
  line-height: 1.2;
}

.footer-logo small {
  font-size: 1.3rem; /* زيادة من 1.1rem */
  color: #6c757d;
  font-weight: 400;
}

.footer-title {
  font-size: 1.8rem; /* زيادة من 1.4rem */
  color: #212529;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #d4a373;
  position: relative;
}

.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-link {
  display: flex;
  align-items: center;
  padding: 0.75rem 0;
  color: #495057;
  text-decoration: none;
  transition: all 0.2s ease;
  font-size: 1.2rem; /* إضافة حجم خط جديد */
}

.footer-link .icon {
  margin-left: 0.8rem;
  color: #d4a373;
  font-weight: bold;
}

.footer-link:hover {
  color: #d4a373;
  padding-right: 0.5rem;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-list li {
  display: flex;
  align-items: center;
  margin-bottom: 1.25rem;
}

.contact-icon {
  font-size: 1.4rem; /* زيادة من 1.2rem */
  color: #d4a373;
  min-width: 30px;
}

.contact-link {
  color: #495057;
  text-decoration: none;
  transition: color 0.2s ease;
  font-size: 1.1rem; /* إضافة حجم خط جديد */
}

.contact-link:hover {
  color: #d4a373;
}

.social-links {
  display: grid;
  gap: 1rem;
}

.social-link {
  display: flex;
  align-items: center;
  padding: 0.8rem 1.2rem;
  border-radius: 8px;
  text-decoration: none;
  color: white;
  transition: transform 0.2s ease;
  font-size: 1.1rem; /* إضافة حجم خط جديد */

    min-width: 150px; /* تحديد عرض أدنى */
    padding: 1rem 1.5rem !important;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  
}

.social-link i {
  margin-left: 0.8rem;
}

.social-link.whatsapp { background: #25d366 !important; }
.social-link.facebook { background: #1877f2 !important; }
.social-link.instagram { background: #E4405F !important; }

.social-link.tiktok { background: #000000 !important; } 

.social-link:hover {
  transform: translateX(5px);
}

.copyright-section {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #dee2e6;
  font-size: 2.1rem; /* إضافة حجم خط جديد */
}

.legal-links {
  margin-top: 1rem;
}

.legal-link {
  color: #C5935C;;
  text-decoration: none;
  margin: 0 1rem;
  font-size: 1rem; /* زيادة من 0.9rem */
}

.legal-link:hover {
  color: #d4a373;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-section {
    text-align: center;
  }
  
  .footer-link,
  .contact-list li {
    justify-content: center;
  }
  
  .social-links {
    justify-content: center;
  }
}
/* Add to CSS */
.footer {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease-out;
  will-change: opacity, transform;
}

.footer.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.footer-animate {
  animation: fadeInUp 0.8s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}







/* تأثير التحويم على الكارد */
/* vision card style */
.vision-card {
  position: relative;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  max-width: 900px;
  margin: 3rem auto;
  font-family: "Cairo", Arial, sans-serif;
  overflow: hidden;
  background-color: #c6955e; /* اللون الأساسي */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* تأثير التحويم على الكارد */
.vision-card:hover {
  transform: scale(1.05); /* تكبير الكارد عند التمرير */
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3); /* ظل أكثر وضوحًا */
}

/* طبقة لتغطية الصورة وجعل النص أكثر وضوحًا */
.vision-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); /* طبقة داكنة شفافة */
  z-index: 0; /* طبقة تحت النص */
}

/* نص داخل الكارد */
.vision-card p {
  font-size: 1.8rem;  /* زيادة حجم الخط */
  color: #f7f7f7;  /* تغيير لون النص إلى أبيض */
  font-weight: bold;
  line-height: 1.8;
  font-weight: 600;
  position: relative;  /* لضمان أن النص فوق الصورة */
  z-index: 1;  /* النص يكون في المقدمة فوق الصورة */
  text-align: center;  /* توسيط النص */
  padding: 2rem;  /* إضافة مسافة حول النص */
}

/* عنونة الكارد */
.vision-card h3 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #fff;
  margin-bottom: 1rem;
}




/* experience section starts */
.experience { 
  min-height: 90vh;
  background: linear-gradient(to bottom, #FFFFFF , #c6955e );
}
.experience .timeline {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}
.experience .timeline::after {
  content: "";
  position: absolute;
  width: 6px;
  background: #020133;
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -3px;
  z-index: -2;
}
.experience .container {
  font-family: "Cairo", sans-serif;
  padding: 10px 40px;
  position: relative;
  background-color: inherit;
  width: 50%;
  transform: translateX(-50%);
}
/*circles on timeline*/
.experience .container::after {
  content: "\f0b1";
  position: absolute;
  width: 25px;
  height: 25px;
  right: -17px;
  background-color: rgb(255, 255, 255);
  border: 4px solid #c6955e;
  top: 15px;
  border-radius: 50%;
  z-index: 100;
  font-size: 1.89rem;
  text-align: center;
  font-weight: 600;
  color: #000000b4;
  font-family: "Font Awesome\ 5 Free";
}
.experience .left {
  left: 0;
}
.experience .right {
  left: 50%;
}
/* arrows pointing right */
.experience .left::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 22px;
  width: 0;
  z-index: 1;
  right: 30px;
  border: medium solid #d3c5c5;
  border-width: 10px 0 10px 10px;
  border-color: transparent transparent transparent #c6955e;
}
/* arrows pointing left  */
.experience .right::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 22px;
  width: 0;
  z-index: 1;
  left: 30px;
  border: medium solid #f68c09;
  border-width: 10px 10px 10px 0;
  border-color: transparent #c6955e transparent transparent;
}
.experience .right::after {
  left: -16px;
}
.experience .content {
  background: linear-gradient(135deg, #c6955e, #a67c46); /* تدرج لوني */ ;

  position: relative;
  border-radius: 6px;
}
.experience .content .tag {
  font-family: "Cairo", sans-serif;
  font-size: 1.3rem;
  padding-top: 1.5rem;
  padding-left: 1.5rem;
}
.experience .content .desc {
  margin-left: 1.5rem;
  padding-bottom: 1rem;
}
.experience .content .desc h3 {
  font-size: 1.5rem;
  font-weight: 600;
}
.experience .content .desc p {
  font-size: 1.2rem;
}
/* view all button */
.morebtn {
  display: flex;
  justify-content: center;
}
.morebtn .btn {
  position: relative;
  line-height: 0;
  padding: 1.6rem 3rem;
  border-radius: 0.5em;
  transition: 0.5s;
  color: #fff;
  background: #2506ad;
  box-shadow: 0px 5px 10px rgba(48, 68, 247, 0.6);
  text-align: center;
}
.morebtn .btn span {
  font-weight: 600;
  font-size: 1.7rem;
  font-family: "Nunito", sans-serif;
}
.morebtn .btn i {
  margin-left: 0.3rem;
  font-size: 1.5rem;
  transition: 0.3s;
}
.morebtn .btn:hover {
  background: #1a047e;
}
.morebtn .btn:hover i {
  transform: translateX(5px);
}

/* Media queries - Responsive timeline on screens less than 600px wide */
@media screen and (max-width: 600px) {
  .experience {
    min-height: 80vh;
  }
  .experience .timeline {
    margin-top: 2rem;
  }
  .experience .timeline::after {
    left: 31px;
  }
  .experience .container {
    width: 100%;
    padding-left: 8rem;
    padding-right: 2rem;
  }
  .experience .container::after {
    font-size: 2.2rem;
  }
  .experience .container::before {
    left: 61px;
    border: medium solid #f68c09;
    border-width: 10px 10px 10px 0;
    border-color: transparent #f68c09 transparent transparent;
  }
  .experience .left::after {
    left: 15px;
  }
  .experience .right::after {
    left: 15px;
  }
  .experience .right {
    left: 0%;
  }
  .morebtn {
    margin-top: 3rem;
  }
}
.experience .content:hover {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15); /* إضافة تأثير ظل ناعم عند التمرير */
  transform: translateY(-5px); /* رفع المحتوى قليلاً عند التمرير */
}

.experience .container.visible {
  animation: fadeInUp 0.5s ease-in-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.morebtn .btn:hover {
  transform: scale(1.1); /* تأثير تكبير الأزرار عند التمرير */
}
.experience .tag i {
  font-size: 2.5rem; /* حجم الأيقونة */
  margin-right: 15px; /* المسافة بين الأيقونة والعنوان */
  color: #e7ded3; /* لون الأيقونة */
}


/* experience media queries ends */
/* experience section ends */





.contact { 
  min-height: 50vh;
  background: rgba(254, 250, 224, 0.4); /* هنا تم تحديد الشفافية بـ 0.5 */
}
.sectionn {
  display: flex;
  gap: 40px;
  justify-content: center;
  align-items: center;
}



.containerr {
  width: 400px;
  height: 200px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  position: relative;
  
  background-color: rgba(198, 149, 94, 0.8); /* اللون الأساسي مع الشفافية */  
  transform: scale(1.05); /* تكبير الكارد عند التمرير */
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3); /* ظل أكثر وضوحًا */
}

.map {
  height: 100%;
  width: 100%;
}

.info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.info h2 {
  font-family: 'Cairo';
  margin: 0;
  font-size: 40px;
  color: #0000008c;
}

.info p {
  margin: 5px 0 0;
  font-size: 16px;
  color: #0000008c;
}

.hover-containerr {
  position: relative; /* تأكد من إضافة هذه الخاصية */
  cursor: pointer;
  transform: scale(1.05); /* تكبير الكارد عند التمرير */
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3); /* ظل أكثر وضوحًا */
}

.hover-container:hover {
  background-color: rgba(0, 0, 0, 0.1);
}


.hover-containerr {
  position: relative;
  cursor: pointer;
  transform: scale(1.05);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.hover-containerr::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); /* طبقة داكنة شفافة */
  z-index: 0; /* طبقة تحت الأيقونة */
}

.hover-container i {
  font-size: 16px; /* يمكنك تغيير الحجم حسب رغبتك */
  margin-left: 10px; /* إضافة بعض المسافة بين النص والأيقونة */
  color: #fff; /* يمكنك تغيير اللون */
}



/* تصميم خاص للأجهزة المحمولة */
@media (max-width: 768px) {
  .sectionn {
    flex-direction: column; /* يجعل العناصر تحت بعضها */
    gap: 20px; /* تقليل المسافة بين العناصر */
  }

  .containerr {
    width: 90%; /* يجعل العرض يتناسب مع الشاشة */
    max-width: 400px; /* حد أقصى للعرض */
  }
}