@media (min-width: 1200px) {
  .navmenu .dropdown .dropdown ul {
    left: 100%;
  }

  .navmenu .dropdown .dropdown:hover > ul {
    left: 100%;
  }
}

/* Global frontend font override */
:root {
  --default-font: "Roboto", sans-serif;
  --heading-font: "Roboto", sans-serif;
  --nav-font: "Roboto", sans-serif;
}

.toc {
  padding: 16px 20px;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  background: #ffffff;
}

.toc h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.toc-list {
  margin: 0;
  padding-left: 0;
  list-style: none;
  counter-reset: toc-counter;
}

.toc-list li {
  counter-increment: toc-counter;
  margin-bottom: 6px;
}

.toc-list li::before {
  content: counter(toc-counter) ") ";
  font-weight: 600;
}

.toc-list a {
  color: inherit;
}

.contact-page .page-title {
  background: linear-gradient(120deg, rgba(13, 110, 253, 0.08), rgba(25, 135, 84, 0.08));
}

.contact-card {
  background: #ffffff;
  border: 1px solid #e9ecef;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.contact-eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6c757d;
  margin-bottom: 12px;
}

.contact-title {
  font-size: 28px;
  margin-bottom: 16px;
}

.contact-copy {
  color: #495057;
}

.contact-info-list {
  margin-top: 24px;
  display: grid;
  gap: 16px;
}

.contact-info-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.contact-info-item h6 {
  margin-bottom: 4px;
}

.contact-info-item p {
  margin-bottom: 0;
  color: #495057;
}

.contact-info-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(13, 110, 253, 0.1);
  color: #0d6efd;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.contact-highlights {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid #e9ecef;
  display: grid;
  gap: 12px;
}

.contact-form-card {
  background: #ffffff;
  border: 1px solid #e9ecef;
  border-radius: 16px;
  padding: 32px;
}

.contact-form-card .form-control,
.contact-form-card .form-select {
  border-radius: 10px;
}

.category-spotlight-section .section-title-container {
  align-items: flex-end !important;
}

.category-spotlight-heading {
  position: relative;
  font-weight: 800;
  color: #131313;
  padding-left: 26px;
}

.category-spotlight-heading::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #f2c39b;
  transform: translateY(-50%);
}

.category-spotlight-card {
  background: #fff;
  border: 1px solid #ece8e2;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(19, 19, 19, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-spotlight-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 30px rgba(19, 19, 19, 0.1);
}

.category-spotlight-media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #24104e;
}

.category-spotlight-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.category-spotlight-card:hover .category-spotlight-media img {
  transform: scale(1.03);
}

.category-spotlight-date {
  position: absolute;
  right: 14px;
  bottom: -14px;
  width: 52px;
  min-height: 56px;
  border-radius: 10px 10px 0 0;
  background: #ef7b1a;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  box-shadow: 0 10px 18px rgba(239, 123, 26, 0.25);
}

.category-spotlight-date span {
  font-weight: 800;
  line-height: 1;
  font-size: 1.25rem;
}

.category-spotlight-date small {
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.1;
  font-size: 0.7rem;
}

.category-spotlight-body {
  padding: 18px 16px 16px;
}

.category-spotlight-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #3b2f66;
  font-weight: 600;
  font-size: 0.86rem;
  margin-bottom: 10px;
}

.category-spotlight-meta .dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #9f9aab;
  display: inline-block;
}

.category-spotlight-title {
  font-size: 1.35rem;
  line-height: 1.35;
  font-weight: 800;
  margin-bottom: 10px;
}

.category-spotlight-title a {
  color: #18131f;
}

.category-spotlight-summary {
  color: #5a5468;
  margin-bottom: 12px;
  min-height: 46px;
}

.category-spotlight-list {
  margin: 0 0 14px;
  padding-left: 18px;
  color: #312c3a;
}

.category-spotlight-list li {
  margin-bottom: 6px;
}

.category-spotlight-list a {
  color: #312c3a;
}

.category-spotlight-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ef7b1a;
  font-weight: 700;
  text-decoration: none;
}

.category-spotlight-link:hover {
  color: #c9620d;
}

@media (max-width: 767.98px) {
  .category-spotlight-summary {
    min-height: 0;
  }
}

.testimonials-section {
  padding-top: 24px;
}

.testimonials-wrap {
  background: #fff;
  border: 1px solid #ece8e2;
  border-radius: 18px;
  padding: 28px 24px;
  box-shadow: 0 12px 30px rgba(19, 19, 19, 0.05);
}

.testimonials-heading h2 {
  position: relative;
  margin: 0 0 20px;
  padding-left: 26px;
  font-weight: 800;
  color: #161616;
}

.testimonials-heading h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #f2c39b;
  transform: translateY(-50%);
}

.testimonial-panel {
  background: #fff;
  border-radius: 14px;
  padding: 8px 2px 0;
}

.testimonial-person {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #f2f0f7;
}

.testimonial-person h3 {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 700;
  color: #25222b;
}

.testimonial-person p {
  margin: 2px 0 0;
  color: #8b8795;
  font-weight: 500;
}

.testimonial-quote {
  margin: 0;
  color: #5b5766;
  font-size: 1.05rem;
  line-height: 1.8;
  border-bottom: 1px dashed #d8d4df;
  padding-bottom: 20px;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 16px;
}

.testimonial-stars {
  display: inline-flex;
  gap: 6px;
  color: #f2992e;
  font-size: 1.05rem;
}

.testimonials-swiper .swiper-slide {
  height: auto;
}

.testimonials-pagination {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-width: 90px;
}

.testimonials-pagination .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  background: #d9d5df;
  opacity: 1;
  margin: 0 4px !important;
}

.testimonials-pagination .swiper-pagination-bullet-active {
  background: #4f3f7d;
  outline: 5px solid rgba(79, 63, 125, 0.12);
}

@media (max-width: 767.98px) {
  .testimonials-wrap {
    padding: 22px 16px;
  }

  .testimonial-person h3 {
    font-size: 1.05rem;
  }

  .testimonial-quote {
    font-size: 0.98rem;
    line-height: 1.7;
  }

  .testimonial-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .testimonials-pagination {
    justify-content: flex-start;
  }
}
