:root {
  --maroon: #ad3515;
}

@font-face {
  font-family: "Montserrat";
  src: url(../fonts/Montserrat-VariableFont_wght.ttf);
}

body {
  background-color: #f1f1f1;
  font-family: "Montserrat", sans-serif;
}

/* Preloader */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #f2f2f2;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

#status {
  background: url(../img/logo-2.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  width: 150px;
  height: 50px;
  animation: fadeIn 1s infinite alternate;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
}

.container {
  max-width: 1340px;
}

header {
  background-color: #fff;
  display: flex;
  align-items: center;
  height: 75px;
}

/* dropdown */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  text-align: center;
  background-color: #f1f1f1;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
  left: -130px;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  font-size: 12px;
  font-weight: 500;
}

.dropdown-content a:hover {
  background-color: #ddd;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* Sidebar Styles */

h5 {
  font-size: 18px;
  font-weight: bold;
}

.sidebar img.img-fluid.mt-3 {
  width: 95%;
  position: relative;
}

.progress-circle-container {
  display: flex;
  justify-content: center;
}

.progress-circle {
  position: relative;
  width: 60px;
  height: 60px;
}

.progress-circle svg {
  width: 40px;
  height: 40px;
  transform: rotate(-90deg);
}

.progress-circle circle {
  fill: none;
  stroke: #e6e6e6;
  stroke-width: 3px;
  r: 15; /* Reduced radius for smaller circle */
  cx: 20; /* Center adjusted for 40x40 */
  cy: 20;
}

.progress-circle #progress-bar {
  stroke: #73ad15;
  stroke-dasharray: 94; /* Circumference of smaller circle (2 * π * r) */
  stroke-dashoffset: 94;
  transition: stroke-dashoffset 0.3s ease-in-out;
}

.progress-circle span {
  position: absolute;
  top: 35%;
  left: 35%;
  transform: translate(-50%, -50%);
  font-size: 8px; /* Smaller font size */
  font-weight: bold;
}

/* Info Section */
.alert {
  font-size: 16px;
  font-weight: 500;
}

/* Header Css */

.icons {
  display: flex;
  gap: 15px;
}

.icons .noti-icons {
  display: flex;
  gap: 15px;
  align-items: center;
}

.icon-img img {
  border-radius: 50%;
  background-color: transparent;
  transition: all 0.3s ease;
}

.icon-img img:hover {
  border-radius: 50%;
  padding: 10px;
  background-color: #f4f4f4;
}

/* mainpage */

.sidebar {
  background-color: #fff;
  border-radius: 20px;
  padding: 20px;
}
.top-tablist,
.tablist-content {
  padding: 20px 25px;
  background-color: #fff;
  border-radius: 20px;
}

.tablist-content {
  margin-top: 15px;
}

.tab-button {
  background-color: transparent !important;
  border: 1px solid #ddd;
  border-radius: 100px !important;
  color: #ddd;
  padding: 10px 20px;
  transition: all 0.3s ease;
}

.tab-button.active {
  background-color: transparent !important;
  border: 1px solid var(--maroon);
  border-radius: 100px !important;
  color: var(--maroon);
}

.tab-button:hover,
.tab-button:hover span {
  color: var(--maroon);
  border-color: var(--maroon);
}

.tab-button span {
  border: 1px solid #ddd;
  border-radius: 50%;
  width: 20px; /* Set a fixed width */
  height: 20px; /* Set the same fixed height */
  display: inline-flex; /* Center content inside */
  align-items: center; /* Vertically center */
  justify-content: center; /* Horizontally center */
}

/* Style for completed steps */
.tab-button.completed {
  background-color: transparent !important;
  border: 1px solid var(--maroon);
  color: var(--maroon);
}

.tab-button.completed span {
  border: 1px solid var(--maroon);
}

.tab-button.completed::after {
  background-color: var(--maroon) !important;
}

nav.nav.nav-pills {
  gap: 55px;
}

.tab-button.active span {
  border: 1px solid var(--maroon);
}

.nav-pills .nav-link.active {
  color: var(--maroon);
}

.top-tablist ul#pills-tab {
  justify-content: space-between;
}

.nav-item-with-line {
  position: relative;
  display: inline-block;
}

.nav-item-with-line:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 100%;
  top: 50%;
  width: 55px; /* Adjust the width for spacing between buttons */
  height: 2px; /* Thickness of the connecting line */
  background-color: #ccc; /* Line color */
  transform: translateY(-50%);
}

.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 120px;
  padding: 10px 15px;
}

.nav-link:focus {
  color: var(--maroon);
}
.top-tablist.mobile-view {
  display: none;
}

/* Tab Content */

.tablist-content .content-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 35px;
  position: relative;
  z-index: 10;
  animation: fadeIn 1s;
}

.content-images .radio-img:hover {
  border: 2px solid var(--maroon);
  transform: scale(0.95);
}

.content-images .radio-img {
  padding: 20px;
  background-color: #ffffff;
  border-radius: 15px;
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.05);
  width: 260px;
  height: 275px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  border: 2px solid transparent;
  transition: all 0.3s ease
}

.part-title h6 {
  font-size: 18px;
  font-weight: 600;
  line-height: 22px;
}

.contact-form {
  display: flex;
  justify-content: center;
  margin-top: 100px;
}

.contact-form .form {
  padding: 20px;
  border-radius: 20px;
  background-color: #fff;
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.05);
  width: 450px;
}

.contact-form .form .form-submit-btn {
  width: 100%;
  background-color: var(--maroon);
  color: #fff;
  border-color: var(--maroon);
}

.contact-form .form .form-submit-btn:hover {
  background-color: #c05436;
}

.contact-form .form-check-input:checked {
  background-color: var(--maroon);
  border-color: var(--maroon);
}

.contact-form .form-check-input:focus,
.form-control:focus {
  box-shadow: 0 0 0 0.25rem rgba(173, 53, 21, 0.25);
  border-color: var(--maroon);
}

.btn:focus-visible {
  box-shadow: 0 0 0 0.25rem rgba(173, 53, 21, 0.5);
}

.button {
  background-color: #d2d2d2;
  width: 50px;
  height: 30px;
  cursor: pointer;
  border-radius: 100px;
  position: relative;
}

.button::before {
  position: absolute;
  content: "";
  background-color: #fff;
  width: 30px;
  height: 30px;
  border-radius: 200px;
  border: 1px solid #ddd;
  transition: all 0.3s ease;
}

input:checked + .button {
  background-color: var(--maroon);
}

input:checked + .button::before {
  transform: translateX(21px);
}

.toggle-container input,
.blur-container input {
  display: none;
}

.container.toggle-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 15px;
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.05);
  padding: 20px;
  position: relative;
  z-index: 5;
  background-color: #fff;
}

.container.blur-container {
  display: flex;
  align-items: center;
  padding: 10px;
  position: relative;
  z-index: 5;
}

.tablist-content .card::before {
  content: url(../img/bg-blur.png);
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
}

form.card {
  overflow: hidden;
}

.container.toggle-container p {
  margin: 0;
  font-size: 18px;
  line-height: 22px;
  font-weight: 500;
}

.blur-container h6 {
  font-size: 20px;
  line-height: 25px;
  font-weight: 600;
}

.form-heading p {
  font-size: 14px;
  font-weight: 400;
  color: #333333;
}

.body-thumbnail {
  position: absolute;
  display: inline-block; /* Contain the image and background */
  background-color: #ffffff; /* Example background color */
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.05);
  border-radius: 10px; /* Rounded corners for the background */
  padding: 0 10px; /* Add padding to create space around the image */
  top: 10px;
  right: 10px;
}

.body-thumbnail img {
  display: block; /* Prevent extra space under the image */
}

.body-thumbnail img::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: #fff;
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.05);
}

.icon-box-wrapper {
  min-height: 450px;
  width: 100%;
  display: flex;
  justify-content: center;
}

.icon-box {
  position: relative;
  padding: 50px 50px 30px 50px;
  border-radius: 15px;
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.05);
  width: 450px;
  height: 170px;
}

.icon {
  position: absolute;
  top: -20px;
  left: 40%;
}

.icon-box .icon-box-content p {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
}

.img-card.active {
  border: 2px solid var(--maroon);
  position: relative;
}

.radio-img.active {
  border: 2px solid var(--maroon);
  position: relative;
}

.image {
  width: 218px;
  height: 175px;
  background-position: center center;
  display: inline-block;
  border-radius: 15px;
}
.radio-img.active::before {
  content: url(../img/checked.svg);
  position: absolute;
  top: -15px;
  left: 42%;
}

.group-images.active::before {
  content: url(../img/checked.svg);
  position: absolute;
  top: -15px;
  left: 46%;
}

.radio-img {
  > input {
    display: none;
  }
}

button#back_button {
  width: 100px;
  border-radius: 100px;
  background-color: #f2f2f2;
  color: #3f3f3f;
  text-decoration: none;
  margin: 0 10px;
}

button#back_button:hover {
  background-color: #d2d2d2;
}
button#back_button:disabled,
button#next_button:disabled {
  display: none; /* Completely hides the button */
}

button#next_button {
  width: 100px;
  border-radius: 100px;
  background-color: var(--maroon);
  border: none;
  text-decoration: none;
  margin: 0 10px;
}

button#next_button:hover {
  background-color: maroon;
}

.card-footer {
  background-color: #fff;
  border: none;
  margin-top: 30px;
}

.card-body {
  /*  min-height: 720px;  Set a fixed height for the card body */
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* Keeps content spaced evenly */
}

.card-body .tab:nth-child(3) {
  display: flex;
  justify-content: center;
  align-items: center;
}

.card-body .tab:nth-child(3) .blur-container {
  display: none;
}

.card-body .tab-3:nth-child(3) .blur-container {
  display: block;
}

.card-body .tab:nth-child(3) .content-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-content: center;
  align-items: center;
}
.card-body .tab:nth-child(4) {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
.card-body .tab-4-i1:nth-child(4) {
  display: flex;
  align-items: start;
}
.card-body .tab-4-i1:nth-child(4) {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.card-body .tab:nth-child(4) .content-images .radio-img {
  justify-content: center;
  height: auto;
}

.card-body .tab-3:nth-child(3) .content-images {
  display: flex;
  align-items: start;
  justify-content: flex-start;
}

.tab-3 .group-images {
  padding: 20px;
  border-radius: 15px;
  background-color: #fff;
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.05);
  height: 275px;
  width: 100%;
  gap: 20px;
  display: grid;
}
.tab-3 .group-images-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.tab-3 .group-images-wrapper img {
  width: 218px;
  height: 175px;
  position: relative;
  margin: 0 auto;
}

.tab-3 .group-images-wrapper img.plus-image {
  width: 30px;
  height: 30px;
}

.tab-3 .part-title h6 {
  font-size: 18px;
  font-weight: 500;
  line-height: 22px;
}

.card-body .tab-3:nth-child(3) {
  display: flex;
  justify-content: start;
}

.tab {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 650px;
}
.tab-4 .content-images {
  display: grid;
  grid-template-columns: 1fr;
}
/* Responsive Adjustments */
@media (max-width: 768px) {
  h5 {
    font-size: 16px;
  }

  .progress-circle {
    width: 30px;
    height: 30px;
    font-size: 12px;
  }
}

/* Info boxes */

.verification-box {
  background-color: #fff;
  width: 100%;
}

.verification-box .verification-header {
  padding: 30px 0;
  border-bottom: 1px solid var(--maroon);
  width: 100%;
  text-align: center;
}
.verification-box .verification-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 50px 20px;
}

.verification-img img {
  width: 80%;
  max-height: 265px;
  object-fit: cover;
}

.verification-content {
  margin-top: 30px;
}
.verification-content h4 {
  font-size: 1.6rem;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 15px;
}

.verification-content p {
  font-size: 0.875rem;
  color: #a2a2a2;
  margin-bottom: 35px;
}

.verification-content a.form-verify-btn {
  padding: 10px 15px;
  background-color: var(--maroon);
  color: #fff;
  border-radius: 100px;
  text-decoration: none;
}

/* Status cards */

.status-wrapper {
  padding: 20px;
  background-color: #fff;
  margin-top: 50px;
}

.status-card {
  display: flex;
  gap: 20px;
  align-items: center;
  border-left: 5px solid;
  padding: 10px 20px;
  width: 100%;
  margin: 20px 0;
}

.status-card i {
  padding: 20px;
  border-radius: 50%;
  font-size: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.status-card .status-content h6 {
  font-size: 20px;
  font-weight: 500;
  color: #000;
}

.status-card .status-content p {
  margin: 0;
  font-size: 0.875rem;
  color: #000;
}

.success-status {
  border-color: #00cc99;
  background-color: #dafbf1;
}

.status-card.success-status i {
  background-color: #00cc99;
}

.failed-status {
  border-color: #eb5757;
  background-color: #ffe3e3;
}

.failed-status i {
  background-color: #eb5757;
}

.warning-status {
  border-color: #f2c94e;
  background-color: #fffbf0;
}

.warning-status i {
  background-color: #f2c94e;
}

.info-status {
  background-color: #ececff;
  border-color: #5457f7;
}

.info-status i {
  background-color: #5457f7;
}
