.graduation-page {
    background:
      radial-gradient(circle at top left, rgba(13, 110, 253, 0.08), transparent 24%),
      radial-gradient(circle at top right, rgba(102, 16, 242, 0.07), transparent 20%),
      linear-gradient(180deg, #f8fbff 0%, #eef4fb 100%);
    min-height: 100vh;
    padding: 3rem 0 4rem;
  }

  .graduation-hero {
    background: linear-gradient(135deg, #0d3b8e 0%, #3b1f8f 100%);
    color: #fff;
    border-radius: 2rem;
    padding: 2.5rem;
    box-shadow: 0 20px 55px rgba(15, 23, 42, 0.16);
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
  }

  .graduation-hero::before,
  .graduation-hero::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
  }

  .graduation-hero::before {
    width: 280px;
    height: 280px;
    top: -80px;
    right: -70px;
  }

  .graduation-hero::after {
    width: 170px;
    height: 170px;
    bottom: -45px;
    left: -35px;
  }

  .graduation-hero > .row {
    position: relative;
    z-index: 1;
  }

  .page-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.18);
    color: #fff;
    border-radius: 999px;
    padding: 0.55rem 1rem;
    font-weight: 700;
    font-size: 0.92rem;
    margin-bottom: 1rem;
  }

  .graduation-title {
    font-size: clamp(1.75rem, 3vw, 2.45rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 0.75rem;
  }

  .graduation-subtitle {
    font-size: 1.05rem;
    line-height: 1.85;
    color: rgba(255,255,255,0.9);
    max-width: 820px;
    margin-bottom: 0;
  }

  .hero-side-card {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 1.5rem;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
    transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
  }

  .hero-side-card:hover {
    transform: translateY(-4px);
    background: rgba(255,255,255,0.17);
    box-shadow: 0 18px 36px rgba(0,0,0,0.16);
  }

  .hero-side-card .icon-wrap {
    width: 62px;
    height: 62px;
    border-radius: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.16);
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  .content-card {
    --section-accent: #0d6efd;
    --section-accent-rgb: 13, 110, 253;
    background: rgba(255,255,255,0.94);
    border: 1px solid rgba(13,110,253,0.08);
    border-radius: 1.6rem;
    box-shadow: 0 16px 38px rgba(15, 23, 42, 0.07);
    padding: 1.5rem;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  }

  .content-card:hover {
    transform: translateY(-3px);
    border-color: rgba(var(--section-accent-rgb), 0.18);
    box-shadow:
      0 22px 48px rgba(15, 23, 42, 0.10),
      0 8px 22px rgba(var(--section-accent-rgb), 0.08);
  }

  .graduation-checklist-card {
    --section-accent: #7c3aed;
    --section-accent-rgb: 124, 58, 237;
    border: 0;
    isolation: isolate;
  }

  .graduation-checklist-card::before,
  .graduation-checklist-card::after {
    content: "";
    position: absolute;
    z-index: 2;
    pointer-events: none;
  }

  .graduation-checklist-card::before {
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #c084fc 0%, #7c3aed 55%, #db2777 100%);
  }

  .graduation-checklist-card::after {
    top: 0;
    right: 0;
    bottom: 0;
    width: 5px;
    background: linear-gradient(180deg, #db2777 0%, #7c3aed 48%, #c084fc 100%);
  }

  .graduation-dates-card {
    --section-accent: #0284c7;
    --section-accent-rgb: 2, 132, 199;
  }

  .graduation-ceremony-card {
    --section-accent: #db2777;
    --section-accent-rgb: 219, 39, 119;
  }

  .graduation-resources-card {
    --section-accent: #059669;
    --section-accent-rgb: 5, 150, 105;
  }

  .graduation-help-card {
    --section-accent: #ea580c;
    --section-accent-rgb: 234, 88, 12;
  }

  .graduation-requirements-card {
    border: 0;
    isolation: isolate;
  }

  .graduation-requirements-card::before,
  .graduation-requirements-card::after {
    content: "";
    position: absolute;
    z-index: 2;
    pointer-events: none;
  }

  .graduation-requirements-card::before {
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #0d6efd 0%, #7c3aed 50%, #db2777 100%);
  }

  .graduation-requirements-card::after {
    top: 0;
    bottom: 0;
    left: 0;
    width: 5px;
    background: linear-gradient(180deg, #0d6efd 0%, #7c3aed 52%, #db2777 100%);
  }

  .section-title {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 1.35rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 1rem;
  }

  .section-title i {
    width: 42px;
    height: 42px;
    border-radius: 0.9rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--section-accent), #312e81);
    color: #fff;
    font-size: 1rem;
    flex-shrink: 0;
    box-shadow: 0 8px 18px rgba(var(--section-accent-rgb), 0.24);
  }

  .section-text {
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 1.25rem;
  }

  .requirement-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
  }

  .requirement-card {
    --requirement-accent: #0d6efd;
    --requirement-accent-rgb: 13, 110, 253;
    --requirement-secondary: #38bdf8;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    border: 1px solid rgba(var(--requirement-accent-rgb), 0.10);
    border-radius: 1.2rem;
    padding: 1rem;
    box-shadow: 0 10px 24px rgba(15,23,42,0.05);
    position: relative;
    overflow: hidden;
    isolation: isolate;
    transition: transform 0.28s ease, box-shadow 0.28s ease, background-color 0.28s ease;
  }

  .requirement-card:nth-child(2) {
    --requirement-accent: #7c3aed;
    --requirement-accent-rgb: 124, 58, 237;
    --requirement-secondary: #c084fc;
  }

  .requirement-card:nth-child(3) {
    --requirement-accent: #db2777;
    --requirement-accent-rgb: 219, 39, 119;
    --requirement-secondary: #fb7185;
  }

  .requirement-card:nth-child(4) {
    --requirement-accent: #059669;
    --requirement-accent-rgb: 5, 150, 105;
    --requirement-secondary: #34d399;
  }

  .requirement-card:nth-child(5) {
    --requirement-accent: #ea580c;
    --requirement-accent-rgb: 234, 88, 12;
    --requirement-secondary: #fbbf24;
  }

  .requirement-card:nth-child(6) {
    --requirement-accent: #0891b2;
    --requirement-accent-rgb: 8, 145, 178;
    --requirement-secondary: #22d3ee;
  }

  .requirement-card::before,
  .requirement-card::after {
    content: "";
    position: absolute;
    z-index: 2;
    pointer-events: none;
  }

  .requirement-card::before {
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(
      90deg,
      var(--requirement-accent) 0%,
      var(--requirement-secondary) 70%,
      var(--requirement-accent) 100%
    );
  }

  .requirement-card::after {
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(
      180deg,
      var(--requirement-secondary) 0%,
      var(--requirement-accent) 48%,
      rgba(var(--requirement-accent-rgb), 0.08) 100%
    );
  }

  .requirement-card:nth-child(odd)::after {
    left: 0;
  }

  .requirement-card:nth-child(even)::after {
    right: 0;
  }

  .requirement-card:hover {
    transform: translateY(-5px);
    background: linear-gradient(
      145deg,
      rgba(var(--requirement-accent-rgb), 0.08) 0%,
      #ffffff 44%,
      #f8fbff 100%
    );
    box-shadow:
      0 18px 34px rgba(15,23,42,0.09),
      0 7px 18px rgba(var(--requirement-accent-rgb), 0.12);
  }

  .requirement-card h6 {
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 0.45rem;
    display: flex;
    align-items: center;
    gap: 0.55rem;
  }

  .requirement-card h6 i {
    width: 32px;
    height: 32px;
    border-radius: 0.7rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: linear-gradient(135deg, var(--requirement-accent), var(--requirement-secondary));
    box-shadow: 0 7px 16px rgba(var(--requirement-accent-rgb), 0.22);
    flex-shrink: 0;
  }

  .requirement-card p {
    margin-bottom: 0;
    color: #64748b;
    line-height: 1.7;
    font-size: 0.95rem;
  }

  .checklist {
    list-style: none;
    padding-left: 0;
    margin: 0;
  }

  .checklist li {
    --check-accent: #0d6efd;
    --check-secondary: #38bdf8;
    --check-rgb: 13, 110, 253;
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
    padding: 0.8rem;
    margin-bottom: 0.35rem;
    border: 1px solid transparent;
    border-radius: 1rem;
    transition: transform 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
  }

  .checklist li:nth-child(3n + 2) {
    --check-accent: #7c3aed;
    --check-secondary: #c084fc;
    --check-rgb: 124, 58, 237;
  }

  .checklist li:nth-child(3n) {
    --check-accent: #059669;
    --check-secondary: #34d399;
    --check-rgb: 5, 150, 105;
  }

  .checklist li:hover {
    transform: translateX(4px);
    background: rgba(var(--check-rgb), 0.055);
    border-color: rgba(var(--check-rgb), 0.13);
  }

  .checklist li:last-child {
    margin-bottom: 0;
  }

  .checklist-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--check-accent), var(--check-secondary));
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 0.1rem;
    box-shadow: 0 8px 18px rgba(var(--check-rgb), 0.24);
  }

  .checklist strong {
    color: #0f172a;
  }

  .action-buttons,
  .resource-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 1.25rem;
  }

  .modern-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.85rem 1.25rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    border: 1px solid transparent;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
  }

  .modern-btn-primary {
    background: linear-gradient(135deg, #0d6efd, #6610f2);
    color: #fff;
    box-shadow: 0 12px 24px rgba(13,110,253,0.18);
  }

  .modern-btn-primary:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 16px 30px rgba(13,110,253,0.27);
  }

  .modern-btn-outline {
    background: #fff;
    border: 1px solid rgba(13,110,253,0.16);
    color: #0d4fd6;
  }

  .modern-btn-outline:hover {
    background: rgba(13,110,253,0.06);
    color: #0d4fd6;
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(15,23,42,0.08);
  }

  .modern-btn:focus-visible {
    outline: 3px solid rgba(13,110,253,0.24);
    outline-offset: 3px;
  }

  .dates-table-wrap {
    overflow-x: auto;
  }

  .dates-table {
    width: 100%;
    border-collapse: collapse;
    overflow: hidden;
    border-radius: 1rem;
    background: #fff;
    box-shadow: inset 0 0 0 1px rgba(2, 132, 199, 0.10);
  }

  .dates-table th,
  .dates-table td {
    padding: 0.95rem 1rem;
    border-bottom: 1px solid rgba(15,23,42,0.06);
    text-align: left;
  }

  .dates-table th {
    background: linear-gradient(135deg, #e0f2fe 0%, #eef2ff 100%);
    color: #0f172a;
    font-weight: 800;
  }

  .dates-table tr:last-child td {
    border-bottom: 0;
  }

  .dates-table tbody tr {
    transition: background-color 0.22s ease, transform 0.22s ease;
  }

  .dates-table tbody tr:hover {
    background: rgba(2, 132, 199, 0.06);
  }

  .info-split-card {
    --info-accent: #db2777;
    --info-rgb: 219, 39, 119;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    border: 1px solid rgba(var(--info-rgb), 0.10);
    border-top: 4px solid var(--info-accent);
    border-radius: 1.2rem;
    padding: 1.2rem;
    height: 100%;
    box-shadow: 0 10px 24px rgba(15,23,42,0.05);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
  }

  .graduation-ceremony-card .col-md-6:nth-child(2) .info-split-card {
    --info-accent: #7c3aed;
    --info-rgb: 124, 58, 237;
  }

  .graduation-ceremony-card .col-12 .info-split-card {
    --info-accent: #0284c7;
    --info-rgb: 2, 132, 199;
  }

  .info-split-card:hover {
    transform: translateY(-5px);
    box-shadow:
      0 18px 34px rgba(15,23,42,0.09),
      0 7px 18px rgba(var(--info-rgb), 0.10);
  }

  .info-split-card h5 {
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 0.65rem;
  }

  .info-split-card p {
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 0;
  }

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

  .contact-card {
    --contact-accent: #ea580c;
    --contact-rgb: 234, 88, 12;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    border: 1px solid rgba(var(--contact-rgb), 0.10);
    border-radius: 1.2rem;
    padding: 1.2rem;
    box-shadow: 0 10px 24px rgba(15,23,42,0.04);
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: transform 0.28s ease, box-shadow 0.28s ease;
  }

  .contact-card:nth-child(2) {
    --contact-accent: #7c3aed;
    --contact-rgb: 124, 58, 237;
  }

  .contact-card:nth-child(3) {
    --contact-accent: #0284c7;
    --contact-rgb: 2, 132, 199;
  }

  .contact-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--contact-accent), transparent 90%);
  }

  .contact-card:hover {
    transform: translateY(-5px);
    box-shadow:
      0 18px 34px rgba(15,23,42,0.09),
      0 7px 18px rgba(var(--contact-rgb), 0.10);
  }

  .contact-card h5 {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 0.8rem;
  }

  .contact-card h5 i {
    width: 34px;
    height: 34px;
    border-radius: 0.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: linear-gradient(135deg, var(--contact-accent), #312e81);
    box-shadow: 0 7px 16px rgba(var(--contact-rgb), 0.20);
  }

  .contact-card p {
    color: #64748b;
    margin-bottom: 0;
    line-height: 1.8;
  }

  @media (max-width: 991.98px) {
    .graduation-hero {
      padding: 1.75rem;
    }
  }

  @media (max-width: 767.98px) {
    .graduation-page {
      padding: 2rem 0 3rem;
    }

    .graduation-title {
      font-size: 1.7rem;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .hero-side-card,
    .content-card,
    .requirement-card,
    .checklist li,
    .modern-btn,
    .info-split-card,
    .contact-card {
      transition: none;
    }
  }
