@import url("https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,500..900&family=Manrope:wght@400..800&display=swap");

:root {
  --font-sans: "Manrope", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-display: "Fraunces", ui-serif, Georgia, serif;

  --bg: #0b1020;
  --bg-2: #0f1730;
  --surface: rgba(255, 255, 255, 0.08);
  --surface-2: rgba(255, 255, 255, 0.12);
  --card: rgba(255, 255, 255, 0.92);
  --card-2: rgba(255, 255, 255, 0.86);
  --border: rgba(15, 23, 42, 0.12);
  --border-strong: rgba(15, 23, 42, 0.18);

  --text: #0b1220;
  --muted: rgba(11, 18, 32, 0.68);
  --muted-2: rgba(11, 18, 32, 0.52);
  --on-dark: rgba(255, 255, 255, 0.92);
  --on-dark-muted: rgba(255, 255, 255, 0.72);

  --brand: #4f46e5;
  --brand-2: #06b6d4;
  --accent: #f59e0b;
  --success: #10b981;
  --danger: #ef4444;

  --shadow-sm: 0 1px 2px rgba(2, 6, 23, 0.08), 0 6px 18px rgba(2, 6, 23, 0.08);
  --shadow-md: 0 10px 30px rgba(2, 6, 23, 0.12), 0 2px 10px rgba(2, 6, 23, 0.08);
  --shadow-lg: 0 24px 60px rgba(2, 6, 23, 0.18);

  --r-sm: 12px;
  --r-md: 16px;
  --r-lg: 22px;
  --r-xl: 30px;

  --ring: 0 0 0 4px rgba(79, 70, 229, 0.18);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

body {
  font-family: var(--font-sans);
  color: var(--text);
  background:
    radial-gradient(1100px 680px at 12% -10%, rgba(79, 70, 229, 0.28), transparent 55%),
    radial-gradient(900px 520px at 86% 4%, rgba(6, 182, 212, 0.22), transparent 52%),
    radial-gradient(900px 600px at 52% 112%, rgba(245, 158, 11, 0.08), transparent 55%),
    linear-gradient(180deg, #f8fafc 0%, #eef2ff 100%);
  min-height: 100vh;
}

::selection {
  background: rgba(79, 70, 229, 0.22);
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: var(--brand);
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  max-width: 1160px;
}

.top-header {
  position: relative;
  padding: 14px 0;
  background: rgba(255, 255, 255, 0.7);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(14px);
}

.top-header::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(79, 70, 229, 0.9), rgba(6, 182, 212, 0.85), rgba(245, 158, 11, 0.65));
}

.school-logo {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 10px 22px rgba(2, 6, 23, 0.12);
  border: 2px solid rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.65);
}

.school-name {
  font-family: var(--font-display);
  font-weight: 750;
  letter-spacing: 0.2px;
  font-size: 20px;
  line-height: 1.1;
}

.school-tagline {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  color: var(--muted);
  font-size: 13px;
}

.contact-info {
  gap: 16px;
  flex-wrap: wrap;
}

.contact-item {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  color: rgba(11, 18, 32, 0.78);
  font-size: 13px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(15, 23, 42, 0.06);
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.contact-item i {
  opacity: 0.8;
}

.contact-item:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.85);
  border-color: rgba(79, 70, 229, 0.22);
}

.search-trigger {
  cursor: pointer;
}

.main-navbar {
  position: sticky;
  top: 0;
  z-index: 1050;
  background: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(16px);
}

.main-navbar .navbar-nav {
  align-items: center;
  gap: 4px;
}

.main-navbar .nav-link {
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 12px;
  padding: 12px 14px !important;
  border-radius: 999px;
  color: rgba(11, 18, 32, 0.78) !important;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.main-navbar .nav-link i {
  font-size: 14px;
  opacity: 0.9;
}

.main-navbar .nav-link:hover {
  background: rgba(79, 70, 229, 0.08);
  color: rgba(11, 18, 32, 0.92) !important;
  transform: translateY(-1px);
}

.main-navbar .nav-link.active {
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.14), rgba(6, 182, 212, 0.12));
  color: rgba(11, 18, 32, 0.96) !important;
  box-shadow: inset 0 0 0 1px rgba(79, 70, 229, 0.18);
}

.main-navbar .dropdown-menu {
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 16px;
  padding: 10px;
  box-shadow: var(--shadow-md);
  margin-top: 10px;
}

.main-navbar .dropdown-item {
  border-radius: 12px;
  padding: 10px 12px;
  font-weight: 650;
  font-size: 13px;
  color: rgba(11, 18, 32, 0.86);
  transition: background 160ms ease, transform 160ms ease;
}

.main-navbar .dropdown-item:hover {
  background: rgba(79, 70, 229, 0.08);
  transform: translateX(2px);
}

.navbar-toggler {
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.14);
  padding: 7px 10px;
}

.navbar-toggler:focus {
  box-shadow: var(--ring);
}

.main-content {
  min-height: 60vh;
  padding: 34px 0 54px;
}

.main-content .container > .row {
  gap: 26px 0;
}

.articles-section,
.principal-card,
.newsletter-section,
.ads-section,
.studentgraph-section,
.numberofstudents-section,
.contact-section,
.article-detail,
.no-gallery-content,
.no-student-content,
.no-teachers-content,
.no-staff-content,
.no-ppdb-content {
  background: var(--card);
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
}

.articles-section {
  padding: 26px;
}

.article-detail {
  padding: 28px 24px;
}

@media (min-width: 768px) {
  .article-detail {
    padding: 40px 36px;
  }
}

.section-title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 780;
  letter-spacing: 0.2px;
  margin-bottom: 18px;
}

.article-item {
  padding: 18px 14px;
  border-radius: var(--r-md);
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.72);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
  margin-bottom: 16px;
}

.article-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
  border-color: rgba(79, 70, 229, 0.22);
}

.article-image img {
  border-radius: 14px;
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.news-category-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 10px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.92);
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.95), rgba(6, 182, 212, 0.88));
  box-shadow: 0 12px 24px rgba(2, 6, 23, 0.16);
}

.article-content {
  padding-left: 18px;
}

.article-title {
  font-family: var(--font-display);
  font-weight: 760;
  margin-bottom: 10px;
  font-size: 18px;
  line-height: 1.25;
}

.article-excerpt {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
  margin-bottom: 12px;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 12px;
  color: var(--muted);
}

.article-meta .btn {
  margin-left: auto;
}

.principal-welcome {
  position: sticky;
  top: 90px;
}

.principal-card {
  padding: 22px;
  text-align: center;
}

.principal-image img {
  width: 136px;
  height: 136px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 34px rgba(2, 6, 23, 0.14);
}

.principal-name {
  font-family: var(--font-display);
  font-weight: 780;
  margin-top: 12px;
  margin-bottom: 6px;
}

.principal-title {
  color: var(--muted);
  margin-bottom: 12px;
}

.principal-message {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
  text-align: left;
}

.newsletter-section,
.ads-section,
.studentgraph-section,
.numberofstudents-section {
  padding: 20px;
  margin-top: 18px;
}

.newsletter-title,
.ads-title,
.studentgraph-title,
.numberofstudents-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 760;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.newsletter-form .input-group {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.12);
  box-shadow: 0 10px 22px rgba(2, 6, 23, 0.08);
}

.newsletter-form .form-control {
  border: 0;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.8);
}

.chart-container {
  position: relative;
  height: 240px;
  width: 100%;
}

.hero-section {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background:
    radial-gradient(900px 520px at 12% 10%, rgba(79, 70, 229, 0.32), transparent 58%),
    radial-gradient(900px 520px at 86% 10%, rgba(6, 182, 212, 0.26), transparent 60%),
    linear-gradient(180deg, rgba(11, 16, 32, 0.78), rgba(11, 16, 32, 0.18));
}

.hero-section .carousel,
.hero-section .carousel-item {
  height: 520px;
}

.hero-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(800px 420px at 20% 20%, rgba(79, 70, 229, 0.35), transparent 55%),
    radial-gradient(800px 420px at 86% 30%, rgba(6, 182, 212, 0.25), transparent 58%),
    linear-gradient(180deg, rgba(2, 6, 23, 0.66), rgba(2, 6, 23, 0.42));
  display: flex;
  align-items: center;
  padding: 64px 0;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 820;
  letter-spacing: 0.2px;
  font-size: 44px;
  line-height: 1.02;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 18px 46px rgba(2, 6, 23, 0.55);
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  line-height: 1.7;
}

.hero-section .carousel-indicators {
  bottom: 92px;
}

.hero-section .carousel-indicators button {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  margin: 0 5px;
  background-color: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.55);
  transition: transform 160ms ease, background 160ms ease;
}

.hero-section .carousel-indicators button.active {
  background: rgba(255, 255, 255, 0.85);
  transform: scale(1.15);
}

.quote-section {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 14px;
  z-index: 4;
}

.quote-content {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(14px);
}

.quote-btn {
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 800;
  letter-spacing: 0.06em;
  border: 0;
}

.quote-text {
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  line-height: 1.5;
}

.quote-text strong {
  color: rgba(255, 255, 255, 0.96);
}

.article-detail-header {
  background:
    radial-gradient(900px 520px at 12% 10%, rgba(79, 70, 229, 0.32), transparent 58%),
    radial-gradient(900px 520px at 86% 30%, rgba(6, 182, 212, 0.22), transparent 60%),
    linear-gradient(180deg, rgba(11, 16, 32, 0.92), rgba(11, 16, 32, 0.66));
  color: rgba(255, 255, 255, 0.92);
  padding: 36px 0 26px;
}

.article-title-main {
  font-family: var(--font-display);
  font-weight: 820;
  letter-spacing: 0.2px;
  margin: 6px 0 0;
}

.breadcrumb {
  margin-bottom: 8px;
}

.breadcrumb-item,
.breadcrumb-item a {
  color: rgba(255, 255, 255, 0.74);
}

.breadcrumb-item.active {
  color: rgba(255, 255, 255, 0.92);
}

.page-header {
  padding: 22px 22px;
  border-radius: var(--r-lg);
  background:
    radial-gradient(800px 520px at 12% 20%, rgba(79, 70, 229, 0.14), transparent 60%),
    radial-gradient(800px 520px at 86% 30%, rgba(6, 182, 212, 0.1), transparent 62%),
    rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(15, 23, 42, 0.1);
  box-shadow: var(--shadow-sm);
}

.page-title {
  font-family: var(--font-display);
  font-weight: 820;
  font-size: 32px;
  margin: 0 0 6px;
}

.page-subtitle {
  margin: 0;
  color: var(--muted);
}

.vision-card,
.mission-card {
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.vision-card .card-header,
.mission-card .card-header {
  border: 0;
  padding: 16px 20px;
  color: rgba(255, 255, 255, 0.92);
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.92), rgba(6, 182, 212, 0.86));
}

.vision-mission-section .section-title {
  font-family: var(--font-display);
  font-weight: 820;
  font-size: 18px;
  margin: 0;
  color: rgba(255, 255, 255, 0.92) !important;
  letter-spacing: 0.06em;
}

.vision-content,
.mission-content {
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 14px;
  padding: 18px;
  color: rgba(11, 18, 32, 0.78);
  line-height: 1.8;
}

.contact-section {
  padding: 26px;
}

.contact-section .section-title {
  margin-bottom: 16px;
}

.form-label {
  color: rgba(11, 18, 32, 0.78);
  font-weight: 700;
}

.form-control,
.form-select {
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.14);
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.84);
  transition: box-shadow 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.form-control:focus,
.form-select:focus {
  border-color: rgba(79, 70, 229, 0.4);
  box-shadow: var(--ring);
}

.btn {
  border-radius: 14px;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.btn:focus {
  box-shadow: var(--ring);
}

.btn:focus-visible {
  box-shadow: var(--ring);
}

.btn-primary,
.btn-primary:disabled {
  border: 0;
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.98), rgba(67, 56, 202, 0.98));
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(79, 70, 229, 0.22);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-outline-primary {
  border-color: rgba(79, 70, 229, 0.38);
  color: rgba(79, 70, 229, 0.92);
}

.btn-outline-primary:hover {
  background: rgba(79, 70, 229, 0.08);
  border-color: rgba(79, 70, 229, 0.5);
  color: rgba(79, 70, 229, 0.98);
  transform: translateY(-1px);
}

.btn-outline-success {
  border-color: rgba(16, 185, 129, 0.38);
  color: rgba(16, 185, 129, 0.92);
}

.btn-outline-success:hover {
  background: rgba(16, 185, 129, 0.1);
  border-color: rgba(16, 185, 129, 0.5);
  color: rgba(16, 185, 129, 0.98);
  transform: translateY(-1px);
}

.btn-outline-warning {
  border-color: rgba(245, 158, 11, 0.45);
  color: rgba(161, 98, 7, 0.92);
}

.btn-outline-warning:hover {
  background: rgba(245, 158, 11, 0.12);
  border-color: rgba(245, 158, 11, 0.58);
  color: rgba(146, 64, 14, 0.98);
  transform: translateY(-1px);
}

.btn-outline-danger {
  border-color: rgba(239, 68, 68, 0.42);
  color: rgba(239, 68, 68, 0.92);
}

.btn-outline-danger:hover {
  background: rgba(239, 68, 68, 0.1);
  border-color: rgba(239, 68, 68, 0.56);
  color: rgba(239, 68, 68, 0.98);
  transform: translateY(-1px);
}

.badge {
  border-radius: 999px;
  padding: 7px 10px;
  font-weight: 850;
  letter-spacing: 0.04em;
}

.alert {
  border-radius: var(--r-lg);
  border: 1px solid rgba(15, 23, 42, 0.12);
  box-shadow: var(--shadow-sm);
}

.alert-danger {
  background: rgba(239, 68, 68, 0.1);
  border-color: rgba(239, 68, 68, 0.22);
  color: rgba(127, 29, 29, 0.98);
}

.alert-success {
  background: rgba(16, 185, 129, 0.1);
  border-color: rgba(16, 185, 129, 0.22);
  color: rgba(6, 95, 70, 0.98);
}

.alert-warning {
  background: rgba(245, 158, 11, 0.14);
  border-color: rgba(245, 158, 11, 0.26);
  color: rgba(120, 53, 15, 0.98);
}

.btn-outline-secondary {
  border-color: rgba(15, 23, 42, 0.22);
  color: rgba(11, 18, 32, 0.78);
}

.btn-outline-secondary:hover {
  background: rgba(15, 23, 42, 0.06);
  border-color: rgba(79, 70, 229, 0.22);
  color: rgba(11, 18, 32, 0.9);
}

.btn-warning {
  border: 0;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.95), rgba(251, 191, 36, 0.9));
  color: rgba(11, 18, 32, 0.92);
}

.text-primary {
  color: var(--brand) !important;
}

.bg-primary {
  background-color: var(--brand) !important;
}

.border-primary {
  border-color: rgba(79, 70, 229, 0.55) !important;
}

.pagination-wrapper {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--r-lg);
  padding: 22px;
}

.pagination .page-link {
  border-radius: 12px !important;
  border: 1px solid rgba(15, 23, 42, 0.12) !important;
  color: rgba(11, 18, 32, 0.78) !important;
  padding: 10px 14px !important;
  margin: 0 3px !important;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.pagination .page-link:hover {
  background: rgba(79, 70, 229, 0.08) !important;
  border-color: rgba(79, 70, 229, 0.22) !important;
  transform: translateY(-1px);
}

.pagination .page-item.active .page-link {
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.98), rgba(67, 56, 202, 0.98)) !important;
  border-color: rgba(79, 70, 229, 0.2) !important;
  box-shadow: 0 14px 30px rgba(79, 70, 229, 0.22) !important;
  color: white !important;
}

.search-box {
  background: rgba(255, 255, 255, 0.78);
  border-radius: var(--r-lg);
  border: 1px solid rgba(15, 23, 42, 0.1);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.search-box .input-group {
  border: 0;
}

.search-box .form-control {
  border: 0;
  border-radius: 0;
  padding: 14px 16px;
  background: transparent;
}

.search-box .btn {
  border-radius: 0;
  padding: 14px 18px;
}

.teachers-content,
.staff-content,
.students-content {
  padding: 20px 0;
}

.teacher-card,
.staff-card,
.students-card,
.table-card {
  background: rgba(255, 255, 255, 0.92);
  border-radius: var(--r-lg);
  border: 1px solid rgba(15, 23, 42, 0.1);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.teacher-card:hover,
.staff-card:hover,
.table-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(79, 70, 229, 0.22);
}

.teacher-image,
.staff-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.teacher-image img,
.staff-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.teacher-card:hover .teacher-image img,
.staff-card:hover .staff-image img {
  transform: scale(1.06);
}

.teacher-overlay,
.staff-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.68), rgba(6, 182, 212, 0.5));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 200ms ease;
}

.teacher-card:hover .teacher-overlay,
.staff-card:hover .staff-overlay {
  opacity: 1;
}

.teacher-overlay-content i,
.staff-overlay-content i {
  font-size: 44px;
  color: rgba(255, 255, 255, 0.95);
}

.teacher-info,
.staff-info {
  padding: 20px 18px;
  text-align: center;
}

.teacher-name,
.staff-name {
  font-family: var(--font-display);
  font-weight: 800;
  margin-bottom: 6px;
  color: rgba(11, 18, 32, 0.92);
}

.teacher-position,
.staff-position {
  color: var(--muted);
  margin-bottom: 10px;
  font-weight: 650;
}

.nip-value,
.no-value {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  background: rgba(15, 23, 42, 0.05);
  padding: 3px 8px;
  border-radius: 10px;
}

.students-card {
  padding: 10px;
}

.student-img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 16px;
}

.table-card {
  padding: 18px;
}

.table-header h4 {
  font-family: var(--font-display);
  font-weight: 820;
  margin: 0 0 12px;
}

.table {
  margin-bottom: 0;
}

.table thead th {
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(11, 18, 32, 0.72);
  border-bottom: 1px solid rgba(15, 23, 42, 0.12);
}

.table tbody td {
  vertical-align: middle;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.dataTables_wrapper .dataTables_filter input,
.dataTables_wrapper .dataTables_length select {
  border-radius: 14px !important;
  border: 1px solid rgba(15, 23, 42, 0.14) !important;
  padding: 10px 12px !important;
  background: rgba(255, 255, 255, 0.84) !important;
  box-shadow: none !important;
}

.dataTables_wrapper .dataTables_filter input:focus,
.dataTables_wrapper .dataTables_length select:focus {
  border-color: rgba(79, 70, 229, 0.4) !important;
  box-shadow: var(--ring) !important;
}

.dataTables_wrapper .dataTables_info,
.dataTables_wrapper .dataTables_length label,
.dataTables_wrapper .dataTables_filter label {
  color: rgba(11, 18, 32, 0.68) !important;
  font-weight: 700;
}

.wizard-container input::placeholder,
.wizard-container textarea::placeholder {
  text-transform: none !important;
}

.wizard-container input[type="number"],
.wizard-container input[type="date"],
.wizard-container input[type="file"] {
  text-transform: none !important;
}

.form-control.is-invalid,
.form-select.is-invalid {
  border-color: rgba(239, 68, 68, 0.8) !important;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23ef4444'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23ef4444' stroke='none'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
  padding-right: calc(1.5em + 0.75rem);
}

.form-control.is-invalid:focus,
.form-select.is-invalid:focus {
  border-color: rgba(239, 68, 68, 0.9) !important;
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.16) !important;
}

.wizard-container {
  background: rgba(255, 255, 255, 0.92);
  border-radius: var(--r-lg);
  border: 1px solid rgba(15, 23, 42, 0.1);
  box-shadow: var(--shadow-sm);
  padding: 22px;
  margin-bottom: 24px;
}

.wizard-progress {
  display: flex;
  justify-content: space-between;
  margin-bottom: 26px;
  position: relative;
  flex-wrap: wrap;
  gap: 10px;
}

.wizard-progress::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(15, 23, 42, 0.1);
  z-index: 0;
}

.wizard-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
  flex: 1;
  min-width: 110px;
}

.wizard-step .step-number {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.06);
  color: rgba(11, 18, 32, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  margin-bottom: 8px;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.wizard-step.active .step-number {
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.98), rgba(67, 56, 202, 0.98));
  color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 0 0 5px rgba(79, 70, 229, 0.14);
}

.wizard-step.completed .step-number {
  background: rgba(16, 185, 129, 0.92);
  color: rgba(255, 255, 255, 0.95);
}

.wizard-step .step-label {
  font-size: 12px;
  font-weight: 700;
  color: rgba(11, 18, 32, 0.58);
  text-align: center;
  line-height: 1.3;
}

.wizard-step.active .step-label {
  color: rgba(79, 70, 229, 0.92);
}

.wizard-content {
  display: none;
}

.wizard-content.active {
  display: block;
  animation: ssFadeIn 220ms ease;
}

@keyframes ssFadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.form-card {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--r-lg);
  padding: 18px;
  margin-bottom: 16px;
}

.form-card-title {
  font-family: var(--font-display);
  font-weight: 820;
  color: rgba(11, 18, 32, 0.92);
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  display: flex;
  align-items: center;
  gap: 10px;
}

.form-card-title i {
  color: rgba(79, 70, 229, 0.92);
}

.wizard-buttons {
  display: flex;
  justify-content: space-between;
  margin-top: 18px;
  gap: 12px;
}

.wizard-buttons .btn {
  padding: 12px 18px;
}

@media (max-width: 768px) {
  .wizard-step {
    flex: 0 0 calc(50% - 6px);
  }

  .wizard-progress::before {
    display: none;
  }

  .wizard-buttons {
    flex-direction: column;
  }

  .wizard-buttons .btn {
    width: 100%;
  }
}

.ppdb-success .success-card {
  padding: 38px 26px;
  text-align: center;
}

.ppdb-success .success-icon {
  font-size: 72px;
  color: rgba(16, 185, 129, 0.92);
  margin-bottom: 14px;
  animation: ppdbScaleIn 420ms ease;
}

@keyframes ppdbScaleIn {
  from {
    transform: scale(0.92);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.ppdb-success .success-title {
  font-family: var(--font-display);
  font-weight: 860;
  margin-bottom: 10px;
}

.ppdb-success .success-message {
  color: rgba(11, 18, 32, 0.72);
  line-height: 1.7;
  margin-bottom: 24px;
}

.ppdb-success .registration-number-box {
  border-radius: var(--r-lg);
  padding: 22px;
  margin: 22px 0;
  color: rgba(255, 255, 255, 0.92);
  background:
    radial-gradient(900px 520px at 12% 10%, rgba(79, 70, 229, 0.32), transparent 60%),
    radial-gradient(900px 520px at 86% 30%, rgba(6, 182, 212, 0.2), transparent 62%),
    linear-gradient(180deg, rgba(11, 16, 32, 0.92), rgba(11, 16, 32, 0.72));
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow-sm);
}

.ppdb-success .reg-number-label {
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.74);
  margin-bottom: 10px;
}

.ppdb-success .reg-number {
  font-size: 34px;
  font-weight: 900;
  letter-spacing: 0.12em;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  margin-bottom: 10px;
}

.ppdb-success .reg-number-note {
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
}

.ppdb-success .account-credential-box {
  border-radius: var(--r-lg);
  padding: 22px;
  color: rgba(255, 255, 255, 0.92);
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.85), rgba(6, 182, 212, 0.55));
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 18px 42px rgba(2, 6, 23, 0.18);
}

.ppdb-success .credential-title {
  font-family: var(--font-display);
  font-weight: 850;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.ppdb-success .credential-item {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 14px;
  backdrop-filter: blur(10px);
}

.ppdb-success .credential-label {
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.ppdb-success .credential-value {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.12em;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  user-select: all;
}

.ppdb-password-input {
  width: 140px;
  font-size: 24px;
  letter-spacing: 0.14em;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  outline: none;
  background: transparent;
  cursor: default;
  margin: 0;
  padding: 0;
}

.ppdb-password-toggle {
  outline: none !important;
  box-shadow: none !important;
}

.ppdb-password-toggle #toggle-icon {
  font-size: 18px;
  opacity: 0.86;
  transition: opacity 160ms ease;
}

.ppdb-success .payment-instruction-card {
  padding: 22px;
  text-align: center;
}

.ppdb-success .instruction-title {
  font-family: var(--font-display);
  font-weight: 860;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.ppdb-success .amount-display {
  background: rgba(79, 70, 229, 0.06);
  border: 1px dashed rgba(79, 70, 229, 0.35);
  padding: 16px 18px;
  border-radius: 16px;
  display: inline-block;
}

.ppdb-success .amount-value {
  font-size: 30px;
  font-weight: 900;
  color: rgba(79, 70, 229, 0.92);
}

.ppdb-success .uploaded-proof-preview img {
  max-height: 300px;
}

.ppdb-success .bank-card {
  border-radius: var(--r-lg);
  padding: 18px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-sm);
}

.ppdb-success .bank-name-badge {
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.98), rgba(67, 56, 202, 0.98));
  color: rgba(255, 255, 255, 0.95);
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ppdb-success .bank-account-label {
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(11, 18, 32, 0.58);
  margin-bottom: 6px;
}

.ppdb-success .bank-account-number {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 0.12em;
  color: rgba(11, 18, 32, 0.92);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  display: flex;
  align-items: center;
  gap: 10px;
}

.ppdb-success .bank-account-number-compact {
  font-size: 22px;
}

.ppdb-success .copy-button {
  border: 0;
  background: transparent;
  color: rgba(79, 70, 229, 0.92);
  cursor: pointer;
  transition: transform 160ms ease;
}

.ppdb-success .copy-button:hover {
  transform: scale(1.12);
}

.ppdb-success .file-upload-wrapper {
  border: 2px dashed rgba(15, 23, 42, 0.16) !important;
  background: rgba(255, 255, 255, 0.92) !important;
  border-radius: var(--r-lg);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.ppdb-success .file-upload-wrapper:hover {
  border-color: rgba(79, 70, 229, 0.32) !important;
  background: rgba(79, 70, 229, 0.04) !important;
  transform: translateY(-2px);
}

.btn-loading {
  position: relative;
  color: transparent !important;
  pointer-events: none;
}

.btn-loading::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  top: 50%;
  left: 50%;
  margin-top: -10px;
  margin-left: -10px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: rgba(255, 255, 255, 0.95);
  animation: ppdbSpin 0.8s linear infinite;
}

@keyframes ppdbSpin {
  to {
    transform: rotate(360deg);
  }
}

.ppdb-success .registration-info,
.ppdb-success .next-steps {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: var(--r-lg);
  padding: 24px;
  text-align: left;
  box-shadow: var(--shadow-sm);
}

.ppdb-success .info-item {
  margin-bottom: 16px;
  padding: 12px;
  background: rgba(15, 23, 42, 0.03);
  border-radius: 12px;
}

.ppdb-success .info-label {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--primary);
  margin-bottom: 4px;
  opacity: 0.8;
}

.ppdb-success .info-value {
  font-size: 16px;
  font-weight: 750;
  color: #1e293b;
}

.ppdb-success .steps-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 16px;
}

.ppdb-success .step-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(15, 23, 42, 0.05);
}

.ppdb-success .step-number {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: rgba(79, 70, 229, 0.1);
  color: #1e293b;
  border: 1px solid rgba(79, 70, 229, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 850;
  font-size: 16px;
  box-shadow: 0 4px 10px rgba(79, 70, 229, 0.1);
}

.ppdb-success .step-title {
  font-weight: 780;
  color: #1e293b;
  margin-bottom: 2px;
}

.ppdb-success .step-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

.ppdb-success .important-notes {
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.25);
  border-radius: var(--r-lg);
  padding: 24px;
  text-align: left;
}

.ppdb-success .action-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
}

@media (max-width: 768px) {
  .ppdb-success .success-card {
    padding: 26px 18px;
  }

  .ppdb-success .reg-number {
    font-size: 26px;
  }

  .ppdb-success .action-buttons {
    flex-direction: column;
  }

  .ppdb-success .action-buttons .btn {
    width: 100%;
  }
}

.footer-section {
  margin-top: 48px;
  padding: 44px 0 0;
  color: rgba(255, 255, 255, 0.9);
  background:
    radial-gradient(900px 520px at 12% 20%, rgba(79, 70, 229, 0.34), transparent 60%),
    radial-gradient(900px 520px at 86% 30%, rgba(6, 182, 212, 0.24), transparent 62%),
    linear-gradient(180deg, rgba(11, 16, 32, 0.96), rgba(11, 16, 32, 0.92));
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-title {
  font-family: var(--font-display);
  font-weight: 820;
  letter-spacing: 0.2px;
  margin-bottom: 14px;
}

.footer-description {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.65;
}

.footer-content .contact-item {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.86);
}

.footer-content .contact-item:hover {
  border-color: rgba(6, 182, 212, 0.35);
  transform: translateY(-1px);
}

.tag-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.tag-item:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(6, 182, 212, 0.32);
  transform: translateY(-2px);
  color: rgba(255, 255, 255, 0.92);
}

.social-link {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  color: rgba(255, 255, 255, 0.86);
  padding: 8px 10px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.social-link:hover {
  transform: translateX(2px);
  border-color: rgba(79, 70, 229, 0.32);
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.92);
}

.footer-bottom {
  margin-top: 26px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(2, 6, 23, 0.24);
}

#searchModal .modal-content {
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

#searchModal .modal-header {
  border: 0;
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.95), rgba(6, 182, 212, 0.82));
  color: rgba(255, 255, 255, 0.95);
}

#searchModal .btn-close {
  filter: invert(1);
}

#searchLoading {
  display: none;
}

.no-search-results {
  display: none;
}

.ss-hide {
  display: none !important;
}

.ss-w-80 {
  width: 80px !important;
}

.ss-h-80 {
  height: 80px !important;
}

.ss-minw-80 {
  min-width: 80px !important;
}

.ss-w-60 {
  width: 60px !important;
}

.ss-h-60 {
  height: 60px !important;
}

.ss-minw-60 {
  min-width: 60px !important;
}

.ss-w-45 {
  width: 45px !important;
}

.ss-h-45 {
  height: 45px !important;
}

.ss-gradient-brand {
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.98), rgba(67, 56, 202, 0.98)) !important;
}

.ss-glass-inverse {
  background: rgba(255, 255, 255, 0.18) !important;
}

.ss-badge-success {
  background: linear-gradient(90deg, rgba(16, 185, 129, 0.95), rgba(5, 150, 105, 0.95)) !important;
  color: rgba(255, 255, 255, 0.95) !important;
}

.ss-badge-danger {
  background: linear-gradient(90deg, rgba(239, 68, 68, 0.95), rgba(220, 38, 38, 0.95)) !important;
  color: rgba(255, 255, 255, 0.95) !important;
}

.ss-progress-slim {
  height: 8px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(15, 23, 42, 0.08);
}

.ss-progress-slim .progress-bar {
  border-radius: 999px;
}

.transition-all {
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.hover-translate-y:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md) !important;
}

.ppdb-selection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 22px;
  margin-bottom: 24px;
}

.ppdb-selection-card {
  border: 1px solid rgba(15, 23, 42, 0.1);
}

.card-header-premium {
  min-height: 120px;
  display: flex;
  align-items: flex-end;
}

.modal-header-premium {
  border: 0;
}

.major-selection-premium {
  border: 1px solid rgba(15, 23, 42, 0.1);
}

.major-icon-box {
  box-shadow: 0 10px 20px rgba(79, 70, 229, 0.12);
}

.info-highlight-box {
  border: 1px solid rgba(15, 23, 42, 0.1);
}

.bg-success-soft {
  background-color: rgba(16, 185, 129, 0.12) !important;
}

.bg-danger-soft {
  background-color: rgba(239, 68, 68, 0.12) !important;
}

.ppdb-accordion-item {
  border-radius: var(--r-lg) !important;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.ppdb-accordion-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md) !important;
}

.accordion-button {
  background-color: rgba(255, 255, 255, 0.92) !important;
  box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
  color: inherit;
  border-bottom: 1px solid rgba(15, 23, 42, 0.1);
}

.accordion-button::after {
  background-size: 1.1rem;
  transition: transform 180ms ease;
}

.accordion-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(79, 70, 229, 0.08);
  border: 1px solid rgba(79, 70, 229, 0.14);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.accordion-button:not(.collapsed) .accordion-icon {
  background: rgba(79, 70, 229, 0.16);
  border-color: rgba(79, 70, 229, 0.22);
}

.ppdb-path-card {
  border: 1px solid rgba(15, 23, 42, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.ppdb-path-card:hover {
  border-color: rgba(79, 70, 229, 0.18);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.ppdb-path-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
}

.path-card-body {
  padding: 22px;
}

.path-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(16, 185, 129, 0.9);
  margin-bottom: 12px;
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.95);
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.14);
}

.path-name {
  font-family: var(--font-display);
  font-weight: 820;
  font-size: 20px;
  line-height: 1.15;
  margin-bottom: 10px;
}

.path-description {
  color: rgba(11, 18, 32, 0.68);
  font-size: 14px;
  line-height: 1.7;
}

.path-card-footer {
  padding: 0 22px 22px;
}

.schedule-timeline .timeline-content {
  transition: transform 180ms ease;
}

.schedule-timeline .timeline-content:hover {
  transform: translateY(-2px);
}

.info-content {
  color: rgba(11, 18, 32, 0.78);
  line-height: 1.7;
}

.info-content p {
  margin-bottom: 10px;
}

.accordion-body::-webkit-scrollbar {
  width: 6px;
}

.accordion-body::-webkit-scrollbar-thumb {
  background: rgba(79, 70, 229, 0.55);
  border-radius: 999px;
}

.alumni-card {
  border-radius: var(--r-lg) !important;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.alumni-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(2, 6, 23, 0.1) !important;
}

.alumni-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 32px;
  color: rgba(255, 255, 255, 0.95);
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.95), rgba(6, 182, 212, 0.85));
  box-shadow: 0 14px 28px rgba(79, 70, 229, 0.22);
}

.alumni-hero {
  padding: 38px 20px;
  margin-bottom: 32px;
  border-radius: var(--r-xl);
  color: rgba(255, 255, 255, 0.95);
  background:
    radial-gradient(900px 520px at 12% 10%, rgba(79, 70, 229, 0.36), transparent 58%),
    radial-gradient(900px 520px at 86% 30%, rgba(6, 182, 212, 0.24), transparent 60%),
    linear-gradient(180deg, rgba(11, 16, 32, 0.92), rgba(11, 16, 32, 0.72));
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.alumni-hero .school-name {
  font-size: 34px;
  color: rgba(255, 255, 255, 0.95);
}

.alumni-hero .school-slogan {
  color: rgba(255, 255, 255, 0.78);
}

.alumni-avatar-large {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  font-size: 40px;
  font-weight: 900;
  box-shadow: 0 18px 40px rgba(2, 6, 23, 0.22);
}

.icon-circle {
  width: 40px;
  height: 40px;
}

.ss-icon-80 {
  width: 80px !important;
  height: 80px !important;
  font-size: 30px !important;
}

.profile-header .btn.btn-light {
  border-radius: 999px;
  font-weight: 800;
}

.card:hover {
  transform: translateY(-3px);
}

@media (max-width: 991.98px) {
  .principal-welcome {
    position: static;
  }

  .main-navbar .navbar-nav {
    align-items: stretch;
    padding: 10px 0;
  }

  .main-navbar .nav-link {
    border-radius: 14px;
  }
}

@media (max-width: 767.98px) {
  .hero-section {
    min-height: 420px;
  }

  .hero-section .carousel,
  .hero-section .carousel-item {
    height: 420px;
  }

  .hero-title {
    font-size: 34px;
  }

  .quote-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .article-content {
    padding-left: 0;
    margin-top: 14px;
  }

  .articles-section {
    padding: 18px;
  }
}

.ss-clickable {
  cursor: pointer;
}

.ss-maxw-200 {
  max-width: 200px !important;
}

.ss-maxw-600 {
  max-width: 600px !important;
}

.ss-icon-100 {
  width: 100px !important;
  height: 100px !important;
  font-size: 40px !important;
}

.ppdb-file-preview {
  max-width: 200px;
}

.announcement-item {
  padding: 18px 0;
  border-bottom: 1px solid rgba(15, 23, 42, 0.1);
}

.announcement-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
  margin-bottom: 0;
}

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

.announcement-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.94);
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.95), rgba(6, 182, 212, 0.86));
  box-shadow: 0 14px 28px rgba(79, 70, 229, 0.18);
  flex-shrink: 0;
}

.announcement-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.announcement-date {
  font-weight: 800;
  letter-spacing: 0.02em;
}

.announcement-author {
  color: rgba(11, 18, 32, 0.62);
  font-size: 13px;
}

.announcement-content {
  padding-left: 60px;
}

.announcement-description {
  color: rgba(11, 18, 32, 0.78);
  line-height: 1.7;
}

.announcement-description p {
  margin-bottom: 10px;
}

.announcement-classes {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(79, 70, 229, 0.06);
  border: 1px solid rgba(79, 70, 229, 0.16);
}

.activity-tabs-wrapper {
  padding: 16px;
  border-radius: var(--r-lg);
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow-sm);
}

.activity-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.activity-tab {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.78);
  color: rgba(11, 18, 32, 0.78);
  font-weight: 850;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.activity-tab:hover {
  transform: translateY(-1px);
  border-color: rgba(79, 70, 229, 0.22);
  box-shadow: var(--shadow-sm);
}

.activity-tab.active {
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.96), rgba(6, 182, 212, 0.86));
  border-color: transparent;
  color: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 28px rgba(79, 70, 229, 0.18);
}

.activity-item {
  padding: 22px;
  border-radius: var(--r-lg);
  border: 1px solid rgba(15, 23, 42, 0.06);
  background: white;
  margin-bottom: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
  transition: all 0.3s ease;
}

.activity-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
  margin-bottom: 0;
}

.activity-header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 12px;
}

.activity-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.94);
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.95), rgba(5, 150, 105, 0.95));
  box-shadow: 0 14px 28px rgba(16, 185, 129, 0.18);
  flex-shrink: 0;
}

.activity-title {
  font-family: var(--font-display);
  font-weight: 780;
  margin-bottom: 10px;
}

.activity-type-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(16, 185, 129, 0.92);
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.22);
}

.activity-content {
  padding-left: 60px;
}

.activity-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 12px;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(11, 18, 32, 0.62);
  font-size: 14px;
}

.meta-item i {
  width: 16px;
  color: rgba(79, 70, 229, 0.92);
}

.activity-excerpt {
  color: rgba(11, 18, 32, 0.78);
  line-height: 1.7;
  margin-bottom: 12px;
}

.category-tabs {
  padding: 14px;
  border-radius: var(--r-lg);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(15, 23, 42, 0.1);
  box-shadow: var(--shadow-sm);
}

.category-tabs .nav-pills .nav-link {
  background: rgba(255, 255, 255, 0.78);
  color: rgba(11, 18, 32, 0.78);
  border: 1px solid rgba(15, 23, 42, 0.12);
  margin: 6px 6px;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 850;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.category-tabs .nav-pills .nav-link:hover {
  transform: translateY(-1px);
  border-color: rgba(79, 70, 229, 0.22);
  box-shadow: var(--shadow-sm);
}

.category-tabs .nav-pills .nav-link.active {
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.96), rgba(6, 182, 212, 0.86));
  border-color: transparent;
  color: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 28px rgba(79, 70, 229, 0.18);
}

.gallery-clickable {
  cursor: pointer;
}

.gallery-item {
  height: 100%;
}

.gallery-image {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-lg);
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow-sm);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.gallery-image:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(79, 70, 229, 0.22);
}

.gallery-image img,
.video-thumbnail {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  transition: transform 220ms ease;
}

.gallery-image:hover img,
.gallery-image:hover .video-thumbnail {
  transform: scale(1.04);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 0%, rgba(2, 6, 23, 0.72) 100%);
  opacity: 0;
  transition: opacity 180ms ease;
  pointer-events: none;
}

.gallery-image:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay-content {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  color: rgba(255, 255, 255, 0.92);
}

.gallery-overlay-content i {
  font-size: 18px;
  margin-bottom: 6px;
  display: block;
}

.gallery-date {
  margin: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.78);
}

.video-placeholder {
  width: 100%;
  height: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.94);
  font-size: 16px;
  font-weight: 850;
  background:
    radial-gradient(600px 320px at 20% 20%, rgba(79, 70, 229, 0.42), transparent 58%),
    radial-gradient(600px 320px at 80% 40%, rgba(6, 182, 212, 0.32), transparent 60%),
    linear-gradient(180deg, rgba(11, 16, 32, 0.92), rgba(11, 16, 32, 0.72));
}

.video-placeholder i {
  font-size: 44px;
  margin-bottom: 10px;
  opacity: 0.9;
}

.video-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 46px;
  color: rgba(255, 255, 255, 0.94);
  opacity: 0.9;
  transition: transform 180ms ease, opacity 180ms ease;
  text-shadow: 0 10px 20px rgba(2, 6, 23, 0.45);
}

.gallery-image:hover .video-play-icon {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.06);
}

.image-overlay {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(2, 6, 23, 0.72);
  backdrop-filter: blur(10px);
  z-index: 2000;
  opacity: 0;
  transition: opacity 180ms ease;
}

.image-overlay.active {
  opacity: 1;
}

.image-overlay .overlay-content {
  width: min(980px, 100%);
  position: relative;
}

.image-overlay #overlayImage {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  background: rgba(255, 255, 255, 0.08);
}

.image-overlay .close-btn {
  position: absolute;
  top: -12px;
  right: -12px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  cursor: pointer;
}

.image-overlay .overlay-controls {
  display: flex;
  justify-content: center;
  margin-top: 12px;
}

.image-overlay .overlay-btn {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 850;
  letter-spacing: 0.06em;
  font-size: 12px;
  text-transform: uppercase;
}

.search-results-container {
  max-height: 420px;
  overflow-y: auto;
  padding-right: 6px;
}

.search-section-title {
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 12px;
  padding-bottom: 10px;
  margin-bottom: 14px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.1);
}

.search-result-thumb {
  width: 80px;
  height: 60px;
  object-fit: cover;
  border-radius: 14px;
}

.result-item {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(15, 23, 42, 0.1) !important;
  border-radius: var(--r-md);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.result-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
  border-color: rgba(79, 70, 229, 0.22) !important;
}

.result-title a {
  font-weight: 850;
  color: rgba(11, 18, 32, 0.9);
}

.result-title a:hover {
  color: rgba(79, 70, 229, 0.92);
}

.result-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.under-development-content {
  padding: 54px 0;
  min-height: 60vh;
}

.under-development-card {
  border-radius: var(--r-xl);
  padding: 44px 26px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(15, 23, 42, 0.12);
  box-shadow: var(--shadow-md);
}

@keyframes ss-bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-2px);
  }
}

.article-image {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-md);
  margin-bottom: 0;
  box-shadow: var(--shadow-sm);
  transition: transform 200ms ease;
}

.article-image img {
  transition: transform 400ms ease;
}

.article-image:hover img {
  transform: scale(1.04);
}

.category-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 4px 10px;
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.92), rgba(6, 182, 212, 0.88));
  backdrop-filter: blur(8px);
  color: white;
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(2, 6, 23, 0.16);
  z-index: 10;
  border: 1px solid rgba(255, 255, 255, 0.25);
  opacity: 0;
  transform: translateY(-5px);
  transition: opacity 300ms ease, transform 300ms ease;
  pointer-events: none;
}

.article-item:hover .category-badge {
  opacity: 1;
  transform: translateY(0);
}

.development-icon {
  animation: ss-bounce 2s infinite;
}

.development-title {
  font-family: var(--font-display);
  font-weight: 820;
}

.development-description {
  color: rgba(11, 18, 32, 0.68);
  line-height: 1.7;
}

.under-development-content .info-item {
  padding: 18px;
  border-radius: var(--r-lg);
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(15, 23, 42, 0.1);
  height: 100%;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.under-development-content .info-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
  border-color: rgba(79, 70, 229, 0.18);
}

.article-detail-content .profile-header {
  padding: 36px 22px;
  border-radius: var(--r-xl);
  color: rgba(255, 255, 255, 0.94);
  background:
    radial-gradient(900px 520px at 10% 10%, rgba(79, 70, 229, 0.38), transparent 60%),
    radial-gradient(900px 520px at 86% 26%, rgba(6, 182, 212, 0.26), transparent 62%),
    linear-gradient(180deg, rgba(11, 16, 32, 0.94), rgba(11, 16, 32, 0.72));
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

.article-detail-content .school-logo-large img {
  max-width: 200px;
  border-radius: var(--r-lg);
  background: rgba(255, 255, 255, 0.92);
  padding: 14px;
  box-shadow: 0 18px 40px rgba(2, 6, 23, 0.2);
}

.article-detail-content .profile-header .school-name {
  color: rgba(255, 255, 255, 0.94);
}

.article-detail-content .school-slogan {
  color: rgba(255, 255, 255, 0.78);
}

.article-detail-content .school-details .detail-item {
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.86);
}

.profile-section {
  margin-top: 26px;
}

.profile-section .section-content {
  padding: 0;
}

.principal-info-card {
  background: white;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--r-lg);
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.principal-photo img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border: 3px solid rgba(79, 70, 229, 0.35);
}

.history-content {
  background: white;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--r-lg);
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  line-height: 1.8;
  color: rgba(11, 18, 32, 0.8);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}

.article-detail-content .contact-grid .contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: white;
  border-radius: var(--r-lg);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.article-detail-content .contact-grid .contact-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.article-detail-content .contact-grid .contact-item.address-item {
  grid-column: 1 / -1;
}

.article-detail-content .contact-grid .contact-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(79, 70, 229, 0.12);
  border: 1px solid rgba(79, 70, 229, 0.18);
  color: rgba(79, 70, 229, 0.92);
  flex-shrink: 0;
}

.article-detail-content .contact-grid .contact-details h5 {
  font-family: var(--font-display);
  font-weight: 780;
  margin-bottom: 4px;
}

.article-detail-content .contact-grid .contact-details p {
  margin: 0;
  color: rgba(11, 18, 32, 0.68);
  line-height: 1.6;
}

.rkt-table thead th {
  text-align: center;
  vertical-align: middle;
  font-weight: 850;
  background: rgba(79, 70, 229, 0.06);
}

.rkt-table tbody td {
  vertical-align: top;
}

.rkt-table thead th:nth-child(1) {
  width: 60px;
}

.rkt-table thead th:nth-child(2) {
  min-width: 220px;
}

.rkt-table thead th:nth-child(3) {
  min-width: 320px;
}

.rkt-table thead th:nth-child(4) {
  min-width: 220px;
}

.rkt-table thead th:nth-child(5) {
  min-width: 180px;
}

.rkt-table thead th:nth-child(6) {
  min-width: 160px;
}

.rkt-table thead th:nth-child(7) {
  min-width: 120px;
}

.rkt-table thead th:nth-child(8) {
  min-width: 140px;
}

.rkt-table thead th:nth-child(9) {
  min-width: 120px;
}

.rkt-table thead th:nth-child(10) {
  min-width: 120px;
}

.rkt-standar-row td {
  background: rgba(6, 182, 212, 0.08);
}

.alumni-detail-hero {
  border-radius: var(--r-xl);
  overflow: hidden;
  color: rgba(255, 255, 255, 0.94);
  background:
    radial-gradient(900px 520px at 10% 10%, rgba(79, 70, 229, 0.38), transparent 60%),
    radial-gradient(900px 520px at 86% 26%, rgba(6, 182, 212, 0.26), transparent 62%),
    linear-gradient(180deg, rgba(11, 16, 32, 0.94), rgba(11, 16, 32, 0.72));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-md);
}

.alumni-detail-back {
  top: 20px;
  left: 20px;
  border-radius: 999px;
  font-weight: 850;
}

.alumni-detail-message {
  line-height: 1.6;
}

@media (max-width: 768px) {
  .announcement-content,
  .activity-content {
    padding-left: 0;
    margin-top: 10px;
  }

  .video-thumbnail,
  .video-placeholder {
    height: 200px;
  }

  .video-play-icon {
    font-size: 38px;
  }

  .article-detail-content .profile-header {
    padding: 26px 18px;
  }
}

/* Profile Page Enhanced Styles */
.profile-section {
  padding: 25px;
  margin-bottom: 40px;
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(15, 23, 42, 0.04);
  transition: transform 0.3s ease;
}

.profile-section:hover {
  background: rgba(255, 255, 255, 0.6);
}

.principal-info-card {
  padding: 30px;
  border-radius: var(--r-md);
  background: white;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.principal-info-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.principal-photo img {
  border: 4px solid rgba(79, 70, 229, 0.1);
  padding: 5px;
  transition: transform 0.3s ease;
}

.principal-info-card:hover .principal-photo img {
  transform: scale(1.05);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.contact-grid .contact-item {
  padding: 24px;
  border-radius: var(--r-md);
  background: white;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: flex-start;
  gap: 18px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.contact-grid .contact-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(79, 70, 229, 0.2);
}

.contact-grid .contact-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: rgba(79, 70, 229, 0.1);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  transition: background 0.3s ease, color 0.3s ease;
}

.contact-grid .contact-item:hover .contact-icon {
  background: var(--brand);
  color: white;
}

.contact-grid .contact-details h5 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--text);
}

.contact-grid .contact-details p {
  margin: 0;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.6;
}

/* Improved spacing for activity items */
.activity-item {
  transition: background 0.3s ease, transform 0.3s ease;
  border-radius: 12px;
  margin-bottom: 10px;
}

.activity-item:hover {
  background: rgba(79, 70, 229, 0.03);
  transform: translateX(5px);
}
