@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/icon?family=Material+Symbols+Rounded");

:root {
  /* EduBird guardian design tokens (StudentPay structure + teal brand) */
  --gp-primary: #0e7a5f;
  --gp-primary-deep: #0a5f4a;
  --gp-primary-mid: #12966f;
  --gp-primary-light: #34d399;
  --gp-gold: #d4af37;
  --gp-text: #16352c;
  --gp-muted: #6b8178;
  --gp-page-bg: #f0f7f4;
  --gp-card-radius: 1.35rem;
  --gp-section-radius: 1rem;
  --gp-card-shadow: 0 8px 32px -12px rgba(15, 23, 42, 0.14), 0 2px 6px rgba(15, 23, 42, 0.04);
  --gp-stat-shadow: 0 4px 20px -8px rgba(15, 23, 42, 0.1), 0 1px 3px rgba(15, 23, 42, 0.06);
  --gp-cta-shadow: 0 6px 18px -6px rgba(14, 122, 95, 0.45);
  --gp-border: rgba(226, 232, 240, 0.7);
  --gp-slate-50: #f8fafc;
  --gp-slate-100: #f1f5f9;
  --gp-slate-400: #94a3b8;
  --gp-slate-500: #64748b;
  --gp-slate-700: #334155;
  --gp-slate-900: #0f172a;

  /* Legacy brand scale remapped to teal so existing classes inherit */
  --brand-color-100: #0e7a5f;
  --brand-color-75: #12966f;
  --brand-color-50: #5bb896;
  --brand-color-25: #c5e8db;
  --brand-color-15: #e8f5f0;
  --brand-color-10: #f0f7f4;
  --primary-black: #16352c;
  --secondary-black: #6b8178;
  --border-color: rgba(226, 232, 240, 0.9);
  --ice-whiteApp: #f0f7f4;
  --ice-whiteWeb: #f0f7f4;
  --white: #ffffff;
  --red: #df2a43;
  --redish-white: #f5bec6;
  --font32: 32px;
  --font28: 28px;
  --font24: 24px;
  --font22: 22px;
  --font20: 20px;
  --font18: 18px;
  --font16: 16px;
  --font14: 14px;
  --font12: 12px;
  --font10: 10px;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Poppins', sans-serif;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow-x: hidden !important
}

.custom-tooltip {
  --bs-tooltip-bg: var(--red);
}

/*>>>>> Start Animation Area <---------- */

@-webkit-keyframes featureImgBounce {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
}

@keyframes featureImgBounce {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
}

/* Start BG Animaption */
@-webkit-keyframes animateGradient {
  0% {
    background-position: left bottom
  }

  50% {
    background-position: right top
  }

  100% {
    background-position: left bottom
  }
}

@keyframes animateGradient {
  0% {
    background-position: left bottom
  }

  50% {
    background-position: right top
  }

  100% {
    background-position: left bottom
  }
}

/* ----------> End Animation Area <<<<<*/

/*>>>>> Text & Header Area <---------- */
a,
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  padding: 0px;
  margin: 0px;
}

a,
a:hover {
  text-decoration: none;
}

ul,
li {
  list-style: none;
  padding: 0px;
  margin: 0px;
}

.section-header h5 {
  color: var(--primary-black);
  font-size: var(--font16);
}

.section-header hr.colorgraph {
  height: 4px;
  border-top: 0;
  background: #c4e17f;
  background: -webkit-linear-gradient(left, #c4e17f, #c4e17f 12.5%, #f7fdca 25%, #fecf71 25%, #fecf71 37.5%, #f0776c 37.5%, #f0776c 50%, #db9dbe 50%, #db9dbe 62.5%, #c49cde 62.5%, #c49cde 75%, #669ae1 75%, #669ae1 87.5%, #62c2e4 87.5%, #62c2e4);
  background: -moz-linear-gradient(left, #c4e17f, #c4e17f 12.5%, #f7fdca 25%, #fecf71 25%, #fecf71 37.5%, #f0776c 37.5%, #f0776c 50%, #db9dbe 50%, #db9dbe 62.5%, #c49cde 62.5%, #c49cde 75%, #669ae1 75%, #669ae1 87.5%, #62c2e4 87.5%, #62c2e4);
  background: -o-linear-gradient(left, #c4e17f, #c4e17f 12.5%, #f7fdca 25%, #fecf71 25%, #fecf71 37.5%, #f0776c 37.5%, #f0776c 50%, #db9dbe 50%, #db9dbe 62.5%, #c49cde 62.5%, #c49cde 75%, #669ae1 75%, #669ae1 87.5%, #62c2e4 87.5%, #62c2e4);
  background: linear-gradient(to right, #c4e17f, #c4e17f 12.5%, #f7fdca 25%, #fecf71 25%, #fecf71 37.5%, #f0776c 37.5%, #f0776c 50%, #db9dbe 50%, #db9dbe 62.5%, #c49cde 62.5%, #c49cde 75%, #669ae1 75%, #669ae1 87.5%, #62c2e4 87.5%, #62c2e4);
}

/* ----------> End Text & Header Area <<<<<*/

/*>>>>> Start Button Style Area <---------- */
.btn {
  min-width: 140px;
}

.btn:hover {
  background-color: var(--brand-color-100);
  border-color: var(--brand-color-100);
}

.btn-check:checked+.btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check)+.btn:active {
  background-color: var(--brand-color-100);
  border-color: var(--brand-color-100);
}





.btn-group2 {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
}

.login-btn {
  padding: 0px 24px;
  height: 52px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: var(--white);
  border: 2px solid var(--brand-color-100);
  border-radius: 10px;
  font-size: var(--font14);
  font-weight: 600;
  color: var(--secondary-black);
  -webkit-transition: all .25s ease;
  transition: all .25s ease;
  letter-spacing: 1px;
}

.login-btn:hover {
  color: var(--brand-color-100);
}

.user-btn {
  height: 40px;
  width: 100%;
  cursor: pointer;
  padding: 0px 12px 0px 6px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  align-items: center;
  background: var(--brand-color-15);
  border: 2px solid var(--brand-color-15);
  border-radius: 500px;
  font-weight: 600;
  font-size: 13px;
  color: var(--primary-black);
  -webkit-transition: all .25s ease;
  transition: all .25s ease;
  letter-spacing: 1px;
  position: relative;
}

.user-btn p {
  display: flex;
  align-items: center;
  justify-content: center;
}

.user-btn img {
  height: 30px;
  width: 30px;
  border-radius: 100%;
  border: 2px solid var(--brand-color-100);
  margin-right: 8px;
}

.swipe-btn {
  height: 60px;
  width: 100%;
  cursor: pointer;
  padding: 0px 20px 0px 10px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  align-items: center;
  background: var(--brand-color-15);
  border: 1px solid var(--brand-color-100);
  border-radius: 8px;
  font-weight: 600;
  font-size: var(--font14);
  color: var(--primary-black);
  -webkit-transition: all .25s ease;
  transition: all .25s ease;
  letter-spacing: 1px;
  position: relative;
}

.swipe-btn.dropdown-toggle::after {
  position: absolute;
  right: 15px;
}

.swipe-btn img {
  height: 48px;
  width: 48px;
  border-radius: 100%;
  border: 2px solid var(--brand-color-100);
  margin-right: 10px;
}

.swipe-btn .user-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  align-items: start;
}

.swipe-btn .user-info p {
  color: var(--primary-black);
  font-size: var(--font14);
}

.swipe-btn .user-info span {
  color: var(--secondary-black);
  font-size: var(--font12);
}

.dropdown-menu {
  width: 100%;
  padding: 8px;
}

.dropdown-menu .swipe-btn {
  margin-top: 8px;
  background-color: var(--border-color);
  border-color: transparent;
}

.dropdown-menu .swipe-btn:hover {
  background-color: var(--brand-color-100);
}

.btn-primary.btn-lg {
  height: 60px;
  width: 100%;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 600;
  font-size: var(--font16);
  background-color: var(--brand-color-100);
  border-color: var(--brand-color-100);
  border-radius: 12px;
}

.btn-primary {
  color: var(--white);
  background-color: var(--brand-color-100);
  border-color: var(--brand-color-100);
}

.btn-primary:hover {
  background-color: var(--brand-color-75);
  border-color: var(--brand-color-75);
}

.btn-primary:focus {
  outline: none;
  box-shadow: none;
}

.btn-outline-primary {
  color: var(--brand-color-100);
  border-color: var(--brand-color-100);
}

.btn-outline-primary:hover {
  color: var(--white);
  background-color: var(--brand-color-100);
  border-color: var(--brand-color-100);
}

/* Outline Animated BTN */
.btn-outline {
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  height: 52px;
  width: 220px;
  padding: 0 32px;
  font-size: var(--font16);
  background: var(--white);
  border-radius: 100px;
  -webkit-border-radius: 100px;
  border: 2px solid var(--brand-color-100);
  color: var(--brand-color-100);
  -webkit-box-shadow: 0 10px 15px 0 rgba(3, 35, 68, .1);
  box-shadow: 0 10px 15px 0 rgba(3, 35, 68, .1);
}

.btn-outline:hover {
  color: var(--white);
  background: var(--brand-color-100);
  border: 2px solid var(--brand-color-100);
}

.btn-outline .circle,
a {
  -webkit-transition: 1.2s cubic-bezier(.17, .85, .438, .99);
  -o-transition: 1.2s cubic-bezier(.17, .85, .438, .99);
  transition: 1.2s cubic-bezier(.17, .85, .438, .99)
}

.btn-outline span.circle {
  background: rgba(255, 255, 255, .2);
  display: block;
  position: absolute;
  top: -10%;
  right: -130px;
  width: 200px;
  height: 200px;
  border-radius: 50%
}

.btn-outline:hover span.circle {
  top: -10%;
  right: -80px
}


.thm-btn {
  border: none;
  display: inline-block;
  vertical-align: middle;
  outline: none;
  font-weight: 500;
  font-size: var(--font16);
  color: var(--primary-black);
  padding: 13px 41px;
  border-radius: 4px;
  -webkit-transition: background .4s ease, color .4s ease;
  transition: background .4s ease, color .4s ease;
  background-image: -webkit-gradient(linear, left top, right top, from(#ff4eb5), to(#ffa065));
  background-image: linear-gradient(90deg, #ff4eb5 0%, #ffa065 100%);
  position: relative;
}

.thm-btn:before {
  content: '';
  position: absolute;
  top: 2px;
  right: 2px;
  bottom: 2px;
  left: 2px;
  border-radius: 4px;
  background-color: var(--white);
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transition: -webkit-transform .4s ease;
  transition: -webkit-transform .4s ease;
  transition: transform .4s ease;
  transition: transform .4s ease, -webkit-transform .4s ease;
}

.thm-btn span {
  position: relative;
}

.thm-btn:hover {
  color: var(--white);
}

.thm-btn:hover:before {
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
}

/* ----------> End Button Style Area <<<<<*/

/*>>>>> Start Input CSS Area <---------- */

.form-group {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--ice-whiteApp);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  margin-bottom: 20px;
  padding: 12px 24px 0px 24px;
}

.form-group:hover {
  background: var(--ice-whiteApp);
  border-color: var(--brand-color-100);
}

.form-group .form-label {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: var(--font12);
  color: var(--secondary-black);
  margin-bottom: 0px;
}

.form-group.is-error {
  border-color: var(--red);
  background-color: #FCF0F0;
}

.form-group .form-label .material-symbols-rounded {
  display: none;
  color: var(--red);
  font-size: var(--font18);
}

.form-group.is-error .form-label .material-symbols-rounded {
  display: block;
}

.form-group .form-control {
  padding: 0px;
  outline: none;
  border: none;
  font-weight: 500;
  font-size: var(--font14);
  color: var(--primary-black);
  background-color: transparent;
  padding: 8px 0px 12px 0px;
}

.form-group .form-control::-moz-placeholder {
  font-weight: 500;
  color: #aac0d9;
}

.form-group .form-control:-ms-input-placeholder {
  font-weight: 500;
  color: #aac0d9;
}

.form-group .form-control::placeholder {
  font-weight: 500;
  color: #aac0d9;
}

.form-group .form-control:focus,
.form-group .form-select:focus {
  box-shadow: none;
}

.form-group .form-control[type=file]::file-selector-button {
  color: var(--brand-color-100);
  border: none;
  border-radius: 1px;
  background-color: var(--border-color);
  margin-left: 0px;
}

.form-group .form-control[type=file]:hover::file-selector-button {
  background-color: var(--border-color);
}

.form-group .togglePassword {
  color: var(--secondary-black);
  position: absolute;
  top: 50%;
  right: 3%;
  transform: translate(-50%, -50%);
  cursor: pointer;
}

/* ----------> End Input CSS Area <<<<<*/

/*>>>>> Start Image Uploader Area <---------- */
.document-uploader {
  position: relative;
  width: 100%;
  height: 240px;
  border: 1px solid var(--brand-color-100);
  overflow: hidden;
  margin-bottom: 20px;
  border-radius: 12px;
}

.document-uploader img {
  height: 100%;
  width: 100%;
}

.document-uploader input[type=file] {
  cursor: pointer;
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 100%;
  text-align: center;
  padding: 12px 0px;
  z-index: 2;
  opacity: 0;
}

.document-uploader .upload-btn {
  cursor: pointer;
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 100%;
  text-align: center;
  padding: 12px 0px;
  font-size: var(--font14);
  font-weight: 600;
  color: var(--primary-black);
  background-color: var(--brand-color-100);
  z-index: 1;
  opacity: .8;
}

/* ----------> End Image Uploader Area <<<<<*/

/*>>>>> Start Admin Layout Area <---------- */
/* @media (max-width: 575.98px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }
} */

.master-layout {
  margin-top: 60px;
  height: 100%;
  padding: 24px 0 40px;
  min-height: calc(100vh - 60px);
  background-color: var(--gp-page-bg);
}

.master-layout-fixed {
  margin-top: 60px;
  height: calc(100dvh - 60px);
  background-color: var(--gp-page-bg);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.master-layout-fixed::-webkit-scrollbar {
  display: none;
}

.layout-body {
  height: auto;
  min-height: 100%;
  display: flex;
  flex-shrink: 1;
  overflow: visible;
  gap: 1.25rem;
  padding-bottom: calc(5.5rem + env(safe-area-inset-bottom, 0px));
}

@media (min-width: 992px) {
  .layout-body {
    padding-bottom: 0;
  }
}

.layout-sidebar {
  padding-top: 0;
  height: auto;
  margin-right: 0;
  flex: 0 0 260px;
  max-width: 280px;
  position: relative;
  z-index: 40;
  align-self: flex-start;
  pointer-events: auto;
}

.layout-details {
  padding: 0;
  width: auto;
  max-width: 100%;
  height: auto;
  overflow: visible;
  min-width: 0;
  flex: 1 1 0%;
  position: relative;
  z-index: 1;
}

.layout-inner {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  border-radius: 0;
  width: 100%;
  min-height: auto;
  background-color: transparent;
  padding: 0;
  box-shadow: none;
}

@media (max-width: 991.98px) {
  .layout-sidebar {
    /* Keep in flow for Vue mount; drawer itself is position:fixed */
    position: fixed;
    width: 0;
    height: 0;
    margin: 0;
    padding: 0;
    flex: none;
    max-width: none;
    overflow: visible;
    z-index: 10000;
    pointer-events: none;
  }

  .layout-sidebar .menu-sidebar,
  .layout-sidebar .gp-sidebar-scrim {
    pointer-events: auto;
  }
}

/* ----------> End Admin Layout Area <<<<<*/

/* >>>>> Start Header Sction Area ---------- */
.header {
  position: absolute;
  top: 20px;
  z-index: 100;
  background-color: transparent;
  padding: 18px 0;
  width: 100%;
}

.header.fixed,
.headerScroll.fixed {
  position: fixed;
  top: 0;
  background: linear-gradient(90.25deg, hsla(0, 0%, 98.8%, .35) 5.68%, hsla(0, 0%, 98.8%, .3) 143.91%);
  -webkit-backdrop-filter: blur(30px);
  backdrop-filter: blur(30px);
  padding: 8px 0;
  border-bottom: 1px solid var(--white);
  box-shadow: 0 3px 11px rgba(48, 105, 174, .08);
}

.header-wrapper {
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
}

.header-logo {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 8px;
}

.header-logo img {
  height: 44px;
}

.header-logo h1 {
  flex-basis: 95%;
  font-weight: 800;
  font-size: var(--font20);
  line-height: 24px;
  color: var(--primary-black);
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.header-nav .nav-items {
  margin-bottom: 0;
}

.header-nav .nav-items>li {
  list-style: none;
  display: inline-block;
}

.header-nav .nav-items>li:first-child a {
  font-weight: 800;
  color: var(--brand-color-100);
}

.header-nav .nav-items>li:nth-child(n+2) {
  margin-left: 16px;
}

.header-nav .nav-items li a {
  font-size: var(--font14);
  color: var(--primary-black);
  font-weight: 600 !important;
  position: relative;
}

.header-nav .nav-items li>a::before {
  content: "";
  display: block;
  width: 0;
  height: 4px;
  border-radius: 100px;
  background-color: var(--brand-color-100);
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%, 0);
  transform: translate(-50%, 0);
  -webkit-transition: all .25s ease;
  transition: all .25s ease;
}

.header-nav .nav-items>li>a:hover::before {
  width: calc(100% - 16px);
}

/* Start Dropdown Area */
.nav-dropdown {
  position: relative;
  width: auto;
  z-index: 100;
}

.nav-dropdown .dropdown-head::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -20px;
  width: 100%;
  height: 100%;
}

.nav-dropdown .dropdown-items {
  display: block;
  border: 4px solid var(--border-color);
  border-radius: 20px;
  width: 250px;
  padding: 20px;
  z-index: 1000;
  position: absolute;
  top: 100px;
  right: 0;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all .25s ease;
  transition: all .25s ease;
  background-color: var(--white);
}

.nav-dropdown:hover .dropdown-items {
  top: 0px !important;
  visibility: visible !important;
  opacity: 1 !important;
  -webkit-transform: translateY(50px);
  transform: translateY(50px)
}

.nav-dropdown .dropdown-items::before {
  content: "";
  display: block;
  position: absolute;
  background: url(../images/corner.svg) no-repeat;
  width: 34px;
  height: 43px;
  background-size: cover;
  top: -22px;
  right: -4px;
}

.nav-dropdown .dropdown-items li a {
  font-size: var(--font14);
  font-weight: 500;
  color: var(--secondary-black);
  border-radius: 20px;
  position: relative;
  padding: 10px 0px 10px 20px;
  cursor: pointer;
  -webkit-transition: all .25s ease;
  transition: all .25s ease;
  display: block
}

.nav-dropdown .dropdown-items li:hover a {
  color: var(--primary-black);
  background-color: var(--border-color);
}

/* End Dropdown Area */
.dynamic-items {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

.dynamic-items .mobile-hamburger {
  display: none;
}

/* Styles specific to screens with a maximum width of 991.98px or less */
@media (max-width: 991.98px) {
  .header {
    position: fixed;
    top: 0;
    background: linear-gradient(90.25deg, hsla(0, 0%, 98.8%, .35) 5.68%, hsla(0, 0%, 98.8%, .3) 143.91%);
    -webkit-backdrop-filter: blur(30px);
    backdrop-filter: blur(30px);
    padding: 8px 0;
    border-bottom: 1px solid var(--white);
  }

  .header-nav .nav-items {
    display: none;
  }

  .header-nav .dynamic-items .nav-dropdown,
  .header-nav .dynamic-items .login-btn:not(.gp-header__cta--admission) {
    display: none;
  }

  .header-nav .dynamic-items .mobile-hamburger {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
    cursor: pointer;
    padding: 6px;
    border-radius: 4px;
    color: var(--brand-color-100);
    font-size: 26px;
    background-color: var(--brand-color-10);
    border: 1px solid var(--brand-color-25);
  }
}

@media (max-width: 640px) {
  .header-logo h1 {
    font-size: var(--font16);
    font-weight: 800;
    color: var(--primary-black);
    padding: 0px;
    margin: 0px;
  }
}

/* <<<<< End Header Sction Area ------------ */

/* >>>>> Start Footer Sction Area ---------- */
.footer-section {
  background: linear-gradient(118.64deg, rgba(98, 214, 143, .2) -4.78%, hsla(0, 0%, 100%, .6) 64.5%, rgba(98, 214, 143, .4) 111.91%);
  box-shadow: 0 -4px 17px rgba(78, 75, 102, .15);
  -webkit-backdrop-filter: blur(30px);
  backdrop-filter: blur(30px);
  border-radius: 40px 40px 0 0;
  padding: 40px 0px 0px 0px;
  position: relative;
  overflow: hidden;
}

.footer-widget {
  margin-bottom: 16px;
  overflow: hidden;
}

.footer-widget h2 {
  font-weight: 700;
  font-size: var(--font16);
  text-transform: uppercase;
  color: var(--primary-black);
  margin-bottom: 16px;
}

.footer-widget p {
  line-height: 2;
  font-size: var(--font14);
  color: var(--secondary-black);
}

.footer-widget ul {
  width: 100%;
  list-style: none;
  padding: 0px;
  margin: 0px 16px 0px 0px;
}

.footer-widget ul:last-child {
  margin-right: 0;
}

.footer-widget ul li a {
  display: inline-block;
  position: relative;
  padding-left: 20px;
  font-size: var(--font14);
  color: var(--secondary-black);
  margin-bottom: 8px;
}

.footer-widget ul li a:after {
  position: absolute;
  content: "";
  width: 6px;
  height: 6px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  border: 1px solid var(--brand-color-100);
  border-radius: 50%;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}

.footer-widget ul li a:hover {
  color: var(--primary-black);
}

.footer-widget ul li a:hover:after {
  width: 8px;
  height: 8px;
  background: var(--brand-color-100);
}

.footer-widget .google-play-btn {
  display: flex;
  align-items: center;
  height: 60px;
  min-width: 180px;
  width: 100%;
  border-radius: 12px;
  background-color: var(--white);
  border: 1px solid var(--border-color);
}

.footer-widget .google-play-btn img {
  height: 28px;
  margin-left: 24px;
}

.footer-section .getway-img {
  cursor: default;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 16px;
  border-radius: 24px;
  border: 1px solid var(--border-color);
  background: linear-gradient(90.25deg, hsla(0, 0%, 98.8%, .6) 5.68%, hsla(0, 0%, 98.8%, .6) 143.91%);
  -webkit-backdrop-filter: blur(30px);
  backdrop-filter: blur(30px);
  margin-bottom: 20px;
}

.footer-section .copyright {
  padding: 20px 0;
  font-size: var(--font12);
  color: var(--primary-black);
  border-top: 1px solid var(--border-color);
}

.footer-section .copyright a {
  color: var(--brand-color-100);
  font-size: var(--font12);
}

/* <<<<< End Footer Sction Area ---------- */

/* >>>>> Start Modal Area ---------- */
.modal-body {
  display: flex;
  flex-direction: column;
  position: relative;
  border-radius: 0px;
}

.modal-body iframe {
  width: 100%;
  height: 72vh;
}

.modal-body .btn-close {
  position: absolute;
  width: 40px;
  height: 40px;
  top: 15px;
  right: 15px;
}

.modal-header {
  padding: 16px;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-header .modal-title {
  font-size: var(--font18);
  color: var(--primary-black);
}

.modal-header button {
  color: var(--secondary-black);
  font-size: var(--font12);
  color: var(--primary-black);
  background-color: transparent;
  height: 36px;
  width: 36px;
  border-radius: 50%;
}

.modal-header button:hover {
  background-color: var(--border-color);
  color: var(--primary-black);
}

.modal-content .modal-body {
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content .modal-body img {
  width: 100%;
}

.modal-footer {
  padding: 16px;
  border-top: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 575.98px) {
  .modal-dialog {
    margin: 0.5rem;
    max-width: calc(100% - 1rem);
  }

  .modal-content .modal-body {
    display: block;
    padding: 12px 16px;
  }

  .modal-footer {
    flex-wrap: wrap;
    gap: 0.5rem;
  }
}

/* <<<<< End Modal Area ---------- */

/* >>>>> Start Table Style Area ---------- */
.table thead tr {
  font-size: var(--font14);
  border-bottom: 1px solid var(--border-color);
}

.table tbody tr {
  height: 48px;
  font-size: var(--font14);
  border-bottom: 1px solid var(--border-color);
}

.table tfoot tr {
  height: 48px;
  font-weight: 600;
  font-size: var(--font14);
  border-bottom: 1px solid transparent;
}

.table tr th {
  text-transform: uppercase;
  color: var(--brand-color-100);
}

.table tr td {
  color: var(--primary-black);
}

/* <<<<< End Table Style Area ---------- */

/* >>>>> Start Hero Section Area ---------- */
.hero-section {
  width: 100vw;
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-wrapper {
  width: calc(100% - 100px);
  height: 100%;
  border-radius: 40px;
  background-color: var(--brand-color-10);
  padding: 220px 0 120px 0;
}

.hero-context {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-context h1 {
  font-weight: 600;
  font-size: var(--font32);
  color: var(--primary-black);
}

.hero-context p {
  font-size: var(--font22);
  color: var(--secondary-black);
}

.hero-img {
  display: flex;
  text-align: right;
  position: relative;
  align-items: center;
  justify-content: center;
}

.hero-img img {
  width: 38%;
  z-index: 10;
  position: relative;
  filter: drop-shadow(0px 20px 10px rgba(75, 80, 84, 0.2));
  -webkit-filter: drop-shadow(0px 20px 10px rgba(75, 80, 84, 0.2));
  -moz-filter: drop-shadow(0px 20px 10px rgba(75, 80, 84, 0.2))
}

.hero-img::before {
  content: "";
  display: block;
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: var(--brand-color-100);
  background: linear-gradient(180deg, #62D68F 0%, #1FB95B 100%);
  background-size: 200% 200%;
  background-position: left bottom;
  filter: drop-shadow(0px 5px 40px #62D68F);
  -webkit-filter: drop-shadow(0px 5px 40px #62D68F);
  -moz-filter: drop-shadow(0px 5px 40px #62D68F);
  -webkit-animation-name: animateGradient;
  animation-name: animateGradient;
  -webkit-animation-duration: 2.5s;
  animation-duration: 2.5s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite
}

@media (max-width: 991.98px) {
  .hero-wrapper {
    padding: 120px 10px 120px 10px;
    width: calc(100% - 50px)
  }

  .hero-context {
    margin-top: 50px;
    text-align: center;
    align-items: center;
    justify-content: center;
  }

  .hero-img {
    width: 100%;
  }

  .hero-img::before {
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }

}

@media (max-width: 767.98px) {
  .hero-section {
    margin-top: 60px;
  }

  .hero-wrapper {
    padding: 50px 0px;
  }

  .hero-img {
    width: 100%;
  }

  .hero-img::before {
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}

@media (max-width: 575.98px) {
  .hero-img img {
    width: 50%;
    height: 50%;
    -o-object-fit: cover;
    object-fit: cover
  }

  .hero-img::before {
    -webkit-transform: scale(1) translate(-50%, 0);
    transform: scale(1) translate(-50%, 0);
    top: 10%;
    left: 50%;
    width: 300px;
    height: 300px;
  }
}

/* <<<<< End Hero Sction Area ---------- */

/* >>>>> Start Service Slider Section Area ---------- */
#service-slider {
  padding: 80px 0px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#service-slider {
  padding: 80px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#service-slider .swiper-button-next,
#service-slider .swiper-button-prev {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  top: 55%;
  color: var(--brand-color-100);
  background-color: transparent;
  border: none;
  border-radius: 4px;
  text-shadow: 0 0.25em 0.5em rgba(0, 0, 0, 0.1);
  transition: opacity 150ms ease, border 300ms ease-in-out;
  transform: translateY(-50%);
}

#service-slider .swiper-button-next {
  right: 0px;
}

#service-slider .swiper-button-prev {
  left: 0px;
}

#service-slider .swiper-button-next:hover,
#service-slider .swiper-button-prev:hover {
  color: var(--brand-color-100);
  background: linear-gradient(90.25deg, hsla(0, 0%, 98.8%, .35) 5.68%, hsla(0, 0%, 98.8%, .3) 143.91%);
  -webkit-backdrop-filter: blur(30px);
  backdrop-filter: blur(30px);
  box-shadow: 0 3px 11px rgba(48, 105, 174, .08);
}

#service-slider .swiper-button-next:after,
#service-slider .swiper-button-prev:after {
  font-size: 20px;
  font-weight: 800;
}

.single-service {
  border-style: solid;
  border-width: 1px;
  border-color: var(--border-color);
  border-radius: 12px;
  padding: 4px;
  position: relative;
}

.single-service:before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  border-radius: 4px;
  opacity: 0;
  background-image: linear-gradient(40deg, #39aeff 0%, #3cff53 100%);
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
}

.single-service:hover:before {
  opacity: 1;
}

.single-service .service-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  background-color: var(--white);
  border-radius: 12px;
  position: relative;
  padding: 16px;
}

.single-service .service-inner img {
  padding: 12px;
  width: 60px;
  height: 60px;
  -webkit-box-shadow: 0px 20px 40px 0px rgba(58, 212, 173, 0.8);
  box-shadow: 0px 20px 40px 0px rgba(58, 212, 173, 0.8);
  border-radius: 8px;
  background-image: linear-gradient(40deg, #39aeff 0%, #3cff53 100%);
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.single-service .service-inner p {
  font-weight: 600;
  font-size: var(--font12);
  color: var(--primary-black);
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
}

.single-service:hover .service-inner p {
  color: var(--brand-color-100);
}

/* <<<<< End Service Slider Section Area ---------- */


/* >>>>> Start Student Portal Feature Area ---------- */
.portalFeature-section {
  background: url(../images/bg-light.png);
  background-size: contain;
  background-repeat: repeat-x;
  background-position: center center;
  margin: 0px 0px 80px 0px;
}

.common-heading {
  padding: 0;
  text-align: center;
  position: relative;
  z-index: 10;
  text-align: left !important;
  margin-bottom: 40px;
}

.common-heading h2 {
  font-size: var(--font24);
  color: var(--primary-black);
  margin-bottom: 20px
}

.common-heading h2 span {
  font-size: var(--font22);
  color: var(--brand-color-100);
  text-transform: uppercase;
  letter-spacing: .5px;
  font-weight: 700;
  display: block;
}

.common-heading p {
  font-size: var(--font14);
  color: var(--primary-black);
  line-height: 30px;
}

.portalFeature {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  text-align: center;
  gap: 4px;
  padding: 16px;
  margin-top: 40px;
  border-radius: 12px;
  box-shadow: 0 11px 20px rgb(123 149 162 / 15%);
}

.portalFeature img {
  width: 40px;
  margin: 0 auto;
  display: block
}

.portalFeature p {
  font-weight: 600;
  font-size: var(--font14);
  color: var(--primary-black);
}

.colorBG-1 {
  background: #f3f5ff;
  border-bottom: 4px solid #b0bdff
}

.colorBG-2 {
  background: #fff3e6;
  border-bottom: 4px solid #ffc093
}

.colorBG-3 {
  background: #fbeefd;
  border-bottom: 4px solid #f6bcff
}

.colorBG-4 {
  background: #effdff;
  border-bottom: 4px solid #9ff3ff
}

.colorBG-5 {
  background: #fbfff1;
  border-bottom: 4px solid #ffdaa2
}

/*>>>>> End Student Portal Feature Area <---------- */

/* >>>>> Start Latest Notice Area ---------- */
.notice-section {
  margin: 0px 0px 80px 0px;
}

.notice-wrapper {
  background-color: #fefbf4;
  padding: 40px 0;
  width: calc(100% - 100px);
  margin: 0 auto;
  border-radius: 40px;
}

.main-title {
  text-align: center;
  margin-bottom: 40px;
}

.main-title h2 {
  font-size: var(--font24);
  color: var(--primary-black);
  font-weight: 500;
  margin-bottom: 16px;
}

.main-title p {
  font-size: var(--font16);
  line-height: 24px;
  color: var(--secondary-black);
  margin-bottom: 0px;
  max-width: 580px;
  font-weight: 400;
  margin: auto;
}

.notice-card {
  min-height: 150px;
  cursor: pointer;
  display: flex;
  gap: 8px;
  flex-direction: column;
  border: 2px solid #fce5c5;
  border-radius: 12px;
  padding: 16px;
  -webkit-transition: all 300ms linear 0s;
  -o-transition: all 300ms linear 0s;
  transition: all 300ms linear 0s;
  background-color: #fefbf4;
  margin-bottom: 16px;
}

.notice-card:hover {
  filter: drop-shadow(0px 10px 20px rgba(255, 186, 114, 0.3));
  -webkit-filter: drop-shadow(0px 10px 20px rgba(255, 186, 114, 0.3));
  -moz-filter: drop-shadow(0px 10px 20px rgba(255, 186, 114, 0.3));
  border-color: #ec9d5f;
}

.notice-card span {
  width: fit-content;
  border-radius: 4px;
  background: #ec9d5f;
  color: var(--white);
  line-height: 30px;
  font-weight: 400;
  font-size: var(--font12);
  padding: 0px 20px;
}

.notice-card h5 {
  font-size: var(--font14);
  color: var(--primary-black);
  line-height: normal;
  font-weight: 600;
  -webkit-transition: all 300ms linear 0s;
  -o-transition: all 300ms linear 0s;
  transition: all 300ms linear 0s;
}

.notice-card:hover h5 {
  color: #ec9d5f;
}

.notice-card p {
  color: var(--brand-color-100);
  font-size: var(--font14);
}

@media (max-width: 991.98px) {
  .notice-wrapper {
    padding: 50px 0px;
  }

  .notice-card {
    padding: 8px 12px;
  }

  .notice-card span {
    border-radius: 0px;
    background: none;
    color: #ec9d5f;
    line-height: normal;
    font-weight: 400;
    font-size: var(--font12);
    padding: 0px;
  }

  .notice-card h5 {
    color: var(--primary-black);
    font-weight: 600;
    font-size: var(--font14);
    line-height: normal;
    -webkit-transition: all 300ms linear 0s;
    -o-transition: all 300ms linear 0s;
    transition: all 300ms linear 0s;
  }
}

@media (max-width: 768px) {
  .notice-wrapper {
    width: calc(100% - 50px);
    padding: 50px 20px;
  }
}

/*>>>>> End Latest Notice Area <---------- */


/*>>>>> Start About Area <---------- */
.cta-two {
  padding: 40px 0;
}

.cta-two__moc {
  width: 100%;
  -webkit-animation: featureImgBounce 5s ease-in-out 0s infinite alternate;
  animation: featureImgBounce 5s ease-in-out 0s infinite alternate;
}

.cta-two h5 {
  color: var(--primary-black);
  font-size: var(--font28);
  margin-top: 40px;
  margin-bottom: 40px;
}

.cta-two p {
  margin: 0;
  color: var(--secondary-black);
  font-size: var(--font16);
}

/*>>>>> End About Area <---------- */


/* >>>>> Start App Promo Area ---------- */
.app-promo {
  padding: 80px 0;
  position: relative;
  background-color: var(--white);
}

.app-promo img.app-mockup {
  -webkit-animation: featureImgBounce 5s ease-in-out 0s infinite alternate;
  animation: featureImgBounce 5s ease-in-out 0s infinite alternate;
}

.app-promo h5 {
  color: var(--primary-black);
  font-size: var(--font28);
  margin-top: 40px;
  margin-bottom: 40px;
}

.app-promo p {
  margin: 0;
  color: var(--secondary-black);
  font-size: var(--font16);
}

.app-promo ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 40px 0;
}

.app-promo ul li {
  display: flex;
  align-items: center;
  position: relative;
  font-size: var(--font16);
  color: var(--secondary-black);
  padding-left: 32px;
}

.app-promo ul li span {
  color: var(--brand-color-100);
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

/*>>>>> End App Promo Area <---------- */


/* >>>>> Start App Tutorial Area ---------- */
.appTutorial {
  width: 100vw;
  margin-top: 30px;
}

.appTutorial .appTutorial-wrapper {
  margin: 50px 0;
  background-color: rgba(98, 214, 143, 0.1);
  padding: 80px 0;
  width: calc(100% - 100px);
  margin: 0 auto;
  border-radius: 30px;
}

.appTutorial .appTutorial-wrapper h5 {
  font-weight: 600;
  font-size: var(--font32);
  color: var(--primary-black);
  line-height: normal;
  text-align: center;
  margin-bottom: 40px;
}

.appTutorial .appTutorial-wrapper .single-step {
  text-align: center
}

.appTutorial .appTutorial-wrapper .single-step .image {
  width: 100%;
  filter: drop-shadow(0px 40px 20px rgba(98, 214, 143, 0.2));
  -webkit-filter: drop-shadow(0px 40px 20px rgba(98, 214, 143, 0.2));
  -moz-filter: drop-shadow(0px 40px 20px rgba(98, 214, 143, 0.2));
  margin-bottom: 40px;
}

.appTutorial .appTutorial-wrapper .single-step .content {
  margin-top: 16px;
  display: flex;
  gap: 8px;
  flex-direction: column;
  align-items: center;
}

.appTutorial .appTutorial-wrapper .single-step .content h3 {
  font-size: var(--font18);
  font-weight: 600;
  color: var(--brand-color-100);
}

.appTutorial .appTutorial-wrapper .single-step .content span {
  display: block;
  font-size: var(--font22);
  color: var(--primary-black);
}

.appTutorial .appTutorial-wrapper .single-step .content p {
  color: var(--primary-black);
  font-size: var(--font14);
  width: 94%
}

@media (max-width: 991.98px) {
  .appTutorial .appTutorial-wrapper {
    padding: 50px 0;
  }

  .appTutorial .appTutorial-wrapper .single-step .image img {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
    width: auto;
    margin: 0 auto
  }

  .appTutorial .appTutorial-wrapper .single-step .content {
    margin: 0
  }

  .appTutorial .appTutorial-wrapper .single-step .content .paragraph {
    width: 60%;
    margin: 0 auto
  }
}

@media (max-width: 768px) {
  .appTutorial .appTutorial-wrapper {
    width: calc(100% - 50px);
    padding: 50px 20px;
  }
}

/*>>>>> End App Tutorial Area <---------- */

/*>>>>> Start FAQ Section Area <---------- */
.faq-section {
  padding: 80px 0;
}

.faq-section .accordion-item {
  position: relative;
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
  background-color: rgba(98, 214, 143, 0.2);
  margin-bottom: 12px;
  border-radius: 12px !important;
  border: none;
  padding: 12px;
}

.faq-section .accordion-button:not(.collapsed) {
  color: var(--bs-accordion-active-color);
  background-color: transparent;
  box-shadow: none;
  border-color: transparent;
}

.faq-section .accordion-button {
  color: var(--primary-black);
  font-weight: 600;
  font-size: var(--font16);
  background-color: transparent;
  padding: 8px 16px;
  border-radius: 0px;
  position: relative;
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
}

.faq-section .accordion-button:hover {
  z-index: 2;
}

.faq-section .accordion-button:not(.collapsed) {
  color: var(--brand-color-100);
  box-shadow: none;
  border-color: transparent;
}

.faq-section .accordion-button:focus {
  box-shadow: none;
}

.faq-section .accordion-body {
  color: var(--primary-black);
  font-size: var(--font14);
  padding: 16px;
  background-color: var(--white);
  border-radius: 12px;
}

/*>>>>> End FAQ Section Area <---------- */

/* >>>>> Start Auth Section ---------- */
.auth-illustration {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 0 12px;
  gap: 24px;
}

.auth-illustration img {
  width: 65%;
  object-fit: contain;
}

.auth-illustration h5 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--font16);
  color: var(--secondary-black);
}

.auth-illustration h5 a {
  font-weight: 600;
  color: var(--brand-color-100);
}

.auth-illustration h5 a:hover {
  color: var(--brand-color-100);
}

.auth-wrapper {
  background: var(--white);
  padding: 40px 32px;
  border-radius: 24px;
  border: 1px solid var(--border-color);
  min-height: 550px;
}

.auth-wrapper h1 {
  font-weight: 600;
  font-size: var(--font28);
  color: var(--primary-black);
  margin-bottom: 16px;
}

.auth-wrapper p {
  font-size: var(--font16);
  color: var(--secondary-black);
  margin-bottom: 30px;
}

.auth-wrapper .forgot-password {
  cursor: pointer;
  display: flex;
  justify-content: flex-end;
  font-weight: 600;
  font-size: var(--font14);
  color: var(--secondary-black);
  margin-top: 16px;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}

.auth-wrapper .forgot-password:hover {
  color: var(--brand-color-100);
}

/* <<<<< End Auth Section ---------- */

/*>>>>> Start Menu Sidebar Area <---------- */
.menu-sidebar {
  width: 100%;
  max-width: 280px;
  height: auto;
  padding: 0;
  background-color: var(--white);
  border-radius: var(--gp-card-radius);
  border: 1px solid var(--gp-border);
  box-shadow: var(--gp-card-shadow);
  overflow: hidden;
  transition: right 200ms cubic-bezier(0.645, 0.045, 0.355, 1) 0s;
  position: sticky;
  top: 76px;
  z-index: 40;
  pointer-events: auto;
  display: flex;
  flex-direction: column;
}

.menu-sidebar.landing-page {
  z-index: 1000;
  display: none;
}

.menu-sidebar .sidebar-header {
  display: none;
}

.show-hide {
  display: none;
}

/* --Sidebar Inner--*/
.menu-wrapper {
  height: auto;
  max-height: calc(100vh - 160px);
  overflow-y: auto;
  padding: 0.75rem 0.65rem 0.5rem;
  flex: 1 1 auto;
}

.menu-wrapper::-webkit-scrollbar {
  width: 4px;
}

.menu-wrapper::-webkit-scrollbar-track {
  background-color: transparent;
}

.menu-wrapper::-webkit-scrollbar-thumb {
  background-color: var(--brand-color-50);
  border-radius: 4px;
}

.menu-wrapper #home-menu,
.menu-wrapper #portal-menu {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.gp-nav-section-label {
  margin: 0.85rem 0.5rem 0.35rem;
  padding: 0;
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gp-slate-400);
}

.gp-nav-section-label:first-child {
  margin-top: 0.15rem;
}

.menu-wrapper .switch-btn {
  width: 100%;
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 12px;
  font-size: var(--font14);
  color: var(--brand-color-100);
  border-radius: 0.85rem;
  border: 1px solid var(--brand-color-100);
  outline: none;
  box-shadow: none;
  background-color: var(--white);
  margin-bottom: 8px;
}

.menu-wrapper .single-menu {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.6rem 0.65rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgb(71, 85, 105);
  border: none;
  outline: none;
  box-shadow: none;
  background-color: transparent;
  border-radius: 0.85rem;
  text-align: left;
  position: relative;
  transition: background-color 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
  cursor: pointer;
  text-decoration: none !important;
  pointer-events: auto;
}

.menu-wrapper .single-menu:hover {
  color: #0f172a !important;
  background-color: rgb(248, 250, 252);
}

.menu-wrapper .single-menu.active {
  color: var(--gp-primary) !important;
  background: linear-gradient(135deg, rgba(14, 122, 95, 0.07), rgba(52, 211, 153, 0.05));
  box-shadow: 0 1px 4px rgba(14, 122, 95, 0.08);
  font-weight: 700;
}

.menu-wrapper .single-menu .menu-label {
  flex: 1;
  min-width: 0;
}

.menu-wrapper .single-menu .nav-indicator {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 9999px;
  flex-shrink: 0;
  background: linear-gradient(135deg, #0e7a5f, #34d399);
  box-shadow: 0 0 6px 1px rgba(52, 211, 153, 0.45);
}

.menu-wrapper .single-menu .menu-icon {
  flex-shrink: 0;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 0.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgb(241, 245, 249);
  margin-right: 0;
  padding: 0;
  transition: background 0.15s ease, box-shadow 0.15s ease;
}

.menu-wrapper .single-menu .menu-icon img {
  width: 1rem;
  height: 1rem;
  object-fit: contain;
  display: block;
}

.menu-wrapper .single-menu.active .menu-icon {
  background: linear-gradient(135deg, #0e7a5f, #0a5f4a);
  box-shadow: 0 4px 10px -4px rgba(14, 122, 95, 0.55);
}

.menu-wrapper .single-menu.active .menu-icon img {
  filter: brightness(0) invert(1);
}

.gp-sidebar-logout {
  border-top: 1px solid rgba(241, 245, 249, 0.9);
  padding: 0.65rem;
}

.gp-logout-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.6rem 1rem;
  border-radius: 0.85rem;
  border: 1px solid #fecdd3;
  background: #fff1f2;
  color: #e11d48;
  font-size: 0.82rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.12s ease, background 0.15s ease;
}

.gp-logout-btn .material-symbols-rounded {
  font-size: 1.1rem;
}

.gp-logout-btn:hover {
  background: #ffe4e6;
}

.gp-logout-btn:active {
  transform: scale(0.97);
}

@media (max-width: 991.98px) {
  .menu-sidebar {
    display: flex;
    background-color: var(--white);
    position: fixed;
    right: -320px;
    bottom: 0;
    top: 0;
    margin: 0;
    padding: 0;
    width: 300px;
    max-width: 86vw;
    z-index: 10000;
    overflow: visible;
    border-radius: 0;
    transition: right 200ms cubic-bezier(0.645, 0.045, 0.355, 1) 0s;
    box-shadow: rgba(0, 0, 0, 0.12) 0px 10px 50px;
  }

  .menu-sidebar.landing-page {
    display: flex;
  }

  .menu-sidebar .sidebar-header {
    padding: 10px 16px;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: space-between;
    color: var(--white);
    background: linear-gradient(135deg, #0e7a5f, #0a5f4a);
  }

  .menu-sidebar .menu-wrapper {
    padding: 12px 12px 16px;
    max-height: none;
    height: auto;
    flex: 1 1 auto;
    overflow-y: auto;
  }

  .show-hide {
    display: flex;
    right: 0;
  }

  .gp-sidebar-scrim {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(15, 23, 42, 0.45);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
  }
}

/* <<<<< End Menu Sidebar Area ---------- */

/*>>>>> Start Breadcrumbs Area <---------- */
.breadcrumbs {
  width: 100%;
  border-bottom: 1px solid var(--border-color);
  padding: 20px 16px;
  display: flex;
  gap: 32px;
  align-items: center;
  margin-bottom: 16px;
}

.breadcrumbs li {
  position: relative;
}

.breadcrumbs li::after {
  position: absolute;
  content: "\e8e4";
  font-family: 'Material Symbols Rounded' !important;
  right: -24px;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.4s;
  font-size: var(--font18);
  font-weight: 600;
  color: var(--primary-black);
}

.breadcrumbs li:last-child:after {
  display: none;
}

.breadcrumbs li a {
  color: var(--primary-black);
  font-size: var(--font14);
  font-weight: 400;
  text-transform: capitalize;
}

.breadcrumbs li:last-child a {
  color: var(--brand-color-100);
}

.breadcrumbs li a:hover {
  color: var(--brand-color-100);
}

/* <<<<< End Breadcrumbs Area ---------- */

/*>>>>> Start Dashboard Area <---------- */
.dashboard-card {
  width: 100%;
  display: flex;
  gap: 16px;
  flex-direction: column;
  align-items: center;
  padding: 24px 16px;
  border: 1px solid var(--border-color);
  margin-bottom: 20px;
}

.dashboard-card h5 {
  font-size: var(--font22);
  font-weight: 500;
  text-transform: uppercase;
  color: var(--brand-color-100);
}

.dashboard-card p {
  font-size: var(--font16);
  font-weight: 600;
}

/* <<<<< End Dashboard Area ---------- */

/*>>>>> Start Profile Tab Area <---------- */
#profileTab.nav-tabs {
  border-bottom: 2px solid var(--border-color);
  margin-bottom: 16px;
}

#profileTab.nav-tabs .nav-item .nav-link,
#profileTab.nav-tabs .nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: var(--font14);
  color: var(--primary-black);
  background-color: transparent;
  border: none;
  padding: 16px 4px;
}

#profileTab.nav-tabs .nav-item.show .nav-link,
#profileTab.nav-tabs .nav-link.active {
  color: var(--brand-color-100);
  position: relative;
}

#profileTab.nav-tabs .nav-item.show .nav-link::after,
#profileTab.nav-tabs .nav-link.active::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 4px;
  border-radius: 8px;
  bottom: -4px;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: var(--brand-color-100);
}

/* <<<<< End Profile Tab Area ---------- */

/*>>>>> Start Payment Card Area <---------- */
.payment-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
  background-color: var(--border-color);
  padding: 16px;
  border-radius: 16px;
  border: 1px solid var(--border-color);
  margin-bottom: 20px;
}

.payment-card .card-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  background-color: var(--brand-color-100);
  padding: 24px 16px;
  border-radius: 12px;
}

.payment-card .card-header h1 {
  font-size: var(--font28);
  color: var(--white);
}

.payment-card .card-header h1 span {
  margin-right: 4px;
}

.payment-card .card-header p {
  font-size: var(--font18);
  color: var(--primary-black);
}

.payment-card .card-header h1 span {
  color: var(--white);
  margin-right: 4px;
}

.payment-card .card-invoice {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--font14);
  color: var(--secondary-black);
}

.payment-card .card-invoice span {
  color: var(--primary-black);
}

/* <<<<< End Payment Card Area ---------- */

/*>>>>> Start Notice Details Area <---------- */

.notice-details {
  width: 100%;
  position: relative;
}

.notice-details:hover .notice-content {
  -webkit-box-shadow: 0px 20px 20px 0px rgba(0, 0, 0, 0.03);
  box-shadow: 0px 20px 20px 0px rgba(0, 0, 0, 0.03);
}

.notice-content {
  border: 1px solid #eedcb3;
  background-color: #fefbf4;
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  padding: 16px 24px;
}

.notice-info {
  margin: 0;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.notice-info li {
  display: flex;
  align-items: center;
}

.notice-info li a {
  font-size: var(--font14);
  color: var(--secondary-black);
  font-weight: 500;
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
}

.notice-info li a:hover {
  color: var(--brand-color-100);
}

.notice-details .notice-title {
  font-size: var(--font22);
  color: var(--primary-black);
  font-weight: 500;
  line-height: 1.2em;
  margin-bottom: 24px;
}

.notice-details p {
  margin-bottom: 0;
  font-size: var(--font14);
  color: var(--primary-black);
  line-height: 34px;
}

.notice-details p+p {
  margin-top: 24px;
}

.notice-details img {
  width: 100%;
  margin-bottom: 24px;
}

/* <<<<< End Notice Details Area ---------- */

/*>>>>> Start Trems & Condition Page Area <---------- */
.terms-header {
  font-size: var(--font22);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background-color: var(--black);
  padding: 30px 0;
  margin-top: -30px;
}

.terms-content h5 {
  font-weight: 600;
  font-size: var(--font16);
  color: var(--primary-black);
  line-height: 30px;
  margin-top: 30px;
}

.terms-content p {
  font-size: var(--font14);
  color: var(--primary-black);
  line-height: 30px;
}

/* <<<<< End Trems & Condition Page Area ---------- */

/* ----------Start Event Details Area ----------*/

.description-1 {
  padding: 15px 0px;
}

.description-1 h3 {
  font-size: var(--font20);
  color: var(--brand-color-100);
  margin-bottom: 10px;
}

.description-1 p {
  font-weight: 400;
  font-size: var(--font14);
  color: var(--primary-black);
}

.description-2 {
  margin-bottom: 20px;
}

.description-2 h3 {
  font-size: var(--font20);
  color: var(--brand-color-100);
  margin-bottom: 10px;
}

.description-2 p {
  font-weight: 400;
  font-size: var(--font14);
  color: var(--primary-black);
}

.description-2 .border-2,
.description-2 .border-1 {
  position: relative;
  z-index: 1;
}

.description-2 .border-2::before,
.description-2 .border-1::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  border: 3px solid #F0F2F4;
}

.description-2 .border-1::before {
  bottom: -21px;
  left: -21px;
}

@media (max-width: 767px) {
  .description-2 .border-1::before {
    bottom: -21px;
    right: -21px;
    left: auto;
  }
}

.description-2 .border-2::before {
  bottom: -21px;
  right: -21px;
}

.description-2 .hover-img {
  display: block;
  overflow: hidden;
}

.description-2 .hover-img img {
  width: 100%;
  -webkit-transition: transform 0.9s ease;
  -o-transition: transform 0.9s ease;
  -moz-transition: transform 0.9s ease;
  transition: transform 0.9s ease;
}

.description-2 .hover-img:hover img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}


/* Hostail Payment Page */
.month-list {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
}

.month-list li {
  display: flex;
  align-items: center;

}

.month-list li .form-check {
  display: flex;
  gap: 8px;
  align-items: center;
  width: 100%;
  background-color: var(--brand-color-100);
  height: 48px;
  padding: 8px 16px;
  margin: 0px;
  width: 100%;
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  cursor: pointer;
}

.month-list li .form-check input {
  margin: 0px;
  outline: none;
  box-shadow: none;
}

.month-list li .form-check .form-check-input:checked {
  background-color: var(--brand-color-100);
  border-color: var(--brand-color-100);
}

.month-list li .form-check label {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: space-between;
  font-size: var(--font14);
  color: var(--primary-black);
  width: 100%;
}

.month-list li .form-check label span {
  flex: 1;
  display: flex;
  align-items: center;
  font-weight: 500;
}

.month-list li .form-check label span:nth-child(2) {
  display: flex;
  justify-content: center;
}

.month-list li .form-check label span:nth-child(3) {
  justify-content: end;
}

.month-list li .form-check label span .status {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px 12px;
  border-radius: 100px;
  background-color: #FFE5E5;
  color: #f35959;
  font-size: var(--font14);
  font-weight: 500;
}

.month-list li .form-check label span .status.paid {
  color: var(--brand-color-100);
  background-color: var(--brand-color-25);
}




/* Popup----------------------- */

/* Add your website styles above */

/* Popup styles */
.popup-container {
  z-index: 1111111;
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.popup-content {
  display: flex;
  gap: 16px;
  flex-direction: column;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  padding: 24px 16px;
  border-radius: 16px;
}

.close-btn {
  position: absolute;
  top: 8px;
  right: 16px;
  font-size: 32px;
  cursor: pointer;
}

.popup-content h3 {
  color: var(--primary-black);
  font-weight: 600;
  font-size: 22px;
}

.popup-content img {
  border-radius: 16px;
  width: 100%;
  height: 400px;
}

.popup-content p {
  color: var(--primary-black);
  font-size: var(--font16);
  font-weight: 600;
}




.invoice-container {
  width: 100%;
}



.invoice-container .invoice-head {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-color);
  padding: 8px 0px;
}

.invoice-container .invoice-head .logo {
  width: 80px;
}

.invoice-container .invoice-head .head-info {
  display: flex;
  gap: 8px;
  align-items: end;
  flex-direction: column;
}

.invoice-container .invoice-body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0px;
}

.invoice-container .invoice-body .invoice-status {
  flex-grow: 1;
  justify-content: center;
}

.invoice-container .invoice-body .invoice-status img {
  width: 100px;
}

.invoice-container .invoice-body .body-info {
  flex-grow: 1;
  display: flex;
  gap: 8px;
  flex-direction: column;
}

.invoice-container h6 {
  color: var(--primary-black);
  font-size: var(--font20);
}

.invoice-container p {
  color: var(--primary-black);
  font-size: var(--font14);
}

.invoice-container p span {
  color: var(--secondary-black);
  font-size: var(--font14);
}

#chatbox-iframe {
  position: fixed;
  bottom: 0;
  right: 0;
  border: none;
  width: 100% !important;
  height: 100% !important;
}

/* ========== Guardian Portal design system (StudentPay structure) ========== */

.gp-portal-shell {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0.75rem max(0.85rem, env(safe-area-inset-right, 0px)) 0
    max(0.85rem, env(safe-area-inset-left, 0px));
}

@media (min-width: 576px) {
  .gp-portal-shell {
    padding: 1rem max(1rem, env(safe-area-inset-right, 0px)) 0
      max(1rem, env(safe-area-inset-left, 0px));
  }
}

@media (min-width: 992px) {
  .gp-portal-shell {
    padding: 1.15rem 1.25rem 2rem;
  }
}

.gp-dashboard {
  animation: gpDashIn 0.45s cubic-bezier(0.22, 1, 0.36, 1) both;
}

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

.gp-soft-card {
  background: var(--white);
  border-radius: var(--gp-card-radius);
  border: 1px solid var(--gp-border);
  box-shadow: var(--gp-card-shadow);
  overflow: visible;
}

.gp-page-head {
  position: sticky;
  top: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 1.15rem;
  background: linear-gradient(135deg, rgba(232, 245, 240, 0.95) 0%, rgba(255, 255, 255, 0.98) 55%, #fff 100%);
  border-bottom: 1px solid rgba(226, 232, 240, 0.7);
  border-radius: var(--gp-card-radius) var(--gp-card-radius) 0 0;
}

.gp-page-head__icon {
  flex-shrink: 0;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(135deg, var(--gp-primary), var(--gp-primary-deep));
  box-shadow: var(--gp-cta-shadow);
  font-size: 1.15rem;
}

.gp-page-head__eyebrow {
  margin: 0;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gp-slate-400);
}

.gp-page-head__title {
  margin: 0.1rem 0 0;
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--gp-slate-900);
  line-height: 1.25;
}

.gp-page-head__badge {
  margin-left: auto;
  padding: 0.25rem 0.7rem;
  border-radius: 9999px;
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--gp-primary);
  background: rgba(14, 122, 95, 0.1);
  border: 1px solid rgba(14, 122, 95, 0.18);
}

.gp-page-body {
  padding: 1rem 1.15rem 1.25rem;
  border-radius: 0 0 var(--gp-card-radius) var(--gp-card-radius);
  background: #fff;
}

.gp-section {
  border-radius: var(--gp-section-radius);
  border: 1px solid rgba(226, 232, 240, 0.8);
  background: #fff;
  overflow: hidden;
  margin-bottom: 1rem;
}

.gp-section:last-child {
  margin-bottom: 0;
}

.gp-section-head {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.7rem 0.9rem;
  background: var(--gp-slate-50);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.gp-section-head__icon {
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 0.55rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.95rem;
  background: linear-gradient(135deg, var(--gp-primary), var(--gp-primary-deep));
}

.gp-section-head__label {
  margin: 0;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gp-slate-500);
}

.gp-section-body {
  padding: 0.9rem;
}

.gp-stat-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  margin-bottom: 1rem;
}

@media (min-width: 576px) {
  .gp-stat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .gp-stat-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.gp-stat-card {
  position: relative;
  background: #fff;
  border-radius: var(--gp-card-radius);
  border: 1px solid var(--gp-border);
  box-shadow: var(--gp-stat-shadow);
  padding: 1rem 1.1rem;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gp-stat-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--gp-card-shadow);
}

.gp-stat-card:hover .gp-stat-card__icon {
  transform: scale(1.1) rotate(-3deg);
}

.gp-stat-card__label {
  margin: 0;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gp-slate-400);
}

.gp-stat-card__value {
  margin: 0.35rem 0 0;
  font-size: 1.65rem;
  font-weight: 900;
  color: var(--gp-slate-900);
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
}

.gp-stat-card__icon {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  background: linear-gradient(135deg, var(--gp-primary), var(--gp-primary-deep));
  box-shadow: var(--gp-cta-shadow);
  transition: transform 0.2s ease;
}

.gp-stat-card::before {
  content: '';
  position: absolute;
  right: -20%;
  top: -40%;
  width: 55%;
  height: 90%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(14, 122, 95, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.gp-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.28rem 0.7rem;
  border-radius: 9999px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gp-slate-700);
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(8px);
}

.gp-chip--solid {
  background: rgba(14, 122, 95, 0.1);
  border-color: rgba(14, 122, 95, 0.18);
  color: var(--gp-primary);
}

.gp-chip--success {
  background: rgba(16, 185, 129, 0.12);
  border-color: rgba(16, 185, 129, 0.22);
  color: rgb(5, 150, 105);
}

.gp-list-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0.85rem;
  border-bottom: 1px solid rgba(241, 245, 249, 1);
}

.gp-list-row:nth-child(even) {
  background: rgba(248, 250, 252, 0.65);
}

.gp-list-row:last-child {
  border-bottom: none;
}

.gp-list-row__icon {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(14, 122, 95, 0.14), rgba(14, 122, 95, 0.05));
  color: var(--gp-primary);
  font-size: 1.1rem;
}

.gp-list-row__title {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--gp-slate-900);
}

.gp-list-row__meta {
  margin: 0.15rem 0 0;
  font-size: 0.75rem;
  color: var(--gp-slate-500);
  font-weight: 500;
}

.gp-list-row__trail {
  margin-left: auto;
  text-align: right;
  font-weight: 900;
  font-variant-numeric: tabular-nums;
  color: var(--gp-slate-900);
  font-size: 0.9rem;
}

.gp-empty {
  text-align: center;
  padding: 2rem 1rem;
}

.gp-empty__icon {
  width: 3.5rem;
  height: 3.5rem;
  margin: 0 auto 0.75rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gp-slate-100);
  color: var(--gp-slate-400);
  font-size: 1.75rem;
}

.gp-empty__text {
  margin: 0;
  color: var(--gp-slate-500);
  font-size: 0.9rem;
  font-weight: 600;
}

.gp-quick-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.65rem;
}

@media (min-width: 992px) {
  .gp-quick-access {
    display: none;
  }
}

.gp-quick-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none !important;
  color: var(--gp-slate-700);
  padding: 0.35rem;
  border: none;
  background: transparent;
}

.gp-quick-item__icon {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.35rem;
  background: linear-gradient(135deg, var(--gp-primary), var(--gp-primary-deep));
  box-shadow: var(--gp-cta-shadow);
}

.gp-quick-item__label {
  font-size: 0.68rem;
  font-weight: 800;
  text-align: center;
  line-height: 1.2;
  color: var(--gp-slate-700);
}

.gp-panel-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 992px) {
  .gp-panel-grid {
    grid-template-columns: 2fr 3fr;
  }

  .gp-panel-grid--aligned {
    align-items: stretch;
  }

  .gp-panel-grid--aligned > .gp-panel {
    height: 100%;
    min-height: 100%;
  }
}

.gp-panel {
  background: #fff;
  border-radius: var(--gp-card-radius);
  border: 1px solid var(--gp-border);
  box-shadow: var(--gp-card-shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 0;
  height: auto;
}

@media (min-width: 992px) {
  .gp-panel {
    height: 100%;
  }
}

.gp-panel-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1rem;
  background: linear-gradient(135deg, rgba(232, 245, 240, 0.9), rgba(255, 255, 255, 0.95));
  border-bottom: 1px solid rgba(226, 232, 240, 0.75);
  flex-shrink: 0;
}

.gp-panel-head--amber {
  background: linear-gradient(135deg, rgba(255, 247, 237, 0.95), rgba(255, 255, 255, 0.95));
}

.gp-panel-head__icon {
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(135deg, var(--gp-primary), var(--gp-primary-deep));
  font-size: 1.05rem;
}

.gp-panel-head--amber .gp-panel-head__icon {
  background: linear-gradient(135deg, #f59e0b, #d97706);
}

.gp-panel-head__title {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 900;
  color: var(--gp-slate-900);
}

.gp-panel-head__sub {
  margin: 0.1rem 0 0;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--gp-slate-500);
}

.gp-panel-head__action {
  margin-left: auto;
  padding: 0.3rem 0.65rem;
  border-radius: 0.6rem;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--gp-primary);
  background: rgba(14, 122, 95, 0.08);
  border: 1px solid rgba(14, 122, 95, 0.18);
  text-decoration: none !important;
}

.gp-panel-body {
  flex: 1;
  min-height: 0;
  overflow: visible;
}

@media (min-width: 992px) {
  .gp-panel-body {
    min-height: 0;
    overflow-y: auto;
  }

  .gp-panel-grid--aligned {
    align-items: stretch;
  }
}

.btn-primary {
  background: linear-gradient(135deg, var(--gp-primary), var(--gp-primary-deep)) !important;
  border-color: var(--gp-primary-deep) !important;
  box-shadow: var(--gp-cta-shadow);
  font-weight: 800 !important;
  border-radius: 0.85rem !important;
}

.btn-primary:hover,
.btn-primary:focus {
  background: linear-gradient(135deg, var(--gp-primary-mid), var(--gp-primary)) !important;
  border-color: var(--gp-primary) !important;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--gp-primary) !important;
  box-shadow: 0 0 0 3px rgba(14, 122, 95, 0.12) !important;
}

.form-control,
.form-select {
  border-radius: 0.75rem !important;
}

.table {
  --bs-table-bg: transparent;
}

.table thead th {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gp-slate-500);
  border-bottom-width: 1px;
  background: var(--gp-slate-50);
}

.table tbody td {
  vertical-align: middle;
  color: var(--gp-slate-700);
  font-size: 0.875rem;
}

.payment-card {
  border-radius: var(--gp-card-radius) !important;
  border: 1px solid var(--gp-border) !important;
  box-shadow: var(--gp-card-shadow) !important;
  overflow: visible;
  position: relative;
  z-index: 2;
}

/* Native select inside floating form-group — restore caret + usable height */
.form-group select.form-select,
.form-group .form-select.form-control {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto !important;
  min-height: 2.4rem;
  line-height: 1.4 !important;
  padding: 0.35rem 1.85rem 0.65rem 0 !important;
  margin: 0;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  color: var(--gp-slate-900);
  background-color: transparent !important;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%230e7a5f' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e") !important;
  background-repeat: no-repeat !important;
  background-position: right 0.1rem center !important;
  background-size: 14px 10px !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
  cursor: pointer;
}

.form-group select.form-select:focus,
.form-group .form-select.form-control:focus {
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
}

.payment-card .form-group {
  margin-bottom: 0;
  background: #fff;
  z-index: 3;
  overflow: visible;
}

.notice-card {
  border-radius: 1rem !important;
  border: 1px solid var(--gp-border) !important;
  box-shadow: var(--gp-stat-shadow) !important;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.notice-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--gp-card-shadow) !important;
}

.breadcrumbs {
  display: none;
}

/* Guardian Hero */
.gp-hero {
  position: relative;
  display: none;
  overflow: hidden;
  border-radius: 1.5rem;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(ellipse 70% 55% at 92% -5%, rgba(212, 175, 55, 0.22) 0%, transparent 52%),
    radial-gradient(ellipse 85% 65% at 100% 10%, rgba(52, 211, 153, 0.3) 0%, transparent 58%),
    radial-gradient(ellipse 75% 60% at -5% 95%, rgba(16, 185, 129, 0.26) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 45% 60%, rgba(14, 122, 95, 0.35) 0%, transparent 70%),
    linear-gradient(
      132deg,
      #031a14 0%,
      #062820 18%,
      #0a4536 42%,
      #0c6b52 68%,
      #0e7a5f 84%,
      #1bb883 100%
    );
  box-shadow:
    0 18px 42px -18px rgba(4, 40, 30, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

@media (min-width: 640px) {
  .gp-hero {
    display: block;
  }
}

.gp-hero__shine {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.04) 28%, transparent 48%),
    linear-gradient(0deg, rgba(3, 26, 20, 0.18) 0%, transparent 42%);
  pointer-events: none;
}

.gp-hero__orb {
  position: absolute;
  border-radius: 9999px;
  filter: blur(56px);
  pointer-events: none;
  animation: gpBlobFloat 16s ease-in-out infinite;
}

.gp-hero__orb--1 {
  top: -60px;
  right: 8%;
  height: 200px;
  width: 200px;
  background: rgba(52, 211, 153, 0.38);
}

.gp-hero__orb--2 {
  bottom: -70px;
  left: -20px;
  height: 160px;
  width: 160px;
  background: rgba(14, 122, 95, 0.4);
  animation-delay: -6s;
}

.gp-hero__orb--3 {
  top: 28%;
  right: 34%;
  height: 130px;
  width: 130px;
  background: rgba(212, 175, 55, 0.18);
  animation-delay: -10s;
}

@keyframes gpBlobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(12px, -10px) scale(1.06); }
}

.gp-hero__inner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
}

@media (min-width: 992px) {
  .gp-hero__inner {
    padding: 1.5rem 2rem;
  }
}

.gp-hero__avatar-wrap {
  position: relative;
  flex-shrink: 0;
}

.gp-hero__avatar-ring {
  position: absolute;
  inset: -6px;
  border-radius: 9999px;
  border: 2px solid rgba(255, 255, 255, 0.28);
  animation: gpRingPulse 3s ease-in-out infinite;
  pointer-events: none;
}

@keyframes gpRingPulse {
  0%, 100% { opacity: 0.55; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.04); }
}

.gp-hero__avatar {
  position: relative;
  width: 4.75rem;
  height: 4.75rem;
  border-radius: 9999px;
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 20px -8px rgba(0, 0, 0, 0.45), inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

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

.gp-hero__avatar-fallback {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 900;
  font-size: 1.35rem;
}

.gp-hero__greeting {
  margin: 0;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.gp-hero__name {
  margin: 0.15rem 0 0;
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 100%;
}

@media (min-width: 992px) {
  .gp-hero__name {
    font-size: 1.65rem;
  }
}

.gp-hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
  margin-top: 0.625rem;
}

.gp-hero__chip {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.25rem 0.65rem;
  border-radius: 9999px;
  font-size: 0.7rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
}

/* Mobile bottom tab bar — full-bleed dock (StudentPay) */
.gp-btab {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 110;
  padding: 0;
  pointer-events: none;
}

@media (max-width: 991.98px) {
  .gp-btab {
    display: block;
  }
}

.gp-btab__inner {
  pointer-events: auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: end;
  gap: 0;
  max-width: 480px;
  margin: 0 auto;
  padding: 0.3rem 0.35rem calc(0.35rem + env(safe-area-inset-bottom, 0px));
  border-radius: 0;
  background: rgba(255, 255, 255, 0.94);
  border: none;
  border-top: 1px solid rgba(226, 232, 240, 0.95);
  box-shadow: 0 -8px 28px -14px rgba(15, 23, 42, 0.2);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
}

.gp-btab__btn {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.12rem;
  min-height: 48px;
  padding: 0.45rem 0.2rem 0.25rem;
  border: none;
  background: transparent;
  color: var(--gp-slate-400);
  text-decoration: none !important;
  font-weight: 800;
  font-size: 0.65rem;
  cursor: pointer;
  pointer-events: auto;
  transition: color 0.15s ease, transform 0.12s ease;
}

.gp-btab__btn:active {
  transform: scale(0.88);
}

.gp-btab__btn.active {
  color: var(--gp-primary);
}

.gp-btab__btn.active .material-symbols-rounded {
  transform: translateY(-1px);
}

.gp-btab__pill {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1.6rem;
  height: 3px;
  border-radius: 9999px;
  background: linear-gradient(90deg, #0e7a5f, #34d399);
  box-shadow: 0 0 8px 1px rgba(52, 211, 153, 0.45);
}

.gp-btab__btn .material-symbols-rounded {
  font-size: 1.35rem;
  transition: transform 0.15s ease;
}

.gp-btab__fab-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.12rem;
  width: 4.2rem;
  margin: -1.8rem auto 0;
  text-decoration: none !important;
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
  pointer-events: auto;
}

.gp-btab__fab {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(135deg, var(--gp-primary), var(--gp-primary-deep));
  box-shadow: 0 10px 24px -8px rgba(14, 122, 95, 0.55), 0 2px 8px rgba(14, 122, 95, 0.2);
  border: 4px solid rgba(255, 255, 255, 0.95);
  transition: transform 0.12s ease, box-shadow 0.15s ease;
}

.gp-btab__fab-wrap:active .gp-btab__fab {
  transform: scale(0.91);
}

.gp-btab__fab-wrap.active .gp-btab__fab {
  box-shadow:
    0 10px 24px -8px rgba(14, 122, 95, 0.55),
    0 2px 8px rgba(14, 122, 95, 0.2),
    0 0 0 3px rgba(52, 211, 153, 0.35);
}

.gp-btab__fab .material-symbols-rounded {
  font-size: 1.5rem;
}

.gp-btab__fab-label {
  font-size: 0.6rem;
  font-weight: 800;
  color: var(--gp-slate-400);
}

.gp-btab__fab-wrap.active .gp-btab__fab-label {
  color: var(--gp-primary);
}

.gp-btab__avatar {
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 9999px;
  overflow: hidden;
  border: 2px solid transparent;
  background: linear-gradient(135deg, #0e7a5f, #0a5f4a);
  transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}

.gp-btab__btn.active .gp-btab__avatar {
  border-color: var(--gp-primary);
  box-shadow: 0 0 0 2px rgba(14, 122, 95, 0.2);
  transform: translateY(-1px);
}

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

/* More sheet */
.gp-sheet-root {
  position: fixed;
  inset: 0;
  z-index: 120;
}

.gp-sheet-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.gp-sheet {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  border-radius: 1.5rem 1.5rem 0 0;
  padding: 0.35rem 1rem calc(1.5rem + env(safe-area-inset-bottom, 0px));
  box-shadow: 0 -16px 50px -10px rgba(15, 23, 42, 0.35);
  max-height: 78vh;
  overflow-y: auto;
}

.gp-sheet__handle-btn {
  display: block;
  width: 100%;
  border: none;
  background: transparent;
  padding: 0.35rem 0 0.5rem;
  cursor: pointer;
}

.gp-sheet__handle {
  display: block;
  width: 2.5rem;
  height: 5px;
  border-radius: 9999px;
  background: #e2e8f0;
  margin: 0 auto;
}

.gp-sheet__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.15rem 0 0.85rem;
}

.gp-sheet__title {
  margin: 0;
  font-size: 1rem;
  font-weight: 900;
  color: var(--gp-slate-900);
}

.gp-sheet__back {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.35rem 0.7rem;
  border-radius: 9999px;
  border: 1px solid rgba(226, 232, 240, 0.95);
  background: rgb(248, 250, 252);
  color: var(--gp-slate-700);
  font-size: 0.72rem;
  font-weight: 800;
  cursor: pointer;
}

.gp-sheet__back .material-symbols-rounded {
  font-size: 0.95rem;
}

.gp-sheet-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.65rem;
}

@media (max-width: 380px) {
  .gp-sheet-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.gp-sheet-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  padding: 0.7rem 0.35rem;
  border-radius: 1rem;
  border: 1.5px solid rgb(241, 245, 249);
  background: #fff;
  text-decoration: none !important;
  color: var(--gp-slate-700);
  font-size: 0.6rem;
  font-weight: 800;
  text-align: center;
  cursor: pointer;
  transition: transform 0.12s ease, background 0.15s ease, border-color 0.15s ease;
}

.gp-sheet-item:active {
  transform: scale(0.94);
}

.gp-sheet-item.active {
  border-color: rgba(14, 122, 95, 0.28);
  background: linear-gradient(135deg, rgba(14, 122, 95, 0.1), rgba(52, 211, 153, 0.06));
  color: var(--gp-primary);
}

.gp-sheet-item__icon {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgb(241, 245, 249);
  color: var(--gp-primary) !important;
  font-size: 1.25rem !important;
}

.gp-sheet-item.active .gp-sheet-item__icon {
  background: linear-gradient(135deg, #0e7a5f, #0a5f4a);
  color: #fff !important;
  box-shadow: 0 4px 10px -4px rgba(14, 122, 95, 0.5);
}

.gp-sheet-item__label {
  line-height: 1.2;
}

.gp-sheet-logout {
  width: 100%;
  margin-top: 1rem;
  padding: 0.85rem;
  border-radius: 1rem;
  border: 1.5px solid #fecdd3;
  background: #fff1f2;
  color: #e11d48;
  font-weight: 800;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  cursor: pointer;
}

.gp-sheet-logout .material-symbols-rounded {
  font-size: 1.15rem;
}

.gp-sheet-logout:active {
  transform: scale(0.98);
}

.nav-tabs .nav-link {
  font-weight: 700;
  color: var(--gp-slate-500);
  border: none !important;
  border-bottom: 2px solid transparent !important;
  border-radius: 0 !important;
}

.nav-tabs .nav-link.active {
  color: var(--gp-primary) !important;
  border-bottom-color: var(--gp-primary) !important;
  background: transparent !important;
}

@media (max-width: 575.98px) {
  .nav-tabs.nav-justified .nav-link {
    font-size: 0.78rem;
    padding: 0.55rem 0.35rem;
    white-space: normal;
    line-height: 1.25;
  }

  .gp-page-body .table-responsive {
    margin: 0 -0.15rem;
    -webkit-overflow-scrolling: touch;
  }
}

.nav-tabs {
  border-bottom: 1px solid rgba(226, 232, 240, 0.9) !important;
}

html,
body {
  background-color: var(--gp-page-bg);
}

.gp-modal-content {
  border-radius: 1.25rem !important;
  border: 1px solid var(--gp-border) !important;
  overflow: hidden;
  box-shadow: var(--gp-card-shadow) !important;
}

.gp-modal-head {
  background: linear-gradient(135deg, rgba(232, 245, 240, 0.95), #fff) !important;
  border-bottom: 1px solid rgba(226, 232, 240, 0.8) !important;
}

.gp-modal-head .modal-title {
  font-weight: 900 !important;
  color: var(--gp-slate-900) !important;
  letter-spacing: 0.04em;
}

.auth-wrapper {
  border-radius: var(--gp-card-radius) !important;
  box-shadow: var(--gp-card-shadow) !important;
  border: 1px solid var(--gp-border) !important;
}