:root {
  --Brand-Colors-Secondary-Light: #e6f7ed;
  --Brand-Colors-Secondary-Normal: #00b34f;
  --Nuetral-N700: #1c1c1c;
  --Blue-Gray-200: #e2e8f0;
  --White: #fff;
  --Nuetral-N500: #3b3b3b;
  --Nuetral-N200: #666;
  --Nuetral-N100: #757575;
}

body {
  font-family: "IBM Plex Sans", "IBM Plex Sans Arabic", sans-serif;
}

.countdown-number {
  background: rgba(234, 231, 249, 1);
  color: #140076;
  border-radius: 24px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

.countdown-number:hover {
  transform: scale(1.05);
  box-shadow: 0px 6px 8px 0px rgba(0, 0, 0, 0.3);
}

@keyframes pulse {
  0% {
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  }
  50% {
    box-shadow: 0px 6px 8px 0px rgba(20, 0, 118, 0.4);
  }
  100% {
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  }
}

.hero-bg {
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url("images/hero-bg.png");
  background-size: cover;
  background-position: center;
}

/* Promotional Cards Styles */
.promo-card-large {
  background: linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.1) 0%,
      rgba(0, 0, 0, 0.1) 100%
    ),
    url("images/Promotional-card-3.png");
  background-size: cover;
  background-position: center;
}

.promo-card-dba {
  background: linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.25) 0%,
      rgba(0, 0, 0, 0.25) 100%
    ),
    url("images/Promotional-card-1.png");
  background-size: cover;
  background-position: 50% 50%;
}

.promo-card-mba {
  background: linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.25) 0%,
      rgba(0, 0, 0, 0.25) 100%
    ),
    url("images/Promotional-card-2.png");
  background-size: cover;
  background-position: 50% 50%;
}

.promo-percentage-large {
  letter-spacing: 10.24px;
}

.promo-percentage-medium {
  letter-spacing: 7.68px;
}

.promo-dba-text {
  letter-spacing: 5.32px;
}

.promo-mba-text {
  letter-spacing: 5.32px;
}

/* Testimonials specific styles */
.testimonial-card {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 0 6px 0 rgba(0, 0, 0, 0.07);
  border: 1px solid var(--Blue-Gray-200);
  background: var(--White);
}

.testimonial-text {
  color: var(--Nuetral-N500);
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 160%;
}

.testimonial-name {
  color: var(--Nuetral-N200);
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 160%;
}

.testimonial-title {
  color: var(--Nuetral-N100);
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
}

/* Responsive testimonial text sizes */
@media (max-width: 768px) {
  .testimonial-text {
    font-size: 18px;
  }
  .testimonial-name {
    font-size: 16px;
  }
  .testimonial-title {
    font-size: 14px;
  }
}

/* Equal heights for Swiper slides */
.swiper {
  width: 100%;
}
.swiper-wrapper {
  align-items: stretch;
}
.swiper-slide {
  height: auto;
  display: flex;
}
.swiper-slide > .testimonial-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}
