@charset "UTF-8";
.landing-swiper {
  width: 100%;
  height: 100%;
}
.landing-swiper .swiper-slide img {
  width: 100%;
  height: 92%;
  object-fit: cover;
}
.landing-swiper .swiper-pagination {
  bottom: 4%;
}
.landing-swiper .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: var(--main-color);
  opacity: 0.5;
}
.landing-swiper .swiper-pagination-bullet-active {
  opacity: 1 !important;
  background-color: var(--main-color);
}

.fs-10px {
  font-size: 10px;
}

.fs-11px {
  font-size: 11px;
}

.fs-12 {
  font-size: 12px;
}

.fs-13px {
  font-size: 13px;
}

.fs-14px {
  font-size: 14px;
}

.fs-15px {
  font-size: 15px;
}

.fs-16px {
  font-size: 16px;
}

.fs-26px {
  font-size: 26px;
}

.fw-600 {
  font-weight: 600 !important;
}

.h-fit {
  height: fit-content;
}

.w-fit {
  width: fit-content;
}

.w-150px {
  width: 150px;
}

.main-color {
  color: var(--main-color);
}

.gap-1px {
  gap: 1px;
}

.main-section {
  padding: 35px 0;
}

.main-btn {
  border-radius: 50px;
  background: var(--main-color);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 7px 33px;
  width: fit-content;
  cursor: pointer;
  color: #fff !important;
  font-size: 18px;
  font-weight: 600;
  outline: 0;
  line-height: normal;
}
.main-btn.xl {
  padding-left: 93px;
  padding-right: 93px;
}

.main-title {
  font-size: 35px;
  font-weight: 700;
  line-height: 42px;
  color: var(--main-color);
  margin-bottom: 16px;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}
.main-title::before {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: var(--sec-color);
}

.section-title {
  color: #000;
  font-size: 32px;
  width: fit-content;
  display: block;
  margin: 0 auto 1rem;
  max-width: calc(100% - 134px);
  text-align: center;
  word-break: break-word;
  position: relative;
  font-weight: 500;
  line-height: 38px;
}
.section-title::before {
  content: "";
  width: 53px;
  height: 2px;
  position: absolute;
  inset-block-start: 50%;
  background-color: var(--main-color);
  transform: translateY(-50%);
  inset-inline-end: calc(100% + 14px);
}
.section-title::after {
  content: "";
  width: 53px;
  height: 2px;
  position: absolute;
  inset-block-start: 50%;
  background-color: var(--main-color);
  transform: translateY(-50%);
  inset-inline-start: calc(100% + 14px);
}

.box-product {
  border-radius: 16px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  position: relative;
  padding: 10px;
  border: 2px dashed var(--sec-color);
  transition: 300ms ease-in-out all;
}
.box-product .img-product {
  width: 100%;
  height: 150px;
  object-fit: contain;
}
.box-product .text {
  text-align: center;
}
.box-product .text .title {
  font-size: 18px;
  font-weight: 600;
  line-height: 24.4px;
  color: #363636;
  padding: 10px;
  padding-bottom: 5px;
}
.box-product .text .price {
  color: #363636;
  display: flex;
  gap: 14px;
  justify-content: center;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
}
.box-product .text .price .num {
  color: var(--main-color);
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
}
.box-product .btn-buy {
  width: 100%;
  padding: 5px;
  border-radius: 20px;
  border: 1px solid var(--sec-color);
  color: var(--main-color);
  font-weight: 700;
  margin-top: 5px;
  background-color: #fff;
  transition: 300ms;
}
.box-product .btn-buy:hover {
  background-color: var(--sec-color);
  color: #fff;
}
.box-product:hover {
  border: 2px solid var(--main-color);
}
@media (max-width: 767.98px) {
  .box-product {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 5px;
  }
  .box-product .text {
    text-align: center;
  }
  .box-product .text .title {
    font-size: 15px;
    line-height: 14.4px;
    padding: 7px;
  }
  .box-product .text .price {
    margin-bottom: 10px;
  }
  .box-product .text .price .num {
    color: var(--main-color);
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
  }
  .box-product .text .desc {
    font-size: 10px !important;
  }
  .box-product .btn-buy {
    padding: 3px;
    font-size: 12px;
  }
}

.service-section {
  background: url(../../../images/serv-land.svg);
  background-size: cover;
  padding: 100px 0;
  margin: 50px 0;
}

.box-service {
  border: 1px solid #ddd;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  justify-content: center;
  padding: 50px;
  border-radius: 16px;
  text-align: center;
  min-height: 323px;
}
.box-service img {
  width: 80px;
  height: auto;
}
.box-service .title {
  font-size: 22px;
  font-weight: 700;
  line-height: 26.4px;
  color: #fff;
}
.box-service .desc {
  font-size: 17px;
  font-weight: 400;
  color: #fff;
  line-height: 26.4px;
}

.diploma-card {
  border: 1px solid #ddd;
  border-top: 4px solid #ffd700;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  background: #fff;
  /* Header */
}
.diploma-card .diploma-header {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #eee;
  background: #fafafa;
}
.diploma-card .header-title {
  font-size: 20px;
  font-weight: 700;
  display: flex;
  gap: 8px;
  align-items: center;
}
.diploma-card .header-title i {
  color: #ffd700;
}
.diploma-card .header-subtitle {
  font-size: 14px;
  color: #777;
}
.diploma-card .header-actions {
  display: flex;
  gap: 8px;
}
.diploma-card {
  /* Buttons */
}
.diploma-card .btn {
  height: 36px;
  padding: 0 14px;
  border-radius: 8px;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  border: 1px solid transparent;
  background: #fff;
}
.diploma-card .btn-outline {
  border-color: rgba(128, 0, 0, 0.2);
  color: #800000;
}
.diploma-card .btn-outline:hover {
  background: rgba(128, 0, 0, 0.05);
}
.diploma-card .btn-preview {
  border-color: #bfdbfe;
  color: #1d4ed8;
}
.diploma-card .btn-preview:hover {
  background: #eff6ff;
}
.diploma-card .btn-print {
  border-color: #d1d5db;
  color: #374151;
}
.diploma-card .btn-print:hover {
  background: #f9fafb;
}
.diploma-card .btn-download {
  background: #800000;
  color: #fff;
}
.diploma-card .btn-download:hover {
  background: #600000;
}
.diploma-card {
  /* Diploma Page */
}
.diploma-card .diploma-wrapper {
  background: #f3f4f6;
  padding: 32px;
  display: flex;
  justify-content: center;
}
.diploma-card .diploma-page {
  background: #fffdf5;
  display: flex;
  width: 1100px;
  min-height: 700px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
.diploma-card {
  /* Side */
}
.diploma-card .diploma-side {
  width: 25%;
  padding: 60px 32px;
  border-right: 1px solid #e5e7eb;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.diploma-card .info-box {
  border: 2px solid #000;
  padding: 16px;
  color: #000;
  background: #fff;
}
.diploma-card .info-box .label {
  display: block;
  font-weight: 700;
  margin-bottom: 4px;
}
.diploma-card .info-box strong {
  font-size: 22px;
}
.diploma-card .info-box.center {
  text-align: center;
}
.diploma-card .info-box.center .big {
  font-size: 42px;
}
.diploma-card .info-box.highlight .label {
  color: #800000;
}
.diploma-card .stamp-placeholder {
  margin-top: auto;
  height: 120px;
  border: 2px dashed #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #aaa;
  transform: rotate(-20deg);
}
.diploma-card {
  /* Content */
}
.diploma-card .diploma-content {
  flex: 1;
  padding: 60px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.diploma-card .header-info {
  color: #000;
}
.diploma-card .header-info i, .diploma-card .header-info svg {
  color: #ffd700;
}
.diploma-card .gradient-strip {
  position: absolute; /* absolute */
  top: 0; /* top-0 */
  right: 0; /* right-0 */
  bottom: 0; /* bottom-0 */
  width: 32px; /* w-8 => 2rem = 32px */
  background: linear-gradient(to bottom, #facc15, #ec4899, #ef4444); /* from-yellow-400 via-pink-500 to-red-600 */
  -webkit-print-color-adjust: exact; /* print:print-color-adjust-exact */
  print-color-adjust: exact; /* دعم للطباعة */
}
.diploma-card .diploma-top {
  display: flex;
  justify-content: end;
  gap: 20px;
  margin-bottom: 40px;
  text-align: center;
}
.diploma-card .diploma-top h1 {
  font-size: 80px;
  color: #600000;
  font-weight: 900;
}
.diploma-card .diploma-top p {
  color: #000;
}
.diploma-card .student-section {
  text-align: center;
  color: #000;
}
.diploma-card .student-section .student-name {
  font-size: 48px;
  border-bottom: 2px solid #d4af37;
  display: inline-block;
  padding-bottom: 8px;
  margin-bottom: 24px;
  color: #000;
  font-weight: 700;
}
.diploma-card .school-logo {
  width: 96px; /* w-24 */
  height: 96px; /* h-24 */
  border-radius: 50%; /* rounded-full */
  border: 4px solid #ffd700; /* border-4 + border color */
  background-color: #ffffff; /* bg-white */
  display: flex; /* flex */
  align-items: center; /* items-center */
  justify-content: center; /* justify-center */
  overflow: hidden; /* overflow-hidden */
  flex-shrink: 0;
}
.diploma-card .school-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.diploma-card .signature {
  color: #000;
}
.diploma-card .diploma-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 64px;
  padding: 0 32px;
  /* Signature */
}
.diploma-card .diploma-bottom .principal-sign {
  text-align: center;
}
.diploma-card .diploma-bottom .sign-line {
  width: 192px;
  height: 1px;
  background: #000;
  margin-bottom: 8px;
}
.diploma-card .diploma-bottom .principal-sign p {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}
.diploma-card .diploma-bottom {
  /* Badge */
}
.diploma-card .diploma-bottom .accreditation-badge {
  position: relative;
}
.diploma-card .diploma-bottom .badge-outer {
  width: 112px;
  height: 112px;
  border: 4px solid #800000;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.diploma-card .diploma-bottom .badge-inner {
  width: 100%;
  height: 100%;
  border: 1px solid #d1d5db;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.diploma-card .diploma-bottom .badge-top {
  font-size: 8px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #6b7280;
}
.diploma-card .diploma-bottom .badge-title {
  font-size: 18px;
  font-weight: 800;
  color: #800000;
  margin: 2px 0;
}
.diploma-card .diploma-bottom .badge-bottom {
  font-size: 6px;
  font-weight: 700;
  color: #9ca3af;
}

* {
  box-sizing: border-box;
  padding: 0%;
  margin: 0%;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: "Cairo", sans-serif;
  font-size: 16px;
  background-color: white;
  color: rgba(0, 0, 0, 0.6);
}

ul {
  list-style: none;
  padding: 0%;
  margin: 0%;
}

a {
  text-decoration: none;
  color: rgba(0, 0, 0, 0.6);
}
a:hover {
  color: rgba(0, 0, 0, 0.6);
}

button {
  border: none;
  outline: none;
}

input:focus,
select:focus {
  outline: none;
}

.layout {
  display: flex;
  min-height: 100vh;
}

/* Sidebar */
.sidebar {
  width: 260px;
  background: linear-gradient(#800000, #600000);
  color: white;
  position: fixed;
  top: 0;
  left: 0; /* مهم */
  height: 100%;
  transition: transform 0.3s ease-in-out;
  z-index: 1000;
}

.app-container {
  flex: 1;
  margin-left: 260px;
  background-color: #f9fafb;
  min-height: 100vh;
  transition: margin 0.3s ease-in-out;
}

/* Mobile Header */
.mobile-header {
  display: none;
  background: #800000;
  color: white;
  padding: 16px;
  position: sticky;
  top: 0;
  z-index: 40;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  justify-content: space-between;
  align-items: center;
}
.mobile-header .header-left {
  display: flex;
  align-items: center;
  gap: 10px;
}
.mobile-header .header-left .logo-circle {
  width: 40px;
  height: 40px;
  background: white;
  color: #800000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  border: 3px solid #ffd700;
}

.menu-btn {
  background-color: #800000;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
}

.sidebar-header {
  text-align: center;
  padding: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
  .mobile-header {
    display: flex;
  }
  .sidebar {
    transform: translateX(-100%);
  }
  .sidebar.active {
    transform: translateX(0);
  }
  .app-container {
    margin-left: 0;
  }
}
.logo {
  width: 70px;
  height: 70px;
  background: white;
  color: #800000;
  border-radius: 50%;
  margin: 0 auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  border: 4px solid #ffd700;
}

.sidebar-header .title {
  color: #fff;
  font-size: 18px;
  font-weight: bold;
}

.portal {
  display: inline-block;
  margin-top: 10px;
  font-size: 10px !important;
  font-weight: 400 !important;
  color: #ffd700;
  font-weight: bold;
  letter-spacing: 2px;
  background-color: #5f0000;
  padding: 5px;
  border-radius: 20px;
}

/* Menu */
.menu {
  padding: 15px;
}

.menu-title {
  font-size: 11px;
  text-transform: uppercase;
  color: rgba(255, 215, 0, 0.6);
  margin: 15px 0 5px;
}

.menu a {
  display: block;
  padding: 10px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  border-radius: 6px;
  margin-bottom: 5px;
}

.menu a:hover,
.menu a.active {
  background: rgba(255, 255, 255, 0.15);
  color: #ffd700;
  border-right: 4px solid #ffd700;
}

/* Logout */
.logout {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 15px;
  text-align: start;
  background: #500000;
  cursor: pointer;
}

/* Content */
.content {
  margin-left: 260px;
  padding: 30px;
  width: 100%;
}

/* Header */
.user {
  display: flex;
  gap: 15px;
}

canvas {
  margin: auto;
}

.canvas-container {
  width: 100% !important;
  height: 300px !important;
}

.user img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid #800000;
}

/* Alert */
.alert {
  background: #e6f7ee;
  border: 1px solid #9ddbb5;
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 20px;
}

/* Cards */
.grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 20px;
}

.card {
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.card.dark {
  background: linear-gradient(#800000, #600000);
  color: white;
}

.card.large {
  grid-column: span 2;
}

.status {
  margin: 15px 0;
  font-weight: bold;
}

.card {
  background: #fff;
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  margin-bottom: 24px;
}

.header-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #800000;
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.student-id {
  color: #800000;
  font-weight: bold;
}

.date-info {
  text-align: right;
  color: #777;
  font-size: 14px;
}

/* Alert */
.alert.success {
  background: #ecfdf5;
  border: 1px solid #bbf7d0;
  border-radius: 10px;
}

.alert-text h4 {
  color: #166534;
}

.arabic {
  margin-top: 6px;
}

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

.wide {
  grid-column: span 2;
}

/* Status */
.status-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f9fafb;
  padding: 16px;
  border-radius: 10px;
  margin-top: 16px;
}

.badge {
  background: #ffd700;
  padding: 6px 14px;
  border-radius: 8px;
  font-weight: bold;
}

/* Schedule */
.schedule {
  list-style: none;
  margin-top: 16px;
}

.schedule li {
  display: flex;
  gap: 12px;
  padding: 12px;
  border: 1px solid #eee;
  border-radius: 10px;
  margin-bottom: 10px;
}

.time {
  background: #f3f4f6;
  padding: 6px 10px;
  border-radius: 6px;
  font-weight: bold;
  font-size: 12px;
}

.link {
  display: block;
  text-align: center;
  margin-top: 12px;
  color: #2563eb;
  text-decoration: none;
  font-size: 14px;
}

/* Main container */
/* Main content */
.main-content {
  padding: 1rem; /* p-4 */
  max-width: 1280px; /* max-w-7xl */
  margin: 0 auto; /* mx-auto */
}

@media (min-width: 768px) {
  .main-content {
    padding: 2rem; /* md:p-8 */
  }
}
/* Welcome Card */
.welcome-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  background-color: #fff;
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  border: 1px solid #f3f4f6;
}

@media (min-width: 768px) {
  .welcome-card {
    flex-direction: row;
    align-items: center;
  }
}
.welcome-left {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.student-img {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #800000;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.student-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.welcome-left h1 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
  margin: 0;
}

.welcome-left p {
  font-size: 0.875rem;
  color: #6b7280;
  margin: 0;
}

.welcome-left span {
  font-family: monospace;
  font-weight: 500;
  color: #800000;
}

.welcome-right {
  text-align: right;
  display: none;
}

@media (min-width: 768px) {
  .welcome-right {
    display: block;
    font-size: 0.875rem;
    color: #6b7280;
  }
  .welcome-right p:last-child {
    font-size: 0.75rem;
    color: #9ca3af;
  }
}
/* Certificate Alert */
.certificate-alert {
  display: flex;
  gap: 0.75rem;
  background-color: #ecfdf5;
  border: 1px solid #d1fae5;
  padding: 1rem;
  border-radius: 0.5rem;
}
.certificate-alert svg,
.certificate-alert i {
  color: #166534;
}

.certificate-alert h4 {
  font-weight: bold;
  font-size: 1.125rem;
  color: #166534;
  margin: 0;
}

.certificate-alert p {
  margin: 0;
}

.certificate-alert p:first-of-type {
  color: #047857;
  font-size: 1rem;
  margin-top: 0.25rem;
}

/* Academic Status Card */
.academic-status {
  background-color: #fff;
  border-radius: 1rem;
  border-top: 4px solid #800000;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s;
  padding: 1.5rem;
}

.academic-status:hover {
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

.graduated {
  display: flex;
  justify-content: space-between;
  background: #f9fafb;
  border: 1px solid #f3f4f6;
  padding: 1rem;
  border-radius: 0.5rem;
}

/* Stats Grid */
.gpa-card {
  flex: 1;
  background: linear-gradient(to bottom right, #800000, #600000);
  color: #fff;
  padding: 1.5rem;
  border-radius: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.attendance-card {
  flex: 1;
  background: #fff;
  padding: 1.5rem;
  border-radius: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Trend & Schedule Grid */
.trend-schedule-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 1rem;
  margin-top: 1rem;
}

.trend-card,
.schedule-card {
  background: #fff;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.trend-card .header,
.schedule-card .header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 1rem;
  color: #374151;
}

.schedule-list {
  margin-top: 1rem;
}

.schedule-item {
  display: flex;
  gap: 0.75rem;
  padding: 0.75rem;
  border: 1px solid #f3f4f6;
  border-radius: 0.5rem;
  transition: background 0.2s;
}

.schedule-item:hover {
  background: #f9fafb;
}

.schedule-item span {
  background: #f3f4f6;
  color: #4b5563;
  font-weight: bold;
  font-size: 0.75rem;
  padding: 0.5rem;
  border-radius: 0.25rem;
  min-width: 50px;
  text-align: center;
}

.schedule-item p {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 500;
  color: #800000;
}

.schedule-item p:last-child {
  font-size: 0.75rem;
  color: #6b7280;
}

.schedule-card a {
  display: block;
  text-align: center;
  margin-top: 0.5rem;
  font-size: 0.75rem;
  color: #2563eb;
  text-decoration: none;
}

.schedule-card a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .trend-schedule-grid {
    grid-template-columns: 1fr;
  }
}
.academic-status-card {
  border-radius: 1rem;
  border: 1px solid #e5e7eb;
  background: #fff;
  color: #111827;
  height: 100%;
  border-top: 4px solid #800000;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s;
}

.academic-status-card:hover {
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

.academic-status-card .header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1.5rem 1.5rem 0.5rem 1.5rem;
  font-weight: 600;
  font-size: 1.125rem;
}
.academic-status-card .header svg,
.academic-status-card .header i {
  color: #800000;
}

.academic-status-card .header i {
  color: #800000;
  font-size: 1.25rem;
}

.academic-status-card .body {
  padding: 1.5rem;
  padding-top: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.academic-status-card .graduated {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background: #f9fafb;
  border-radius: 0.75rem;
  border: 1px solid #e5e7eb;
}

.academic-status-card .graduated div:last-child {
  background: #ffd700;
  color: #000;
  font-weight: 600;
  padding: 0.25rem 1rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.academic-status-card .progress {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  background-color: #fff;
  height: auto;
}

.academic-status-card .progress .progress-info {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  font-weight: 500;
}

.academic-status-card .progress-bar {
  height: 0.75rem;
  width: 100%;
  background: #e5e7eb;
  border-radius: 0.375rem;
  overflow: hidden;
  display: block;
}

.academic-status-card .progress-fill {
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #800000, #ffd700);
  transition: width 0.3s;
}

.academic-status-card .progress p {
  font-size: 0.75rem;
  color: #9ca3af;
  text-align: right;
}

.stats-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* GPA Card */
.gpa-card {
  border-radius: 1rem;
  background: linear-gradient(to bottom right, #800000, #600000);
  color: #fff;
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.gpa-card .info p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  font-weight: 500;
}

.gpa-card .info h3 {
  font-size: 2.25rem;
  font-weight: 700;
  margin-top: 0.25rem;
}

.gpa-card .icon {
  height: 3rem;
  width: 3rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: #ffd700;
}

/* Attendance Card */
.attendance-card {
  border-radius: 1rem;
  background: #fff;
  color: #111827;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.attendance-card .info p {
  color: #6b7280;
  font-size: 0.875rem;
  font-weight: 500;
}

.attendance-card .info h3 {
  font-size: 1.875rem;
  font-weight: 700;
  margin-top: 0.25rem;
}

.attendance-card .icon {
  height: 3rem;
  width: 3rem;
  border-radius: 9999px;
  background: #d1fae5; /* green-50 */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: #16a34a; /* green-600 */
}

.academic-trend-card {
  border-radius: 1rem;
  background: #fff;
  color: #111827;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border: 1px solid #e5e7eb;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.academic-trend-card .header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1.5rem 1.5rem 0.5rem 1.5rem;
  font-weight: 600;
  font-size: 1rem;
  color: #374151; /* gray-700 */
}

.academic-trend-card .header i {
  color: #800000;
  font-size: 1rem;
}

.academic-trend-card .body {
  padding: 1.5rem;
  padding-top: 0;
  height: 300px;
  position: relative;
}

.academic-trend-card .chart-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, #ffe4e1 0%, #fff 100%);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #800000;
  font-weight: bold;
}

.profile-page {
  padding: 16px;
  background: #f9fafb;
}
.profile-page .profile-container {
  max-width: 1100px;
  margin: auto;
}
.profile-page .page-title {
  font-size: 24px;
  font-weight: bold;
  color: #800000;
  display: flex;
  gap: 10px;
  margin-bottom: 24px;
}
.profile-page .profile-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) {
  .profile-page .profile-grid {
    grid-template-columns: 4fr 8fr;
  }
}
.profile-page {
  /* Sidebar */
}
.profile-page .profile-card {
  border-radius: 16px;
  overflow: hidden;
  border-top: 4px solid #ffd700;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  background: #fff;
  margin-bottom: 20px;
}
.profile-page .profile-cover {
  height: 90px;
  background: #800000;
  position: relative;
}
.profile-page .profile-avatar {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #fff;
  position: absolute;
  bottom: -65px;
  left: 50%;
  transform: translateX(-50%);
}
.profile-page .profile-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.profile-page .profile-info {
  padding: 80px 16px 24px;
  text-align: center;
}
.profile-page .profile-info h2 {
  font-size: 20px;
  font-weight: bold;
  color: #000;
}
.profile-page .profile-info h3 {
  font-size: 16px;
  color: #6b7280;
  margin-top: 4px;
}
.profile-page .grade-badge {
  display: inline-block;
  margin-top: 10px;
  padding: 4px 10px;
  border: 1px solid #800000;
  color: #800000;
  border-radius: 6px;
  font-size: 12px;
}
.profile-page {
  /* Cards */
}
.profile-page .info-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  margin-bottom: 20px;
}
.profile-page .card-header {
  padding: 16px;
  border-bottom: 1px solid #eee;
  font-weight: bold;
  background: #fff;
  text-align: start;
}
.profile-page .info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  padding: 16px;
}
@media (min-width: 768px) {
  .profile-page .info-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.profile-page .info-item {
  display: flex;
  gap: 12px;
  padding: 12px;
  border-radius: 10px;
  transition: 0.2s;
  align-items: center;
}
.profile-page .info-item:hover {
  background: #f9fafb;
}
.profile-page .info-icon {
  background: #f3f4f6;
  padding: 8px;
  border-radius: 50%;
  color: #6b7280;
}
.profile-page .info-item span {
  font-size: 11px;
  text-transform: uppercase;
  color: #6b7280;
}
.profile-page .info-item p {
  font-weight: 600;
  color: #111827;
}

.academic-page {
  padding: 16px;
}
@media (min-width: 768px) {
  .academic-page {
    padding: 32px;
  }
}
.academic-page .academic-container {
  max-width: 1120px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.academic-page {
  /* Overview */
}
.academic-page .overview-card {
  background: #800000;
  color: #fff;
  padding: 32px;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.academic-page .overview-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 2;
}
.academic-page .overview-text h1 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 8px;
}
.academic-page .overview-text p {
  opacity: 0.9;
}
.academic-page .overview-status {
  background: #ffd700;
  color: #000;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 6px;
}
.academic-page .overview-icon {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 200px;
  height: 200px;
  opacity: 0.1;
}
.academic-page {
  /* Stats */
}
.academic-page .stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) {
  .academic-page .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.academic-page .stat-card {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  border-left: 4px solid #800000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.academic-page .stat-card.credits {
  border-left-color: #ffd700;
}
.academic-page .stat-card.rank {
  border-left-color: #22c55e;
}
.academic-page .stat-card .label {
  font-size: 12px;
  text-transform: uppercase;
  color: #6b7280;
}
.academic-page .stat-card .value {
  margin-top: 8px;
  display: flex;
  align-items: flex-end;
  gap: 8px;
}
.academic-page .stat-card .number {
  font-size: 36px;
  font-weight: 700;
  color: #000;
}
.academic-page .stat-card .suffix {
  font-size: 14px;
  color: #9ca3af;
}
.academic-page .stat-card .badge {
  font-size: 14px;
  font-weight: 700;
  color: #16a34a;
  background-color: #fff;
}
.academic-page {
  /* Charts */
}
.academic-page .charts-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 1024px) {
  .academic-page .charts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.academic-page .chart-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}
.academic-page .chart-header {
  padding: 24px;
}
.academic-page .chart-header h3 {
  font-size: 18px;
  font-weight: 600;
  color: #000;
}
.academic-page .chart-header p {
  font-size: 14px;
  color: #6b7280;
}
.academic-page .chart-body {
  height: 300px;
  position: relative;
}
.academic-page .chart-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.academic-page .chart-center .percent {
  font-size: 36px;
  font-weight: 700;
  color: #800000;
}
.academic-page .chart-center .text {
  font-size: 12px;
  color: #6b7280;
  text-transform: uppercase;
}

.timetable-page {
  padding: 16px;
}
@media (min-width: 768px) {
  .timetable-page {
    padding: 32px;
  }
}
.timetable-page .timetable-container {
  max-width: 1120px;
  margin: auto;
}
.timetable-page {
  /* Header */
}
.timetable-page .timetable-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}
.timetable-page .icon-box {
  padding: 12px;
  background: #800000;
  border-radius: 10px;
  color: #fff;
}
.timetable-page .icon-box svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
}
.timetable-page .timetable-header h1 {
  font-size: 24px;
  font-weight: 700;
  color: #111827;
}
.timetable-page .timetable-header p {
  color: #6b7280;
  font-size: 14px;
}
.timetable-page {
  /* Card */
}
.timetable-page .timetable-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}
.timetable-page .table-wrapper {
  overflow-x: auto;
}
.timetable-page {
  /* Table */
}
.timetable-page .timetable {
  width: 100%;
  min-width: 800px;
  border-collapse: collapse;
}
.timetable-page .timetable thead tr {
  background: #800000;
  color: #fff;
}
.timetable-page .timetable th {
  padding: 16px;
  text-align: left;
  font-weight: 600;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}
.timetable-page .timetable th:last-child {
  border-right: 0;
}
.timetable-page .time-col {
  width: 140px;
}
.timetable-page .timetable tbody tr {
  border-bottom: 1px solid #e5e7eb;
  transition: background 0.2s;
}
.timetable-page .timetable tbody tr:hover {
  background: #f9fafb;
}
.timetable-page .time {
  padding: 16px;
  font-weight: 500;
  color: #4b5563;
  background: rgba(249, 250, 251, 0.6);
  border-right: 1px solid #e5e7eb;
}
.timetable-page {
  /* Lessons */
}
.timetable-page .timetable td {
  padding: 8px;
  border-right: 1px solid #e5e7eb;
}
.timetable-page .timetable td:last-child {
  border-right: 0;
}
.timetable-page .lesson {
  padding: 12px;
  font-size: 14px;
  font-weight: 500;
  background: #fef2f2;
  color: #800000;
  border: 1px solid #fee2e2;
  border-radius: 6px;
}
.timetable-page .lesson.lunch {
  background: #e5e7eb;
  color: #6b7280;
  text-align: center;
  font-style: italic;
  border-color: #d1d5db;
}

.documents-page {
  padding: 16px;
}
@media (min-width: 768px) {
  .documents-page {
    padding: 32px;
  }
}
.documents-page .documents-container {
  max-width: 1200px;
  margin: auto;
}
.documents-page .documents-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-bottom: 1px solid #e5e7eb;
  padding-bottom: 24px;
}
@media (min-width: 768px) {
  .documents-page .documents-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.documents-page .documents-title h1 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 28px;
  color: #800000;
  font-weight: bold;
}
.documents-page .documents-title h1 svg {
  width: 32px;
  height: 32px;
  stroke: currentColor;
  fill: none;
}
.documents-page .documents-title p {
  color: #6b7280;
  margin-top: 4px;
}
.documents-page .verified-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #ffd700;
  color: #000;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}
.documents-page .verified-badge svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
}
.documents-page {
  /* Tabs */
}
.documents-page .tabs-wrapper {
  margin: 32px 0;
}
.documents-page .tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 600px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  padding: 4px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}
.documents-page .tab {
  border: none;
  background: transparent;
  padding: 8px;
  font-size: 14px;
  cursor: pointer;
  border-radius: 4px;
}
.documents-page .tab.active {
  background: #f3f4f6;
  font-weight: 600;
}
.documents-page {
  /* Card */
}
.documents-page .document-card {
  border: 1px solid #e5e7eb;
  border-top: 4px solid #800000;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}
.documents-page .document-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f9fafb;
  padding: 24px;
  border-bottom: 1px solid #e5e7eb;
}
.documents-page .document-card-header h3 {
  font-size: 20px;
  font-weight: bold;
  color: #1f2937;
}
.documents-page .document-card-header p {
  font-size: 14px;
  color: #6b7280;
}
.documents-page .download-btn {
  border: 1px solid #d1d5db;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 14px;
  text-decoration: none;
  color: #111;
}
@media (max-width: 640px) {
  .documents-page .download-btn {
    display: none;
  }
}
.documents-page {
  /* Viewer */
}
.documents-page .document-viewer {
  position: relative;
  background: #f3f4f6;
  min-height: 600px;
}
.documents-page .document-viewer iframe {
  width: 100%;
  height: 800px;
  border: none;
  background: #fff;
}
.documents-page .mobile-open-btn {
  display: none;
}
@media (max-width: 640px) {
  .documents-page .mobile-open-btn {
    display: inline-flex;
    position: absolute;
    bottom: 16px;
    right: 16px;
    background: #800000;
    color: #fff;
    padding: 8px 12px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  }
}

.page-wrapper {
  background-color: #f9fafb;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow-x: hidden;
}
.page-wrapper .header {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #e5e7eb;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
.page-wrapper .header .header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  padding: 0 16px;
}
.page-wrapper .header .header-container .header-left {
  display: flex;
  gap: 16px;
  align-items: center;
}
.page-wrapper .header .header-container .header-left .logo-circle {
  width: 48px;
  height: 48px;
  border: 2px solid #ffd700;
  border-radius: 50%;
  overflow: hidden;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.page-wrapper .header .header-container .header-left .logo-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-wrapper .header .header-container .header-left .header-title h1 {
  font-weight: bold;
  font-size: 16px;
  color: #111827;
  margin-bottom: 0;
}
.page-wrapper .header .header-container .header-left .header-title p {
  font-size: 10px;
  text-transform: uppercase;
  margin-bottom: 0;
  letter-spacing: 2px;
  color: #6b7280;
}
.page-wrapper .header .header-container .header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.page-wrapper .header .header-container .header-right .portal-info {
  text-align: right;
}
.page-wrapper .header .header-container .header-right .portal-info p:first-child {
  font-size: 10px;
  font-weight: bold;
  color: #800000;
}
.page-wrapper .header .header-container .header-right .portal-info p:last-child {
  font-size: 10px;
  color: #9ca3af;
}
.page-wrapper .header .header-container .header-right .shield-icon svg {
  width: 24px;
  height: 24px;
  color: #800000;
}
.page-wrapper .student-verification-container {
  width: 100%;
  max-width: 64rem;
  margin: 50px auto;
  opacity: 1;
  transform: none;
}
.page-wrapper .student-verification-container .verification-card {
  border-radius: 1rem;
  overflow: hidden;
  background-color: #fff;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.page-wrapper .student-verification-container .verification-card .verification-top-bar {
  background-color: #800000;
  height: 0.5rem;
  width: 100%;
  padding: 0.25rem 0;
}
.page-wrapper .student-verification-container .verification-card .verification-header {
  position: relative;
  text-align: center;
  padding: 2rem;
  border-bottom: 1px solid #f0f0f0;
  background: linear-gradient(to bottom, #f9f9f9, #fff);
}
.page-wrapper .student-verification-container .verification-card .verification-header .verification-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.05;
  background: url("https://www.transparenttextures.com/patterns/cubes.png");
  background-repeat: repeat;
}
.page-wrapper .student-verification-container .verification-card .verification-header .verification-logo-wrapper {
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
}
.page-wrapper .student-verification-container .verification-card .verification-header .verification-logo-wrapper .verification-logo-circle {
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  border: 4px solid #ffd700;
  background-color: #fff;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
.page-wrapper .student-verification-container .verification-card .verification-header .verification-logo-wrapper .verification-logo-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-wrapper .student-verification-container .verification-card .verification-header .verification-title {
  font-size: 2rem;
  font-family: serif;
  font-weight: bold;
  color: #111;
}
.page-wrapper .student-verification-container .verification-card .verification-header .verification-subtitle-ar {
  font-size: 1.25rem;
  color: #800000;
  margin-top: 0.5rem;
}
.page-wrapper .student-verification-container .verification-card .verification-header .verification-subtitle-en {
  font-size: 0.875rem;
  color: #777;
  margin-top: 0.5rem;
}
.page-wrapper .student-verification-container .verification-card .verification-header .verification-tags {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}
.page-wrapper .student-verification-container .verification-card .verification-header .verification-tags .verification-tag-authentic,
.page-wrapper .student-verification-container .verification-card .verification-header .verification-tags .verification-tag-global {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  border-radius: 0.375rem;
  font-size: 0.75rem;
  font-weight: 600;
  border: 1px solid;
  gap: 0.25rem;
}
.page-wrapper .student-verification-container .verification-card .verification-header .verification-tags .verification-tag-authentic svg,
.page-wrapper .student-verification-container .verification-card .verification-header .verification-tags .verification-tag-global svg {
  width: 16px;
}
.page-wrapper .student-verification-container .verification-card .verification-header .verification-tags .verification-tag-authentic {
  background-color: #e6f4ea;
  color: #15803d;
  border-color: #bbf7d0;
}
.page-wrapper .student-verification-container .verification-card .verification-header .verification-tags .verification-tag-global {
  background-color: #ebf8ff;
  color: #1d4ed8;
  border-color: #bfdbfe;
}
.page-wrapper .student-verification-container .verification-card .verification-body {
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .page-wrapper .student-verification-container .verification-card .verification-body {
    grid-template-columns: 1fr 2fr;
  }
}
.page-wrapper .student-verification-container .verification-card .verification-body .student-info {
  background-color: #f9f9f9;
  padding: 2rem;
  text-align: center;
  border-right: 1px solid #f0f0f0;
}
.page-wrapper .student-verification-container .verification-card .verification-body .student-info .student-photo-wrapper {
  position: relative;
  width: 12rem;
  height: 12rem;
  margin-bottom: 1.5rem;
  border: 4px solid #fff;
  border-radius: 0.5rem;
  overflow: hidden;
  margin: auto;
  margin-bottom: 30px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}
.page-wrapper .student-verification-container .verification-card .verification-body .student-info .student-photo-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-wrapper .student-verification-container .verification-card .verification-body .student-info .student-photo-wrapper .photo-label {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 0.625rem;
  padding: 0.25rem 0;
}
.page-wrapper .student-verification-container .verification-card .verification-body .student-info .student-name {
  font-size: 1.25rem;
  font-weight: bold;
  color: #111;
}
.page-wrapper .student-verification-container .verification-card .verification-body .student-info .student-name-ar {
  font-size: 1rem;
  color: #555;
  margin-bottom: 1rem;
}
.page-wrapper .student-verification-container .verification-card .verification-body .student-info .student-details {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.page-wrapper .student-verification-container .verification-card .verification-body .student-info .student-details .detail-box {
  background-color: #fff;
  padding: 0.75rem;
  border: 1px solid #f0f0f0;
  border-radius: 0.375rem;
  text-align: left;
}
.page-wrapper .student-verification-container .verification-card .verification-body .student-info .student-details .detail-box .detail-label {
  font-size: 0.625rem;
  text-transform: uppercase;
  color: #999;
  font-weight: bold;
  letter-spacing: 0.05em;
}
.page-wrapper .student-verification-container .verification-card .verification-body .student-info .student-details .detail-box .detail-value {
  font-family: monospace;
  font-size: 1rem;
  color: #800000;
  margin-top: 0.25rem;
}
.page-wrapper .student-verification-container .verification-card .verification-body .student-info .student-details .detail-box .detail-value-flex {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  color: #333;
}
.page-wrapper .student-verification-container .verification-card .verification-body .student-info .student-details .detail-box .detail-value-flex p {
  margin: 0;
}
.page-wrapper .student-verification-container .verification-card .verification-body .student-info .student-details .detail-box .detail-value-flex svg {
  color: #2563eb;
  width: 16px;
}
.page-wrapper .student-verification-container .verification-card .verification-body .document-info {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.page-wrapper .student-verification-container .verification-card .verification-body .document-info .doc-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #f0f0f0;
}
.page-wrapper .student-verification-container .verification-card .verification-body .document-info .doc-header .doc-type p:first-child,
.page-wrapper .student-verification-container .verification-card .verification-body .document-info .doc-header .doc-issued p:first-child {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: #999;
  letter-spacing: 0.05em;
  font-weight: bold;
}
.page-wrapper .student-verification-container .verification-card .verification-body .document-info .doc-header .doc-type p:last-child {
  font-size: 1.25rem;
  font-family: serif;
  color: #111;
}
.page-wrapper .student-verification-container .verification-card .verification-body .document-info .doc-header .doc-issued p:last-child {
  font-size: 1rem;
  font-weight: 500;
  color: #111;
}
.page-wrapper .student-verification-container .verification-card .verification-body .document-info .doc-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
@media (min-width: 640px) {
  .page-wrapper .student-verification-container .verification-card .verification-body .document-info .doc-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}
.page-wrapper .student-verification-container .verification-card .verification-body .document-info .doc-stats .stat-box {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem;
  border-radius: 0.5rem;
}
.page-wrapper .student-verification-container .verification-card .verification-body .document-info .doc-stats .stat-box svg {
  width: 2.5rem;
  height: 2.5rem;
  padding: 5px;
  border-radius: 5px;
}
.page-wrapper .student-verification-container .verification-card .verification-body .document-info .doc-stats .stat-box p {
  margin: 0;
}
.page-wrapper .student-verification-container .verification-card .verification-body .document-info .doc-stats .stat-box.stat-red svg {
  background-color: #fef2f2;
  color: #800000;
}
.page-wrapper .student-verification-container .verification-card .verification-body .document-info .doc-stats .stat-box.stat-yellow svg {
  background-color: #fef9c3;
  color: #ca8a04;
}
.page-wrapper .student-verification-container .verification-card .verification-body .document-info .doc-stats .stat-box.stat-blue svg {
  color: #1d4ed8;
  background-color: #eff6ff;
}
.page-wrapper .student-verification-container .verification-card .verification-body .document-info .doc-stats .stat-box.stat-purple svg {
  background-color: #f5f3ff;
  color: #7c3aed;
}
.page-wrapper .student-verification-container .verification-card .verification-body .document-info .doc-stats .stat-box p:first-child {
  font-size: 0.75rem;
  color: #999;
}
.page-wrapper .student-verification-container .verification-card .verification-body .document-info .doc-stats .stat-box p:last-child {
  font-size: 1rem;
  font-weight: bold;
  color: #111;
}
.page-wrapper .student-verification-container .verification-card .verification-body .document-info .doc-actions {
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid #f0f0f0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
}
.page-wrapper .student-verification-container .verification-card .verification-body .document-info .doc-actions .action-buttons {
  display: flex;
  gap: 0.75rem;
}
.page-wrapper .student-verification-container .verification-card .verification-body .document-info .doc-actions .action-buttons .btn-download,
.page-wrapper .student-verification-container .verification-card .verification-body .document-info .doc-actions .action-buttons .btn-print {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  gap: 0.5rem;
}
.page-wrapper .student-verification-container .verification-card .verification-body .document-info .doc-actions .action-buttons .btn-download {
  background-color: #800000;
  color: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
.page-wrapper .student-verification-container .verification-card .verification-body .document-info .doc-actions .action-buttons .btn-download:hover {
  background-color: #600000;
}
.page-wrapper .student-verification-container .verification-card .verification-body .document-info .doc-actions .action-buttons .btn-print {
  border: 1px solid #ccc;
  background-color: #fff;
}
.page-wrapper .student-verification-container .verification-card .verification-body .document-info .doc-actions .action-buttons .btn-print:hover {
  background-color: #f0f0f0;
}
.page-wrapper .student-verification-container .verification-card .verification-body .document-info .doc-actions .btn-share {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0.75rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  color: #686868;
  display: flex;
  gap: 5px;
}
.page-wrapper .student-verification-container .verification-card .verification-body .document-info .doc-actions .btn-share:hover {
  text-decoration: underline;
}
.page-wrapper .student-verification-container .verification-footer {
  text-align: center;
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
}
.page-wrapper .student-verification-container .verification-footer .footer-logo-wrapper {
  display: flex;
  justify-content: center;
}
.page-wrapper .student-verification-container .verification-footer .footer-logo-wrapper .footer-logo-circle {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 2px solid #ffd700;
  background-color: #fff;
  overflow: hidden;
  filter: grayscale(100%);
  opacity: 0.5;
  transition: all 0.3s ease;
}
.page-wrapper .student-verification-container .verification-footer .footer-logo-wrapper .footer-logo-circle:hover {
  filter: grayscale(0);
}
.page-wrapper .student-verification-container .verification-footer .footer-logo-wrapper .footer-logo-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-wrapper .student-verification-container .verification-footer .footer-text {
  font-size: 0.875rem;
  color: #888;
  margin-bottom: 0;
}
.page-wrapper .student-verification-container .verification-footer .footer-verify-btn {
  font-size: 0.875rem;
  color: #800000;
  background-color: white;
}
.page-wrapper .student-verification-container .verification-footer .footer-verify-btn:hover {
  text-decoration: underline;
}

.page {
  min-height: 100vh;
  background-color: #800000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.card {
  width: 100%;
  max-width: 420px;
  background-color: #fff;
  border-radius: 12px;
  border: 1px solid #ffd700;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}

.card-header {
  text-align: center;
  padding: 24px;
  border-bottom: 1px solid #eee;
}

.icon-wrapper {
  width: 80px;
  height: 80px;
  margin: 0 auto 16px;
  background-color: #800000;
  border-radius: 50%;
  border: 4px solid #ffd700;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.card-header h1 {
  margin: 0;
  font-size: 24px;
  color: #800000;
}

.card-header a {
  text-decoration: none;
}

.card-header h2 {
  margin: 4px 0;
  font-size: 20px;
  color: #666;
}

.portal {
  margin-top: 8px;
  font-size: 12px;
  font-weight: bold;
  color: #ffd700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.card-body {
  padding: 32px;
}

.form-group {
  margin-bottom: 20px;
}

label {
  display: block;
  font-size: 14px;
  margin-bottom: 6px;
}

input {
  width: 100%;
  height: 40px;
  padding: 8px 12px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 14px;
}

input:focus {
  outline: none;
  border-color: #800000;
}

.button-login {
  width: 100%;
  height: 50px;
  background-color: #800000;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
}

.button-login:hover {
  background-color: #600000;
}

.links {
  margin-top: 24px;
  text-align: center;
}

.links a {
  display: block;
  color: #800000;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 16px;
}

.links a:hover {
  text-decoration: underline;
}

.footer {
  border-top: 1px solid #eee;
  padding-top: 12px;
}

.footer a {
  font-size: 12px;
  color: #777;
}

.footer a:hover {
  color: #ffd700;
}

.footer {
  background-color: var(--main-color);
  color: white;
  font-size: 16px;
  font-weight: 400;
}
.footer .bar {
  height: 0.5px;
  width: 100%;
  background-color: rgb(255, 255, 255);
}
.footer .footer-bottom {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  padding: 20px 11px;
  background-color: var(--sec-color);
  justify-content: center;
}

/*# sourceMappingURL=main.css.map */
