/* Inlined from timing page (revert bundle) */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.no-results-heading {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0 0 8px;
  color: inherit;
}

.search-bar-2 {
  color: #fff;
  margin: 0 auto;
  width: max-content;
  border-radius: 50px;
  padding: 10px 12px;
  background-color: #fff;
  transform: translateY(-37px);
  box-shadow: 1px 1px 37px 0 rgb(62 94 192 / 35%);
}

.search-bar-2 form {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.search-bar-2 form .search-bar-actions {
  display: flex;
  align-items: center;
  gap: 4px;
}

.search-bar-actions button {
  position: relative;
  overflow: visible;
  transition: all 0.3s ease;
}

.search-bar-2 form .search-bar-actions button {
  width: fit-content;
  height: 45px;
  padding: 0 16px;
  border-radius: 70px;
  right: 0;
  outline: none;
  border: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  color: #3e5ec0;
  border: 1px solid #3e5ec0;
  display: flex;
  align-items: center;
  gap: 4px;
  background: transparent;
}

html {
  scroll-behavior: smooth;
}

.go-to-course {
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-weight: bold;
  text-decoration: none;
  cursor: pointer;
}

.go-to-course .p {
  font-size: 22px !important;
}

.go-to-course:hover {
  color: #007aff;
  text-decoration: underline;
}

.social-share-section {
  margin-bottom: 40px;
  padding: 16px;
  background: linear-gradient(135deg, #f8faff 0%, #f0f4ff 100%);
  border-radius: 8px;
  text-align: center;
}

.share-title {
  font-size: 18px;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 15px;
  text-align: center;
}

.social-share-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.social-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  font-size: 18px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  width: 40px;
  height: 40px;
  justify-content: center;
}

.social-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  text-decoration: none;
}

.facebook-btn {
  background: #1877f2;
  color: white;
}

.facebook-btn:hover {
  background: #166fe5;
  color: white;
}

.twitter-btn {
  background: #1da1f2;
  color: white;
}

.twitter-btn:hover {
  background: #0d8bd9;
  color: white;
}

.linkedin-btn {
  background: #0a66c2;
  color: white;
}

.linkedin-btn:hover {
  background: #004182;
  color: white;
}

.social-btn i {
  font-size: 16px;
}

@media (max-width: 768px) {
  .social-share-section {
    padding: 20px;
    margin: 30px 0;
  }

  .share-title {
    font-size: 18px;
    margin-bottom: 16px;
  }

  .social-btn {
    width: 100%;
  }
}

.cities-section-available {
  margin: 30px 0;
}

.cities-list-available {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 18px;
  margin-top: 20px;
}

.cities-list-available .city,
.related-course {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  border-radius: 12px;
  height: 60px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(0, 0, 0, 0.05);
  text-decoration: none;
  color: #2d3748;
  font-weight: 500;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.cities-list-available .city::before,
.related-course::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, #314ea9, #446ae1);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cities-list-available .city:hover::before,
.related-course:hover::before {
  opacity: 1;
}

.cities-list-available .city-icon,
.related-course-icon {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to right, #314ea9, #446ae1);
  color: white;
  font-size: 14px;
  transition: all 0.3s ease;
}

.cities-list-available .city:hover,
.related-course:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: rgba(79, 110, 247, 0.2);
}

.cities-list-available .city:hover .city-icon,
.related-course:hover .related-course-icon {
  transform: rotate(-8deg) scale(1.1);
}

.city span,
.related-course span {
  font-size: 15px;
}

@media (max-width: 768px) {
  .cities-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.course-upcomming-link {
  display: block;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  border-radius: 8px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.hover-bg {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, transparent, rgba(37, 99, 235, 0.1), transparent);
  transition: all 0.6s ease-out;
  z-index: 1;
}

.course-upcomming-link:hover .hover-bg {
  left: 100%;
}

.course-upcomming {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: #fff;
  padding: 10px 16px;
  border-radius: 8px;
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 20px rgba(62, 94, 192, 0.15);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.course-upcomming-link:hover .course-upcomming {
  box-shadow: 0 8px 30px rgba(62, 94, 192, 0.25);
  background: linear-gradient(to right, #fff, #eff6ff);
}

.course-upcomming-title {
  font-size: 12.5px;
  font-weight: bold;
  flex: 1;
  color: #2b2b2b;
  text-transform: capitalize;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.course-upcomming-link:hover .course-upcomming-title {
  color: #3e5ec0;
  transform: translateX(4px);
}

.grid-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  padding: 0;
  margin: 0;
  list-style: none;
}

@media (min-width: 640px) {
  .grid-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
  100% {
    transform: scale(1);
  }
}
