:root {
  --color-primary: #0B9E8A;
  --color-secondary: #F7F9F8;
}

body {
  font-family: "Inter", sans-serif;
}

h1 {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.hero-slider .slick-list,
.hero-slider .slick-track,
.hero-slider .slick-slide {
  height: 100%;

}

#colleges .slick-list,
#testimonials .slick-list {
  padding: 1.5rem 0;
  margin: 0 -1rem;
}

.slick-dots {
  bottom: -10px;
}

.slick-dots li button:before {
  display: none;
}

.slick-dots li {
  width: auto !important;
  height: auto !important;
}

.slick-dots li button {
  width: 8px !important;
  height: 8px !important;
  border-radius: 9999px;
  background: #cbd5e1 !important;
  transition: all .3s ease;
  padding: 0 !important;
}

.slick-dots li.slick-active button {
  width: 27px !important;
  background: var(--color-primary) !important;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: none;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--color-primary) !important;
  background: white !important;
}

input::placeholder,
textarea::placeholder {
  color: #b0bec5;
}

@media screen and (max-width: 768px) {

  #colleges .slick-list,
  #testimonials .slick-list {
    margin: 0;
  }
}



.enrollment-notification {
  position: fixed;
  left: 25px;
  bottom: 25px;
  width: 340px;
  min-height: 105px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 2px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: flex-start;
  padding: 15px 35px 18px 14px;
  z-index: 9;
  box-sizing: border-box;
  overflow: hidden;
  opacity: 0;
  transform: translateX(-30px);
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
}

.enrollment-notification.show {
  opacity: 1;
  transform: translateX(0);
}

/* Icon */
.notification-icon {
  width: 34px;
  height: 34px;
  min-width: 34px;
  border-radius: 50%;
  background: #fce7f3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  margin-right: 12px;
}

/* Content */
.notification-content {
  flex: 1;
  line-height: 1.4;
}

.notification-text {
  font-size: 14px;
  font-weight: 600;
  color: #374151;
  margin-bottom: 3px;
}

.course-name {
  font-size: 14px;
  font-weight: 700;
  color: #374151;
  line-height: 1.45;
}

.notification-time {
  margin-top: 5px;
  font-size: 11px;
  color: #9ca3af;
}

/* Close */
.notification-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 24px;
  height: 24px;
  border: 0;
  background: transparent;
  color: #9ca3af;
  font-size: 24px;
  line-height: 20px;
  cursor: pointer;
  padding: 0;
}

.notification-close:hover {
  color: #374151;
}

/* Progress */
.notification-progress {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 4px;
  width: 0%;
  background: #a8aff9;
}

/* Progress animation */
.notification-progress.animate {
  animation: progressBar 10s linear forwards;
}

@keyframes progressBar {
  from {
    width: 0%;
  }

  to {
    width: 100%;
  }
}

/* Mobile */
@media (max-width: 576px) {

  .enrollment-notification {
    left: 12px;
    bottom: 15px;

    width: calc(100% - 24px);
    max-width: 340px;

    min-height: 95px;

    padding: 13px 32px 16px 12px;
  }

  .notification-text,
  .course-name {
    font-size: 13px;
  }
}