/* تنسيقات عامة */

.textenter {
  white-space: pre-line;
  word-wrap: break-word;
}


.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  object-fit: cover;
  z-index: -1;
}




.h11{
    color: #9d3232;
}

h1, h2, h3 {
    margin: 10px 0;
    
}

p {
    margin: 0 0 15px;
}


.hero {
    height: 100vh;
    width: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
}

.hero .header-overlay {
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 10px;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.2rem;
}


.white-section {
    background: #fff;
    padding: 40px 20px;
    text-align: center;
}

.white-section h2 {
    color: #d9534f;
    margin-bottom: 20px;
}

.white-section p {
    color: #555;
    font-size: 1rem;
}

footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

footer p {
    margin: 0;
}

footer .social-media a {
    color: #fff;
    margin: 0 10px;
    text-decoration: none;
}

footer .social-media a:hover {
    color: #d9534f;
}


.social-media {
    margin-top: 10px;
}

/*
.slider {
    position: relative;
    width: 80%;
    margin: auto;
    overflow: hidden;
    text-align: center;
}

.slide {
    display: none;
}

.slide img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
}

.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #333;
    color: #fff;
    border: none;
    padding: 10px;
    cursor: pointer;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}


 
/*
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background: #333;
    color: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .logo a {
    font-size: 1.5rem;
    color: #fff;
    text-decoration: none;
}

.navbar .nav-links {
    list-style: none;
    display: flex;
    gap: 15px;
    margin: 0;
    padding: 0;
}

.navbar .nav-links li a {
    text-decoration: none;
    color: #fff;
    padding: 5px 10px;
    transition: background 0.3s;
}

.navbar .nav-links li a:hover {
    background: #d9534f;
    border-radius: 5px;
}

.nav-links a.active {
    background-color: #d9534f;
    color: #fff;
    border-radius: 5px;
    padding: 5px 10px;
}

*/

/*---------------------------------------------------------------------------*/

.language-switcher {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 999;
}

.language-switcher select {
    padding: 5px 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
}



/* hero.css */
.hero-section {
    background-image: url('https://images.unsplash.com/photo-1581090700227-1e8e063296e7'); /* صورة صناعية */
    background-size: cover;
    background-position: center;
    height: 90vh;
    position: relative;
  }
  
  .hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(43, 45, 66, 0.8); /* نفس لون الهيدر مع شفافية */
  }
  
  .hero-section .container {
    position: relative;
    z-index: 2;
  }
  
  .hero-section h1 {
    font-size: 2.5rem;
    color: #FFFFFF;
  }
  
  .hero-section p {
    font-size: 1.2rem;
    color: #FFFFFF;
  }

/* services.css */
.services-section {
    background-color: #F8F9FA; /* لون خفيف يتناسق مع الألوان الداكنة */
    text-align: center;
  }
  
  .section-title {
    font-size: 2rem;
    font-weight: bold;
    color: #2B2D42; /* لون العنوان من اللوجو */
  }
  
  .section-subtitle {
    font-size: 1.2rem;
    color: #6C757D;
  }
  
  .service-card {
    background: #FFFFFF;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
  }
  
  .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    
  }
  
  .icon-box {
    font-size: 3rem;
    color: #E0130A; /* اللون الأحمر من اللوجو */
    margin-bottom: 15px;
  }

/* why-us-new.css */
.why-us-new {
    background-color: #F8F9FA;
    padding: 60px 0;
  }
  
  .section-title {
    font-size: 2rem;
    font-weight: bold;
    color: #2B2D42;
  }
  
  .section-text {
    font-size: 1.1rem;
    color: #6C757D;
    line-height: 1.7;
  }
  
  .image-box img {
    border-radius: 10px;
    transition: transform 0.3s ease;
  }
  
  .image-box img:hover {
    transform: scale(1.05);
  }
  
  .why-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
  }
  
  .why-list li {
    font-size: 1.2rem;
    font-weight: bold;
    color: #2B2D42;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap:10px;
   
  }
  
  .why-list li i {
    font-size: 1.5rem;
    color: #E0130A;
    margin-right: 10px;
  }
  
 


/* clients.css */
.clients-section {
    background-color: #F8F9FA;
    text-align: center;
  }
  
  .section-title {
    font-size: 2rem;
    font-weight: bold;
    color: #2B2D42;
  }
  
  .section-subtitle {
    font-size: 1.2rem;
    color: #6C757D;
    margin-bottom: 30px;
  }
  
  .clients-slider {
    display: flex;
    overflow: hidden;
    gap: 20px;
    animation: slide 10s linear infinite;
    justify-content: center;
  }
  
  .client-logo {
    flex: 0 0 auto;
    width: 150px;
  }
  
  .client-logo img {
    width: 100%;
    opacity: 0.8;
    transition: opacity 0.3s ease;
  }
  
  .client-logo img:hover {
    opacity: 1;
  }
  
  /* تحريك السلايدر */
  /*@keyframes slide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
  }
*/
  

/* achievements.css */
.achievements-section {
    background: linear-gradient(to right, #2B2D42, #1E1F33);
    padding: 60px 0;
  }
  
  .section-title {
    font-size: 2rem;
    font-weight: bold;
  }
  
  .achievement-box {
    padding: 20px;
  }
  
  .achievement-box i {
    font-size: 2.5rem;
    color: #E0130A;
    margin-bottom: 10px;
  }
  
  .achievement-box h3 {
    font-size: 2rem;
    font-weight: bold;
    margin: 10px 0;
    color: #FFFFFF;
  }
  
  .achievement-box p {
    font-size: 1rem;
    color: #CCCCCC;
  }
  

/* cta.css */
.cta-section {
    background: linear-gradient(to right, #E0130A, #B00F08); /* خلفية بلون جريء */
    padding: 60px 0;
  }
  
  .cta-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 15px;
  }
  
  .cta-subtitle {
    font-size: 1.2rem;
    color: #FFF5F5;
  }
  

  /* footer.css */
.footer-section {
    background-color: #2B2D42;
    color: #FFFFFF;
  }
  
  .footer-title {
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: bold;
    color: #ffffff;
  }
  
  .footer-links li,
  .footer-contact li {
    margin-bottom: 10px;
  }
  
  .footer-links a {
    color: #CCCCCC;
    text-decoration: none;
    transition: color 0.3s;
  }
  
  .footer-links a:hover {
    color: #E0130A;
  }
  
  .footer-contact i {
    color: #E0130A;
  }
  
  .social-icons a {
    display: inline-block;
    color: #FFFFFF;
    font-size: 1.2rem;
    margin-right: 10px;
    transition: color 0.3s;
  }
  
  .social-icons a:hover {
    color: #E0130A;
  }
  

/* projects.css */
.projects-section {
    background-color: #F8F9FA;
  }
  
  .section-title {
    font-size: 2rem;
    font-weight: bold;
    color: #2B2D42;
  }
  
  .project-card {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: none;
    transition: transform 0.3s ease;
  }
  
  .project-card:hover {
    transform: translateY(-5px);
  }
  
  .card-title {
    color: #2B2D42;
    font-weight: bold;
  }
  
  .card-footer {
    background-color: transparent;
    border-top: none;
    color: #E0130A;
    font-weight: 500;
  }
  
  



  .timeline {
    position: relative;
    max-width: 900px;
    margin: auto;
    padding: 20px 0;
  }
  
  .timeline::before {
    content: '';
    position: absolute;
    right: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #E0130A;
    transform: translateX(50%);
  }
  
  /* كل عنصر ياخد عرض كامل */
  .timeline-item {
    position: relative;
    width: 100%;
    margin-bottom: 50px;
    clear: both;
  }
  
  /* العناصر اليمين */
  .timeline-item.right .timeline-content {
    float: right;
    text-align: right;
    margin-right: 52%;
  }
  
  /* العناصر اليسار */
  .timeline-item.left .timeline-content {
    float: left;
    text-align: left;
    margin-left: 52%;
    
  }
  
  /* تصميم الصندوق */
  .timeline-content {
    background-color: #f8f9fa;
    padding: 20px;
    position: relative;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    width: 45%;
  }
  
  /* الدائرة */
  .timeline-content::after {
    content: '';
    position: absolute;
    top: 20px;
    width: 12px;
    height: 12px;
    background: #E0130A;
    border-radius: 50%;
    z-index: 1;
  }
  
  .timeline-item.right .timeline-content::after {
    right: -6px;
  }
  
  .timeline-item.left .timeline-content::after {
    left: -6px;
  }







  


/* map.css */
.map-section {
  background-color: #F8F9FA;
}

.section-title {
  font-size: 2rem;
  font-weight: bold;
  color: #2B2D42;
}

.map-container {
  border: 3px solid #E0130A;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}



  
  /* موبايل */
  @media (max-width: 768px) {
    .timeline::before {
      right: 20px;
      transform: none;
    }
  
    .timeline-content {
      width: 90% !important;
      margin: 0 auto !important;
      float: none !important;
      text-align: right !important;
    }
  
    .timeline-content::after {
      right: -16px !important;
      left: auto !important;
    }
  }
  
  




  
  @media (min-width: 768px) {
    .hero-section h1 {
      font-size: 3rem;
    }
  
    .hero-section p {
      font-size: 1.4rem;
    }
  }
  