/* تعميم */
body {
  margin: 0;
  font-family: 'Cairo', sans-serif;
  background: #f9f9f9;
  color: #333;
  direction: rtl;
}

/* البانر */
.inner-banner {
  display: flex;
  width: 100%;
  height: 60vh;
  overflow: hidden;
}

.banner-image {
  flex: 1;
  background-size: cover;
  background-position: center;
  transition: 0.5s ease;
  cursor: pointer;
  position: relative;
}

.banner-image::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0,0,0,0);
  transition: 0.5s ease;
}

.banner-image:hover::before {
  background-color: rgba(0, 0, 0, 0.4);
}

.banner-image:hover {
  filter: brightness(0.9);
  transform: scale(1.02);
}











/* Header Styling */
header {
  background-color: #264a5a;
  padding: 10px 0;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 999;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.logo img {
  height: 50px;
}

.nav-links {
  display: flex;
  gap: 20px;
  list-style: none;
}

.nav-links li a {
  color: white;
  font-size: 16px;
  text-decoration: none;
  transition: 0.3s;
}

.nav-links li a:hover {
  color: #ddd;
}

.language-switch a {
  color: #ffffff;
  font-size: 14px;
  text-decoration: none;
}

.language-switch a:hover {
  text-decoration: underline;
}




















/* Header Styles */
.main-header {
  direction: rtl;
  background-color: #264a5a;
  color: #fff;
  padding: 10px 0;
  position: sticky;
  top: 0;
  z-index: 999;
}



.main-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.logo img {
  height: 50px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav-links li a {
  color: #fff;
  text-decoration: none;
  font-size: 17px;
  transition: color 0.3s;
}

.nav-links li a:hover {
  color: #ffd700;
}

.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
  .nav {
    display: none;
  }

  .menu-toggle {
    display: block;
    color: white;
  }

  .nav.active {
    display: block;
    position: absolute;
    top: 70px;
    right: 20px;
    background-color: #264a5a;
    padding: 10px 20px;
    border-radius: 10px;
  }

  .nav.active ul {
    flex-direction: column;
    gap: 10px;
  }
}

.caller{
  background: #8e9da3;
  border-radius: 20px;
  border: 10px;
  padding: 10px;
}



















/* Responsive */
@media (max-width: 768px) {
  .nav {
    display: none;
  }

  .menu-toggle {
    display: block;
    color: white;
  }

  .nav.active {
    display: block;
    position: absolute;
    top: 70px;
    right: 20px;
    background-color: #264a5a;
    padding: 10px 20px;
    border-radius: 10px;
  }

  .nav.active ul {
    flex-direction: column;
    gap: 10px;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.hero-slider {
  width: 100%;
  height: 100vh;
  position: relative;
}

.swiper-container {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  background-size: cover;
  background-position: center;
  position: relative;
}

.overlay {
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.content {
  text-align: center;
  color: #fff;
  animation: fadeInUp 1s ease-in-out;
}

.content h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.btn {
  background-color: #264a5a;
  color: white;
  padding: 12px 24px;
  border-radius: 25px;
  text-decoration: none;
  transition: 0.3s;
}

.btn:hover {
  background-color: #36566a;
}

.swiper-button-next,
.swiper-button-prev {
  color: white;
}

.swiper-pagination-bullet {
  background: white;
}

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












.about-section {
  padding: 100px 20px;
  background-color: #f5f5f5;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.about-text {
  flex: 1 1 45%;
  animation: fadeLeft 1s ease forwards;
  opacity: 0;
  transform: translateX(-50px);
}

.about-text h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #264a5a;
}

.about-text p {
  font-size: 18px;
  line-height: 1.8;
  color: #333;
}

.about-text .btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 25px;
  background-color: #36566a;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.3s ease;
}

.about-text .btn:hover {
  background-color: #264a5a;
}

.about-image {
  flex: 1 1 45%;
  animation: fadeRight 1s ease forwards;
  opacity: 0;
  transform: translateX(50px);
}

.about-image img {
  width: 100%;
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* Responsive */
@media (max-width: 768px) {
  .about-content {
    flex-direction: column;
    text-align: center;
  }
  .about-text, .about-image {
    transform: none;
    opacity: 1;
    animation: none;
  }
}

/* Animations */
@keyframes fadeLeft {
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fadeRight {
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

















.services-slider-section-unique {
  padding: 50px 20px;
  background: #f8f9fa;
  text-align: center;
}

.section-title-unique {
  font-size: 2rem;
  margin-bottom: 25px;
  color: #333;
}

.services-slider-wrapper-unique {
  position: relative;
  max-width: 1000px;
  margin: auto;
  overflow: hidden;
}

.services-slider-unique {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slide-unique {
  position: relative;
  min-width: 100%;
  height: 400px;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
}

.slide-unique img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 0.4s ease, transform 0.4s ease;
}

.overlay-unique {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: opacity 0.4s ease;
}

.overlay-unique h3 {
  color: white;
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.view-btn-unique {
  border: 2px solid white;
  padding: 10px 20px;
  color: white;
  text-decoration: none;
  font-size: 1rem;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.view-btn-unique:hover {
  background: white;
  color: black;
}

.slide-unique:hover img {
  filter: brightness(70%);
  transform: scale(1.05);
}

.slide-unique:hover .overlay-unique {
  opacity: 1;
}










/* صندوق المعلومات */
.info-box {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
}

.info-content {
  max-width: 800px;
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  text-align: center;
  line-height: 1.8;
  transition: transform 0.3s, box-shadow 0.3s;
}

.info-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.info-content h2 {
  color: #0b3d91;
  margin-bottom: 15px;
}

.info-content p {
  font-size: 1.1rem;
  color: #333;
}

/* متجاوب مع جميع الشاشات */
@media (max-width: 768px) {
  .info-content {
    padding: 20px;
  }

  .info-content h2 {
    font-size: 1.5rem;
  }

  .info-content p {
    font-size: 1rem;
  }
}












/* أزرار التنقل */
.slider-btn-unique {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  font-size: 2rem;
  padding: 8px 12px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 10;
}

.prev-unique {
  left: 10px;
}

.next-unique {
  right: 10px;
}

.slider-btn-unique:hover {
  background: rgba(0, 0, 0, 0.8);
}

/* موبايل */
@media (max-width: 768px) {
  .slide-unique {
    height: 250px;
  }
  .overlay-unique h3 {
    font-size: 1.2rem;
  }
}




























.projects-section {
  padding: 60px 0;
  background: #f9f9f9;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 40px;
  font-weight: bold;
  color: #2e7d32;
}

.projects-slider {
  display: flex;
  gap: 20px;
  overflow: hidden;
}

.project-item {
  min-width: 300px;
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.project-item:hover {
  transform: translateY(-5px);
}

.project-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.project-info {
  padding: 15px;
}

.project-info h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.view-btn {
  display: inline-block;
  padding: 8px 15px;
  background: #143055d7;
  color: white;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.view-btn:hover {
  background: #5281be;
}

/* Responsive */
@media (max-width: 768px) {
  .projects-slider {
    flex-direction: column;
    align-items: center;
  }
  .project-item {
    width: 90%;
  }
}



























.projects-intro {
  padding: 50px 0;
  background: #ffffff;
  text-align: center;
}

.projects-intro .section-title {
  font-size: 2rem;
  font-weight: bold;
  color: #2e7d32;
  margin-bottom: 15px;
}

.projects-description {
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 800px;
  margin: auto;
  color: #555;
}












































/* قسم منتجاتنا */
#products {
  background-color: #f9f9f9;
  padding: 60px 20px;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  color: #264a5a; /* لون الهوية */
  margin-bottom: 10px;
  font-weight: bold;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #36566a;
  margin-bottom: 40px;
}

.products-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.product-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(38, 74, 90, 0.15);
  width: 300px;
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  text-align: right; /* للنص العربي */
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(38, 74, 90, 0.25);
}

.product-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.product-title {
  font-size: 1.4rem;
  color: #264a5a;
  margin-bottom: 8px;
  font-weight: 700;
}

.product-desc {
  font-size: 1rem;
  color: #4a6572;
  line-height: 1.4;
}

/* زر عرض المزيد */
.products-link {
  margin-top: 40px;
}

.btn-primary {
  background-color: #264a5a;
  color: #fff;
  padding: 14px 30px;
  border-radius: 30px;
  font-size: 1.1rem;
  text-decoration: none;
  transition: background-color 0.3s ease;
  display: inline-block;
}

.btn-primary:hover {
  background-color: #36566a;
}

/* تجاوب */
@media (max-width: 980px) {
  .products-grid {
    justify-content: center;
  }
}

@media (max-width: 700px) {
  .products-grid {
    flex-direction: column;
    align-items: center;
  }
}




































.blog-section {
    padding: 60px 20px;
    background: #f9f9f9;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #0d47a1;
}

.section-subtitle {
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: #555;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.blog-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 20px;
    text-align: left;
}



.blog-content h3 {
    margin: 10px 0;
    font-size: 1.4rem;
    color: #0d47a1;
}

.blog-content p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 15px;
}

.read-more {
    text-decoration: none;
    color: #1a73e8;
    font-weight: bold;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #0d47a1;
}

/* Responsive */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    .blog-content h3 {
        font-size: 1.2rem;
    }
}





































.partners-section {
    padding: 60px 20px;
    background: #f9f9f9;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #0d47a1;
}

.partners-marquee {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.partners-track {
    display: flex;
    gap: 50px;
    animation: scroll 20s linear infinite;
}

.partners-track img {
    height: 80px;
    object-fit: contain;
    /* 
    filter: grayscale(100%);
    */
    transition: filter 0.3s ease;
}

.partners-track img:hover {
    filter: grayscale(0%);
}

/* حركة الشريط */
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* وقف الحركة عند الوقوف بالمؤشر */
.partners-marquee:hover .partners-track {
    animation-play-state: paused;
}

/* Responsive */
@media (max-width: 768px) {
    .partners-track img {
        height: 60px;
    }
}










































    /* قسم مجلس الإدارة */
.board-section {
    text-align: center;
    padding: 50px 20px;
    background-color: #ffffff;
}

.section-title {
    font-size: 32px;
    color :  linear-gradient(135deg, #36566a, #c7e0f1);
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
}

/* كلمة رئيس مجلس الإدارة */
.chairman-container {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #3a7591, #c7e0f1);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
    gap: 20px;
}

.chairman-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
}

.chairman-text {
    text-align: left;
}

.chairman-text h3 {
    color: #000000bd;
    margin-bottom: 10px;
}

.btn-read-more {
    background:#243341;
    color: white;
    padding: 10px 15px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
    transition: 0.3s;
}

.btn-read-more:hover {
    background: #002855;
}

/* تصميم النافذة المنبثقة */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    transition: opacity 0.3s ease-in-out;
}

.modal-content {
    background: white;
    padding: 20px;
    width: 50%;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transform: translateY(-50px);
    transition: transform 0.3s ease-in-out;
}

.modal.show {
    display: flex;
    opacity: 1;
}

.modal.show .modal-content {
    transform: translateY(0);
}

.close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #333;
}

.close:hover {
    color: red;
}

























































.footer {
  background-color: #264a5a;
  color: #fff;
  padding: 60px 20px 20px;
  font-family: 'Cairo', sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  gap: 30px;
}

.footer-column {
  flex: 1 1 250px;
}

.footer-logo {
  width: 160px;
  margin-bottom: 15px;
}

.footer-description {
  font-size: 16px;
  line-height: 1.7;
}

.footer-column h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #fff;
}

.footer-links,
.footer-contact {
  list-style: none;
  padding: 0;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 10px;
}

.footer-links a,
.footer-contact a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: #00d4ff;
}

.social-icons a {
  display: inline-block;
  margin-right: 10px;
  font-size: 16px;
}

.footer-bottom {
  border-top: 1px solid #ccc;
  margin-top: 40px;
  padding-top: 15px;
  text-align: center;
  font-size: 14px;
  color: #bbb;
}

/* استجابة للشاشات الصغيرة */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-column {
    margin-bottom: 30px;
  }

  .footer-logo {
    margin: 0 auto 15px;
  }
}
  


.footer-contact a:hover i {
  color: #264a5a; /* لون عند المرور */
}



















/* تأثير الدخول */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}
