
.vertex-specialties-swiper.swiper-container:not(.swiper-container-initialized) > .swiper-wrapper {
  overflow: visible !important;
}

.vertex-tabs-nav {
  display: flex;
  gap: 10px;
  justify-content: flex-start;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.vertex-tab-btn {
  background: #f2f2f2;
    border: none;
    padding: 8px 16px;
    cursor: pointer;
    font-weight: 500;
    border-radius: 6px;
    color: #243D80;
    transition: 0.3s;
    font-family: 'Tajawal';

}

.vertex-tab-btn.active {
  background: #243D80;
  color: #fff;
}

.vertex-tab-content {
  display: none;
}

.swiper-container {
  position: relative;
}

.swiper-wrapper {
  display: flex;
}

.swiper-pagination {
  text-align: center;
  margin-top: 15px;
}

.program-card {
  
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.program-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}




/* ✅ تأكد أن الكارت حجمه مضبوط داخل الشريحة */
.program-card {
  width: 100%;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  height: 350px;
}

/* ✅ اضبط الصورة */
.program-card-image img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px 12px 0 0;
}

/* ✅ اضبط المحتوى */
.program-card-content {
  padding: 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
}

.program-title {
  font-size: 18px;
  font-weight: bold;
  color: #1a1a1a;
  margin: 10px 0;
  line-height: 1.4;
}

/* ✅ تنسيق الدرجة */
.college-subtitle {
  font-size: 14px;
  color: #555;
  display: flex;
  align-items: center;
  /*gap: 5px;*/
}

.title-dot {
  width: 6px;
  height: 6px;
  background-color: #243D80;
  border-radius: 50%;
  display: inline-block;
}

.program-more-with-line {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #243D80;
  font-weight: 600;
  gap: 8px;
  margin-top: auto;
}

.program-more-with-line .line {
  height: 2px;
  width: 24px;
  background-color: #243D80;
  display: inline-block;

}


.vertex-specialties-swiper .swiper-slide a {
  display: block !important;
}


.vertex-specialties-swiper {
  overflow: hidden;
  position: relative; /* ضروري للسوايبر */
}



/*swiper-pagination*/

/* ✅ غلاف نقاط السوايبر */
.vertex-specialties-swiper .swiper-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 25px;
  gap: 10px;
}

/* ✅ النقطة الخارجية */
.vertex-specialties-swiper .swiper-pagination-bullet {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid #7a8599; /* اللون الرمادي للدائرة */
  background-color: transparent;
  position: relative;
  opacity: 1 !important;
  margin: 0 6px;
}

/* ✅ النقطة الداخلية */
.vertex-specialties-swiper .swiper-pagination-bullet::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  background-color: #7a8599; /* لون النقطة الداخلية */
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

/* ✅ النقطة النشطة */
.vertex-specialties-swiper .swiper-pagination-bullet-active {
  border-color: #002B61; /* الأزرق الداكن */
}

.vertex-specialties-swiper .swiper-pagination-bullet-active::before {
  background-color: #002B61; /* النقطة الزرقاء */
}


/* ✅ الشبكة */
.vertex-grid-layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.vertex-grid-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 25px;
  width: 100%;
  margin-bottom: 30px;
}

/* ✅ تنسيق زر تحميل المزيد */
.vertex-load-more-wrap {
  text-align: center;
  position: relative;
  width: 100%;
}

.vertex-load-more-btn {
  background-color: #243e80;
  color: white;
  border: none;
  padding: 12px 30px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 6px;
  position: relative;
  z-index: 2;
  transition: background-color 0.3s ease;
  font-family: Tajawal;
}

.vertex-load-more-btn:hover {
  background-color: #1a2f66;
}


.program-card {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.5s ease forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}



/* تنسيق شورت كود كل التخصصات وكل الكليات*/
.vertex-tabs-wrapper {
  margin-bottom: 30px;
}

.vertex-tabs-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 15px;

}

.vertex-tab-btn {
  padding: 8px 16px;
  background: #e0e0e0;
  border: none;
  cursor: pointer;
  font-weight: bold;
  border-radius: 6px;
  transition: background 0.3s;
}

.vertex-tab-btn.active {
  background-color: #243D80;
  color: #fff;
}

.vertex-tabs-content {
  margin-top: 20px;
}

.vertex-grid-layout {
  display: flex;
  flex-direction: column;
}

.vertex-grid-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}

.vertex-load-more-wrap {
  text-align: center;
  margin-top: 20px;
}

.vertex-load-more-btn {
  background: #243D80;
  color: #fff;
  border: none;
  padding: 10px 25px;
  font-size: 15px;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s;
}

.vertex-load-more-btn:hover {
  background: #1b2e66;
}



