@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');

:root {
  --body-font: "Nunito", sans-serif;
  --heading-font: "Nunito", sans-serif;
  --theme-color: #2d348f;
  --color-white: #ffffff;
  --theme-bg-light: #f2f3f5;
  --transition: all 0.5s ease-in-out;
  --box-shadow: 0 0 40px 10px rgb(0 0 0 / 10%);
}


body {
  background-color: #8a8dee36;
  font-family: var(--body-font);
  align-items: center;
  /* background-image: radial-gradient(#060974 0.1px, #8c8fe41e 0.9px);
  background-size: 18px 18px; */
  justify-content: flex-start;
  opacity: 1;
  overflow-x: hidden;
}

.tab-container {
  margin-bottom: 30px;
}

.nav-tabs {
  border-bottom: 2px solid #ddd;
  justify-content: space-evenly;
}

.nav-tabs .nav-link {
  border: none;
  color: #060974;
  background-color: transparent;
  font-weight: 600;
  padding: 10px 20px;
  margin-right: 10px;
  position: relative;
  font-size: 18px;
}

.nav-tabs .nav-link.active {
  color: #060974;
  background-color: transparent;
  border-bottom: 3px solid #e00944;
}

.nav-tabs .nav-link:hover {
  color: #060974;
  background-color: transparent;
}

.nav-tabs .nav-link.completed {
  color: #060974;
}

.nav-tabs .nav-link.completed::after {
  content: "✓";
  margin-left: 8px;
  color: #e00944;
}

.tab-content {
  display: none;
}

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

.tab-content.active {
  background-color: rgba(255, 255, 255, 0.534);
  padding: 40px;
  margin: 20px auto;
  max-width: 1200px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.form-title {
  color: #060974;
  font-size: 36px;
  font-weight: bolder;
  text-align: center;
  margin-top: 30px;
  margin-bottom: 20px;
}

.form-date {
  text-align: center;
  color: #666;
  margin-bottom: 30px;
}

.form-label {
  font-weight: 600;
  color: #1f1c1c;
  font-size: 13px;
  margin-bottom: 8px;
}

.required::after {
  content: " *";
  color: red;
}

.form-control {
  background-color: #f8f9fa;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 12px;
  font-size: 14px;
}

.form-control:focus {
  border-color: #060974;
  box-shadow: 0 0 0 0.2rem rgba(6, 9, 116, 0.25);
}

.form-select {
  background-color: #f8f9fa;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 12px;
  font-size: 14px;
}

.form-select:focus {
  border-color: #060974;
  box-shadow: 0 0 0 0.2rem rgba(6, 9, 116, 0.25);
}

.error-message {
  color: red;
  font-size: 12px;
  margin-top: 5px;
}

.row {
  margin-bottom: 20px;
}

.col-md-6 {
  padding-left: 15px;
  padding-right: 15px;
}

.btn-custom {
  background-color: #060974;
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 5px;
  font-weight: 600;
  font-size: 16px;
  min-width: 120px;
}

.btn-custom:hover {
  background-color: #060974;
  color: white;
}

.btn-custom:focus {
  box-shadow: 0 0 0 0.2rem rgba(6, 9, 116, 0.25);
}

.data-protection-policy {
  display: none;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  z-index: 999999;
}

.data-protection-policy.active {
  display: flex;
}

/* index page design */


/*====================
22. Feature css 
======================*/


input.is-invalid,
select.is-invalid,
textarea.is-invalid {
  border-color: #dc3545;
}

input.is-invalid:focus,
select.is-invalid:focus {
  box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
}


.feature-area {
  position: relative;
  justify-content: center;
  z-index: 1;
}


a {
  text-decoration: none;
  color: var(--color-dark);
}

.fa-negative {
  margin-top: -150px;
  margin-right: 20px;
}

.feature-item {
  position: relative;
  padding: 20px 25px;
  background: var(--color-white);
  border-radius: 5px;
  box-shadow: var(--box-shadow);
  z-index: 1;
  border-bottom: 3px solid #dc3545;
}

.feature-item .count {
  position: absolute;
  right: 30px;
  top: 0px;
  font-size: 50px;
  font-weight: 800;
  -webkit-text-stroke: 2px var(--theme-color);
  -webkit-text-fill-color: transparent;
}

.feature-icon {
  width: 80px;
  height: 80px;
  line-height: 65px;
  border-radius: 50%;
  text-align: center;
  color: var(--color-white);
  font-size: 60px;
  background: var(--theme-color);
  margin-bottom: 25px;
  box-shadow: 5px 5px 0 var(--theme-bg-light);
  position: relative;
  transition: var(--transition);
}

.feature-item:hover .feature-icon {
  transform: rotateY(360deg);
}

.feature-icon img {
  width: 48px;
  filter: brightness(0) invert(1);
}

.feature-content {
  flex: 1;
}

.feature-content a h4 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
}

.feature-content p {
  color: var(--color-dark);
}

@media all and (max-width: 1199px) {
  .fa-negative {
    margin-top: -50px;
    margin-left: 20px;
  }

  .feature-item.active::before {
    transform: scale(1);
  }
}

@media (max-width: 768px) {
  .col-md-6 {
    margin-bottom: 20px;
  }
}