
    /* تخصيص الميديا كويري */
    @media (max-width: 768px) {
      .navbar-brand img {
        width: 100px;
      }
    }
    @media (min-width: 769px) and (max-width: 1024px) {
      .navbar-brand img {
        width: 120px;
      }
    }
    @media (min-width: 1025px) {
      .navbar-brand img {
        width: 150px;
      }
    }

    /* تغيير الألوان والشكل */
    .navbar {
      background-color: #f8f9fa !important; /* خلفية فاتحة */
      border-radius: 50px; /* نصف دائري */
      padding: 5px 15px;
    
    }
    .navbar .nav-link {
      color: #007bff !important; /* أزرق */
      font-weight: 500;
    }
    .navbar .nav-link:hover {
      color: #0056b3 !important; /* أزرق أغمق */
    }
    .btn-custom {
      border: 2px solid #007bff;
      color: #007bff;
      border-radius: 50px; /* نصف دائري */
      padding: 5px 20px;
      transition: 0.3s;
    }
    .btn-custom:hover {
      background-color: #007bff;
      color: #fff;
    }

    .navbar {
  min-height: 60px; /* ارتفاع النافبار */
}

.navbar-brand img {
  height: 50px;          /* نفس ارتفاع النافبار */
  width: auto;           /* يحافظ على النسبة */
  object-fit: contain;   /* يمنع التشويه */
}

@media (max-width: 768px) {
  .navbar-brand img {
    height: 50px; /* أصغر للموبايل */
  }
}











 .header {
background: url('image/home.jpg') center/cover no-repeat;
background-position: center center;
background-size: cover;
      color: white;
      text-align: center;
      height: 100vh;
          }

    .hero {
      color: white;
      text-align: center;
      padding: 100px 15px;
      

    }

    .hero h1 {
      font-size: 3rem;
      font-weight: bold;
    }

    .hero p {
      font-size: 1.25rem;
      margin-top: 15px;
    }

    /* تعديلات للشاشات الصغيرة */
    @media (max-width: 768px) {
      .hero {
        padding: 60px 15px;
      }
      .hero h1 {
        font-size: 2rem;
      }
      .hero p {
        font-size: 1rem;
      }
    }

    
    
  
.social-icons {
  margin-top: 20px;
  display: flex;
  gap: 15px;
  font-size: 40px;
  justify-content: center;
}

.social-icons a {
  color: #333;
  animation: moveLR 1s infinite alternate ease-in-out; /* سرعة أعلى */
}

.social-icons a:hover {
  color: #0077b5;
}

@keyframes moveLR {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(15px);
  }
}

/*about*/
  .about{
    background-color: lightgrey;
  }
    .about-section {
      padding: 60px 0;
      
    }
    .about-card {
      border-radius: 15px;
      padding: 30px;
      transition: 0.3s;
    }
    .about-card.light {
      background-color:white;
      color: #000;
    }
    .about-card.dark {
      background-color: #1f2a36;
      color: #fff;
    }
    .about-card:hover {
      transform: translateY(-5px);
    }
    .about-card img {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      object-fit: cover;
    }
    .about-title {
      font-weight: bold;
      margin-bottom: 20px;
    }



        @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600&display=swap');

    h2 {
      font-family: 'Poppins', sans-serif;
      text-align: center;
      font-size: 2.5rem;
      position: relative;
      display: inline-block;
      padding: 10px 20px;
      color: #ff5722;
      animation: fadeIn 1.5s ease-in-out;
    }

    h2 span {
      color: #222;
      font-weight: bold;
      animation: colorChange 3s infinite alternate;
    }

    h2::after {
      content: '';
      position: absolute;
      width: 50%;
      height: 4px;
      background: #ff5722;
      bottom: 0;
      left: 25%;
      animation: underlineGrow 1.5s ease forwards;
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(-20px); }
      to { opacity: 1; transform: translateY(0); }
    }

    @keyframes colorChange {
      0% { color: #222; }
      100% { color: #ff5722; }
    }

    @keyframes underlineGrow {
      from { width: 0; left: 50%; }
      to { width: 50%; left: 25%; }
    }

    .title-wrapper {
      text-align: center;
      margin-top: 50px;
    }



    /*vision mission */
        .hero-section {
            background: linear-gradient(rgba(0, 86, 179, 0.8), rgba(0, 86, 179, 0.9)), url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 120px 0;
            position: relative;
        }
        
        .section-title {
            position: relative;
            display: inline-block;
            margin-bottom: 40px;
        }
        
        .section-title:after {
            content: "";
            position: absolute;
            width: 50px;
            height: 3px;
            background: var(--secondary-color);
            bottom: -10px;
            left: 0;
        }
        
        .vision-mission-section {
            padding: 80px 0;
            background-color: var(--light-color);
        }
        
        .vision-card, .mission-card {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            height: 100%;
            border: none;
        }
        
        .vision-card:hover, .mission-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
        }
        
        .vision-card .card-header {
            background-color: var(--primary-color);
            color: white;
            padding: 20px;
            border-bottom: 4px solid var(--secondary-color);
        }
        
        .mission-card .card-header {
            background-color: var(--dark-color);
            color: white;
            padding: 20px;
            border-bottom: 4px solid var(--secondary-color);
        }
        
        .card-body {
            padding: 30px;
            background-color: white;
        }
        
        .icon-container {
            width: 80px;
            height: 80px;
            background: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: white;
            font-size: 30px;
            box-shadow: 0 5px 15px rgba(0, 86, 179, 0.3);
        }
        
        .mission-card .icon-container {
            background: var(--dark-color);
        }
        
        .values-section {
            padding: 80px 0;
            background-color: white;
        }
        
        .value-box {
            text-align: center;
            padding: 30px 20px;
            border-radius: 10px;
            transition: all 0.3s ease;
            margin-bottom: 30px;
            background-color: var(--light-color);
            border-left: 4px solid var(--primary-color);
        }
        
        .value-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        .value-icon {
            font-size: 40px;
            color: var(--primary-color);
            margin-bottom: 20px;
        }
        
        .cta-section {
            background: linear-gradient(rgba(0, 86, 179, 0.9), rgba(0, 86, 179, 0.9)), url('https://images.unsplash.com/photo-1450101499163-c8848c66ca85?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 80px 0;
            text-align: center;
        }
        
        .btn-cta {
            background-color: var(--secondary-color);
            color: var(--dark-color);
            font-weight: bold;
            padding: 12px 30px;
            border-radius: 30px;
            border: none;
            transition: all 0.3s;
            margin-top: 20px;
        }
        
        .btn-cta:hover {
            background-color: white;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
   


        /*contact*/
       
         .contact-box {
      display: flex;
      flex-wrap: wrap;
      border: 2px solid white;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 5px 20px rgba(0,0,0,0.1);
      background: #fff;
      
    }
    .form-side {
      flex: 1;
      padding: 30px;
    }
    .form-control {
      border-radius: 10px;
    }
    .btn-submit {
      background-color: #0d6efd;
      color: white;
      border-radius: 10px;
      padding: 10px 25px;
      border: none;
      font-weight: 500;
      transition: 0.3s;
    }
    .btn-submit:hover {
      background-color: #084298;
      transform: scale(1.05);
    }
    .image-side {
      flex: 1;
      min-height: 400px;
    }
    .image-side img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }







.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
}

.whatsapp-btn {
  background-color: #25D366;
  color: white;
  font-size: 35px;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
}

/* موبايل صغير */
@media (max-width: 576px) {
  .whatsapp-btn {
    width: 55px;
    height: 55px;
    font-size: 28px;
  }
  .whatsapp-float {
    bottom: 15px;
    right: 15px;
  }
}

/* تابلت */
@media (min-width: 577px) and (max-width: 992px) {
  .whatsapp-btn {
    width: 60px;
    height: 60px;
    font-size: 30px;
  }
  .whatsapp-float {
    bottom: 18px;
    right: 18px;
  }
}

/* شاشات كبيرة */
@media (min-width: 993px) {
  .whatsapp-btn {
    width: 70px;
    height: 70px;
    font-size: 35px;
  }
}








.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: blue;  /* اللون الأزرق */
  border-radius: 50%;      /* يخليها دائرة */
  padding: 20px;           /* حجم الزر */
  background-size: 50% 50%; /* حجم السهم جوه الزر */
}



/*ref pro*/
.project-card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}
.project-card img {
  transition: transform 0.4s ease;
}
.project-card:hover img {
  transform: scale(1.1);
}
.project-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.6);
  color: white;
  padding: 15px;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.project-card:hover .project-info {
  opacity: 1;
}










.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
}
.portfolio-item img {
  transition: transform 0.5s ease;
  width: 100%;
  height: auto;
  display: block;
}
.portfolio-info {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.6);
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  padding: 20px;
  text-align: center;
}
.portfolio-item:hover img {
  transform: scale(1.1);
}
.portfolio-item:hover .portfolio-info {
  opacity: 1;
}















    .project-card {
      border: none;
      overflow: hidden;
      border-radius: 15px;
      transition: transform 0.4s ease, box-shadow 0.4s ease;
    }
    .project-card img {
      transition: transform 0.5s ease;
    }
    .project-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    }
    .project-card:hover img {
      transform: scale(1.1);
    }
    .project-title {
      font-weight: bold;
      font-size: 1.2rem;
    }
    .modal-content {
      border-radius: 15px;
    }









.linkedin-float {
  position: fixed;
  bottom: 100px; /* فوق الواتساب شوية */
  right: 20px;
  z-index: 9999;
}

.linkedin-btn {
  background-color: #0A66C2; /* الأزرق الرسمي لـ LinkedIn */
  color: white;
  font-size: 28px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.linkedin-btn:hover {
  transform: scale(1.1);
}

/* موبايل صغير */
@media (max-width: 576px) {
  .linkedin-btn {
    width: 50px;
    height: 50px;
    font-size: 22px;
  }
  .linkedin-float {
    bottom: 80px;
    right: 15px;
  }
}


    /*refrencepro*/
    