/**
 * Homepage — desktop & laptop styles
 * Tablet/mobile overrides: index-mobile.css
 */

/* News & Events date hover */
.service-style2:hover .news-date-hover,
.service-style2:hover .date-text-hover {
  color: white !important;
}

.service-style2:hover .date-icon-hover,
.service-style2:hover .date-icon-hover.text-theme,
.service-style2:hover .news-date-hover .date-icon-hover,
.service-style2:hover .news-date-hover i {
  color: white !important;
}

/* Admission inquiry sidebar */
.admission-sidebar {
  position: fixed;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.sidebar-btn {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.sidebar-btn:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.sidebar-btn i {
  font-size: 22px;
  margin-bottom: 5px;
}

.sidebar-btn span {
  font-size: 10px;
  font-weight: 600;
  text-align: center;
  line-height: 1.2;
}

.btn-register { background: linear-gradient(135deg, #4CAF50, #45a049); color: white; }
.btn-payment { background: linear-gradient(135deg, #2196F3, #1976D2); color: white; }
.btn-call { background: linear-gradient(135deg, #F44336, #D32F2F); color: white; }
.btn-whatsapp { background: linear-gradient(135deg, #25D366, #128C7E); color: white; }
.btn-admission { background: linear-gradient(135deg, #FF9800, #F57C00); color: white; }
.btn-social { background: linear-gradient(135deg, #9C27B0, #7B1FA2); color: white; }

.sidebar-btn::before {
  /* content: attr(data-tooltip); */
  position: absolute;
  left: -120px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.sidebar-btn:hover::before {
  opacity: 1;
}

/* Social media popup */
.social-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 10000;
  justify-content: center;
  align-items: center;
}

.social-popup.is-visible {
  display: flex;
}

body.is-scroll-locked {
  overflow: hidden;
}

.social-popup-content {
  background: white;
  border-radius: 15px;
  padding: 30px;
  max-width: 500px;
  width: 90%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  animation: popupFadeIn 0.3s ease;
}

.social-popup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid #eee;
}

.social-popup-header h3 {
  margin: 0;
  color: #333;
  font-size: 24px;
}

.close-popup {
  font-size: 30px;
  cursor: pointer;
  color: #999;
  transition: color 0.3s ease;
}

.close-popup:hover {
  color: #333;
}

.social-icons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.social-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  color: white;
  font-weight: 600;
}

.social-icon:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.social-icon i {
  font-size: 30px;
  margin-bottom: 10px;
}

.social-icon span {
  font-size: 14px;
}

.instagram { background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D); }
.facebook { background: linear-gradient(135deg, #4267B2, #3b5998); }
.youtube { background: linear-gradient(135deg, #FF0000, #CC0000); }
.twitter { background: linear-gradient(135deg, #1DA1F2, #0d8bd9); }
.linkedin { background: linear-gradient(135deg, #0077B5, #005582); }

@keyframes popupFadeIn {
  from { opacity: 0; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1); }
}

/* Homepage popup banner (components/popup-banner) — scoped to avoid achievement popup conflict */
#popupOverlay.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px;
  box-sizing: border-box;
  overflow-x: hidden;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

#popupOverlay.popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

#popupOverlay .popup-container {
  position: relative;
  width: fit-content;
  max-width: min(920px, 96vw);
  max-height: min(calc(100vh - 32px), calc(100dvh - 32px));
  overflow: visible;
  background: transparent;
  border-radius: 8px;
  box-shadow: none;
  transform: scale(0.8);
  transition: transform 0.3s ease;
  margin: 0 auto;
  flex-shrink: 0;
}

#popupOverlay.popup-overlay.active .popup-container {
  transform: scale(1);
}

#popupOverlay .popup-slider {
  position: relative;
  width: auto;
  height: auto;
  margin: 0 auto;
  line-height: 0;
}

#popupOverlay .popup-slide {
  display: none;
}

#popupOverlay .popup-slide.active {
  display: block;
}

#popupOverlay .popup-slide img {
  display: block;
  width: auto;
  height: auto;
  max-width: min(920px, 96vw);
  max-height: min(calc(100vh - 80px), calc(100dvh - 80px));
  object-fit: contain;
  object-position: center center;
  margin: 0 auto;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

#popupOverlay .popup-close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 40px;
  height: 40px;
  background-color: #fff;
  color: #333;
  border: none;
  border-radius: 50%;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

#popupOverlay .popup-close:hover {
  background-color: #f0f0f0;
}

.popup-indicators {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10000;
}

.popup-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  border: none;
  padding: 0;
}

.popup-indicator.active {
  background-color: white;
}

.popup-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  z-index: 10000;
  padding: 0 15px;
}

.popup-nav-btn {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.8);
  border: none;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.popup-nav-btn:hover {
  background-color: white;
}

/* Video popup modal */
.video-popup-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-popup-container {
  position: relative;
  width: 90%;
  max-width: 900px;
  height: 70vh;
}

.video-popup-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: transparent;
  border: none;
  color: white;
  font-size: 40px;
  cursor: pointer;
  z-index: 10000;
}

.video-popup-iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 10px;
}

/* Homepage — news, events & achievements hub */
.home-hub {
  position: relative;
  background: linear-gradient(180deg, #F3ECDC 0%, #fff 50%, #F3ECDC 100%);
  padding: 48px 0 64px;
}

.home-hub__card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(5, 32, 89, 0.08);
  border: 1px solid rgba(5, 32, 89, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.home-hub__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 50px rgba(5, 32, 89, 0.12);
}

.home-hub__header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 24px;
  color: #fff;
}

.home-hub__header--news {
  background: linear-gradient(135deg, #052059 0%, #1a3a7a 100%);
}

.home-hub__header--events {
  background: linear-gradient(135deg, #f99f3a 0%, #fec624 100%);
}

.home-hub__header--events .home-hub__title,
.home-hub__header--events .home-hub__subtitle {
  color: #052059;
}

.home-hub__header--achievements {
  background: linear-gradient(135deg, #052059 0%, #588157 100%);
}

.home-hub__header-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.15);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.home-hub__header--events .home-hub__header-icon {
  background: rgba(5, 32, 89, 0.12);
  color: #052059;
}

.home-hub__title {
  font-family: var(--title-font);
  font-size: 18px;
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
  white-space: nowrap;
  color: #fff;
}

.home-hub__subtitle {
  margin: 4px 0 0;
  font-size: 13px;
  opacity: 0.85;
  color: rgba(255, 255, 255, 0.9);
}

.home-hub__header--events .home-hub__subtitle {
  color: rgba(5, 32, 89, 0.75);
  opacity: 1;
}

.home-hub__list {
  flex: 1;
  padding: 16px 18px;
  max-height: 420px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.home-hub__empty {
  margin: auto 0;
  padding: 24px 12px;
  text-align: center;
  color: #565656;
  font-size: 14px;
  line-height: 1.6;
}

.home-hub__list::-webkit-scrollbar {
  width: 5px;
}

.home-hub__list::-webkit-scrollbar-thumb {
  background: rgba(5, 32, 89, 0.2);
  border-radius: 10px;
}

.home-hub__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px;
  background: #fafafa;
  border: 1px solid rgba(5, 32, 89, 0.06);
  border-radius: 14px;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.home-hub__item--link {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.home-hub__item--link:hover {
  background: #fff;
  border-color: rgba(249, 159, 58, 0.35);
  transform: translateX(4px);
}

.home-hub__item--link:hover .home-hub__arrow {
  color: #f99f3a;
}

.home-hub__date {
  flex-shrink: 0;
  width: 54px;
  padding: 10px 8px;
  border-radius: 12px;
  text-align: center;
  color: #fff;
  line-height: 1.1;
}

.home-hub__date strong {
  display: block;
  font-family: var(--title-font);
  font-size: 22px;
  font-weight: 800;
}

.home-hub__date small {
  display: block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 2px;
}

.home-hub__date--news {
  background: linear-gradient(135deg, #052059, #1a4b8c);
}

.home-hub__date--events {
  background: linear-gradient(135deg, #f99f3a, #fec624);
  color: #052059;
}

.home-hub__date--achievements {
  background: linear-gradient(135deg, #588157, #052059);
}

.home-hub__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.home-hub__item-title {
  font-family: var(--title-font);
  font-size: 13px;
  font-weight: 700;
  color: #052059;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.home-hub__item-desc {
  font-size: 13px;
  line-height: 1.5;
  color: #565656;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.home-hub__item-meta {
  font-size: 12px;
  color: #888;
  margin-top: 2px;
}

.home-hub__item-meta i {
  margin-right: 4px;
  color: #f99f3a;
}

.home-hub__item-tag {
  display: inline-block;
  align-self: flex-start;
  margin-top: 4px;
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.home-hub__item-tag--events {
  background: rgba(249, 159, 58, 0.15);
  color: #c6761a;
}

.home-hub__item-tag--achievements {
  background: rgba(88, 129, 87, 0.15);
  color: #588157;
}

.home-hub__arrow {
  flex-shrink: 0;
  color: #ccc;
  font-size: 12px;
  margin-top: 6px;
  transition: color 0.25s ease;
}

.home-hub__footer {
  padding: 16px 20px 22px;
  border-top: 1px solid rgba(5, 32, 89, 0.06);
  background: #fff;
}

.home-hub__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 12px 20px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.home-hub__btn--news {
  background: #052059;
  color: #fff;
}

.home-hub__btn--news:hover {
  background: #f99f3a;
  color: #052059;
}

.home-hub__btn--events {
  background: #f99f3a;
  color: #052059;
}

.home-hub__btn--events:hover {
  background: #052059;
  color: #fff;
}

.home-hub__btn--achievements {
  background: linear-gradient(135deg, #588157, #052059);
  color: #fff;
}

.home-hub__btn--achievements:hover {
  background: #f99f3a;
  color: #052059;
}

/* Homepage — Facts / Achieved so far */
.home-facts {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #052059 0%, #0d2b5c 45%, #1a3a7a 100%);
  padding: 64px 0 80px;
}

.home-facts__pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 20%, rgba(249, 159, 58, 0.12) 0%, transparent 45%),
    radial-gradient(circle at 85% 80%, rgba(254, 224, 116, 0.08) 0%, transparent 40%);
  pointer-events: none;
}

.home-facts__intro {
  color: #fff;
}

.home-facts__eyebrow {
  display: inline-block;
  padding: 6px 16px;
  margin-bottom: 16px;
  background: rgba(249, 159, 58, 0.15);
  border: 1px solid rgba(249, 159, 58, 0.35);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #f99f3a;
}

.home-facts__title {
  font-family: var(--title-font);
  font-size: 27px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.2;
  white-space: nowrap;
}

.home-facts__lead {
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 28px;
  max-width: 440px;
}

.home-facts__location {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  backdrop-filter: blur(8px);
}

.home-facts__location-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #f99f3a;
  color: #052059;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.home-facts__location strong {
  display: block;
  font-family: var(--title-font);
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.home-facts__location span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

.home-facts__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.home-facts__stat {
  position: relative;
  padding: 28px 22px 24px;
  background: rgba(255, 255, 255, 0.97);
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  overflow: hidden;
}

.home-facts__stat::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #f99f3a, #fec624);
}

.home-facts__stat--faculty::before {
  background: linear-gradient(90deg, #588157, #052059);
}

.home-facts__stat--students::before {
  background: linear-gradient(90deg, #052059, #1a4b8c);
}

.home-facts__stat:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.22);
}

.home-facts__stat-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 16px;
  border-radius: 16px;
  font-size: 24px;
  color: #fff;
  background: linear-gradient(135deg, #052059, #1a3a7a);
}

.home-facts__stat--faculty .home-facts__stat-icon {
  background: linear-gradient(135deg, #588157, #3d6b4f);
}

.home-facts__stat--students .home-facts__stat-icon {
  background: linear-gradient(135deg, #f99f3a, #fec624);
  color: #052059;
}

.home-facts__counter {
  display: block;
}

.home-facts__count-row {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 4px;
  margin-bottom: 8px;
}

.home-facts__number {
  font-family: var(--title-font);
  font-size: 20px;
  font-weight: 800;
  color: #052059;
  line-height: 1;
  margin: 0;
}

.home-facts__suffix {
  font-family: var(--title-font);
  font-size: 28px;
  font-weight: 800;
  color: #f99f3a;
  line-height: 1;
  margin-bottom: 4px;
}

.home-facts__suffix--text {
  font-size: 16px;
  font-weight: 700;
  color: #588157;
  margin-bottom: 6px;
}

.home-facts__label {
  font-size: 14px;
  font-weight: 600;
  color: #565656;
  margin: 0;
  line-height: 1.4;
}

/* Homepage — Life @ TJIS / Moments gallery */
.home-life {
  position: relative;
  background: #fff;
  padding: 64px 0 72px;
  overflow: hidden;
}

.home-life::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(180deg, #F3ECDC 0%, transparent 100%);
  pointer-events: none;
}

.home-life__header {
  position: relative;
  max-width: 680px;
  margin: 0 auto 40px;
}

.home-life__eyebrow {
  display: inline-block;
  padding: 6px 16px;
  margin-bottom: 14px;
  background: rgba(5, 32, 89, 0.08);
  border: 1px solid rgba(5, 32, 89, 0.12);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #052059;
}

.home-life__title {
  font-family: var(--title-font);
  font-size: 27px;
  font-weight: 700;
  color: #2D2D2D;
  line-height: 1.25;
  margin-bottom: 14px;
}

.home-life__title-accent {
  color: #052059;
}

.home-life__lead {
  font-size: 16px;
  line-height: 1.7;
  color: #565656;
  margin: 0;
}

.home-life__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 16px;
  margin-bottom: 36px;
}

.home-life__card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(5, 32, 89, 0.1);
  background: #052059;
}

.home-life__card--featured {
  grid-column: span 2;
  grid-row: span 2;
}

.home-life__link {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  text-decoration: none;
}

.home-life__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.home-life__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 20px;
  background: linear-gradient(180deg, rgba(5, 32, 89, 0.05) 0%, rgba(5, 32, 89, 0.75) 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
  text-align: center;
}

.home-life__card:hover .home-life__overlay {
  opacity: 1;
}

.home-life__card:hover .home-life__img {
  transform: scale(1.08);
}

.home-life__zoom {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #f99f3a;
  color: #052059;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transform: scale(0.8);
  transition: transform 0.35s ease;
}

.home-life__card:hover .home-life__zoom {
  transform: scale(1);
}

.home-life__card-title {
  font-family: var(--title-font);
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  transform: translateY(10px);
  transition: transform 0.35s ease;
}

.home-life__card:hover .home-life__card-title {
  transform: translateY(0);
}

.home-life__card--featured .home-life__card-title {
  font-size: 20px;
}

@media (max-width: 991px) {
  .home-life__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }

  .home-life__card--featured {
    grid-column: span 2;
    grid-row: span 1;
  }
}

.home-life__footer {
  position: relative;
}

.home-life__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: #052059;
  color: #fff;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(5, 32, 89, 0.2);
}

.home-life__btn:hover {
  background: #f99f3a;
  color: #052059;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(249, 159, 58, 0.35);
}

/* Homepage — Parent's Feedback / Testimonials */
.home-testimonials {
  position: relative;
  padding: 88px 0 92px;
  background: #F3ECDC;
  overflow: hidden;
}

.home-testimonials__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(249, 159, 58, 0.12) 0%, transparent 45%),
    radial-gradient(circle at 90% 80%, rgba(5, 32, 89, 0.08) 0%, transparent 40%);
  pointer-events: none;
}

.home-testimonials__header {
  max-width: 640px;
  margin: 0 auto 48px;
}

.home-testimonials__eyebrow {
  display: inline-block;
  padding: 6px 16px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: rgba(5, 32, 89, 0.08);
  color: #052059;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-testimonials__title {
  font-family: var(--title-font, 'Unbounded', sans-serif);
  font-size: 27px;
  font-weight: 700;
  color: #052059;
  margin: 0 0 14px;
  line-height: 1.2;
}

.home-testimonials__title-accent {
  color: #f99f3a;
}

.home-testimonials__lead {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  color: #565656;
}

.home-testimonials__slider {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}

.home-testimonials__track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 8px 4px 16px;
  flex: 1;
}

.home-testimonials__track::-webkit-scrollbar {
  display: none;
}

.home-testimonials__card {
  flex: 0 0 calc(50% - 12px);
  min-width: 300px;
  scroll-snap-align: start;
  background: #fff;
  border-radius: 20px;
  padding: 28px 26px 26px;
  box-shadow: 0 16px 48px rgba(5, 32, 89, 0.08);
  border: 1px solid rgba(5, 32, 89, 0.06);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.home-testimonials__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 56px rgba(5, 32, 89, 0.12);
}

.home-testimonials__quote {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
  border-radius: 12px;
  background: rgba(249, 159, 58, 0.15);
  color: #f99f3a;
  font-size: 18px;
}

.home-testimonials__stars {
  display: flex;
  gap: 4px;
  margin-bottom: 14px;
  color: #f99f3a;
  font-size: 14px;
}

.home-testimonials__star--muted {
  color: #ddd;
}

.home-testimonials__text {
  margin: 0 0 22px;
  flex: 1;
  font-size: 15px;
  line-height: 1.75;
  color: #444;
  font-style: normal;
}

.home-testimonials__author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid rgba(5, 32, 89, 0.08);
}

.home-testimonials__avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #f99f3a;
  flex-shrink: 0;
}

.home-testimonials__name {
  display: block;
  font-family: var(--title-font, 'Unbounded', sans-serif);
  font-size: 15px;
  font-weight: 700;
  font-style: normal;
  color: #052059;
  line-height: 1.3;
}

.home-testimonials__role {
  display: block;
  font-size: 13px;
  color: #888;
  margin-top: 2px;
}

.home-testimonials__nav {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: #052059;
  color: #fff;
  font-size: 15px;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(5, 32, 89, 0.2);
  transition: background 0.2s, transform 0.2s;
}

.home-testimonials__nav:hover {
  background: #f99f3a;
  transform: scale(1.05);
}

.home-testimonials__empty {
  color: #565656;
  margin: 0;
}

@media (max-width: 991px) {
  .home-testimonials__card {
    flex: 0 0 calc(50% - 12px);
    min-width: 280px;
  }
}

@media (max-width: 767px) {
  .home-testimonials {
    padding: 64px 0 72px;
  }

  .home-testimonials__header {
    margin-bottom: 32px;
  }

  .home-testimonials__card {
    flex: 0 0 88%;
    min-width: 0;
  }

  .home-testimonials__nav {
    display: none;
  }
}

/* Homepage — Accreditations & Affiliations (partners / portals) */
.home-affiliations {
  position: relative;
  padding: 72px 0 80px;
  background: linear-gradient(180deg, #fff 0%, #faf8f4 100%);
  overflow: hidden;
}

.home-affiliations__header {
  max-width: 680px;
  margin: 0 auto 44px;
}

.home-affiliations__eyebrow {
  display: inline-block;
  padding: 6px 16px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: rgba(5, 32, 89, 0.08);
  color: #052059;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-affiliations__title {
  font-family: var(--title-font, 'Unbounded', sans-serif);
  font-size: 27px;
  font-weight: 700;
  color: #052059;
  margin: 0 0 14px;
  line-height: 1.25;
}

.home-affiliations__title-accent {
  color: #f99f3a;
}

.home-affiliations__lead {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  color: #565656;
}

.home-affiliations__marquee {
  position: relative;
  overflow: hidden;
  padding: 8px 0;
}

.home-affiliations__fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.home-affiliations__fade--left {
  left: 0;
  background: linear-gradient(90deg, #faf8f4 0%, transparent 100%);
}

.home-affiliations__fade--right {
  right: 0;
  background: linear-gradient(270deg, #faf8f4 0%, transparent 100%);
}

.home-affiliations__track {
  display: flex;
  align-items: center;
  width: max-content;
  gap: 28px;
  animation: homeAffiliationsScroll 40s linear infinite;
}

.home-affiliations__marquee:hover .home-affiliations__track {
  animation-play-state: paused;
}

@keyframes homeAffiliationsScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.home-affiliations__item {
  flex-shrink: 0;
}

.home-affiliations__card {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 190px;
  height: 104px;
  padding: 18px 24px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(5, 32, 89, 0.08);
  box-shadow: 0 10px 32px rgba(5, 32, 89, 0.07);
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.home-affiliations__card:hover {
  transform: translateY(-5px);
  border-color: rgba(249, 159, 58, 0.45);
  box-shadow: 0 18px 44px rgba(5, 32, 89, 0.12);
}

.home-affiliations__card img {
  display: block;
  max-width: 100%;
  max-height: 64px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(20%);
  opacity: 0.92;
  transition: filter 0.3s ease, opacity 0.3s ease;
}

.home-affiliations__card:hover img {
  filter: grayscale(0);
  opacity: 1;
}

.home-affiliations__name {
  font-family: var(--title-font, 'Unbounded', sans-serif);
  font-size: 13px;
  font-weight: 700;
  color: #052059;
  text-align: center;
  line-height: 1.35;
}

.home-affiliations__empty {
  color: #565656;
  margin: 0;
}

@media (prefers-reduced-motion: reduce) {
  .home-affiliations__track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    gap: 16px;
  }

  .home-affiliations__marquee {
    overflow: visible;
  }

  .home-affiliations__fade {
    display: none;
  }
}

@media (max-width: 767px) {
  .home-affiliations {
    padding: 56px 0 64px;
  }

  .home-affiliations__header {
    margin-bottom: 32px;
  }

  .home-affiliations__card {
    width: 150px;
    height: 88px;
    padding: 14px 18px;
    border-radius: 14px;
  }

  .home-affiliations__card img {
    max-height: 52px;
  }

  .home-affiliations__name {
    font-size: 12px;
  }

  .home-affiliations__track {
    gap: 18px;
    animation-duration: 32s;
  }

  .home-affiliations__fade {
    width: 40px;
  }
}

/* Homepage — Facilities carousel */
.home-facilities {
  position: relative;
  padding: 72px 0 80px;
  background: #fff;
  overflow: hidden;
}

.home-facilities::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 55%;
  background: linear-gradient(180deg, #F3ECDC 0%, transparent 100%);
  pointer-events: none;
}

.home-facilities__header {
  position: relative;
  max-width: 680px;
  margin: 0 auto 44px;
}

.home-facilities__eyebrow {
  display: inline-block;
  padding: 6px 16px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: rgba(5, 32, 89, 0.08);
  color: #052059;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-facilities__title {
  font-family: var(--title-font, 'Unbounded', sans-serif);
  font-size: 27px;
  font-weight: 700;
  color: #052059;
  margin: 0 0 14px;
  line-height: 1.25;
}

.home-facilities__title-accent {
  color: #f99f3a;
}

.home-facilities__lead {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  color: #565656;
}

.home-facilities__slider {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}

.home-facilities__track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 8px 4px 16px;
  flex: 1;
}

.home-facilities__track::-webkit-scrollbar {
  display: none;
}

.home-facilities__card {
  flex: 0 0 calc(33.333% - 16px);
  min-width: 280px;
  scroll-snap-align: start;
}

.home-facilities__link {
  display: block;
  height: 100%;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(5, 32, 89, 0.1);
  border: 1px solid rgba(5, 32, 89, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.home-facilities__link:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 50px rgba(5, 32, 89, 0.14);
  border-color: rgba(249, 159, 58, 0.35);
}

.home-facilities__media {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: #052059;
}

.home-facilities__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.home-facilities__link:hover .home-facilities__media img {
  transform: scale(1.06);
}

.home-facilities__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #052059, #0a3a8f);
  color: rgba(255, 255, 255, 0.35);
  font-size: 48px;
}

.home-facilities__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 20px;
  background: linear-gradient(180deg, rgba(5, 32, 89, 0.1) 0%, rgba(5, 32, 89, 0.78) 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.home-facilities__link:hover .home-facilities__overlay {
  opacity: 1;
}

.home-facilities__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #f99f3a;
  color: #052059;
  font-size: 20px;
}

.home-facilities__cta {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}

.home-facilities__cta i {
  margin-left: 6px;
  transition: transform 0.25s ease;
}

.home-facilities__link:hover .home-facilities__cta i {
  transform: translateX(4px);
}

.home-facilities__body {
  padding: 22px 22px 24px;
}

.home-facilities__name {
  font-family: var(--title-font, 'Unbounded', sans-serif);
  font-size: 17px;
  font-weight: 700;
  color: #052059;
  margin: 0 0 8px;
  line-height: 1.35;
  transition: color 0.25s ease;
}

.home-facilities__link:hover .home-facilities__name {
  color: #f99f3a;
}

.home-facilities__desc {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: #666;
}

.home-facilities__nav {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: #052059;
  color: #fff;
  font-size: 15px;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(5, 32, 89, 0.2);
  transition: background 0.2s, transform 0.2s;
}

.home-facilities__nav:hover {
  background: #f99f3a;
  color: #052059;
  transform: scale(1.05);
}

.home-facilities__footer {
  position: relative;
  margin-top: 28px;
}

.home-facilities__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: #052059;
  color: #fff;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(5, 32, 89, 0.2);
}

.home-facilities__btn:hover {
  background: #f99f3a;
  color: #052059;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(249, 159, 58, 0.35);
}

@media (max-width: 991px) {
  .home-facilities__card {
    flex: 0 0 calc(50% - 12px);
    min-width: 260px;
  }
}

@media (max-width: 767px) {
  .home-facilities {
    padding: 56px 0 64px;
  }

  .home-facilities__header {
    margin-bottom: 32px;
  }

  .home-facilities__card {
    flex: 0 0 88%;
    min-width: 0;
  }

  .home-facilities__media {
    height: 180px;
  }

  .home-facilities__nav {
    display: none;
  }
}

/* Legacy panel styles (kept for other pages if referenced) */
.home-news-section {
  padding: 80px 0;
}

.home-panel-card {
  background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
  border-radius: 20px;
  padding: 30px;
  height: 100%;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
}

.home-panel-heading {
  margin-bottom: 25px;
}

.home-panel-title {
  font-size: 22px;
  font-weight: 700;
  color: #0d2b5c;
  letter-spacing: 1px;
  padding-bottom: 15px;
  border-bottom: 2px solid #edf2f7;
  margin-bottom: 25px;
}

.home-panel-title--compact {
  font-size: 20px;
  padding-bottom: 10px;
  margin-bottom: 0;
}

.home-panel-title .icon-news {
  color: #ff6b35;
  margin-right: 10px;
}

.home-panel-title .icon-calendar {
  color: #00c9a7;
}

.home-scroll-list {
  max-height: 400px;
  overflow-y: auto;
  padding-right: 10px;
}

.home-list-item {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid #edf2f7;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  border-radius: 12px;
}

.home-news-item {
  margin-bottom: 20px;
  padding: 20px;
}

.home-upcoming-item {
  margin-bottom: 1.5rem;
  padding: 1rem;
}

.home-achievement-item {
  margin-bottom: 16px;
  padding: 15px;
}

.home-date-box {
  color: white;
  padding: 15px;
  border-radius: 12px;
  text-align: center;
  flex-shrink: 0;
}

.home-date-box--news {
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  min-width: 50px;
  box-shadow: 0 6px 15px rgba(255, 107, 53, 0.3);
  margin-right: 20px;
}

.home-date-box--upcoming {
  background: linear-gradient(135deg, #00c9a7 0%, #00dcaf 100%);
  min-width: 70px;
  box-shadow: 0 6px 15px rgba(0, 201, 167, 0.3);
}

.home-date-box--achievement {
  background: linear-gradient(135deg, #8B4513 0%, #A0522D 100%);
  min-width: 70px;
  box-shadow: 0 6px 15px rgba(139, 69, 19, 0.3);
  margin-right: 20px;
}

.home-date-day {
  font-size: 26px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 2px;
}

.home-date-month {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
}

.home-item-info {
  flex-grow: 1;
}

.home-item-title {
  font-size: 16px;
  font-weight: 700;
  color: #0d2b5c;
  margin-bottom: 10px;
}

.home-item-title--sm {
  margin-bottom: 0.5rem;
}

.home-item-desc {
  font-size: 13px;
  color: #64748b;
  line-height: 1.5;
  margin-bottom: 8px;
}

.home-item-meta {
  font-size: 12px;
  color: #94a3b8;
}

.home-item-meta .meta-icon {
  margin-right: 5px;
}

.home-view-link {
  color: #0d2b5c;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  padding: 12px 25px;
  border-radius: 50px;
  transition: all 0.3s;
}

.home-view-link--news {
  background: rgba(255, 107, 53, 0.1);
  border: 1px solid rgba(255, 107, 53, 0.2);
}

.home-view-link--calendar {
  background: rgba(0, 201, 167, 0.1);
  border: 1px solid rgba(0, 201, 167, 0.2);
}

.home-view-link--achievements {
  background: rgba(85, 45, 23, 0.1);
  border: 1px solid rgba(85, 45, 23, 0.2);
}

.home-view-link .link-icon-left {
  margin-right: 8px;
}

.home-view-link .link-icon-right {
  margin-left: 8px;
  font-size: 12px;
  transition: transform 0.3s;
}

.home-empty-state {
  text-align: center;
  padding: 30px;
}

.home-empty-card {
  background: rgba(255, 255, 255, 0.7);
  border-radius: 16px;
  padding: 30px;
  text-align: center;
}

.home-empty-icon {
  color: #cbd5e1;
  margin-bottom: 15px;
}

.home-empty-title {
  color: #718096;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.home-empty-text {
  color: #a0aec0;
  font-size: 15px;
  margin-bottom: 0;
}

.home-event-nav-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #e2e8f0;
  background: white;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.home-event-nav-btn i {
  color: #718096;
}

.news-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.news-card:hover img {
  transform: scale(1.05);
}

.news-view-all-link:hover {
  background: rgba(255, 107, 53, 0.2) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 107, 53, 0.2);
}

.news-view-all-link:hover .link-icon-right {
  transform: translateX(3px);
}

.achievement-item:hover {
  background: rgba(255, 255, 255, 0.9) !important;
  transform: translateX(5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08) !important;
}

.achievements-link:hover {
  background: rgba(85, 45, 23, 0.2) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(85, 45, 23, 0.2);
}

.achievements-link:hover .link-icon-right {
  transform: translateX(3px);
}

#newsEventsList::-webkit-scrollbar,
.achievements-list::-webkit-scrollbar,
#eventsList::-webkit-scrollbar {
  width: 6px;
}

#newsEventsList::-webkit-scrollbar-track,
.achievements-list::-webkit-scrollbar-track,
#eventsList::-webkit-scrollbar-track {
  background: #f1f5f9;
  border-radius: 10px;
}

#newsEventsList::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #ff6b35, #f7931e);
  border-radius: 10px;
}

.achievements-list::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #8B4513, #A0522D);
  border-radius: 10px;
}

#eventsList::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #00c9a7, #00dcaf);
  border-radius: 10px;
}

/* ========== Extracted from blade templates ========== */

/* Source: resources/views/frontend/jain-school/pages/achievements.blade.php */
.achievement-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.15);
      }
      
      .pagination-wrapper .page-link {
        color: #8B4513;
        border-color: #8B4513;
      }
      
      .pagination-wrapper .page-item.active .page-link {
        background-color: #8B4513;
        border-color: #8B4513;
      }

/* Source: resources/views/frontend/jain-school/pages/career.blade.php */
#careerForm .form-control,
              #careerForm .form-select {
                color: #333 !important;
                background-color: #fff !important;
              }
              #careerForm .form-control::placeholder {
                color: #999 !important;
              }
              #careerForm .form-control:focus,
              #careerForm .form-select:focus {
                color: #333 !important;
                background-color: #fff !important;
              }
              #careerForm option {
                color: #333 !important;
                background-color: #fff !important;
              }

/* Source: resources/views/frontend/jain-school/pages/curriculum.blade.php */
.th{
    color: white !important;
  }
/* Curriculum Tabs Styling */
.curriculum-tabs-section {
  background: #052059 !important;
}

.curriculum-tabs .nav-link {
  position: relative;
}

.curriculum-tabs .nav-link:hover {
  color: white !important;
  background: rgba(249, 159, 58, 0.8) !important;
}

.curriculum-tabs .nav-link.active {
  color: #052059 !important;
  background: #f99f3a !important;
}

/* Bottom Tabs Styling */
.curriculum-bottom-tabs {
  background: #f8f9fa !important;
}

.bottom-curriculum-tabs .nav-link:hover {
  background: #052059 !important;
  color: white !important;
  border-color: #052059 !important;
}

/* Content Styling */
.curriculum-content h2 {
  color: #052059;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid #f99f3a;
}

.curriculum-content h3 {
  color: #052059;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
  margin-top: 30px;
}

.curriculum-content h4 {
  color: #333;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
}

.curriculum-content p {
  line-height: 1.8;
  color: #555;
  margin-bottom: 15px;
  font-size: 15px;
}

.curriculum-content ul, .curriculum-content ol {
  padding-left: 25px;
  margin-bottom: 20px;
}

.curriculum-content li {
  margin-bottom: 10px;
  line-height: 1.7;
  color: #555;
}

.curriculum-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 25px 0;
  border: 1px solid #ccc;
  font-family: Arial, sans-serif;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.curriculum-content thead {
  background: #052059 ;
}

.curriculum-content th {
  background: #e4e8ee; ;
  color: rgb(255, 255, 255) !important;
  padding: 15px;
  text-align: center;
  font-weight: 600;
  border: 1px solid #052059 ;
}

.curriculum-content tbody tr:first-child th {
  background: #e8e8e8;
  color: #333 !important;
  border: 1px solid #ccc;
}

/* Ensure all th elements have white text by default */
.curriculum-content table th {
  color: white !important;
}

.curriculum-content td {
  padding: 12px 15px;
  border: 1px solid #ccc;
  background: white;
  text-align: center;
}

.curriculum-content tbody tr:nth-child(even) td {
  background: #f9f9f9;
}

.curriculum-content tbody tr:hover td {
  background: #f0f4ff;
}

/* Preserve inline styles from pasted content */
.curriculum-content [style*="background"] {
  background-color: inherit !important;
}

.curriculum-content [style*="color"] {
  color: inherit !important;
}

/* Scrollbar styling for tabs */
.tabs-wrapper::-webkit-scrollbar {
  height: 4px;
}

.tabs-wrapper::-webkit-scrollbar-track {
  background: rgba(255,255,255,0.1);
}

.tabs-wrapper::-webkit-scrollbar-thumb {
  background: #f99f3a;
  border-radius: 2px;
}

/* Side Content Styling */
.side-content img {
  max-width: 100%;
  height: auto;
  border-radius: 5px;
}

.side-content h4 {
  color: #052059;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
}

/* Source: resources/views/frontend/jain-school/pages/facilities.blade.php */
.facility-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}
.facility-card:hover .facility-image img {
  transform: scale(1.1);
}
.facility-card:hover .zoom-icon {
  opacity: 1;
}
.lightbox-modal {
  animation: fadeIn 0.3s ease;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  color: #f99f3a !important;
}

/* Source: resources/views/frontend/jain-school/pages/fee-structure.blade.php */
.fee-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

/* Source: resources/views/frontend/jain-school/pages/gallery/index.blade.php */
.gallery-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}
.gallery-card:hover img {
  transform: scale(1.1);
}

/* Source: resources/views/frontend/jain-school/pages/gallery/show.blade.php */
.gallery-image-card:hover img {
  transform: scale(1.1);
}

/* Source: resources/views/frontend/jain-school/pages/hostel/index.blade.php */
.hostel-category-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.vs-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(5, 32, 89, 0.3);
}

/* Source: resources/views/frontend/jain-school/pages/hostel/show.blade.php */
.vs-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(5, 32, 89, 0.3);
}

.content-body ul, .content-body ol {
  padding-left: 30px;
  margin-bottom: 20px;
}

.content-body li {
  margin-bottom: 10px;
  line-height: 1.6;
}

.content-body h3, .content-body h4 {
  color: #052059;
  margin-top: 25px;
  margin-bottom: 15px;
}

.content-body strong {
  color: #052059;
}

/* Source: resources/views/frontend/jain-school/pages/index.blade.php */
.popup-banner-modal{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.8);
    display:flex;
    align-items:center;
    justify-content:center;
    z-index:9999;
}

.popup-banner-container{
    width:90%;
    max-width:900px;
    height:70vh;
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    position:relative;
}

.popup-banner-slide{
    display:none;
    height:100%;
}

.popup-banner-slide.active{
    display:flex;
}

.popup-banner-image{
    width:100%;
    height:100%;
    object-fit:contain;
}

/* CLOSE BUTTON - WHITE CIRCLE */
.popup-banner-close{
    position:absolute;
    top:15px;
    right:15px;
    width:40px;
    height:40px;
    border-radius:50%;
    border:2px solid #333;
    background:#fff;
    color:#333;
    font-size:24px;
    line-height:36px;
    text-align:center;
    cursor:pointer;
    z-index:100;
    transition:all 0.3s ease;
}

.popup-banner-close:hover{
    background:#ff3b3b;
    color:#fff;
    border-color:#ff3b3b;
}

.popup-prev,.popup-next{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    background:#0008;
    color:#fff;
    border:none;
    padding:10px 14px;
    cursor:pointer;
}

.popup-prev{left:10px}
.popup-next{right:10px}

.popup-dots{
    position:absolute;
    bottom:10px;
    left:50%;
    transform:translateX(-50%);
    display:flex;
    gap:8px;
}

.popup-dot{
    width:10px;
    height:10px;
    border-radius:50%;
    background:#fff5;
    cursor:pointer;
}

.popup-dot.active{
    background:#fff;
}

/* Source: resources/views/frontend/jain-school/pages/life-tjis.blade.php */
.life-image-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}
.life-image-card:hover .life-image img {
  transform: scale(1.1);
}
.life-image-card:hover .zoom-icon {
  opacity: 1;
}
.lightbox-modal {
  animation: fadeIn 0.3s ease;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  color: #f99f3a !important;
}

/* Source: resources/views/frontend/jain-school/pages/news-events/index.blade.php */
.news-card:hover {
  background: #052059 !important;
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}
.news-card:hover .news-content h3,
.news-card:hover .news-content h3 a {
  color: #fff !important;
}
.news-card:hover .news-content p {
  color: rgba(255,255,255,0.8) !important;
}
.news-card:hover .news-image img {
  transform: scale(1.1);
}
.news-card:hover .news-content a {
  background: #f99f3a !important;
  color: #fff !important;
}

/* Source: resources/views/frontend/jain-school/pages/photo-gallery-album.blade.php */
.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.lightbox-modal.active {
  display: block !important;
}

/* Source: resources/views/frontend/jain-school/pages/photo-gallery-category.blade.php */
.album-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.album-card:hover .album-image img {
  transform: scale(1.1);
}

.album-card:hover .album-overlay {
  opacity: 1;
}

/* Source: resources/views/frontend/jain-school/pages/photo-gallery.blade.php */
.category-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

/* Source: resources/views/frontend/jain-school/partials/footer.blade.php */
@keyframes debugPulse {
      0%, 100% { box-shadow: 0 4px 15px rgba(238, 90, 90, 0.4); }
      50% { box-shadow: 0 4px 25px rgba(238, 90, 90, 0.7); }
    }
    #debug-mode-indicator:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(238, 90, 90, 0.5);
    }

/* ========== JS modal / overlay utilities ========== */
.is-scroll-locked { overflow: hidden !important; }
#lightboxModal.is-open, .lightbox-modal.is-open { display: block !important; }
#videoModal.is-open, .video-modal.is-open { display: flex !important; }
.achievement-image-popup.is-open, .achievement-popup.is-open { display: flex !important; }
#debug-mode-indicator.is-hidden { display: none !important; }
.social-popup.is-visible { display: flex !important; }
.tjis-hover-related-link:hover { background: #052059 !important; color: #fff !important; }
.tjis-hover-scale-img:hover { transform: scale(1.05); }
.tjis-hover-title-link:hover { color: #f99f3a !important; }
.tjis-hover-read-more:hover { background: #f99f3a !important; transform: translateX(5px); }
.tjis-hover-back-link:hover { background: #f99f3a !important; transform: translateX(-5px); }
.tjis-hover-featured-img:hover { transform: scale(1.02); }
.video-popup-modal { position: fixed; inset: 0; background: rgba(0,0,0,0.9); z-index: 9999; display: flex; align-items: center; justify-content: center; }
.video-popup-container { position: relative; width: 90%; max-width: 900px; height: 70vh; }
.video-popup-close { position: absolute; top: -40px; right: 0; background: transparent; border: none; color: white; font-size: 40px; cursor: pointer; }
.video-popup-iframe { width: 100%; height: 100%; border: none; border-radius: 10px; }

/* ========== Inline style utility classes ========== */
[data-bg-src] { background-size: cover; background-position: center; background-repeat: no-repeat; }
.tjis-i-2a9f74d0 { background-color: #f5f3e8; padding: 80px 0; }
.tjis-i-a705b00e { color: #f99f3a; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; font-size: 0.9rem; }
.tjis-i-edeae45b { font-size: 2.8rem; font-weight: 800; color: #052059; margin-top: 15px; position: relative; display: inline-block; }
.tjis-i-fcf83f9c { position: absolute; bottom: -15px; left: 50%; transform: translateX(-50%); width: 100px; height: 4px; background: linear-gradient(90deg, #f99f3a, #052059); border-radius: 2px; }
.tjis-i-034f4698 { background: white; border-radius: 25px; box-shadow: 0 15px 50px rgba(0,0,0,0.1); overflow: hidden; }
.tjis-i-c5abea2e { height: 100%; min-height: 400px; position: relative; background: linear-gradient(135deg, #f99f3a, #ff7e00); }
.tjis-i-7ec7a932 { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); text-align: center; width: 100%; padding: 30px; }
.tjis-i-2a87e278 { width: 180px; height: 180px; border-radius: 50%; object-fit: cover; border: 5px solid white; box-shadow: 0 10px 30px rgba(0,0,0,0.3); margin-bottom: 20px; }
.tjis-i-27fa78a2 { width: 180px; height: 180px; border-radius: 50%; background: rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; border: 5px solid white; box-shadow: 0 10px 30px rgba(0,0,0,0.3); }
.tjis-i-3365fbca { font-size: 70px; color: white; }
.tjis-i-09a361f6 { color: white; font-size: 1.6rem; font-weight: 700; margin-bottom: 5px; text-shadow: 0 2px 4px rgba(0,0,0,0.3); }
.tjis-i-939d5a33 { color: rgba(255,255,255,0.9); font-size: 1rem; margin: 0; font-weight: 500; }
.tjis-i-b7700ec7 { color: rgba(255,255,255,0.7); font-size: 0.9rem; margin-top: 5px; }
.tjis-i-4854e1c4 { padding: 50px; height: 100%; display: flex; flex-direction: column; justify-content: center; }
.tjis-i-1f9fa0c5 { font-size: 3rem; color: #f99f3a; opacity: 0.3; }
.tjis-i-c4b07fc3 { font-size: 1.15rem; line-height: 2; color: #334155; margin-bottom: 30px; text-align: justify; }
.tjis-i-d85eeda5 { border-top: 2px solid #f99f3a; padding-top: 20px; }
.tjis-i-3466d935 { color: #f99f3a; font-weight: 700; font-size: 1.1rem; }
.tjis-i-ad3306ea { color: #666; font-size: 0.95rem; }
.tjis-i-7b468f7d { width: 40px; height: 40px; background: #f99f3a; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; color: white; margin-left: 10px; transition: all 0.3s ease; }
.tjis-i-dd62f310 { background: white; padding: 60px; border-radius: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.08); max-width: 600px; margin: 0 auto; }
.tjis-i-f73e54a7 { font-size: 4rem; color: #052059; margin-bottom: 20px; }
.tjis-i-10796012 { color: #052059; font-weight: 700; margin-bottom: 15px; }
.tjis-i-d097ee1f { color: #666; font-size: 1.1rem; }
.tjis-i-df239368 { position: relative; display: inline-block; width: 100%; }
.tjis-i-9369018b { width: 100%; border-radius: 10px; }
.tjis-i-f826ada9 { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 70px; height: 70px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 20px; transition: all 0.3s ease; box-shadow: 0 5px 15px rgba(0,0,0,0.3); }
.tjis-i-1fd8a14d { margin-left: 3px; }
.tjis-i-7b752645 { font-size: 30px; }
.tjis-i-df01e422 { background: linear-gradient(135deg, #052059 0%, #f99f3a 100%); }
.tjis-i-dfdb4cbf { left: -5%; bottom: -12%; }
.tjis-i-0627629e { right: 18%; top: -8%; }
.tjis-i-1dc9397b { left: 0px; top: 0px; }
.tjis-i-ba4f64f2 { right: 0px; bottom: 0px; }
.tjis-i-169f06e0 { color: #666; }
.tjis-i-07c318d8 { background: #f99f3a; color: #fff; padding: 15px 25px; border-radius: 8px 8px 0 0; text-align: center; }
.tjis-i-04f3c9f9 { font-size: 20px; font-weight: 600; }
.tjis-i-9ca532a5 { background: #f8f9fa; border: 1px solid #e0e0e0; border-top: none; border-radius: 0 0 8px 8px; overflow: hidden; }
.tjis-i-3e0512b1 { border: none; }
.tjis-i-97d69065 { background: #e9ecef; }
.tjis-i-cbaeb69d { border: none; padding: 12px 15px; font-weight: 600; color: #333; }
.tjis-i-2215f6ae { border-bottom: 1px solid #e0e0e0; }
.tjis-i-c304501f { padding: 15px; border: none; font-weight: 500; }
.tjis-i-ac172d29 { padding: 15px; border: none; text-transform: uppercase; font-size: 13px; color: #666; }
.tjis-i-14415da8 { padding: 15px; border: none; }
.tjis-i-d1ce0cc5 { color: #1a365d; }
.tjis-i-cde9e5fa { padding: 50px; background: #f8f9fa; border-radius: 10px; text-align: center; }
.tjis-i-4eb3003a { color: #ccc; }
.tjis-i-d479acba { color: #666; font-size: 20px; }
.tjis-i-4632cffb { color: #999; }
.tjis-i-e0f303ff { background: white; border-radius: 15px; box-shadow: 0 5px 20px rgba(0,0,0,0.1); padding: 20px; position: sticky; top: 100px; }
.tjis-i-7f55a40c { font-size: 20px; font-weight: 700; color: #1a365d; margin-bottom: 20px; text-align: center; }
.tjis-i-46f03657 { color: #f99f3a; margin-right: 8px; }
.tjis-i-d55d14e7 { border-radius: 10px; overflow: hidden; }
.tjis-i-78c85368 { border: 0; width: 100%; height: 400px; }
.tjis-i-d588fb4c { background: #f8f9fa; padding: 15px; border-radius: 10px; }
.tjis-i-78a60737 { font-size: 14px; color: #666; margin-bottom: 0; text-align: center; }
.tjis-i-1bf267d8 { color: #f99f3a; }
.tjis-i-c6bc8158 { background: #1a365d; }
.tjis-i-49d33328 { background: linear-gradient(135deg, #fff8f0 0%, #ffe9d6 100%); padding: 80px 0; }
.tjis-i-796eb7a7 { font-size: 18px; color: #666; max-width: 600px; margin: 0 auto; }
.tjis-i-127f701e { background: white; border-radius: 15px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.1); transition: all 0.3s ease; height: 100%; }
.tjis-i-50dd6dc9 { height: 220px; overflow: hidden; }
.tjis-i-7d1faedf { width: 100%; height: 100%; object-fit: cover; }
.tjis-i-cde8d9de { width: 100%; height: 100%; background: linear-gradient(135deg, #FFD700, #FFA500); display: flex; align-items: center; justify-content: center; }
.tjis-i-822d04e9 { padding: 25px; }
.tjis-i-6e5b39f4 { font-size: 14px; color: #8B4513; font-weight: 600; margin-bottom: 12px; }
.tjis-i-19fffdd4 { font-size: 20px; font-weight: 700; color: #333; margin-bottom: 15px; line-height: 1.4; }
.tjis-i-45c9ebb9 { font-size: 15px; color: #666; margin-bottom: 10px; }
.tjis-i-d9c71ea3 { font-size: 14px; color: #888; margin-bottom: 10px; }
.tjis-i-8e5f1ac9 { font-size: 14px; color: #8B4513; font-weight: 600; margin-bottom: 15px; }
.tjis-i-f9eb11b3 { font-size: 14px; color: #666; line-height: 1.6; margin-bottom: 0; }
.tjis-i-59b72637 { background: white; border-radius: 15px; padding: 50px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); max-width: 500px; margin: 0 auto; }
.tjis-i-ad9a06dd { color: #ddd; }
.tjis-i-610354ba { color: #666; margin-bottom: 20px; }
.tjis-i-a1bad5da { color: #999; margin-bottom: 0; }
.tjis-i-4da64648 { color:black }
.tjis-i-f6f347b1 { color: #000000; font-size: 0.9rem; }
.tjis-i-1a46973f { background: white; border-radius: 20px; padding: 60px 40px; box-shadow: 0 10px 30px rgba(0,0,0,0.08); }
.tjis-i-fbf8a13b { font-size: 4rem; color: #ddd; margin-bottom: 20px; }
.tjis-i-f98c544f { font-size: 1.5rem; color: #666; margin-bottom: 15px; }
.tjis-i-c618701b { background: linear-gradient(135deg, #052059 0%, #0a3a8f 50%, #1a5bb5 100%); padding: 100px 0; }
.tjis-i-59a55046 { background: #fee140; color: #052059; font-size: 0.85rem; padding: 8px 20px; border-radius: 25px; }
.tjis-i-01ddeb02 { font-size: 42px; font-weight: 700; color: #fff; margin-bottom: 25px; line-height: 1.2; }
.tjis-i-e1994cc9 { color: rgba(255,255,255,0.9); font-size: 1.1rem; line-height: 1.9; margin-bottom: 20px; }
.tjis-i-16d763c8 { color: rgba(255,255,255,0.85); font-size: 1rem; line-height: 1.8; margin-bottom: 30px; }
.tjis-i-b4699d03 { background: #fee140; color: #052059; border: none; }
.tjis-i-249c36d6 { border: 2px solid #fff; color: #fff; }
.tjis-i-40df6882 { background: #fff; border-radius: 20px; padding: 40px; box-shadow: 0 20px 60px rgba(0,0,0,0.3); }
.tjis-i-a2eba25e { font-size: 24px; font-weight: 700; color: #052059; margin-bottom: 25px; display: flex; align-items: center; }
.tjis-i-8c058a13 { background: #fee140; width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-right: 15px; }
.tjis-i-ce8069e9 { color: #052059; font-size: 1rem; }
.tjis-i-5358cf5e { color: #666; font-size: 0.9rem; margin-bottom: 8px; }
.tjis-i-cc565eea { color: #052059; }
.tjis-i-ccc4a68c { color: #052059; font-weight: 600; font-size: 1.1rem; }
.tjis-i-bc7129e1 { color: #052059; font-weight: 600; font-size: 1rem; }
.tjis-i-78c42188 { position: absolute; bottom: -1px; left: 0; right: 0; height: 50px; background: #fff; clip-path: polygon(0 100%, 100% 0, 100% 100%); }
.tjis-i-49cdf874 { flex: 1; }
.tjis-i-54b5c6a8 { background: #f0f4ff; color: #052059; font-weight: 500; }
.tjis-i-1258cdc3 { background: #fff3f0; color: #e74c3c; font-weight: 500; }
.tjis-i-7f00c252 { color: #052059; font-weight: 600; margin-bottom: 10px; font-size: 1rem; }
.tjis-i-50cc9f01 { color: #555; line-height: 1.7; margin-bottom: 15px; font-size: 0.95rem; }
.tjis-i-618ff0e2 { color: #555; line-height: 1.7; margin-bottom: 20px; font-size: 0.95rem; }
.tjis-i-74f74a89 { font-size: 0.9rem; padding: 12px 25px; }
.tjis-i-cddcffb8 { border-radius: 20px; border: none; }
.tjis-i-ae88ba52 { background: linear-gradient(135deg, #052059 0%, #0a3a8f 100%); border-radius: 20px 20px 0 0; padding: 25px 30px; }
.tjis-i-a72e5dee { color: #fff; font-size: 1.4rem; font-weight: 600; }
.tjis-i-5d876ad9 { color: #fee140; }
.tjis-i-9a289e87 { background: transparent; border: none; padding: 0; font-size: 1.5rem; color: #fff; opacity: 1; cursor: pointer; }
.tjis-i-b662f26b { padding: 0; }
.tjis-i-6d720c84 { background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%); padding: 40px; }
.tjis-i-96528bb4 { color: #333; }
.tjis-i-f2db8581 { z-index: 9999; }
.tjis-i-77195a64 { background: #fff; border-radius: 15px; padding: 30px; box-shadow: 0 4px 15px rgba(0,0,0,0.05); }
.tjis-i-8810fbac { font-size: 18px; font-weight: 700; color: #052059; margin-bottom: 25px; display: flex; align-items: center; }
.tjis-i-8ae06732 { background: #fee140; color: #052059; width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-right: 12px; font-size: 14px; }
.tjis-i-b5a45b5a { font-weight: 600; color: #333; font-size: 0.95rem; }
.tjis-i-c05a2bc7 { border: 2px solid #e9ecef; border-radius: 10px; padding: 12px 18px; }
.tjis-i-d41aa7e8 { border: 2px solid #e9ecef; border-radius: 10px; padding: 12px 18px; background: #f8f9fa; }
.tjis-i-511402f9 { border: 2px dashed #052059; border-radius: 12px; padding: 20px; text-align: center; background: #f8f9fa; }
.tjis-i-7b7b5abd { font-size: 2rem; color: #052059; margin-bottom: 10px; }
.tjis-i-33dd45cd { font-size: 0.9rem; }
.tjis-i-c878c608 { border: 2px dashed #ccc; border-radius: 12px; padding: 20px; text-align: center; background: #f8f9fa; }
.tjis-i-8f77af16 { font-size: 2rem; color: #666; margin-bottom: 10px; }
.tjis-i-1b14fe82 { background: #f8f9fa; padding: 20px; border-radius: 10px; border-left: 4px solid #fee140; }
.tjis-i-4d9c88f4 { width: 20px; height: 20px; margin-top: 2px; }
.tjis-i-f67a871f { font-weight: 500; padding-left: 10px; color: #333; }
.tjis-i-dbb8adc8 { background: linear-gradient(135deg, #052059 0%, #0a3a8f 100%); color: #fff; border: none; padding: 18px 70px; border-radius: 50px; font-weight: 700; font-size: 1.2rem; box-shadow: 0 8px 25px rgba(5,32,89,0.4); transition: all 0.3s ease; }
.tjis-i-74c00837 { background: white; border-radius: 25px; box-shadow: 0 15px 50px rgba(0,0,0,0.1); overflow: hidden; }
.message-card--rtl { direction: rtl; }
.tjis-i-56f1f5b0 { }
.message-card__row--ltr { direction: ltr; }
.tjis-i-3716d3d0 { height: 100%; min-height: 400px; position: relative; }
.message-image--blue { background: linear-gradient(135deg, #052059, #1a4b8c); }
.message-image--orange { background: linear-gradient(135deg, #f99f3a, #ff7e00); }
.tjis-i-6481dcbf { font-size: 3rem; opacity: 0.3; }
.quote-icon--blue { color: #052059; }
.quote-icon--orange { color: #f99f3a; }
.tjis-i-ed3be717 { padding-top: 20px; }
.quote-footer--blue { border-top: 2px solid #052059; }
.quote-footer--orange { border-top: 2px solid #f99f3a; }
.tjis-i-ace6ad55 { font-weight: 700; font-size: 1.1rem; }
.author-name--blue { color: #052059; }
.author-name--orange { color: #f99f3a; }
.tjis-i-734d6950 { width: 100%; height: auto; border-radius: 15px; }
.tjis-i-c2ce0d2e { background: #f99f3a; color: #fff; border: none; padding: 15px 40px; font-weight: 600; border-radius: 30px; cursor: pointer; }
.tjis-i-9b54fe74 { right: 0px; top: 0px; }
.tjis-i-0dbc0f09 { opacity: 0.5; }
.tjis-i-0f3d1ba9 { height:742px }
.tjis-i-cbdc2131 { border:0; }
.tjis-i-e229d287 { background: #052059; padding: 0; }
.tjis-i-b56181dc { overflow-x: auto; }
.tjis-i-14c8f37e { border: none; display: flex; flex-wrap: nowrap; min-width: max-content; margin: 0; }
.tjis-i-e2b74ba6 { margin: 0; }
.tjis-i-53018643 { border: none; padding: 20px 25px; font-weight: 600; font-size: 13px; color: rgba(255,255,255,0.9); background: transparent; text-transform: uppercase; white-space: nowrap; transition: all 0.3s ease; }
.curriculum-tab-link.active.tjis-i-53018643 { color: #052059; background: #f99f3a; }
.tjis-i-efae03f4 { background: #f5f5f5; }
.tjis-i-bb474d4f { background: white; padding: 40px; border-radius: 5px; box-shadow: 0 2px 15px rgba(0,0,0,0.08); }
.tjis-i-271b5067 { background: white; padding: 30px; border-radius: 5px; box-shadow: 0 2px 15px rgba(0,0,0,0.08); }
.tjis-i-9582c1ce { background: white; border-radius: 10px; padding: 60px 40px; box-shadow: 0 5px 20px rgba(0,0,0,0.08); }
.tjis-i-3c2ce674 { font-size: 1.8rem; color: #052059; margin-bottom: 15px; }
.tjis-i-6e9c932c { color: #666; margin-bottom: 0; }
.tjis-i-7b2ae506 { background: white; border-top: 1px solid #e5e5e5; padding: 40px 0; }
.tjis-i-760eef13 { border: none; display: flex; flex-wrap: nowrap; min-width: max-content; justify-content: center; margin: 0; gap: 10px; }
.tjis-i-1d719a6c { border: 2px solid #ddd; border-radius: 25px; padding: 12px 25px; font-weight: 600; font-size: 12px; color: #666; background: transparent; text-transform: uppercase; white-space: nowrap; transition: all 0.3s ease; }
.curriculum-tab-link.active.tjis-i-1d719a6c { border-color: #052059; color: white; background: #052059; }
.tjis-i-167ee0b6 { font-size: 36px; font-weight: 700; color: #052059; }
.tjis-i-36b477de { font-size: 22px; font-weight: 700; color: #052059; margin-bottom: 25px; text-transform: uppercase; }
.tjis-i-63676305 { background: #f8f9fa; padding: 25px; border-radius: 10px; margin-bottom: 20px; }
.tjis-i-ec3c937a { width: 40px; margin-right: 15px; }
.tjis-i-a03509e9 { font-size: 16px; font-weight: 500; color: #333; }
.tjis-i-aef4df16 { color: #052059; text-decoration: none; display: flex; align-items: center; }
.tjis-i-8e666dac { color: #666; margin-right: 10px; }
.tjis-i-b7941521 { background: #052059; }
.tjis-i-f5eef13b { font-size: 42px; font-weight: 800; color: #052059; }
.tjis-i-469dd59e { font-size: 1.1rem; color: #334155; line-height: 1.8; max-width: 700px; margin: 0 auto; }
.tjis-i-99bdee96 { border-radius: 20px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.1); transition: all 0.3s ease; }
.tjis-i-0918d4fa { height: 280px; overflow: hidden; position: relative; cursor: pointer; }
.tjis-i-481cd970 { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.tjis-i-14411ba3 { width: 100%; height: 100%; background: linear-gradient(135deg, #f8f9fa, #e9ecef); display: flex; align-items: center; justify-content: center; }
.tjis-i-b2adf428 { font-size: 4rem; color: #ddd; }
.tjis-i-475d9fe2 { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(transparent, rgba(5,32,89,0.9)); padding: 30px 20px 20px; }
.tjis-i-046a6346 { color: white; font-size: 1.2rem; font-weight: 600; margin-bottom: 5px; }
.tjis-i-2554db64 { position: absolute; top: 15px; right: 15px; background: rgba(255,255,255,0.9); width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s ease; }
.tjis-i-cd62a5e6 { color: #052059; font-size: 16px; }
.tjis-i-6fecf9b6 { padding: 20px; background: #fff; }
.tjis-i-6317ccfa { color: #555; font-size: 0.95rem; margin-bottom: 15px; line-height: 1.5; }
.tjis-i-520515b4 { display: inline-block; color: #f99f3a; font-weight: 600; text-decoration: none; font-size: 0.9rem; }
.tjis-i-e63fffc6 { margin-left: 5px; }
.tjis-i-27cbd8e8 { background: #f8f9fa; border-radius: 20px; padding: 60px 40px; }
.tjis-i-225127b9 { display: none; position: fixed; z-index: 9999; left: 0; top: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.95); overflow: auto; }
.tjis-i-8adba8a9 { position: absolute; top: 20px; right: 40px; color: white; font-size: 40px; font-weight: bold; cursor: pointer; z-index: 10000; }
.tjis-i-d8111112 { position: absolute; top: 50%; left: 20px; color: white; font-size: 50px; font-weight: bold; cursor: pointer; z-index: 10000; transform: translateY(-50%); padding: 20px; }
.tjis-i-6a8e024a { position: absolute; top: 50%; right: 20px; color: white; font-size: 50px; font-weight: bold; cursor: pointer; z-index: 10000; transform: translateY(-50%); padding: 20px; }
.tjis-i-91fceab9 { display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 100vh; padding: 60px 80px; }
.tjis-i-b213f410 { max-width: 100%; max-height: 80vh; object-fit: contain; border-radius: 10px; }
.tjis-i-d4cf7be7 { color: white; text-align: center; margin-top: 20px; max-width: 800px; }
.tjis-i-f9688349 { font-size: 1.5rem; margin-bottom: 10px; }
.tjis-i-f555a845 { font-size: 1rem; opacity: 0.9; line-height: 1.6; }
.tjis-i-774484b1 { background: #052059; padding: 15px 30px; margin-bottom: 30px; text-align: center; }
.tjis-i-75337496 { color: #fff; font-size:15px; font-weight: 700; margin: 0; text-transform: uppercase; letter-spacing: 1px; }
.tjis-i-c504441e { background: white; border-radius: 8px; overflow: hidden; box-shadow: 0 4px 15px rgba(0,0,0,0.1); transition: all 0.3s ease; height: 100%; border: 1px solid #e2e8f0; }
.tjis-i-0f9a36b4 { height: 220px; overflow: hidden; background: #f8fafc; }
.tjis-i-c4cdb534 { width: 100%; height: 100%; background: linear-gradient(135deg, #e2e8f0, #cbd5e1); display: flex; align-items: center; justify-content: center; }
.tjis-i-4b5afe49 { font-size: 60px; color: #94a3b8; }
.tjis-i-84b9b37f { background: #1e293b; padding: 12px; text-align: center; }
.tjis-i-278f43d4 { color: #fff; font-size: 1rem; font-weight: 600; margin: 0; }
.tjis-i-48a6ba2e { font-size: 1.1rem; color: #334155; line-height: 1.8; max-width: 700px; margin: 0 auto 50px; }
.tjis-i-fe394234 { background: white; border-radius: 15px; padding: 30px 40px; margin-bottom: 20px; box-shadow: 0 5px 20px rgba(0,0,0,0.08); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; border-left: 4px solid #052059; }
.tjis-i-bf7c4907 { display: flex; align-items: center; gap: 20px; }
.tjis-i-f4c338e5 { width: 60px; height: 60px; background: linear-gradient(135deg, #052059, #1a4b8c); border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.tjis-i-26160661 { font-size: 1.8rem; color: white; }
.tjis-i-59b03e88 { font-size: 1.3rem; font-weight: 700; color: #052059; margin-bottom: 5px; }
.tjis-i-eddb3c93 { color: #666; font-size: 0.95rem; margin: 0; }
.tjis-i-ef3f74ff { display: inline-flex; align-items: center; gap: 10px; white-space: nowrap; }
.tjis-i-056ac62e { font-size: 4rem; color: #ddd; margin-bottom: 20px; display: block; }
.tjis-i-820c64a2 { display: inline-block; }
.tjis-i-ce09d2f1 { font-size: 1.1rem; color: #555; max-width: 700px; margin: 0 auto; }
.tjis-i-8354e9b3 { text-decoration: none; }
.tjis-i-ca0eb399 { border-radius: 20px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.1); transition: all 0.3s ease; background: #fff; }
.tjis-i-c2879848 { height: 250px; overflow: hidden; position: relative; }
.tjis-i-81d50bcd { position: absolute; top: 15px; right: 15px; background: #f99f3a; color: #fff; padding: 5px 15px; border-radius: 20px; font-size: 0.85rem; font-weight: 600; }
.tjis-i-592eb3d0 { font-size: 1.3rem; font-weight: 700; color: #052059; margin-bottom: 10px; }
.tjis-i-d7a2d014 { color: #666; font-size: 0.95rem; margin-bottom: 15px; line-height: 1.5; }
.tjis-i-ac2c0662 { color: #f99f3a; font-weight: 600; font-size: 0.9rem; }
.tjis-i-7546b433 { color: #999; font-size: 1.1rem; }
.tjis-i-859308fd { font-size: 1.1rem; color: #555; line-height: 1.8; }
.tjis-i-bf606f93 { border-radius: 15px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.1); cursor: pointer; }
.tjis-i-2cc64291 { height: 280px; overflow: hidden; }
.tjis-i-367bd3a6 { padding: 15px; background: #fff; }
.tjis-i-6391dddb { color: #555; font-size: 0.95rem; margin: 0; }
.tjis-i-2ff06733 { background: #f8f9fa; }
.tjis-i-4861ab11 { font-size: 28px; font-weight: 700; color: #052059; margin-bottom: 30px; text-align: center; }
.tjis-i-f45e4ba5 { border-radius: 15px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.1); background: #fff; }
.tjis-i-bdfd0c9c { height: 180px; overflow: hidden; }
.tjis-i-087bdda6 { padding: 15px; }
.tjis-i-1c8a28cf { font-size: 1rem; font-weight: 600; color: #052059; margin: 0; }
.tjis-i-0d0bda20 { display: none; position: fixed; z-index: 9999; left: 0; top: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.95); }
.tjis-i-c4b1e173 { position: absolute; top: 50%; left: 20px; color: white; font-size: 50px; cursor: pointer; z-index: 10000; transform: translateY(-50%); }
.tjis-i-02bf289b { position: absolute; top: 50%; right: 20px; color: white; font-size: 50px; cursor: pointer; z-index: 10000; transform: translateY(-50%); }
.tjis-i-5e62a3d1 { color: white; text-align: center; margin-top: 20px; font-size: 1.1rem; }
.tjis-i-26bd7fae { border-radius: 20px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.1); transition: all 0.3s ease; height: 100%; }
.tjis-i-85828ef4 { height: 200px; overflow: hidden; }
.tjis-i-092a53e9 { padding: 30px; background: #fff; height: calc(100% - 200px); }
.tjis-i-1a28b0d6 { color: #052059; font-size: 1.8rem; font-weight: 700; margin-bottom: 15px; }
.tjis-i-28ab9ca2 { color: #555; font-size: 1rem; margin-bottom: 20px; line-height: 1.6; }
.tjis-i-e3924a37 { display: inline-block; padding: 12px 25px; background: linear-gradient(135deg, #052059, #1a3a7a); color: white; border-radius: 30px; text-decoration: none; font-weight: 600; transition: all 0.3s ease; }
.tjis-i-2e3baae0 { height: 400px; object-fit: cover; }
.tjis-i-3761f184 { font-size: 1.2rem; color: #444; line-height: 1.8; }
.tjis-i-5070c765 { font-size: 1.1rem; line-height: 1.8; color: #333; }
.tjis-i-864c5ad2 { display: block; padding: 15px; background: linear-gradient(135deg, #052059, #1a3a7a); color: white; border-radius: 10px; text-decoration: none; font-weight: 600; transition: all 0.3s ease; }
.tjis-i-806265c4 { font-size: 1.4rem; font-weight: 700; color: #052059; padding-bottom: 15px; border-bottom: 3px solid #f99f3a; }
.tjis-i-e98bb305 { height: 200px; object-fit: cover; }
.tjis-i-6dab36ad { font-size: 1.1rem; font-weight: 600; margin-bottom: 8px; }
.tjis-i-624e912f { color: #052059; text-decoration: none; }
.tjis-i-03237258 { font-size: 0.9rem; color: #666; margin-bottom: 0; line-height: 1.5; }
.tjis-i-66daa2e8 { display: block; padding: 12px; text-align: center; background: linear-gradient(135deg, #052059, #1a3a7a); color: white; border-radius: 30px; text-decoration: none; font-weight: 600; transition: all 0.3s ease; }
.tjis-i-098dd037 { background: #052059; color: white; padding: 15px 25px; border-radius: 8px 8px 0 0; margin-bottom: 0; font-size: 18px; font-weight: 600; text-align: center; }
.tjis-i-78430802 { border: 1px solid #052059; }
.tjis-i-727de087 { border: 1px solid #052059; padding: 12px 15px; font-weight: 600; color: #052059; text-align: center; }
.tjis-i-677435d3 { border: 1px solid #052059; padding: 12px 15px; font-weight: 600; color: #052059; }
.tjis-i-8f8723a4 { padding: 15px; border: 1px solid #052059; text-align: center; font-weight: 500; color: #333; }
.tjis-i-38ef64f1 { padding: 15px; border: 1px solid #052059; color: #333; }
.tjis-i-1af53719 { background: #f99f3a; color: white; }
.tjis-i-0ad3cb79 { background: #fff; border-radius: 20px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.1); transition: all 0.3s ease; height: 100%; }
.tjis-i-db04d522 { position: relative; overflow: hidden; }
.tjis-i-e9e2b243 { width: 100%; height: 250px; object-fit: cover; transition: transform 0.3s ease; }
.tjis-i-ab2d26ca { position: absolute; bottom: -25px; left: 50%; transform: translateX(-50%); width: 60px; height: 60px; background: #f99f3a; border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; color: #fff; font-weight: 600; z-index: 10; }
.tjis-i-88eea66b { font-size: 0.7rem; text-transform: uppercase; }
.tjis-i-9803d5ad { font-size: 1.1rem; line-height: 1; }
.tjis-i-aafe90c3 { padding: 40px 25px 25px; text-align: center; transition: all 0.3s ease; }
.tjis-i-273ffaf0 { font-size: 1.2rem; font-weight: 700; color: #052059; margin-bottom: 15px; transition: color 0.3s ease; }
.tjis-i-50ee3c83 { color: inherit; text-decoration: none; }
.tjis-i-96ebac4d { color: #666; font-size: 0.95rem; margin-bottom: 20px; line-height: 1.6; transition: color 0.3s ease; }
.tjis-i-93711cda { display: inline-block; padding: 10px 25px; background: #f99f3a; color: #fff; border-radius: 25px; text-decoration: none; font-weight: 600; font-size: 0.9rem; transition: all 0.3s ease; }
.tjis-i-b6a777e4 { position: relative; border-radius: 10px; overflow: hidden; cursor: pointer; }
.tjis-i-92fe3d51 { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(5,32,89,0.7); opacity: 0; transition: opacity 0.3s ease; display: flex; align-items: center; justify-content: center; }
.tjis-i-4543e915 { color: white; font-size: 30px; }
.tjis-i-f9c9e643 { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(transparent, rgba(0,0,0,0.8)); padding: 15px; color: white; font-weight: 600; }
.tjis-i-c1d4c1a1 { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.95); z-index: 9999; }
.tjis-i-fcfd6d2a { position: absolute; top: 20px; right: 30px; background: none; border: none; color: white; font-size: 40px; cursor: pointer; z-index: 10000; }
.tjis-i-87a54da3 { position: absolute; left: 20px; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.2); border: none; color: white; font-size: 30px; width: 50px; height: 50px; border-radius: 50%; cursor: pointer; z-index: 10000; }
.tjis-i-e272b1cc { position: absolute; right: 20px; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.2); border: none; color: white; font-size: 30px; width: 50px; height: 50px; border-radius: 50%; cursor: pointer; z-index: 10000; }
.tjis-i-e19d4f4d { display: flex; align-items: center; justify-content: center; height: 100%; padding: 60px; }
.tjis-i-a8098e7e { max-width: 100%; max-height: 100%; object-fit: contain; }
.tjis-i-b167a95b { position: absolute; bottom: 20px; left: 0; right: 0; text-align: center; color: white; font-size: 1.2rem; padding: 0 20px; }
.tjis-i-de436921 { background: white; border-radius: 15px; overflow: hidden; box-shadow: 0 5px 20px rgba(0,0,0,0.1); transition: all 0.3s ease; height: 100%; }
.tjis-i-18443830 { position: relative; height: 250px; overflow: hidden; }
.tjis-i-c98eb57b { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(5,32,89,0.5); opacity: 0; transition: opacity 0.3s ease; display: flex; align-items: center; justify-content: center; }
.tjis-i-de98f3f7 { color: white; font-size: 40px; }
.tjis-i-38ea0231 { padding: 25px; text-align: center; }
.tjis-i-160dedcc { font-size: 12px; font-weight: 400; color: #052059; margin-bottom: 10px; }
.tjis-i-5502fbcc { height: 150px; background: linear-gradient(135deg, #052059, #1a4b8c); display: flex; align-items: center; justify-content: center; }
.tjis-i-45f992ac { font-size: 60px; color: white; }
.tjis-i-010cdaba { border-radius: 20px; overflow: hidden; }
.tjis-i-6c0785f4,
.tjis-carousel-img { height: 100%; object-fit: cover; }
.tjis-i-21d73fe5 { background: #f8f9fa; padding: 80px 0; }
.tjis-i-75e4254f { background: #fff; border-radius: 15px; padding: 40px; height: 100%; border-left: 5px solid #fee140; box-shadow: 0 5px 20px rgba(0,0,0,0.08); }
.tjis-i-e287115c { font-size: 28px; font-weight: 700; color: #052059; margin-bottom: 20px; }
.tjis-i-0d8f808e { color: #444; font-size: 1rem; line-height: 1.8; }
.tjis-i-88f872b6 { background: #fff; border-radius: 15px; padding: 40px; height: 100%; border-left: 5px solid #052059; box-shadow: 0 5px 20px rgba(0,0,0,0.08); }
.tjis-i-c6db3ef4 { background: #fff; padding: 80px 0; }
.tjis-i-3e3eb1cb { background: #f8f9fa; border-radius: 15px; padding: 40px; height: 100%; border-left: 5px solid #fee140; box-shadow: 0 5px 20px rgba(0,0,0,0.08); }
.tjis-i-48685684 { background: #f8f9fa; border-radius: 15px; padding: 40px; height: 100%; border-left: 5px solid #052059; box-shadow: 0 5px 20px rgba(0,0,0,0.08); }
.tjis-i-7c5a1326 { background: #fff; border-radius: 15px; padding: 50px; text-align: center; border-top: 5px solid #fee140; box-shadow: 0 5px 20px rgba(0,0,0,0.08); }
.tjis-i-a7c67e75 { font-size: 32px; font-weight: 700; color: #052059; margin-bottom: 25px; }
.tjis-i-0c8aa8e6 { color: #444; font-size: 1.05rem; line-height: 1.9; }
.tjis-i-52d24db1 { background: white; border-radius: 12px; overflow: hidden; box-shadow: 0 5px 20px rgba(0,0,0,0.1); transition: all 0.3s ease; }
.tjis-i-a4d51a76 { position: relative; padding-bottom: 56.25%; background: #000; cursor: pointer; }
.tjis-i-343494c8 { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; }
.tjis-i-de7f8080 { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 70px; height: 70px; background: rgba(249, 159, 58, 0.9); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: all 0.3s ease; }
.tjis-i-fd675064 { color: white; font-size: 24px; margin-left: 5px; }
.tjis-i-32c16dc4 { padding: 20px; }
.tjis-i-7ee3ed7c { font-size: 1.1rem; font-weight: 700; color: #052059; margin-bottom: 8px; }
.tjis-i-1175f116 { color: #666; font-size: 0.9rem; margin: 0; }
.tjis-i-39f0c1a6 { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.9); z-index: 9999; align-items: center; justify-content: center; }
.tjis-i-718bf7e7 { position: relative; width: 90%; max-width: 900px; background: #000; border-radius: 12px; overflow: hidden; }
.tjis-i-57100423 { position: absolute; top: -40px; right: 0; background: none; border: none; color: white; font-size: 30px; cursor: pointer; z-index: 10; }
.tjis-i-9a73f4c0 { position: relative; padding-bottom: 56.25%; }
.tjis-i-43e4d3f8 { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; }
.tjis-i-b6c53d33 { position: absolute; bottom: -15px; left: 50%; transform: translateX(-50%); width: 80px; height: 4px; background: linear-gradient(90deg, #f99f3a, #052059); border-radius: 2px; }
.tjis-i-e0545947 { background: white; padding: 40px; border-radius: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.08); border: 1px solid rgba(5, 32, 89, 0.05); transition: all 0.4s ease; height: 100%; display: flex; flex-direction: column; }
.tjis-i-10df4ca3 { width: 80px; height: 80px; background: linear-gradient(135deg, #f99f3a, #052059); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; box-shadow: 0 10px 25px rgba(249, 159, 58, 0.3); }
.tjis-i-493b2e3c { font-size: 2rem; color: white; }
.tjis-i-940e1e5b { color: #052059; font-weight: 700; font-size: 1.8rem; }
.tjis-i-a2aaf9a0 { font-size: 1.1rem; color: #334155; line-height: 1.9; text-align: center; font-weight: 400; flex-grow: 1; align-items: center; justify-content: center; }
.tjis-i-4d42249a { color: #052059; font-weight: 700; }
.tjis-i-3435ffb8 { color: #f99f3a; font-weight: 700; }
.tjis-i-dfc55327 { background: white; padding: 40px; border-radius: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.08); border: 1px solid rgba(249, 159, 58, 0.05); transition: all 0.4s ease; height: 100%; display: flex; flex-direction: column; }
.tjis-i-3a5ef292 { width: 80px; height: 80px; background: linear-gradient(135deg, #052059, #f99f3a); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; box-shadow: 0 10px 25px rgba(5, 32, 89, 0.3); }
.tjis-i-a7ec368c { color: #f99f3a; font-weight: 700; font-size: 1.8rem; }
.tjis-i-f2f5b4b9 { color: #28a745; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; font-size: 0.9rem; }
.tjis-i-c3cd10dc { position: absolute; bottom: -15px; left: 50%; transform: translateX(-50%); width: 80px; height: 4px; background: linear-gradient(90deg, #28a745, #052059); border-radius: 2px; }
.tjis-i-8a278c81 { background: white; padding: 35px 25px; border-radius: 15px; box-shadow: 0 10px 30px rgba(0,0,0,0.08); transition: all 0.4s ease; border-top: 4px solid #052059; height: 100%; display: flex; flex-direction: column; justify-content: center; }
.tjis-i-12dce6a3 { width: 70px; height: 70px; background: rgba(5, 32, 89, 0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto; }
.tjis-i-efcd9317 { font-size: 2rem; color: #052059; }
.tjis-i-059b628a { color: #052059; font-weight: 700; margin-bottom: 15px; font-size: 1.4rem; }
.tjis-i-55a61dc9 { color: #64748b; line-height: 1.7; font-size: 0.95rem; }
.tjis-i-74df3c46 { background: white; padding: 35px 25px; border-radius: 15px; box-shadow: 0 10px 30px rgba(0,0,0,0.08); transition: all 0.4s ease; border-top: 4px solid #f99f3a; height: 100%; display: flex; flex-direction: column; justify-content: center; }
.tjis-i-c52a6f67 { width: 70px; height: 70px; background: rgba(249, 159, 58, 0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto; }
.tjis-i-012bbe03 { font-size: 2rem; color: #f99f3a; }
.tjis-i-de0577e8 { color: #f99f3a; font-weight: 700; margin-bottom: 15px; font-size: 1.4rem; }
.tjis-i-a672f3b5 { background: white; padding: 35px 25px; border-radius: 15px; box-shadow: 0 10px 30px rgba(0,0,0,0.08); transition: all 0.4s ease; border-top: 4px solid #28a745; height: 100%; display: flex; flex-direction: column; justify-content: center; }
.tjis-i-1bee4720 { width: 70px; height: 70px; background: rgba(40, 167, 69, 0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto; }
.tjis-i-9a162a14 { font-size: 2rem; color: #28a745; }
.tjis-i-96e3867a { color: #28a745; font-weight: 700; margin-bottom: 15px; font-size: 1.4rem; }
.tjis-i-231b6d8e { background: white; padding: 35px 25px; border-radius: 15px; box-shadow: 0 10px 30px rgba(0,0,0,0.08); transition: all 0.4s ease; border-top: 4px solid #dc3545; height: 100%; display: flex; flex-direction: column; justify-content: center; }
.tjis-i-93ecd0d8 { width: 70px; height: 70px; background: rgba(220, 53, 69, 0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto; }
.tjis-i-a2313e96 { font-size: 2rem; color: #dc3545; }
.tjis-i-bd5fb0e7 { color: #dc3545; font-weight: 700; margin-bottom: 15px; font-size: 1.4rem; }
.tjis-i-ef6ab0e0 { color: #ffc107; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; font-size: 0.9rem; }
.tjis-i-c1928649 { font-size: 2.8rem; font-weight: 800; color: white; margin-top: 15px; position: relative; display: inline-block; text-shadow: 0 2px 4px rgba(0,0,0,0.3); }
.tjis-i-bd234fe6 { position: absolute; bottom: -15px; left: 50%; transform: translateX(-50%); width: 100px; height: 4px; background: linear-gradient(90deg, #ffc107, #ffffff); border-radius: 2px; }
.tjis-i-5e4c33f0 { background: linear-gradient(135deg, #052059 0%, #1a365d 100%); padding: 70px 40px; border-radius: 25px; position: relative; overflow: hidden; box-shadow: 0 20px 60px rgba(5, 32, 89, 0.3); }
.tjis-i-236c7f06 { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: radial-gradient(circle at 20% 80%, rgba(255, 193, 7, 0.1) 0%, transparent 40%), radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 40%); z-index: 1; }
.tjis-i-0babfef7 { z-index: 2; }
.tjis-i-03305415 { background: rgba(255,255,255,0.95); padding: 40px 30px; border-radius: 20px; transition: all 0.4s ease; box-shadow: 0 10px 30px rgba(0,0,0,0.1); height: 100%; display: flex; flex-direction: column; justify-content: center; }
.tjis-i-fe3ff4f9 { width: 80px; height: 80px; background: linear-gradient(135deg, #052059, #1a365d); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto; box-shadow: 0 8px 20px rgba(5, 32, 89, 0.3); }
.tjis-i-b70bdee6 { color: #052059; font-weight: 800; margin-bottom: 20px; font-size: 1.5rem; }
.tjis-i-d17c6fb2 { color: #475569; line-height: 1.8; font-size: 1rem; }
.tjis-i-62a082da { width: 80px; height: 80px; background: linear-gradient(135deg, #f99f3a, #ffc107); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto; box-shadow: 0 8px 20px rgba(249, 159, 58, 0.3); }
.tjis-i-5f112746 { color: #f99f3a; font-weight: 800; margin-bottom: 20px; font-size: 1.5rem; }
.tjis-i-88158a1d { width: 80px; height: 80px; background: linear-gradient(135deg, #28a745, #20c997); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto; box-shadow: 0 8px 20px rgba(40, 167, 69, 0.3); }
.tjis-i-d2dd46c1 { color: #28a745; font-weight: 800; margin-bottom: 20px; font-size: 1.5rem; }
.tjis-i-e1bf1bb1 { font-size: 1.4rem; max-width: 900px; margin: 0 auto; line-height: 2; font-weight: 400; text-shadow: 0 2px 4px rgba(0,0,0,0.3); }
.tjis-i-c990bb90 { color: #ffc107; font-weight: 600; }
.tjis-i-4b75ff70 { color: #f99f3a; font-weight: 600; text-decoration: none; margin-left: 5px; }
.tjis-i-345895de { font-size: 12px; }
.tjis-i-8b0baadc { overflow: hidden; border-radius: 8px; }
.tjis-i-6d37cf1f { border:none;overflow:hidden }
.tjis-i-ac32f4ea { font-size: 14px; opacity: 0.8; }
.tjis-i-f6234f9f { color: white; }
.tjis-i-3379114f { position: fixed; bottom: 20px; right: 20px; background: linear-gradient(135deg, #ff6b6b, #ee5a5a); color: white; padding: 12px 20px; border-radius: 8px; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; font-size: 14px; font-weight: 600; box-shadow: 0 4px 15px rgba(238, 90, 90, 0.4); z-index: 9999; display: flex; align-items: center; gap: 10px; animation: debugPulse 2s infinite; cursor: pointer; }
.tjis-i-beab5831 { font-size: 16px; }
.tjis-i-9216db77 { background: rgba(255,255,255,0.2); border: none; color: white; width: 24px; height: 24px; border-radius: 50%; cursor: pointer; font-size: 12px; margin-left: 5px; }
.site-logo-custom { width: auto; height: auto; max-width: 100%; object-fit: contain; }
.tjis-i-9a630cf3 { opacity: 0.3; }
.tjis-i-6457dff1 { background: white; border-radius: 15px; padding: 40px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); max-width: 500px; margin: 0 auto; }
.tjis-i-2c9b32b7 { color: #666; margin-bottom: 15px; }
.tjis-i-6fb35ba7 { position: absolute; top: 20%; left: 5%; width: 120px; height: 120px; border-radius: 50%; background: rgba(255,255,255,0.1); }
.tjis-i-81b52724 { position: absolute; bottom: 15%; right: 8%; width: 80px; height: 80px; border-radius: 50%; background: rgba(255,255,255,0.08); }
.tjis-i-957cc619 { max-width: 80px; border-radius: 10px; }
.tjis-i-400e64e0 { position: relative; max-width: 650px; }
.tjis-i-bc323fbb { background: rgba(255,255,255,0.95); border-radius: 20px; padding: 25px; box-shadow: 0 15px 40px rgba(0,0,0,0.15); backdrop-filter: blur(10px); max-width: 600px; }
.tjis-i-62fa6cef { width: 120px; height: 120px; border-radius: 50%; object-fit: cover; border: 4px solid #0d2b5c; box-shadow: 0 8px 25px rgba(13, 43, 92, 0.3); }
.tjis-i-845313ec { width: 120px; height: 120px; border-radius: 50%; background: linear-gradient(135deg, #0d2b5c, #1a4b8c); display: flex; align-items: center; justify-content: center; border: 4px solid #0d2b5c; box-shadow: 0 8px 25px rgba(13, 43, 92, 0.3); }
.tjis-i-c807b2c3 { font-size: 50px; color: white; }
.tjis-i-cdd8ca06 { text-align: center; }
.tjis-i-1f6502a8 { font-size: 17px; line-height: 1.7; color: #2c3e50; margin: 0 0 20px 0; font-style: italic; min-height: 120px; display: flex; align-items: center; justify-content: center; }
.tjis-i-7002f9ca { margin-bottom: 20px; }
.tjis-i-8fb3f663 { background: linear-gradient(135deg, #0d2b5c, #1a4b8c); color: white; border: none; padding: 10px 25px; border-radius: 30px; font-weight: 600; font-size: 14px; transition: all 0.3s ease; box-shadow: 0 4px 15px rgba(13, 43, 92, 0.3); }
.tjis-i-a646d428 { border-top: 2px solid #0d2b5c; padding-top: 20px; }
.tjis-i-d51685bd { font-size: 20px; font-weight: 800; color: #0d2b5c; margin: 0 0 5px 0; }
.tjis-i-1a8e12a1 { font-size: 15px; color: #666; margin: 0; font-weight: 500; }
.tjis-i-7f98c1c6 { font-size: 13px; color: #888; }
.tjis-i-4610a31e { background: rgba(255,255,255,0.9); border-radius: 20px; padding: 40px; box-shadow: 0 15px 40px rgba(0,0,0,0.15); max-width: 550px; backdrop-filter: blur(10px); }
.tjis-i-82ef93fb { color: #0d2b5c; }
.tjis-i-021a7817 { color: #0d2b5c; margin-bottom: 15px; font-weight: 700; }
.tjis-i-29438131 { color: #666; margin-bottom: 0; font-size: 16px; }
.tjis-i-2b3963f4 { padding: 80px 0; }
.tjis-i-2014fe20 { background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%); border-radius: 20px; padding: 30px; height: 100%; box-shadow: 0 15px 50px rgba(0,0,0,0.08); border: 1px solid rgba(255,255,255,0.8); backdrop-filter: blur(10px); }
.tjis-i-ffbeea3c { margin-bottom: 25px; }
.tjis-i-72696ad4 { font-size: 22px; font-weight: 700; color: #0d2b5c; letter-spacing: 1px; padding-bottom: 15px; border-bottom: 2px solid #edf2f7; margin-bottom: 25px; }
.tjis-i-924535bc { color: #ff6b35; margin-right: 10px; }
.tjis-i-a466aa72 { max-height: 400px; overflow-y: auto; padding-right: 10px; }
.tjis-i-31f561d9 { background: rgba(255,255,255,0.7); border: 1px solid #edf2f7; transition: all 0.3s; box-shadow: 0 4px 15px rgba(0,0,0,0.03); margin-bottom: 20px; padding: 20px; border-radius: 12px; }
.tjis-i-f621a3d2 { background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%); color: white; padding: 15px; border-radius: 12px; text-align: center; min-width: 50px; box-shadow: 0 6px 15px rgba(255,107,53,0.3); flex-shrink: 0; margin-right: 20px; }
.tjis-i-be6c0fac { font-size: 26px; font-weight: 600; line-height: 1; margin-bottom: 2px; }
.tjis-i-31e2c832 { font-size: 13px; font-weight: 600; letter-spacing: 1px; }
.tjis-i-a7667d44 { flex-grow: 1; }
.tjis-i-cca9f80b { font-size: 16px; font-weight: 700; color: #0d2b5c; margin-bottom: 10px; }
.tjis-i-1329c4b6 { font-size: 13px; color: #64748b; line-height: 1.5; margin-bottom: 8px; }
.tjis-i-86ecc50d { font-size: 12px; color: #94a3b8; }
.tjis-i-c02c7d9c { margin-right: 5px; }
.tjis-i-cd2c1711 { color: #0d2b5c; font-size: 15px; font-weight: 600; text-decoration: none; display: inline-flex; align-items: center; padding: 12px 25px; background: rgba(255,107,53,0.1); border-radius: 50px; transition: all 0.3s; border: 1px solid rgba(255,107,53,0.2); }
.tjis-i-7f4ee4f3 { margin-right: 8px; }
.tjis-i-91898054 { margin-left: 8px; font-size: 12px; transition: transform 0.3s; }
.tjis-i-ed913dda { text-align: center; padding: 30px; }
.tjis-i-0d799684 { background: rgba(255,255,255,0.7); border-radius: 16px; padding: 30px; text-align: center; }
.tjis-i-7ef4589f { color: #cbd5e1; margin-bottom: 15px; }
.tjis-i-2cb95059 { color: #718096; font-size: 18px; font-weight: 600; margin-bottom: 10px; }
.tjis-i-1a29f0bc { color: #a0aec0; font-size: 15px; margin-bottom: 0; }
.tjis-i-452ed723 { font-size: 20px; font-weight: 700; color: #0d2b5c; letter-spacing: 1px; padding-bottom: 10px; border-bottom: 2px solid #edf2f7; }
.tjis-i-3ada1d21 { color: #00c9a7; }
.tjis-i-4aebb33e { width: 40px; height: 40px; border-radius: 50%; border: 2px solid #e2e8f0; background: white; cursor: pointer; transition: all 0.3s; box-shadow: 0 4px 10px rgba(0,0,0,0.05); }
.tjis-i-31f42355 { color: #718096; }
.tjis-i-d14b1546 { background: rgba(255,255,255,0.7); border: 1px solid #edf2f7; transition: all 0.3s; box-shadow: 0 4px 15px rgba(0,0,0,0.03); }
.tjis-i-52615a66 { background: linear-gradient(135deg, #00c9a7 0%, #00dcaf 100%); color: white; padding: 15px; border-radius: 12px; text-align: center; min-width: 70px; box-shadow: 0 6px 15px rgba(0,201,167,0.3); }
.tjis-i-93afdcb6 { font-size: 16px; font-weight: 700; color: #0d2b5c; }
.tjis-i-867b5993 { font-size: 13px; color: #64748b; line-height: 1.5; }
.tjis-i-c5e88c9f { color: #0d2b5c; font-size: 15px; font-weight: 600; text-decoration: none; display: inline-flex; align-items: center; padding: 12px 25px; background: rgba(0,201,167,0.1); border-radius: 50px; transition: all 0.3s; border: 1px solid rgba(0,201,167,0.2); }
.tjis-i-27d45757 { font-size: 12px; transition: transform 0.3s; }
.tjis-i-90300cdf { background: rgba(255,255,255,0.7); border-radius: 16px; padding: 30px; }
.tjis-i-657d4550 { color: #cbd5e1; }
.tjis-i-eaf85275 { color: #a0aec0; font-size: 15px; }
.tjis-i-60a8311a { background: rgba(255,255,255,0.7); border: 1px solid #edf2f7; transition: all 0.3s; box-shadow: 0 4px 15px rgba(0,0,0,0.03); margin-bottom: 16px; padding: 15px; border-radius: 12px; }
.tjis-i-54f6ae76 { background: linear-gradient(135deg, #8B4513 0%, #A0522D 100%); color: white; padding: 15px; border-radius: 12px; text-align: center; min-width: 70px; box-shadow: 0 6px 15px rgba(139,69,19,0.3); flex-shrink: 0; margin-right: 20px; }
.tjis-i-237cb5c0 { color: #0d2b5c; font-size: 15px; font-weight: 600; text-decoration: none; display: inline-flex; align-items: center; padding: 12px 25px; background: rgba(85,45,23,0.1); border-radius: 50px; transition: all 0.3s; border: 1px solid rgba(85,45,23,0.2); }
.tjis-i-5fe8a55f { background: #f8f9fa; border: 1px solid #dee2e6; border-radius: 8px; padding: 20px; text-align: center; min-width: 120px; min-height: 60px; display: flex; align-items: center; justify-content: center; }
.tjis-i-802f275e { color: #6c757d; font-weight: 500; }
.tjis-i-6b7ef4da { background: rgba(255,255,255,0.9); border-radius: 15px; padding: 30px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); max-width: 400px; margin: 0 auto; }
.tjis-i-972b7098 { font-size: 40px; color: #0d2b5c; margin-bottom: 15px; }
.tjis-i-78f9962a { color: #0d2b5c; margin-bottom: 10px; }
.tjis-i-459fa5f4 { width: 90px; }

/* Achievement image popup — unique classes (no conflict with magnific .popup-image) */
.achievement-image-popup {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99999;
  align-items: center;
  justify-content: center;
  padding: 16px;
  box-sizing: border-box;
  overflow-x: hidden;
  overflow-y: auto;
  pointer-events: none;
}

.achievement-image-popup.is-open {
  display: flex !important;
  pointer-events: auto;
}

.achievement-popup-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  cursor: pointer;
}

.achievement-image-popup .achievement-popup-box {
  position: relative;
  z-index: 2;
  width: fit-content;
  max-width: min(920px, 96vw);
  margin: 0 auto;
  flex-shrink: 0;
}

.achievement-image-popup .achievement-popup-slider {
  position: relative;
  width: 100%;
}

.achievement-image-popup .achievement-popup-slide {
  display: none;
}

.achievement-image-popup .achievement-popup-slide.active {
  display: block;
}

/* Card shrinks to image — portrait or landscape */
.achievement-image-popup .achievement-popup-img-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  width: auto;
  height: auto;
  line-height: 0;
}

.achievement-image-popup .achievement-popup-img {
  display: block;
  width: auto;
  height: auto;
  max-width: min(920px, 96vw);
  max-height: min(calc(100vh - 80px), calc(100dvh - 80px));
  object-fit: contain;
  object-position: center center;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.achievement-image-popup .achievement-popup-close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.95);
  color: #333;
  border: none;
  border-radius: 50%;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  z-index: 100000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.achievement-image-popup .achievement-popup-close:hover {
  background: #fff;
  transform: rotate(90deg);
}

.achievement-image-popup .achievement-popup-caption {
  padding: 16px 20px;
  background: #fff;
  border-radius: 0 0 12px 12px;
}

.achievement-image-popup .achievement-popup-caption-title {
  margin: 0 0 8px;
  color: #2c3e50;
  font-size: 1.25rem;
  font-weight: 700;
  text-align: center;
}

.achievement-image-popup .achievement-popup-caption-text {
  margin: 0;
  color: #555;
  font-size: 1rem;
  text-align: center;
  line-height: 1.5;
}

.achievement-image-popup .achievement-popup-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  z-index: 100000;
}

.achievement-image-popup .achievement-popup-nav.prev { left: -22px; }
.achievement-image-popup .achievement-popup-nav.next { right: -22px; }

.achievement-image-popup .achievement-popup-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
}

.achievement-image-popup .achievement-popup-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.25);
  cursor: pointer;
}

.achievement-image-popup .achievement-popup-dot.active {
  background: #052059;
}

@keyframes popupZoom {
  from { opacity: 0; transform: scale(0.92); }
  to { opacity: 1; transform: scale(1); }
}

.achievement-image-popup.is-open .achievement-popup-box {
  animation: popupZoom 0.4s ease-out;
}

@media (max-width: 768px) {
  .achievement-image-popup {
    padding: 10px;
  }

  .achievement-image-popup .achievement-popup-img {
    max-width: min(920px, 96vw);
    max-height: min(calc(100vh - 48px), calc(100dvh - 48px));
  }

  .achievement-image-popup .achievement-popup-nav {
    top: auto;
    bottom: 42px;
    transform: none;
  }

  .achievement-image-popup .achievement-popup-nav.prev {
    left: 12px;
    right: auto;
  }

  .achievement-image-popup .achievement-popup-nav.next {
    right: 56px;
    left: auto;
  }
}

/* Modal / hover utilities */
.is-scroll-locked { overflow: hidden !important; }
#lightboxModal.is-open, .lightbox-modal.is-open { display: block !important; }
#videoModal.is-open, .video-modal.is-open { display: flex !important; }
.achievement-image-popup.is-open { display: flex !important; }
#debug-mode-indicator.is-hidden { display: none !important; }
.social-popup.is-visible { display: flex !important; }
.tjis-hover-related-link:hover { background: #052059 !important; color: #fff !important; }
.tjis-hover-scale-img:hover { transform: scale(1.05); }
.tjis-hover-title-link:hover { color: #f99f3a !important; }
.tjis-hover-read-more:hover { background: #f99f3a !important; transform: translateX(5px); }
.tjis-hover-back-link:hover { background: #f99f3a !important; transform: translateX(-5px); }
.tjis-hover-featured-img:hover { transform: scale(1.02); }
.video-popup-modal { position: fixed; inset: 0; background: rgba(0,0,0,0.9); z-index: 9999; display: flex; align-items: center; justify-content: center; }
.video-popup-container { position: relative; width: 90%; max-width: 900px; height: 70vh; }
.video-popup-close { position: absolute; top: -40px; right: 0; background: transparent; border: none; color: white; font-size: 40px; cursor: pointer; }
.video-popup-iframe { width: 100%; height: 100%; border: none; border-radius: 10px; }
.news-detail-img { width: 100%; margin-bottom: 1.5rem; border-radius: 8px; }
.related-news-link { display: block; padding: 1rem; border-radius: 8px; background: #f8f9fa; color: #333; text-decoration: none; transition: all 0.3s; }
.related-news-link:hover { background: #052059; color: #fff; }

/* Homepage About section */
.about-home {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #fff 0%, #F3ECDC 100%);
  padding: 80px 0 48px;
}

.about-home__bg-shape {
  position: absolute;
  top: -120px;
  right: -80px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249, 159, 58, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.about-home__media {
  position: relative;
}

.about-home__badge {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background: rgba(5, 32, 89, 0.92);
  border-radius: 50px;
  box-shadow: 0 8px 24px rgba(5, 32, 89, 0.25);
}

.about-home__badge-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f99f3a;
  color: #052059;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.about-home__badge-text {
  color: #fff;
  font-family: var(--title-font);
  font-size: 14px;
  font-weight: 600;
}

.about-home__video-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(5, 32, 89, 0.15);
  border: 4px solid #fff;
}

.about-home__video-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.about-home__video-wrap:hover .about-home__video-img {
  transform: scale(1.05);
}

.about-home__video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 32, 89, 0.05) 0%, rgba(5, 32, 89, 0.35) 100%);
  pointer-events: none;
}

.about-home__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: #f99f3a;
  color: #052059;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: 0 10px 30px rgba(249, 159, 58, 0.45);
  transition: all 0.3s ease;
  z-index: 2;
}

.about-home__play i {
  margin-left: 4px;
}

.about-home__play:hover {
  background: #052059;
  color: #fff;
  transform: translate(-50%, -50%) scale(1.08);
}

.about-home__stat-chip {
  position: absolute;
  bottom: -18px;
  right: 28px;
  z-index: 3;
  background: #fff;
  border-radius: 16px;
  padding: 14px 22px;
  box-shadow: 0 12px 30px rgba(5, 32, 89, 0.12);
  text-align: center;
  line-height: 1.2;
}

.about-home__stat-chip strong {
  display: block;
  font-family: var(--title-font);
  font-size: 22px;
  color: #052059;
  font-weight: 800;
}

.about-home__stat-chip span {
  font-size: 13px;
  color: #565656;
  font-weight: 500;
}

.about-home__content {
  padding-left: 10px;
}

.about-home__eyebrow {
  display: inline-block;
  padding: 6px 16px;
  margin-bottom: 16px;
  background: rgba(249, 159, 58, 0.15);
  color: #052059;
  border: 1px solid rgba(249, 159, 58, 0.35);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.about-home__title {
  font-family: var(--title-font);
  font-size: 27px;
  line-height: 1.2;
  color: #2D2D2D;
  margin-bottom: 18px;
  font-weight: 700;
  white-space: nowrap;
}

.about-home__title-accent {
  color: #052059;
  display: inline;
  white-space: nowrap;
}

.about-home__lead {
  font-size: 17px;
  line-height: 1.75;
  color: #565656;
  margin-bottom: 28px;
  max-width: 540px;
}

.about-home__features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}

.about-home__feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 18px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(5, 32, 89, 0.08);
  box-shadow: 0 4px 18px rgba(5, 32, 89, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-home__feature:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(5, 32, 89, 0.1);
}

.about-home__feature-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, #052059 0%, #1a3a7a 100%);
  color: #f99f3a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.about-home__feature-title {
  font-family: var(--title-font);
  font-size: 16px;
  font-weight: 700;
  color: #052059;
  margin: 0 0 4px;
  white-space: nowrap;
}

.about-home__feature-text {
  font-size: 14px;
  line-height: 1.5;
  color: #565656;
  margin: 0;
}

.about-home__highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
  padding: 18px 20px;
  background: rgba(5, 32, 89, 0.04);
  border-radius: 16px;
  border-left: 4px solid #f99f3a;
}

.about-home__highlight {
  flex: 1;
  min-width: 90px;
  text-align: center;
  padding: 8px 12px;
}

.about-home__highlight-num {
  display: block;
  font-family: var(--title-font);
  font-size: 24px;
  font-weight: 800;
  color: #052059;
  line-height: 1.1;
}

.about-home__highlight-label {
  font-size: 12px;
  color: #565656;
  font-weight: 500;
}

.about-home__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

.about-home__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #052059;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: color 0.3s ease, gap 0.3s ease;
}

.about-home__link:hover {
  color: #f99f3a;
  gap: 12px;
}

/* Homepage — keep section headings on one line */
.title-area .sec-title,
.title-area .sec-title span,
.home-panel-title,
.about-home__title,
.about-home__feature-title,
.home-hub__title,
.home-facts__title {
  white-space: nowrap;
}

.title-area .sec-title span,
.title-area .sec-title .title-higlight {
  display: inline;
}

.title-area .sec-title {
  font-size: 27px;
}

.home-panel-title {
  font-size: clamp(18px, 2vw, 24px);
}

