/*  */

  /* @keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
  } */

  .btn-get-started {
    background: #fff;
    color: #1871b6;
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
    border: 2px solid #fff;
  }

  .btn-get-started:hover {
    background: transparent;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }

  .btn-watch-video {
    display: flex;
    align-items: center;
    margin-right: 25px;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    transition: 0.3s;
  }

  .btn-watch-video i {
    font-size: 32px;
    margin-left: 10px;
    transition: 0.3s;
  }

  .btn-watch-video:hover {
    color: #F47920;
  }

  .btn-watch-video:hover i {
    transform: scale(1.1);
  }

  @media (max-width: 992px) {
    #hero {
      height: auto;
      padding: 120px 0 60px 0;
    }

    #hero h1 {
      font-size: 36px;
        animation: fadeInDown 1s ease both;
    }

    #hero h2 {
      font-size: 20px;
        animation: fadeInDown 1s ease 0.3s both;
    }

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

  @media (max-width: 768px) {
    #hero {
      text-align: center;
    }

    #hero .d-flex {
      justify-content: center;
      gap: 15px;
      flex-wrap: wrap;
    }

    #hero h1 {
      font-size: 28px;
    }

    #hero h2 {
      font-size: 18px;
    }
  }

/* ========== Why Us Section Enhancements ========== */
.why-us.section-bg {
    background: #f9f9f9;
    padding: 60px 0;
  }

  .why-us .icon-box {
    background: #fff;
    border: 1px solid #e0e0e0;
    padding: 30px;
    border-radius: 8px;
    transition: all 0.3s ease-in-out;
    text-align: center;
  }

  .why-us .icon-box .icon {
    margin-bottom: 20px;
    font-size: 36px;
    color: #1871b6;
  }

  .why-us .icon-box:hover {
    background: #1871b6;
    color: #fff;
    transform: translateY(-10px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  }

  .why-us .icon-box:hover .icon,
  .why-us .icon-box:hover h4,
  .why-us .icon-box:hover p {
    color: #fff;
  }


  /* ========== Departments Section ========== */
  .department-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    height: 100%;
  }

  .department-card .card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: rgba(12,63,119,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .department-card .card-icon i {
    font-size: 2rem;
    color: #1871b6;
  }

  .department-card .hover-content {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    padding: 20px;
    background: #1871b6;
    color: white;
    transition: all 0.3s;
    opacity: 0;
  }

  .department-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
  }

  .department-card:hover .hover-content {
    bottom: 0;
    opacity: 1;
  }

  /* ========== Counts Section Enhancements ========== */
  .counts {
    background: #1871b6;
    color: #fff;
    padding: 60px 0;
  }

  .counts .count-box {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease-in-out;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  .counts .count-box i {
    display: block;
    font-size: 40px;
    /*color: #1871b6;*/
    margin-bottom: 10px;
  }

  .counts .count-box span {
    font-size: 32px;
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
  }

  .counts .count-box p {
    font-size: 16px;
    color: #eee;
    margin: 0;
  }

  .counts .count-box:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: 0.3s ease-in-out;
  }


  .navbar .btn-outline-primary,
  .navbar .btn-outline-danger {
  padding: 6px 15px;
  direction: ltr;
  }
  
  .project-card {
      background: linear-gradient(135deg, #1871b6 0%, #1e70a2 100%);
      color: white;
      padding: 30px;
      border-radius: 15px;
      box-shadow: 0 10px 30px rgba(12, 63, 119, 0.2);
      margin-bottom: 30px;
  }
  
  .project-code {
      font-size: 18px;
      font-weight: 600;
      margin: 15px 0;
      color: #F47920;
  }
  
  .project-date {
      font-size: 16px;
      margin: 0;
  }
  
  .sponsor-card, .team-card {
      background: white;
      padding: 30px;
      border-radius: 15px;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
      height: 100%;
  }
  
  .sponsor-card h4, .team-card h4 {
      color: #1871b6;
      border-bottom: 2px solid #F47920;
      padding-bottom: 15px;
      margin-bottom: 20px;
  }
  
  .sponsor-item, .team-member {
      margin-bottom: 20px;
      padding: 15px;
      background: #f8f9fa;
      border-radius: 10px;
      border-right: 4px solid #1871b6;
  }
  
  .sponsor-item h5, .team-member h5 {
      color: #1871b6;
      font-weight: 600;
      margin-bottom: 5px;
  }
  
  .students-section {
      background: white;
      padding: 30px;
      border-radius: 15px;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  }
  
  .table th {
      background: #1871b6 !important;
      color: white;
      text-align: center;
      padding: 15px;
  }
  
  .table td {
      text-align: center;
      padding: 12px;
      vertical-align: middle;
  }
  
  .table-striped tbody tr:nth-of-type(odd) {
      background-color: rgba(12, 63, 119, 0.05);
  }
  
  .table-hover tbody tr:hover {
      background-color: rgba(12, 63, 119, 0.1);
  }


  /* تنسيقات خاصة بلجنة إشراف التربية العملية */
.stat-card {
    transition: transform 0.3s;
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

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

.dashboard-header {
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.rating {
    direction: ltr;
    display: inline-block;
}

/* تنسيق الجداول */
.table th {
    background-color: #f8f9fa;
    color: white;
    font-weight: 600;
}

/* تخصيص select2 للغة العربية */
.select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: #4361ee;
    color: white;
    border: none;
}

.message-unread {
    background-color: #f8f9fa !important;
    font-weight: 600;
    border-left: 3px solid #007bff !important;
}

.message-item:hover {
    background-color: #e9ecef !important;
}

.message-header {
    background-color: #f8f9fa;
    border-radius: 0.5rem;
    padding: 1rem;
    margin-bottom: 1rem;
}

.message-content {
    line-height: 1.8;
    font-size: 1.1rem;
    white-space: pre-wrap;
}

/* الطلاب المشاركون */
.students-box {
  background: linear-gradient(135deg, #1871b6, #1871b6);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  text-align: center;
  padding: 3rem;
  border-radius: 1.5rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.students-box i {
  font-size: 50px;
  color: #fff;
  margin-bottom: 1rem;
}

.students-desc {
  color: #e9f1ff;
  font-size: 18px;
  margin-bottom: 1.5rem;
}

.students-btn {
  background: white;
  color: #1871b6;
  padding: 10px 30px;
  border-radius: 40px;
  font-weight: 600;
  transition: 0.3s;
}

.students-btn:hover {
  background: #0f5c9c;
  color: #fff;
  transform: translateY(-2px);
}
