/*
* demo.css
* File include item demo only specific css only
******************************************************************************/
:root {
  --light-theme: #fff;
  --dark-university: #630d0f;
}

.menu .app-brand.demo {
  height: auto;
  text-align: center;
  justify-content: center;
  margin: 19px 0;
  border-bottom: 1px solid #c1c1c1;
  padding-bottom: 18px;
}

.app-brand-logo.demo svg {
  width: 22px;
  height: 38px;
}

.app-brand-text.demo {
  font-size: 1.75rem;
  letter-spacing: -0.5px;
  text-transform: lowercase;
}

/* ! For .layout-navbar-fixed added fix padding top tpo .layout-page */
/* Detached navbar */
.layout-navbar-fixed .layout-wrapper:not(.layout-horizontal):not(.layout-without-menu) .layout-page {
  padding-top: 76px !important;
}

/* Default navbar */
.layout-navbar-fixed .layout-wrapper:not(.layout-without-menu) .layout-page {
  padding-top: 64px !important;
}

/* Navbar page z-index issue solution */
.content-wrapper .navbar {
  z-index: auto;
}

.auth-right i.bx.bx-arrow-back.bx-rotate-180 {
  font-size: 21px;
  width: auto;
  height: auto;
}

/*
* Content
******************************************************************************/

.demo-blocks>* {
  display: block !important;
}

.demo-inline-spacing>* {
  margin: 1rem 0.375rem 0 0 !important;
}

/* ? .demo-vertical-spacing class is used to have vertical margins between elements. To remove margin-top from the first-child, use .demo-only-element class with .demo-vertical-spacing class. For example, we have used this class in forms-input-groups.html file. */
.demo-vertical-spacing>* {
  margin-top: 1rem !important;
  margin-bottom: 0 !important;
}

.demo-vertical-spacing.demo-only-element> :first-child {
  margin-top: 0 !important;
}

.demo-vertical-spacing-lg>* {
  margin-top: 1.875rem !important;
  margin-bottom: 0 !important;
}

.demo-vertical-spacing-lg.demo-only-element> :first-child {
  margin-top: 0 !important;
}

.demo-vertical-spacing-xl>* {
  margin-top: 5rem !important;
  margin-bottom: 0 !important;
}

.demo-vertical-spacing-xl.demo-only-element> :first-child {
  margin-top: 0 !important;
}

.rtl-only {
  display: none !important;
  text-align: left !important;
  direction: ltr !important;
}

[dir='rtl'] .rtl-only {
  display: block !important;
}

/*
* Layout demo
******************************************************************************/

.layout-demo-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 1rem;
}

.layout-demo-placeholder img {
  width: 900px;
}

.layout-demo-info {
  text-align: center;
  margin-top: 1rem;
}


.header {
  background: white;
  padding: 22px 34px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  margin-bottom: 11px;
}

.header h1 {
  font-size: 32px;
  color: #1a1a1a;
  font-weight: 700;
}

.content {
  background: white;
  padding: 30px;
  border-radius: 10px;
}

.info-card {
  background: #f5f5f5;
  border-radius: 16px;
  padding: 21px 24px;
  margin-bottom: 30px;
  color: #000000;
}

.category-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  padding: 8px 20px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 16px;
}

.info-title {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.3;
  color: #000;
}

.info-description {
  font-size: 16px;
  line-height: 1.7;
  color: #333;
}


.stats-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 30px;
}

.stat-box {
  background: white;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  padding: 24px 28px;
}

.stat-label {
  font-size: 12px;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 10px;
  font-weight: 600;
}

.stat-value {
  font-size: 24px;
  color: #1a1a1a;
  font-weight: 700;
}


.info-section {
  background: white;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  padding: 24px 26px;
}

.info-section-title {
  font-size: 16px;
  color: #fff;
  font-weight: 500;
  margin-bottom: 20px;
  background: #101010;
  padding: 14px;
  border-radius: 8px;
  letter-spacing: .3px;
}

.info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid #f0f0f0;
}

.info-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.info-row:first-child {
  padding-top: 0;
}

.info-label {
  font-size: 15px;
  color: #666;
  font-weight: 500;
}

.info-value {
  font-size: 15px;
  color: #1a1a1a;
  font-weight: 600;
  text-align: right;
  max-width: 60%;
  word-break: break-word;
}


.status-section {
  background: white;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  padding: 28px 32px;
  margin-bottom: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.status-label {
  font-size: 18px;
  color: #1a1a1a;
  font-weight: 700;
}

.status-badge {
  background: #d4f4dd;
  color: #0d894f;
  padding: 10px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.total-section {
  background: white;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  padding: 28px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.total-label {
  font-size: 18px;
  color: #1a1a1a;
  font-weight: 600;
}

.total-value {
  font-size: 26px;
  color: #0066cc;
  font-weight: 700;
}


.logos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 30px;
}

.logo-box {
  background: #f3f3f3;
  border: 2px solid #e5e5e5;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
}

.logo-title {
  font-size: 12px;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 20px;
  font-weight: 600;
}

.logo-image {
  width: 100%;
  max-width: 120px;
  height: 120px;
  object-fit: contain;
  border-radius: 8px;
  margin: 0 auto;
}

.simple-dashboard-heading span {
  text-align: left;
}

@media (max-width: 768px) {
  .header {
    padding: 25px 30px;
  }

  .content {
    padding: 11px;
  }

  .simple-dashboard-heading span {
    line-height: 22px;
  }

  .stats-container {
    grid-template-columns: 1fr;
  }

  button#sendOtpBtn {
    justify-content: center;
  }

  button#sendOtpBtn {
    font-size: 11px !important;
    min-width: 66px !important;
    padding: 2px !important;
    line-height: 22px !important;
    top: 14px !important;
    right: 8px !important;
  }

  .logos-grid {
    gap: 12px;
  }

  .info-card {
    padding: 14px 14px;
    margin-bottom: 22px;
  }

  .info-title {
    font-size: 22px;
    margin-bottom: 4px;
  }

  .info-section-title {
    font-size: 15px;
    margin-bottom: 12px;
    padding: 11px;
    letter-spacing: .3px;
  }

  .info-section {
    padding: 17px 11px;
  }

  .logos-grid {
    grid-template-columns: 1fr;
  }
}






/*my-new-ads*/

.simple-dashboard-heading {
  width: 100%;
  background: #0057b8;
  color: #ffffff;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 21px;
  font-weight: 500;
  border-radius: 4px;
  letter-spacing: .4px;
}

.simple-dashboard-heading i {
  font-size: 24px;
  color: #ffffff;
}

.div-all-boxes .card {
  border: none;
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .15);
  overflow: hidden;
  background: #fff;
}


.div-all-boxes .card-header {
  color: #fff;
  font-weight: 600;
  font-size: 20px;
  padding: 10px 21px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.icon-box {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #fff;
  box-shadow: 0 6px 12px rgba(0, 0, 0, .25);
  background: #ffffff5c;
}

.icon-box i {
  font-size: 25px;
}

.div-all-boxes .card-body {
  padding: 20px;
  padding-top: 6px !important;
}

.div-all-boxes .card-body p {
  display: flex;
  justify-content: space-between;
  color: #000;
  margin-bottom: 4px;
  padding-bottom: 14px;
  border-bottom: 1px dashed #ccc;
  font-size: 15px;
  font-weight: 500;
  padding-top: 12px;
}

.div-all-boxes .card-body p:last-child {
  border-bottom: none;
}


.div-all-boxes .col-lg-4:nth-child(1) .card-header {
  background: linear-gradient(90deg, #38bdf8, #4f46e5);
}


.div-all-boxes .col-lg-4:nth-child(2) .card-header {
  background: linear-gradient(90deg, #d946ef, #ec4899);
}

.div-all-boxes .col-lg-4:nth-child(3) .card-header {
  background: linear-gradient(90deg, #2ec58e, #028d7e);
}

.div-all-boxes .col-lg-4:nth-child(4) .card-header {
  background: linear-gradient(90deg, #fbbf24, #f97316);
}


.div-all-boxes .col-lg-4:nth-child(5) .card-header {
  background: linear-gradient(90deg, #818cf8, #d946ef);
}

.div-all-boxes .col-lg-4:nth-child(6) .card-header {
  background: linear-gradient(90deg, #fb7185, #db2777);
}

@media (max-width: 768px) {
  .div-all-boxes .card-header {
    font-size: 16px;
  }
}

.admin-profile {
  padding: 6px 10px;
}

.admin-info {
  line-height: 1.2;
}

.admin-name {
  font-size: 16px;
  font-weight: 600;
  color: #000;
  padding-bottom: 3px;
  border-bottom: 1px solid #aeaeae;
}

.admin-role {
  font-size: 13px;
  color: #6b7280;
  padding-top: 3px;
}

.admin-chevron {
  font-size: 12px;
  color: #000;
  margin-left: 4px;
}

.avatar img {
  width: 40px !important;
  height: 40px !important;
  border-radius: 50%;
  object-fit: contain;
  border: 2px solid #0057b8;
}

.btn-ad-asll {
  text-align: right;
}

a.btn.btn-sm.btn-view {
  background: #000;
  color: #fff;
  font-size: 14px;
  padding: 5px 19px;
  letter-spacing: .3px;
  font-weight: 500;
}

a.btn.btn-sm.btn-edits {
  background: #0057b8;
  color: #ffffff;
  font-size: 16px;
  padding: 5px 13px;
  letter-spacing: .3px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  gap: 6px;
}

.btn-ad-asll i {
  font-size: 22px;
  margin-right: 0 !important;
}

.commmon-crads label {
  font-size: 16px;
  text-transform: capitalize;
  color: #000;
}

.commmon-crads input,
.commmon-crads select,
.commmon-crads textarea {
  background: #fff;
  color: #333;
  border: 1px solid #ebebeb;
  box-shadow: none;
  border-radius: 7px;
  padding: 14px;
  box-shadow: rgb(0 87 184 / 17%) 0px 4px 12px;
  border: none;
  margin-bottom: 4px;
  min-height: 55px;
}

.commmon-crads input::placeholder,
.commmon-crads select::placeholder,
.commmon-crads textarea::placeholder {
  color: #717171;
  opacity: 1;
}

small.text-allows {
  color: #5c23cb;
  font-weight: 500;
}

.previews {
  margin-top: 7px;
  border: 1px solid;
  object-fit: contain;
}

.select-wrapper {
  position: relative;
}

.form-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 45px;
}

.select-icon {
  position: absolute;
  right: 29px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: #666;
  font-size: 14px;
}

.form-control:focus,
.form-select:focus {
  outline: none !important;
}

.form-control::file-selector-button {
  background: #0057b8;
  color: #fff;
  border: none;
  padding: 10px 16px;
  border-radius: 4px;
  cursor: pointer;
  margin-left: -2px;
  font-weight: 500;
}


.form-control:hover::file-selector-button {
  background: #0057b8 !important;
  color: #fff !important;
}

button#sendOtpBtn {
  background: #0057b8;
  color: #fff;
  font-weight: 500;
  font-size: 15px;
  min-width: 93px;
  padding: 6px;
  position: absolute;
  right: 24px;
  top: 10px;
}

.btn.btn-add-univerity {
  background: #0057b8;
  color: #fff;
  font-weight: 500;
  letter-spacing: .4px;
  padding: 9px 21px;
  font-size: 16px;
  margin-top: 20px;
}

.commmon-crads .text-danger {
  padding-top: 4px;
}

.commmon-crads .toggle-password {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: #6c757d;
  font-size: 16px;
}

.div-section-all-logins.auth-ui {
  background: #fff;
  padding: 36px;
  max-width: 1150px;
  border-radius: 15px;
}


.auth-ui .auth-left {
  position: relative;
  min-height: 605px;
  background-image: url(../img/image-login.png);
  border-radius: 18px;
  overflow: hidden;
}


.auth-ui .auth-left::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 1;
}


.auth-ui .auth-left-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px;
  color: #ffffff;
}

.auth-ui .auth-left-content h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
}

.auth-ui .auth-left-content p {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.9;
}

.university-panels {
  width: 22%;
  margin: auto;
  text-align: center;
}

.univerisyt-headin h1 {
  font-size: 32px;
  margin: 17px;
  font-weight: 800;
  color: #0057b8;
  margin-bottom: 8px;
}

.univerisyt-headin h4 {
  font-size: 25px;
  font-weight: 600;
  color: #333;
}

.univerisyt-headin p {
  width: 59%;
  margin: auto;
  color: #333;
  font-weight: 500;
  font-size: 15px;
}

@media (max-width: 991px) {

  /* .auth-ui .auth-left {
    display: none;
  } */
  .login-sections {
    padding: 18px 1px;
    border-radius: 18px;
    text-align: left;
  }
}

@media (max-width:768px) {
  .auth-left {
    display: none;
  }
}


.login-sections {
  max-width: 100%;
  margin: auto;
  background: #ffffff;
  padding: 45px 40px;
  border-radius: 18px;
  text-align: left;
}

.login-sections .app-brand {
  margin-bottom: 25px;
}

.login-sections .app-brand img {
  max-height: 100%;
  width: 100%;
}

.login-sections h1 {
  font-size: 41px;
  font-weight: 700;
  margin-bottom: 9px;
  color: #000;
  position: relative;
  display: inline-block;
}

.left-and {
  text-align: left;
}

.login-sections h1::after {
  content: "";
  display: block;
  width: 45px;
  height: 3px;
  background: #000;
  margin: 5px auto 0;
  border-radius: 2px;
  margin-left: 0;
}

.login-sections p {
  font-size: 16px;
  color: #333;
  margin-bottom: 30px;
  font-weight: 500;
  text-align: left;
}

.login-sections .form-label {
  font-weight: 600;
  font-size: 16px;
  color: #000;
  text-align: left;
  display: block;
  text-transform: capitalize;
}

.login-sections .form-control {
  height: 48px;
  border-radius: 8px;
  border: 1px solid #d2d2d2;
  padding: 12px 14px;
  font-size: 14px;
  background: #f5f5f5;
  color: #000;
}

.login-sections input::placeholder {
  color: #6e6e6e;
}

.login-sections .form-control:focus {
  border-color: #dcdcdc;
  box-shadow: none;
}

.login-sections .input-group-text i {
  font-size: 19px;
  color: #333;
}

.login-sections .input-group-text {
  background: #f5f5f5;
  border-left: none;
}

.login-sections .text-end a {
  font-size: 16px;
  font-weight: 600;
  color: #b60000;
}

.login-sections .btn-primary {
  height: 56px;
  border-radius: 11px;
  background: #000;
  border: none;
  font-weight: 500;
  color: #fff;
  transition: 0.3s ease;
  font-size: 20px;
  align-items: center;
}

.login-sections .btn-primary:hover {
  background: #000000;
}

.back-login {
  color: #000 !important;
  font-weight: 600;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
}

.back-login i {
  font-size: 24px !important;
  font-weight: 500;
}

.btn-rest {
  margin-top: 36px;
}

.auth-wrapper {
  display: flex;
  width: 100%;
  height: 100vh;
  align-items: center;
  background: #fff;
  overflow: hidden;
}

.auth-left {
  width: 50%;
  background: #0057b8;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  height: 100%;
  flex-direction: column;
}

.app-brands-new img {}

.auth-right i.fa.fa-university {
  font-size: 34px;
  width: 65px;
  height: 65px;
  background: #0057b8;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* .auth-right button#sendOtpBtn {
  background: #0057b8;
  color: #fff;
  font-weight: 500;
  font-size: 15px;
  min-width: 95px;
  padding: 6px;
  position: absolute;
  right: 9px;
  top: 10px;
  border-radius: 8px;
  border: 1px solid;
  font-weight: 600;
  z-index: 9;
} */
.auth-right button#sendOtpBtn {
  background: #0057b8;
  color: #fff;
  font-weight: 500;
  font-size: 15px;
  min-width: 95px;
  padding: 6px;
  position: absolute;
  right: 9px;
  top: 10px;
  border-radius: 8px;
  border: 1px solid;
  font-weight: 600;
  z-index: 9;
}

.btn.btn-submit {
  width: 100%;
  background: #0057b8;
  padding: 11px;
  color: #fff;
  font-weight: 500;
  font-size: 20px;
  margin-top: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}

.input-prefix {
  background: #fff;
  color: #333;
  box-shadow: none;
  border-radius: 9px;
  padding: 14px;
  box-shadow: rgb(0 87 184 / 30%) 0px 4px 12px;
  border: none;
  min-height: 58px;
}

.login-left-new h4 {
  font-size: 26px;
  font-weight: 800;
  color: #212121;
  padding-bottom: 11px;
  margin-bottom: 0;
}

.auth-right label {
  font-size: 16px;
  text-transform: capitalize;
  color: #000;
  font-weight: 600;
  margin-top: 10px;
}

.div-right-line {
  position: absolute;
  width: 1px;
  background: #d3d3d3;
  height: 100%;
  left: 10%;
}

.auth-right .input-prefix {
  background: #fff;
  color: #333;
  box-shadow: none;
  border-radius: 9px;
  padding: 4px 13px;
  box-shadow: rgb(0 87 184 / 30%) 0px 4px 12px;
  border: none;
  min-height: 58px;
}

.auth-left img {
  height: auto;
  width: 82%;
  margin-top: -22px;
}

.auth-right {
  width: 50%;
  background: #ffffff;
  padding: 30px;
}

.auth-right h1 {
  font-size: 31px;
  font-weight: 700;
  color: #0057b8;
  border-bottom: 3px dashed #0057b8;
  display: inline-block;
  padding-bottom: 10px;
  text-align: left;
}

.app-brands-new img {
  width: auto !important;
  margin-top: 55px;
}

.auth-right p {
  font-size: 17px;
  color: #333;
  font-weight: 500;
  margin: 0px 0 36px;
  width: 80%;
}

.login-left-new {
  width: 80%;
  margin: auto;
}

.only-mobiles {
  display: none;
}


/* Wrapper */
.course-select+.select2-container {
  width: 100% !important;
}

/* .auth-right input {
    background: #fff;
    color: #333;
    box-shadow: none;
    border-radius: 9px;
    padding: 14px;
    box-shadow: rgb(0 87 184 / 30%) 0px 4px 12px;
    border: none;
    min-height: 58px;
} */
/* Main selection box */
.select2-container--default .select2-selection--multiple {
  min-height: 52px;
  border-radius: 10px;
  border: 1.5px solid #d0d5dd;
  padding: 6px 10px;
  background: #fff;
  transition: all 0.3s ease;
}


/* ================================
   Select2 Multi Select – Premium UI
================================ */

/* Main select box */
.commmon-crads .select2-container--default .select2-selection--multiple {
  min-height: 31px;
  border: none;
  border-radius: 8px;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  background-color: #fff;
  box-shadow: rgb(0 87 184 / 17%) 0px 4px 12px;
  transition: all 0.3s ease;
  border-color: transparent;
}

.select2-container--default .select2-selection--multiple .select2-selection__clear {
  cursor: pointer;
  font-weight: bold;
  height: 38px;
  margin-right: 10px;
  margin-top: 5px;
  position: absolute;
  right: 0;
  padding: 1px;
  top: 2px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  top: 2px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__display {
  cursor: default;
  padding-left: 19px !important;
  padding-right: 5px;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
  border-color: transparent;
  box-shadow: rgb(0 87 184 / 17%) 0px 4px 12px;
}

/* Selected items container */
.select2-container--default .select2-selection--multiple .select2-selection__rendered {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  padding: 0;
  margin: 0;
}

/* Each selected tag */
.select2-container--default .select2-selection--multiple .select2-selection__choice {
  background-color: #0057b8;
  color: #ffffff;
  border: none;
  border-radius: 7px;
  padding: 5px 8px 5px 8px;
  font-size: 13px;
  font-weight: 500;
  display: flex;
  align-items: center;
  margin: 0;
}

/* Remove (×) icon */
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  color: #ffffff;
  margin-right: 6px;
  font-size: 14px;
  cursor: pointer;
  transition: color 0.2s ease;
}

/* Cursor / search inline wrapper */
.select2-container--default .select2-search--inline {
  display: flex;
  align-items: center;
  margin: 0;
}

.select2-container--default .select2-search--inline .select2-search__field {
  margin-bottom: 0;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover,
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:focus {
  background-color: #0057b8;
  color: #fff;
}

/* Cursor input field */
.select2-container--default .select2-search__field {
  margin-top: 0 !important;
  padding: 0;
  height: 30px;
  line-height: 30px;
  font-size: 14px;
  color: #212529;
}

/* Placeholder text */
.select2-container--default .select2-search__field::placeholder {
  color: #6c757d;
}

/* Dropdown */
.select2-container--default .select2-dropdown {
  border-radius: 8px;
  border: 1px solid #dee2e6;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

/* Dropdown options */
.select2-container--default .select2-results__option {
  padding: 10px 14px;
  font-size: 14px;
}

/* Hover option */
.select2-container--default .select2-results__option--highlighted {
  background-color: #0d6efd;
  color: #ffffff;
}

/* Selected option in dropdown */
.select2-container--default .select2-results__option[aria-selected="true"] {
  background-color: #e7f1ff;
  color: #0d6efd;
}

/* Disabled state */
.select2-container--default.select2-container--disabled .select2-selection--multiple {
  background-color: #f8f9fa;
  cursor: not-allowed;
  opacity: 0.7;
}







.ms-info-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
  margin-bottom: 24px;
  border: 1px solid #e8edf5;
}

.ms-card-accent {
  height: 5px;
  background: linear-gradient(90deg, #1e40af 0%, #3b82f6 50%, #60a5fa 100%);
}

.ms-card-body {
  padding: 28px 32px;
}

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

.ms-meta-box {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f8fafc;
  border: 1px solid #f1f5f9;
  border-radius: 12px;
  padding: 14px 16px;
  transition: box-shadow 0.2s;
}

h5.ms-scholarship-name {
  font-size: 16px;
  color: #000;
  margin-bottom: 7px;
}

h5.ms-scholarship-name span {
  color: #272727;
}

p.ms-scholarship-desc {
  font-size: 16px;
  color: #000;
}

p.ms-scholarship-desc span {
  color: #272727;
}

.ms-meta-box:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.ms-meta-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.ms-meta-label {
  font-size: 0.72rem;
  color: #94a3b8;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 3px;
}

a.btn.btn-sm.btn-edits.btn-setas {
  background-color: #e58100;
}

.ms-meta-value {
  font-size: 0.93rem;
  font-weight: 700;
  color: #1e293b;
}

a.btn.btn-sm.btn-view-s {
  background: #ea580c;
  color: #ffffff;
  font-size: 16px;
  padding: 5px 13px;
  letter-spacing: .3px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  gap: 6px;
}

.div-grid-top-2 {
  padding: 31px;
  /* border: 2px solid #0057b8; */
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  background: #f4f4f4;
}

.btn-seats {
  display: flex;
  gap: 12px;
}

.layout-reels {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 44px;
  max-width: 100%;
  margin: 30px auto;
  padding: 0 20px;
  width: 100%;
}


.sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sidebar-label {
  font-size: 19px;
  font-weight: 800;
  letter-spacing: 1px;
  color: #002753;
  text-transform: uppercase;
  padding: 0 4px 8px;
  border-bottom: 2px solid #002753;
  margin-bottom: 4px;
}

.video-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 2px 12px rgba(0, 39, 83, 0.08);
  border: 1px solid rgba(0, 39, 83, 0.06);
}

.video-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 39, 83, 0.15);
}


.thumb-wrap {
  position: relative;
  overflow: hidden;
}

.thumb-wrap video {
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.video-card:hover .thumb-wrap video {
  transform: scale(1.06);
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 38px;
  height: 38px;
  background: rgba(0, 39, 83, 0.75);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  border: 2px solid rgba(94, 184, 255, 0.6);
  transition: background 0.2s;
}

.play-btn svg {
  margin-left: 2px;
}

.video-info {
  padding: 10px 12px 12px;
}

.channel-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2px;
}

.video-title {
  font-size: 12px;
  font-weight: 600;
  color: #0d1b2e;
  line-height: 1.4;
  margin-bottom: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-align: left;
}

.video-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  color: #6b7a8f;
  margin-bottom: 5px;
}

.video-meta-dot {
  width: 3px;
  height: 3px;
  background: #6b7a8f;
  border-radius: 50%;
}

.channel-row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 4px;
}

.channel-avatar {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, #002753, #5eb8ff);
  flex-shrink: 0;
}

/*searching css */

.reels-search-bar {
  width: 100%;
  padding: 14px 0 18px;
  margin-bottom: 4px;
}

.reels-search-inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.reels-search-wrap {
  position: relative;
  display: flex;
  align-items: center;
  background: #ffffff;
  border: 1.5px solid rgba(0, 39, 83, 0.13);
  border-radius: 50px;
  padding: 0 16px;
  height: 48px;
  box-shadow: 0 4px 18px rgba(0, 39, 83, 0.09), 0 1px 4px rgba(0, 0, 0, 0.05);
  transition: border-color 0.22s, box-shadow 0.22s;
}

.reels-search-wrap:focus-within {
  border-color: #002753;
  box-shadow: 0 4px 22px rgba(0, 39, 83, 0.16), 0 0 0 3px rgba(0, 39, 83, 0.07);
}

.reels-search-icon {
  color: #6b7a8f;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-right: 10px;
  transition: color 0.2s;
}

.reels-search-wrap:focus-within .reels-search-icon {
  color: #002753;
}

.commmon-crads .reels-search-input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-size: 14px;
  font-weight: 500;
  color: #0d1b2e;
  letter-spacing: 0.1px;
  box-shadow: none;
  border-radius: 0;
  margin-bottom: 0;
  padding: 0;
  min-height: auto;
}

.reels-search-input::placeholder {
  color: #a0aec0;
  font-weight: 400;
}

.reels-search-clear {
  display: none;
  align-items: center;
  justify-content: center;
  background: #e8edf3;
  border: none;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  cursor: pointer;
  color: #6b7a8f;
  flex-shrink: 0;
  margin-left: 8px;
  transition: background 0.2s, color 0.2s;
}

.reels-search-clear:hover {
  background: #002753;
  color: #fff;
}

/*searching css */
.channel-name {
  font-size: 10px;
  font-weight: 500;
  color: #002753;
}

.center-feed {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.post-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 39, 83, 0.1);
  border: 1px solid rgba(0, 39, 83, 0.07);
  animation: fadeUp 0.5s ease both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.post-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
}

.post-user {
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: left;
}

.user-avatar-wrap {
  position: relative;
}

.user-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #0057b8;
  padding: 2px;
  cursor: pointer;
}

.user-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
  background: #e0e8f0;
}

.user-name {
  font-size: 14px;
  font-weight: 600;
  color: #0d1b2e;
}

.user-location {
  font-size: 11px;
  color: #6b7a8f;
  display: flex;
  align-items: center;
  gap: 3px;
}

.post-options {
  cursor: pointer;
  color: #6b7a8f;
  padding: 4px;
  border-radius: 8px;
  transition: background 0.2s;
}

.post-options:hover {
  background: #f0f4f8;
}

.post-image-wrap {
  position: relative;
  overflow: hidden;
}

.post-image-wrap video {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.post-image-wrap:hover video {
  transform: scale(1.02);
  transition: transform 0.4s ease;
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s;
}


.post-image-wrap.playing .video-play-btn {
  opacity: 0;
  visibility: hidden;
}

.location-tag {
  position: absolute;
  bottom: 14px;
  left: 16px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 20px;
  padding: 5px 12px;
  font-size: 11px;
  font-weight: 600;
  color: #002753;
  display: flex;
  align-items: center;
  gap: 4px;
  backdrop-filter: blur(6px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}


.post-actions {
  padding: 12px 16px 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.action-left {
  display: flex;
  gap: 16px;
  align-items: center;
}

.action-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 10px;
  transition: background 0.2s, transform 0.15s;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: #4a5568;
  font-weight: 500;
}

.action-btn:hover {
  background: #f0f4f8;
  transform: scale(1.05);
}

.action-btn.liked svg {
  fill: #e53e3e;
  stroke: #e53e3e;
}

.action-btn.liked {
  color: #e53e3e;
}

.action-btn.bookmarked svg {
  fill: #002753;
  stroke: #002753;
}

.post-likes {
  padding: 0 23px 6px;
  font-size: 13px;
  font-weight: 600;
  color: #0d1b2e;
  text-align: left;
}

.post-caption {
  padding: 0 25px 8px;
  font-size: 13px;
  color: #2d3748;
  line-height: 1.5;
  text-align: left;
}

.post-caption strong {
  color: #0d1b2e;
  font-weight: 600;
}

.post-tags {
  color: #002753;
  font-weight: 500;
}

.post-time {
  padding: 0 23px 14px;
  font-size: 10px;
  color: #a0aec0;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-align: left;
  margin-bottom: 15px;
}

.suggest-section {
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 2px 12px rgba(0, 39, 83, 0.08);
  border: 1px solid rgba(0, 39, 83, 0.06);
}

.suggest-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  color: #002753;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.suggest-user {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.suggest-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  flex-shrink: 0;
  object-fit: cover;
}

.suggest-info {
  flex: 1;
  min-width: 0;
}

.otp-boxes {
  display: flex;
  gap: 29px;
  margin-bottom: 1.5rem;
}

span#timer {
  color: #0057b8;
  font-weight: 600;
}

.resend-row {
  font-weight: 500;
  color: #2a2a2a;
  margin-top: 25px;
}

.otp-boxes input {
  width: 70px;
}

.width-news {
  width: 80%;
}

.auth-right a i.bx.bx-chevron-left.scaleX-n1-rtl.bx-sm {
  width: 22px;
  height: 22px;
  font-size: 17px !important;
  background: #0057b8;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.auth-right a.back-login {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  line-height: 17px;
}

.suggest-name {
  font-size: 12px;
  font-weight: 600;
  color: #0d1b2e;
}

.suggest-sub {
  font-size: 10px;
  color: #6b7a8f;
}


.grid-top-videos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width:1480px) {
  .igram-feed-col {
    flex: 0 0 480px;
    max-width: 480px;
  }

  .div-grid-top-2 {
    padding: 22px;
  }
}

@media (max-width:1024px) {
  .auth-left img {
    height: auto;
    width: 100%;
    margin-top: 0px;
  }

  .auth-right h1 {
    font-size: 30px;
  }

  .auth-right i {
    font-size: 28px;
    width: 55px;
    height: 55px;
  }

  .auth-right p {
    font-size: 16px;
    margin: 0px 0 36px;
    width: 94%;
  }

  .login-left-new {
    width: 100%;
    margin: auto;
  }
}

@media (max-width: 900px) {
  .auth-left {
    display: none;
  }

  .auth-right {
    width: 100%;
  }
}

@media (max-width:768px) {
  .univerisyt-headin p {
    width: 97%;
  }

  .app-brand {
    position: initial;
  }

  .only-mobiles {
    display: block;
    margin-bottom: 2rem;
  }

  .auth-right p {
    font-size: 15px;
    width: 100%;
  }

  .auth-right {
    padding: 18px;
  }

  .auth-right h1 {
    font-size: 26px;
  }
}

@media (max-width: 576px) {
  .login-sections {
    padding: 0px 0px;
  }

  button#sendOtpBtn {
    font-size: 13px !important;
    min-width: 78px !important;
    padding: 2px !important;
    line-height: 32px !important;
    top: 10px !important;
    right: 8px !important;
  }

  .university-panels {
    width: 59%;
  }

  .univerisyt-headin h1 {
    font-size: 29px;
  }

  .commmon-crads .btn-primary {
    font-size: 15px;
  }

  .univerisyt-headin h4 {
    font-size: 20px;
    margin-bottom: 8px;
  }

  .univerisyt-headin p {
    width: 100%;
    font-size: 14px;
    line-height: 22px;
  }

  .login-sections h1 {
    font-size: 32px;
  }

  .login-sections .btn-primary {
    height: 51px;
    font-size: 18px;
  }

  .login-sections p {
    font-size: 15px;
  }

  .login-sections p {
    padding-top: 5px;
  }

  .back-login {
    margin-top: 16px;
  }
}








.universitylanding-page {
  max-width: 80%;
  margin: 0 auto;
  min-height: 100%;
}

.ulp-cover-section {
  background: #fff;
  border-radius: 0 0 12px 12px;

  box-shadow: 0 2px 8px rgba(99, 13, 15, 0.10);
}

.ulp-cover-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  padding: 7px 18px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  backdrop-filter: blur(4px);
  cursor: pointer;
}

.ulp-cover-banner-text {
  position: absolute;
  bottom: 24px;
  left: 200px;
  color: #fff;
}

.ulp-cover-banner-text p {
  font-size: 13px;
  opacity: 0.85;
  letter-spacing: 0.5px;
}

.ulp-cover-crest {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.07;
}

.ulp-profile-area {
  display: flex;
  align-items: flex-end;
  padding: 0 24px 16px;
  gap: 20px;
  position: relative;
  margin-top: -50px;
  flex-wrap: wrap;
}

.ulp-logo-wrap {
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

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

.ulp-logo {
  width: 168px;
  height: 168px;
  border-radius: 12px;
  border: 4px solid #fff;
  box-shadow: rgba(17, 17, 26, 0.05) 0px 4px 16px, rgba(17, 17, 26, 0.05) 0px 8px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}


.ulp-uni-details {
  flex: 1;
  padding-top: 60px;
  padding-bottom: 4px;
  min-width: 220px;
}

.ulp-uni-name {

  font-size: 28px;
  font-weight: 700;
  color: #1c1e21;
  line-height: 1.2;
}

.ulp-uni-tagline {
  font-size: 14px;
  color: #525252;
  /* margin-top: 4px; */
  font-weight: 500;
  width: 57%;
}

.ulp-quick-stats {
  display: flex;
  gap: 20px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.ulp-stat-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #444;
  font-weight: 600;
}

.ulp-stat-icon {
  width: 18px;
  height: 18px;
  color: var(--dark-university);
}

.ulp-stat-item strong {
  color: var(--dark-university);
  font-weight: 700;
}

.ulp-courses-line {
  display: flex;
  gap: 8px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.ulp-course-pill {
  background: #f1f1f1;
  color: var(--dark-university);
  border: 1px solid var(--dark-university);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.ulp-profile-actions {
  display: flex;
  gap: 10px;
  padding-bottom: 4px;
  flex-shrink: 0;
  margin-top: auto;
}

.ulp-btn-edit {
  background: var(--dark-university);
  color: #fff;
  border: none;
  padding: 9px 20px;
  border-radius: 30px;

  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 7px;
  transition: background 0.2s;
}

.ulp-btn-edit:hover {
  background: var(--dark-university);
  color: var(--light-theme)
}

.ulp-btn-more {
  background: #e4e6ea;
  color: #444;
  border: none;
  padding: 9px 14px;
  border-radius: 8px;

  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.ulp-btn-more:hover {
  background: #d8dade;
}

.ulp-divider {
  height: 1px;
  background: #e4e6ea;
  margin: 0 24px;
}

.ulp-tabs-bar {
  display: flex;
  align-items: center;
  padding: 0 16px;
  gap: 2px;
  overflow-x: auto;
}

.blog-s {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.10);
  overflow: hidden;
  margin-bottom: 16px;
}

.ulp-blog-card-full img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.ulp-tab-btn {
  background: none;
  border: none;
  padding: 14px 18px;
  font-weight: 600;
  color: #343434;
  color: #65676b;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  white-space: nowrap;
  transition: all 0.2s;
  border-radius: 8px 8px 0 0;
}

.ulp-tab-btn:hover {
  background: var(--clr-primary-pale);
  color: var(--dark-university);
}

.ulp-tab-btn.active {
  color: var(--dark-university);
  border-bottom-color: var(--dark-university);
  font-weight: 600;
}

.ulp-content-wrap {
  padding: 19px 0px 32px;
}

.ulp-all-layout {
  display: grid;
  grid-template-columns: 415px 1fr;
  gap: 16px;
  align-items: start;
}

.ulp-left-col {
  position: sticky;
  top: 16px;
  align-self: start;
  height: fit-content;
  overflow: visible;
}

@media (max-width: 820px) {
  .ulp-all-layout {
    grid-template-columns: 1fr;
  }

  .ulp-profile-area {
    margin-top: -30px;
  }

  .ulp-logo {
    width: 120px;
    height: 120px;
  }

  .ulp-uni-details {
    padding-top: 30px;
  }

  .ulp-uni-name {
    font-size: 22px;
  }

  .ulp-cover-photo {
    height: 200px;
  }
}

@media (max-width: 520px) {
  .ulp-profile-area {
    flex-direction: column;
    align-items: flex-start;
    margin-top: -10px;
  }

  .ulp-uni-details {
    padding-top: 0;
  }

  .ulp-profile-actions {
    flex-direction: row;
    width: 100%;
  }

  .ulp-btn-edit {
    flex: 1;
    justify-content: center;
  }
}

.ulp-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.10);
  overflow: hidden;
  margin-bottom: 16px;
}

.ulp-card-header {
  padding: 14px 16px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #f0f2f5;
}

.ulp-card-header h3 {

  font-size: 18px;
  font-weight: 600;
  color: var(--dark-university);
  display: flex;
  align-items: center;
  gap: 8px;
}

.ulp-card-header-icon {
  width: 28px;
  height: 28px;
  background: var(--dark-university);
  color: var(--light-theme);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ulp-card-header-icon svg {
  width: 16px;
  height: 16px;
  color: var(--light-theme);
}

.ulp-see-all {
  font-size: 13px;
  color: var(--dark-university);
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
  padding: 4px 12px;
  border-radius: 30px;
  transition: background 0.2s;
}

.ulp-see-all:hover {
  background: var(--dark-university);
  color: var(--light-theme);
}

.ulp-info-section {
  padding: 14px 16px;
}

.ulp-info-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 7px 0;
  font-size: 14px;
  color: #444;
  border-bottom: 1px solid #f5f5f5;
}

.ulp-info-row:last-child {
  border-bottom: none;
}

.ulp-info-row svg {
  width: 18px;
  height: 18px;
  color: var(--dark-university);
  flex-shrink: 0;
  margin-top: 1px;
}

.ulp-info-label {
  font-weight: 700;
  color: #1c1e21;
  min-width: 100px;
}

.ulp-info-value {
  color: #3e3e3e;
  font-weight: 500;
}

.ulp-accreditation {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding: 10px 16px 14px;
}

.ulp-acc-badge {
  background: var(--dark-university);
  color: var(--light-theme);
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.3px;
}

.ulp-blog-item {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 22px;
  padding: 14px 16px;
  border-bottom: 1px solid #f0f2f5;
  cursor: pointer;
  transition: background 0.18s;
}

.ulp-blog-item:last-child {
  border-bottom: none;
}

.ulp-blog-item:hover {
  background: #efefef;
}

.ulp-blog-thumb {
  width: 90px;
  height: 70px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
  overflow: hidden;
}

.ulp-blog-thumb-img {
  width: 90px;
  height: 70px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.ulp-blog-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  justify-content: center;
}

.ulp-blog-category {
  display: inline-block;
  background: #e8e8e866;
  color: #000;
  border: 1px solid var(--dark-university);
  padding: 3px 8px;
  border-radius: 30px;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  width: fit-content;
  display: flex;
  align-items: center;
}

.ulp-blog-title {
  font-size: 13px;
  font-weight: 600;
  color: #1c1e21;
  line-height: 1.4;
  text-decoration: none;
  display: block;
  transition: color 0.2s;
}

.ulp-blog-title:hover {
  color: var(--dark-university);
}

.ulp-blog-date {
  font-size: 11px;
  color: #505050;
  display: flex;
  align-items: center;
  gap: 4px;
}

.ulp-blog-date svg {
  width: 12px;
  height: 12px;
}

.ulp-event-item {
  display: flex;
  gap: 14px;
  padding: 14px 16px;
  border-bottom: 1px solid #f0f2f5;
  cursor: pointer;
  transition: background 0.18s;
  align-items: flex-start;
}

.ulp-event-item:last-child {
  border-bottom: none;
}

.ulp-event-item:hover {
  background: #efefef;
}

.ulp-event-date-box {
  flex-shrink: 0;
  width: 52px;
  height: 56px;
  background: var(--dark-university);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.ulp-event-month {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.85;
}

.ulp-event-day {
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
}

.ulp-event-info {
  flex: 1;
  min-width: 0;
}

.ulp-event-title {
  font-size: 14px;
  font-weight: 600;
  color: #1c1e21;
  display: block;
  text-decoration: none;
  line-height: 1.4;
  cursor: pointer;
  transition: color 0.2s;
  margin-bottom: 6px;
}

.ulp-event-title:hover {
  color: var(--dark-university);
}

.ulp-event-category {
  display: inline-block;
  background: #e8e8e8;
  color: #000;
  border: 1px solid var(--dark-university);
  padding: 3px 8px;
  border-radius: 30px;
  font-size: 10px;
  font-weight: 600;
  text-transform: capitalize;
  letter-spacing: 0.5px;
  width: fit-content;
  display: flex;
  align-items: center;
}

.ulp-event-sub {
  font-size: 12px;
  color: #505050;
  margin-top: 4px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 5px;
}

.ulp-event-sub svg {
  width: 12px;
  height: 12px;
  color: var(--dark-university);
}

.ulp-event-image {
  width: 70px;
  height: 56px;
  border-radius: 8px;
  flex-shrink: 0;
  overflow: hidden;
}

.ulp-event-img-inner {
  width: 70px;
  height: 56px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.ulp-right-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ulp-reel-player-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.10);
  overflow: hidden;
}

.ulp-reel-player-header {
  padding: 12px 16px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #f0f2f5;
}

.ulp-reel-player-header h3 {

  font-size: 18px;
  font-weight: 600;
  color: #630d0f;
  display: flex;
  align-items: center;
  gap: 8px;
}

.ulp-reel-player-header h3 span.reel-icon {
  width: 28px;
  height: 28px;
  background: #f9e8e8;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ulp-reel-player-header h3 span.reel-icon svg {
  width: 16px;
  height: 16px;
  color: #630d0f;
}

.ulp-reel-counter {
  font-size: 12px;
  color: #999;
  font-weight: 500;
}

.ulp-reel-viewport {
  position: relative;
  width: 100%;
  background: #111;
  overflow: hidden;
}

.ulp-reel-track {
  display: flex;
  flex-direction: column;
  transition: transform 0.42s cubic-bezier(0.4, 0, 0.2, 1);
}

.ulp-reel-slide {
  width: 100%;
  flex-shrink: 0;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.ulp-reel-slide-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 72px;
}

.ulp-reel-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.10) 50%, transparent 100%);
}

.ulp-reel-slide-content {
  position: relative;
  z-index: 2;
  padding: 14px 14px 14px;
  width: 100%;
}

.ulp-reel-slide-title {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  line-height: 1.35;
  margin-bottom: 4px;
}

.ulp-reel-slide-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ulp-reel-slide-views {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.75);
  display: flex;
  align-items: center;
  gap: 4px;
}

.ulp-reel-slide-views svg {
  width: 12px;
  height: 12px;
}

.ulp-reel-slide-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.ulp-reel-slide-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  color: rgba(255, 255, 255, 0.9);
  cursor: pointer;
}

.ulp-reel-slide-action svg {
  width: 22px;
  height: 22px;
}

.ulp-reel-slide-action span {
  font-size: 10px;
}

.ulp-reel-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  background: rgba(255, 255, 255, 0.18);
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
  transition: background 0.2s;
}

.ulp-reel-play-btn:hover {
  background: rgba(255, 255, 255, 0.30);
}

.ulp-reel-play-btn svg {
  width: 22px;
  height: 22px;
  color: #fff;
  margin-left: 3px;
}

.ulp-reel-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  background: #fff;
  border-top: 1px solid #f0f2f5;
}

.ulp-reel-nav-btn {
  width: 36px;
  height: 36px;
  background: #f9e8e8;
  border: 1px solid #f0d4d4;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  color: #630d0f;
}

.ulp-reel-nav-btn:hover {
  background: #630d0f;
  color: #fff;
  border-color: #630d0f;
}

.ulp-reel-nav-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.ulp-reel-nav-btn:disabled:hover {
  background: #f9e8e8;
  color: #630d0f;
  border-color: #f0d4d4;
}

.ulp-reel-nav-btn svg {
  width: 18px;
  height: 18px;
}

.ulp-reel-dots {
  display: flex;
  gap: 6px;
  align-items: center;
}

.ulp-reel-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #e0c4c4;
  transition: all 0.25s;
  cursor: pointer;
}

.ulp-reel-dot.active {
  background: #630d0f;
  width: 20px;
  border-radius: 4px;
}

.ulp-reel-swipe-hint {
  text-align: center;
  font-size: 11px;
  color: #bbb;
  padding: 6px 0 2px;
  letter-spacing: 0.3px;
}

.ulp-announcements {
  padding: 8px 16px 14px;
}

.ulp-announce-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid #f0f2f5;
}

.ulp-announce-item:last-child {
  border-bottom: none;
}

.ulp-announce-dot {
  width: 8px;
  height: 8px;
  background: var(--dark-university);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 5px;
}

.ulp-announce-text {
  font-size: 13px;
  color: #333;
  line-height: 1.5;
}

.ulp-announce-date {
  font-size: 11px;
  color: #999;
  margin-top: 2px;
}

.ulp-tab-content {
  display: none;
}

.ulp-tab-content.active {
  display: block;
}

.ulp-full-blogs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.ulp-event-card-full img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.ulp-blog-card-full {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 1px 4px rgb(0 0 0 / 24%);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.ulp-blog-card-full:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(99, 13, 15, 0.14);
}

.ulp-blog-card-img {
  width: 100%;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 42px;
}

.ulp-blog-card-body {
  padding: 14px;
}

.ulp-blog-card-cat {
  display: inline-block;
  background: var(--dark-university);
  color: var(--light-theme);
  padding: 5px 10px;
  border-radius: 35px;
  font-size: 11px;
  font-weight: 600;
  text-transform: capitalize;
  letter-spacing: .2px;
  margin-bottom: 8px;
}

.ulp-blog-card-title {
  font-size: 16px;
  font-weight: 600;
  color: #2a2a2a;
  line-height: 1.4;
  text-decoration: none;
  display: block;
  margin-bottom: 8px;
  transition: color 0.2s;
}

.ulp-blog-card-title:hover {
  color: var(--dark-university);
}

.ulp-blog-card-date {
  font-size: 12px;
  color: #282828;
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 500;
}

.ulp-blog-card-date svg {
  width: 13px;
  height: 13px;
}

.ulp-full-events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
}

.ulp-event-card-full {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 1px 4px rgb(0 0 0 / 30%);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.ulp-event-card-full:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(99, 13, 15, 0.14);
}

/* .ulp-event-card-img {
  width: 100%;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  position: relative;
} */

.ulp-event-card-datebadge {

  background: var(--dark-university);
  color: #fff;
  border-radius: 35px;
  padding: 6px 12px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(99, 13, 15, 0.3);
}

.ulp-event-card-datebadge .ulp-event-month {
  font-size: 9px;
}

.ulp-event-card-datebadge .ulp-event-day {
  font-size: 20px;
}

.ulp-event-card-body {
  padding: 14px;
}

.ulp-event-card-cat {
  display: inline-block;
  background: #ffffff;
  color: var(--dark-university);
  border: 1px solid var(--dark-university);
  padding: 2px 10px;
  border-radius: 35px;
  font-size: 13px;
  font-weight: 600;
  text-transform: capitalize;
  letter-spacing: 0;
}

.ulp-event-card-title {
  font-size: 16px;
  font-weight: 600;
  color: #2a2a2a;
  line-height: 1.4;
  text-decoration: none;
  margin-bottom: 8px;
  transition: color 0.2s;
}

.ulp-event-card-title:hover {
  color: var(--dark-university);
}

.evets {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.ulp-event-card-body p {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 14px;
  line-height: 24px;
  color: #2a2a2a;
}

.ulp-event-card-body p {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 14px;
  line-height: 24px;
}

.ulp-event-card-info svg {
  width: 13px;
  height: 13px;
  color: var(--dark-university);
}

.ulp-full-reels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 10px;
}

.ulp-reel-full {
  aspect-ratio: 9/16;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  transition: transform 0.2s;
}

.ulp-reel-full:hover {
  transform: scale(1.02);
}

.ulp-reel-full-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  padding: 12px;
  position: relative;
}

.ulp-reel-full-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ulp-reel-full-play svg {
  width: 20px;
  height: 20px;
  color: #fff;
}

.ulp-reel-full-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px 12px 12px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 100%);
}

.ulp-reel-full-caption p {
  font-size: 12px;
  color: #fff;
  font-weight: 500;
  line-height: 1.3;
}

.ulp-reel-full-caption span {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
}

.ulp-section-heading {

  font-size: 20px;
  font-weight: 700;
  color: var(--dark-university);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--clr-primary-muted);
  display: flex;
  align-items: center;
  gap: 10px;
}

.ulp-section-heading svg {
  width: 22px;
  height: 22px;
}

.ulp-tab-page {
  padding: 16px;
}

.ulp-inline-blog-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.ulp-inline-blog-modal.open {
  display: flex;
}

.ulp-modal-box {
  background: #fff;
  border-radius: 12px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.ulp-modal-header {
  padding: 20px 20px 16px;
  border-bottom: 1px solid #f0f2f5;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}

.ulp-modal-header h2 {

  font-size: 20px;
  color: #1c1e21;
  line-height: 1.3;
}

.ulp-modal-close {
  background: #f0f2f5;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #444;
  transition: background 0.2s;
}

.ulp-modal-close:hover {
  background: var(--clr-primary-pale);
}

.ulp-modal-body {
  padding: 20px;
}

.ulp-modal-img {
  width: 100%;
  height: 200px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  margin-bottom: 16px;
}

.ulp-modal-body p {
  font-size: 14px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 12px;
}

.ulp-modal-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.ulp-modal-tag {
  background: var(--clr-primary-pale);
  color: var(--dark-university);
  border: 1px solid var(--clr-primary-muted);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
}

.ulp-highlight-banner {
  background: var(--dark-university);
  border-radius: 10px;
  padding: 16px;
  color: #fff;
  margin-bottom: 16px;
}

.ulp-highlight-banner h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
}

.ulp-highlight-banner p {
  font-size: 12px;
  opacity: 0.85;
  line-height: 1.5;
}

.ulp-apply-btn {
  display: inline-block;
  margin-top: 10px;
  background: #fff;
  color: var(--dark-university);
  padding: 7px 16px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.2s;
}

.ulp-apply-btn:hover {
  opacity: 0.9;
}

.ulp-faculty-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 10px 16px 14px;
}

.ulp-faculty-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.ulp-faculty-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  background: var(--dark-university);
}

.ulp-faculty-name {
  font-size: 11px;
  font-weight: 500;
  color: #333;
  text-align: center;
  line-height: 1.3;
}

.ulp-faculty-dept {
  font-size: 10px;
  color: #999;
  text-align: center;
}

.ulp-cover-photo {
  width: 100%;
  height: 445px;
  margin-top: 4rem;
}

.ulp-cover-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 1px solid #ddd;
}



.reel-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

.reel-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px 8px;
}

.reel-avatar img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2px;
  border: 2px solid var(--dark-university);
}

.reel-name {
  font-size: 14px;
  font-weight: 700;
  color: #1c1e21;
}

.reel-date {
  font-size: 12px;
  color: #7e7e7e;
  font-weight: 500;
}

.reel-video-box {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
}

.reel-play-btn {
  width: 52px;
  height: 52px;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(4px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.5);
  transition: transform 0.2s;
  position: absolute;
}


.reel-play-btn svg {
  width: 22px;
  height: 22px;
  fill: #fff;
  margin-left: 3px;
}

.reel-sport-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #1565c0;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 20px;
  letter-spacing: 0.5px;
}

.reel-footer {
  padding: 10px 14px 12px;
  display: flex;
  align-items: center;
  gap: 16px;
  border-top: 1px solid #f0f2f5;
}

.like-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 700;
  color: #65676b;
  cursor: pointer;
  padding: 5px 10px;
  border-radius: 6px;
  border: none;
  background: none;

  transition: all 0.2s;
}

.like-btn:hover {
  background: #f0f2f5;
  color: #1565c0;
}

.like-btn.liked {
  color: #1565c0;
}

.like-btn svg {
  width: 16px;
  height: 16px;
}

.reel-caption {
  font-size: 12px;
  color: #65676b;
  flex: 1;
}

.layout {
  display: none !important;
}

.ulp-event-img-inner {
  width: 90px;
  min-width: 90px;
  height: 90px;
  border-radius: 14px;
  overflow: hidden;
}

.ulp-event-img-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ulp-blog-thumb-img {
  width: 95px;
  min-width: 95px;
  height: 90px;
  border-radius: 14px;
  overflow: hidden;
}

.ulp-blog-thumb-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.reel-video-box {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  background: #000;
  overflow: hidden;
}

.reel-video-box iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}