@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}

body {
  font-family: "Montserrat", sans-serif;
  background-color: rgb(240, 248, 248);
  margin: 0;
  padding: 0;
}

main {
  margin-left: 240px;
  padding: 30px;
}

h2,
h5 {
  font-weight: 600;
}

.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 240px;
  height: 100%;
  background-color: #008080;
  color: white;
  display: flex;
  flex-direction: column;
  padding-top: 20px;
  z-index: 1000;
}

.sidebar h4 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-align: center;
}

.sidebar a {
  color: #e0f7f7;
  display: flex;
  align-items: center;
  padding: 12px 20px;
  margin: 5px 10px;
  border-radius: 8px;
  gap: 10px;
  text-decoration: none;
  transition: all 0.2s;
}

.sidebar a img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 20px;
  width: 20px;
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7485%) hue-rotate(22deg) brightness(109%) contrast(96%);
}

.sidebar a i {
  /* margin-right: 10px; */
}

.sidebar a:hover {
  background-color: #006666;
  color: #fff;
}

.sidebar a.active {
  background-color: #004d4d;
  color: #fff;
}

.navbar {
  margin-left: 240px;
  padding: 0.5rem 1rem;
  background-color: #f0f8f8;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.kpi-card {
  border-radius: 15px;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  color: #fff;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  font-weight: 600;
}

.gradient-primary {
  background: linear-gradient(135deg, #008080, #004d4d);
}

.gradient-success {
  background: linear-gradient(135deg, rgb(182, 233, 234), #98ff98);
  color: #004d4d !important;
}

.gradient-warning {
  background: linear-gradient(135deg, #ffe680, #ffecb3);
  color: #004d4d !important;
}

.gradient-danger {
  background: linear-gradient(135deg, #ff6b6b, #ff9999);
}

.kpi-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.kpi-card i {
  font-size: 2rem;
}

.card {
  border: none;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s;
  margin-bottom: 20px;
}

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

.card-body {
  padding: 20px;
}

.table {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  background-color: #fff;
}

.table th,
.table td {
  vertical-align: middle;
  padding: 12px 15px;
}

.table thead {
  background-color: rgb(182, 233, 234);
}

.btn {
  border-radius: 8px;
  font-weight: 500;
  padding: 8px 16px;
}

.btn-primary {
  background-color: #008080;
  border-color: #008080;
}

.btn-success {
  background-color: rgb(182, 233, 234);
  border-color: rgb(182, 233, 234);
  color: #004d4d;
}

.btn-danger {
  background-color: #ff6b6b;
  border-color: #ff6b6b;
}

.btn-warning {
  background-color: #ffe680;
  border-color: #ffe680;
  color: #004d4d;
}

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

.mb-3 {
  margin-bottom: 1rem !important;
}

.mb-4 {
  margin-bottom: 1.5rem !important;
}

.mt-3 {
  margin-top: 1rem !important;
}

.mt-4 {
  margin-top: 1.5rem !important;
}

.g-4 {
  gap: 1.5rem !important;
}

@media (max-width: 992px) {
  main {
    margin-left: 0;
    padding: 20px;
  }

  .sidebar {
    width: 100%;
    height: auto;
    position: relative;
  }

  .navbar {
    margin-left: 0;
  }

  .kpi-card {
    flex-direction: column;
    align-items: flex-start;
  }
}

.modal-content {
  border-radius: 20px;
  overflow: hidden;
  border: unset;
}

.modal-header {
  border-bottom: none;
  padding: 1rem 1.5rem;
  background: #008080;
}

.modal-body {
  padding: 1.5rem;
}

.modal-body h6 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.modal-body p {
  margin: 0;
}

.modal-footer {
  border-top: none;
  padding: 1rem 1.5rem;
  background: #f8f9fa;
}

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

a.nav-link.dropdown-toggle .rounded-circle {
  width: 40px;
  height: 40px;
  object-fit: cover;
}

.file-drop-area {
  border: 2px dashed #008080;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  cursor: pointer;
  transition:
    background-color 0.2s,
    border-color 0.2s;
  color: #008080;
  font-weight: 500;
}

.file-drop-area:hover {
  background-color: rgb(0 128 128 / 19%);
  border-color: #008080;
}

.file-drop-area i {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.modal {
  background: #008080d6;
}

h5.modal-title.fw-bold {
  color: #fff;
}

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

th {
  font-size: 13px;
}

td {
  font-size: 14px;
}

table#academicTable img {
  object-fit: cover;
}

.upload-manager {
  border: 2px dashed #008080;
  /* background: #f8f9fa; */
  cursor: pointer;
  transition: all 0.3s;
}

.upload-manager.dragover {
  background: #e0f0ff;
  border-color: #008080;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.file-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 10px;
  border: 1px solid #dee2e6;
  border-radius: 6px;
  margin-bottom: 6px;
  background: #fff;
}

.file-item img {
  max-height: 50px;
  margin-right: 10px;
}

.file-actions button {
  margin-left: 5px;
}

.progress {
  height: 6px;
  border-radius: 4px;
  margin-top: 4px;
}

button#uploadBtn {
  background: #008080;
  color: #fff;
  border: unset;
}

div#uploadArea i {
  color: #008080;
}

.form-head h4 {
  margin: 10px 0;
  font-size: 30px;
  line-height: 1;
  font-weight: 600;
}

.form-control {
  padding: 10px 10px;
  border: 1px solid #008080;
}

.form-select {
  padding: 10px 10px;
  border: 1px solid #008080;
  margin: 0 0 10px 0;
}

.modal label {
  color: #000;
  margin-bottom: 8px;
  font-weight: 500;
  font-size: 14px;
}

.form-txt {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 10px;
  margin: 20px 0;
}

.form-txt h5 {
  font-size: 20px;
  line-height: 1;
  text-transform: capitalize;
  margin: 0;
}

.form-txt ul {
  margin: 0;
  padding: 0 0 0 30px;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 10px;
}

.form-txt ul li p {
  font-size: 16px;
  line-height: 1;
  margin: 0;
}

.form-txt p {
  font-size: 16px;
  line-height: 25px;
}

.edit-profile-form {
  width: 100% !important;
}

.edit-profile-main {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 20px;
  padding: 30px;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 0 20px 0 #00000012;
}

.edit-profile-head h4 {
  font-size: 25px;
  line-height: 1;
  margin: 0;
  text-transform: capitalize;
  font-weight: 500;
}

.edit-profile-user {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 100%;
}

.edit-profile-user-img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 200px;
  width: 200px;
  border-radius: 10px;
  overflow: hidden;
}

.edit-profile-user-img img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.edit-profile-wrap {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 10px;
  width: 100%;
  margin: 0 0 0 20px;
}

.edit-profile-input {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 10px;
  width: 100%;
}

.edit-profile-input label {
  font-size: 16px;
  line-height: 1;
  margin: 0;
}

.edit-profile-user-img {
  position: relative;
  /* width: 120px; */
  /* adjust if needed */
  /* height: 120px; */
  /* border-radius: 50%; */
  /* overflow: hidden; */
}

.edit-profile-user-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  cursor: pointer;
}

.change-photo-btn {
  position: absolute;
  right: 6px;
  bottom: 6px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.change-password-form {
  width: 100% !important;
}

.change-password-main {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 20px;
  padding: 30px;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 0 20px 0 #00000012;
}

.change-password-head h4 {
  font-size: 25px;
  line-height: 1;
  margin: 0;
  text-transform: capitalize;
  font-weight: 500;
}

.change-password-user {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 100%;
}

.change-password-user-img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 200px;
  width: 200px;
  border-radius: 10px;
  overflow: hidden;
}

.change-password-user-img img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.change-password-wrap {
  display: flex;
  align-items: start;
  justify-content: start;
  gap: 10px;
  width: 100%;
}

.change-password-input {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 10px;
  width: 100%;
}

.change-password-input label {
  font-size: 16px;
  line-height: 1;
  margin: 0;
}

.password-box {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 10px;
}

.password-box input {
  padding: 10px 45px 10px 20px;
}

.password-icon {
  position: absolute;
  top: 70%;
  right: 12px;
  transform: translateY(-50%);
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
}

.password-icon i {
  color: #000;
}

.change-password-box {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 20px;
}

/*Faqs Sec css Ends*/

section.faqs-sec {
  position: relative;
}

/* section.faqs-sec::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 60vw;
    background-color: #243642;
    border-radius: 0 200px 0 0;
    z-index: -1;
} */

.faq-heading {
  display: flex;
  align-items: center;
  justify-content: start;
  margin: 0 0 80px 0;
}

.faqs-heading h4 {
  color: #000;
}

.faq-heading h3 {
  width: 100%;
}

.faq-txt-main {
  padding: 0 40px;
  background: #fff;
  border-radius: 20px;
  position: relative;
  /* width: 80%; */
  /* margin: 100px 0 0 0; */
}

/* .faq-txt-main::before {
    content: '';
    position: absolute;
    top: -15%;
    right: -100px;
    height: 680px;
    width: 100%;
    background-color: #262261;
    z-index: -1;
    border-radius: 30px;
} */

.accordion-button::after {
  content: "\f107";
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: none !important;
  font-size: 15px;
  border-radius: 100px;
  color: #008080;
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
  border: 1px solid #008080;
}

.accordion-button:not(.collapsed)::after {
  content: "\f107";
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: none !important;
  font-size: 15px;
  border-radius: 100px;
  color: #008080;
  /* padding: 0 0 7px 0; */
  transform: rotate(-180deg);
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
}

.accordion-button {
  font-size: 13px;
  line-height: 1;
  color: #000;
  font-family: "Montserrat";
  font-weight: 500;
  padding: 10px 20px;
}

.accordion-item {
  margin: 20px 0;
  box-shadow: none;
  border: none;
  border-bottom: 1px solid #6c757d5e !important;
  border-radius: 0 !important;
  overflow: hidden;
  transition: ease-in;
  transition-duration: 0.2s;
}

.accordion-button:focus {
  border-color: #0000;
  box-shadow: none;
  outline: none;
}

.accordion-button:not(.collapsed) {
  color: #fff;
  background-color: #fff;
}

.accordion-body p {
  display: block;
  font-size: 14px;
  line-height: 28px;
  color: #000;
  font-family: "Montserrat";
}

.accordion-header {
  margin: 0 !important;
  background-color: #0000 !important;
}

.accordion-item h2 button {
  font-size: 20px;
  line-height: 25px;
  margin: 0;
  text-transform: capitalize;
}

textarea#msg {
  height: 180px;
  resize: none;
}

.accordion-item h2 button.accordion-button.collapsed {
  color: #000;
  font-family: "Montserrat";
  background-color: #0000;
  font-size: 20px;
  line-height: 25px;
  font-family: "Montserrat";
  font-weight: 600;
}

.accordion-item h2 button.accordion-button {
  color: #000;
  background-color: #0000 !important;
  font-family: "Montserrat";
  font-weight: 600;
}

.faqs-img img {
  height: 625px;
  width: 100%;
  object-fit: cover;
  object-position: 20%;
  border-radius: 5px;
}

.faqs-bottom-video {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 665px;
  width: 100%;
  object-fit: cover;
  border-radius: 0 150px 0 0;
  overflow: hidden;
}

.faqs-bottom-video img {
  height: 100%;
  width: 100%;
}

.faqs-bottom-link {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 999;
}

.accordion-item {
  background-color: #0000;
}

.faqs-heading h2 span {
  display: block;
}

.faqs-heading {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 30px;
}

/*Faqs Sec css Ends*/

/* new css */

.form-headingg h4 {
  font-size: 30px;
  color: #000;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 10px;
}

.form-headingg {
  margin-top: 10px;
}

.form-headingg h5 {
  font-size: 20px;
  color: #000;
  margin-top: 20px;
  margin-bottom: 10px;
}

/* new css */

.credit_score_wrpr .wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 600px;
  margin: 0 auto;
}

.credit_score_wrpr svg.gauge {
  width: 600px;
  height: 350px;
  overflow: visible;
  margin: 0 auto;
}

.credit_score_wrpr #needle-group {
  transform-origin: 280px 280px;
  animation: sweepNeedle 1.8s 0.5s cubic-bezier(.25, .46, .45, .94) both;
}

@keyframes sweepNeedle {
  0% {
    transform: rotate(-90deg);
  }

  100% {
    transform: rotate(45deg);
  }
}

.credit_score_wrpr .bottom-row {
  width: 560px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 6px 10px 0;
}

.credit_score_wrpr .lbl-left {
  color: #d0302a;
  font-size: 14px;
  font-weight: 800;
}

.credit_score_wrpr .lbl-mid {
  text-align: center;
  line-height: 1.4;
}

.credit_score_wrpr .lbl-mid .t1 {
  font-size: 20px;
  font-weight: 800;
  color: #000;
}

.credit_score_wrpr .lbl-mid .t2 {
  font-size: 20px;
  font-weight: 800;
  color: #27ae60;
}

.credit_score_wrpr .lbl-right {
  color: #145a32;
  font-size: 14px;
  font-weight: 800;
}

.credit_score_wrpr {
  text-align: center;
}

.credit_score_wrpr>h2 {
  font-weight: 700;
}