body,
input,
textarea {
  font-family: "Poppins", sans-serif;
}

.containerc {
  position: relative;
  width: 100%;
  height: auto;
  margin-top: 100px;
  padding: 2rem;
  padding-top: 150px;
  background-color: #fafafa;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;

}

.formc {
  width: 100%;
  max-width: 820px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.1);
  z-index: 0;
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

#response-text{
  display: none;
  flex-direction: row;
  height: 35px;
  width: 80%;
  background-color: rgba(0, 255, 0, 0.5);
  color: #fff;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-radius: 4px;
  margin: 8px auto;
  justify-content: space-between;
  padding: 2px 10px;
   animation: blinker 2s linear infinite;
}


@keyframes blinker {
  50% {
    opacity: 0;
  }
}


.contact-form {
  background-color: #1f409a;
  position: relative;
}

.circle {
  border-radius: 50%;
  background: linear-gradient(135deg, transparent 20%, #149279);
  position: absolute;
}

.circle.one {
  width: 130px;
  height: 130px;
  top: 130px;
  right: -40px;
}

.circle.two {
  width: 80px;
  height: 80px;
  top: 10px;
  right: 30px;
}

.contact-form:before {
  content: "";
  position: absolute;
  width: 26px;
  height: 26px;
  background-color: #1f409a;
  transform: rotate(45deg);
  top: 50px;
  left: -13px;
}

.formc_m {
  padding: 2.3rem 2.2rem;
  z-index: 10;
  overflow: hidden;
  position: relative;
}

.title {
  color: #fff;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1;
  margin-bottom: 0.7rem;
}

.input-container {
  position: relative;
  margin: 1rem 0;
}

.input {
  width: 100%;
  outline: none;
  border: 2px solid #fafafa;
  background: none;
  padding: 0.6rem 1.2rem;
  color: #fff;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  border-radius: 5px;
  transition: 0.3s;
}

textarea.input {
  padding: 0.8rem 1.2rem;
  min-height: 150px;
  border-radius: 5px;
  resize: none;
  overflow-y: auto;
}

.input-container label {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  padding: 0 0.4rem;
  color: #fafafa;
  font-size: 0.9rem;
  font-weight: 400;
  pointer-events: none;
  z-index: 1000;
  transition: 0.5s;
}

.input-container.textarea label {
  top: 1rem;
  transform: translateY(0);
}

.formc_m .btn {
  padding: 0.6rem 1.3rem;
  background-color: #fff;
  border: 2px solid #fafafa;
  font-size: 0.95rem;
  color: #1abc9c;
  line-height: 1;
  border-radius: 5px;
  outline: none;
  cursor: pointer;
  transition: 0.3s;
  margin: 0;
  width: 100%;
}

.formc_m .btn:hover {
  background-color: transparent;
  color: #fff;
}

.input-container span {
  position: absolute;
  top: 0;
  left: 25px;
  transform: translateY(-50%);
  font-size: 0.8rem;
  padding: 0 0.4rem;
  color: transparent;
  pointer-events: none;
  z-index: 500;
}

.input-container span:before,
.input-container span:after {
  content: "";
  position: absolute;
  width: 10%;
  opacity: 0;
  transition: 0.3s;
  height: 5px;
  background-color: #1f409a;
  top: 50%;
  transform: translateY(-50%);
}

.input-container span:before {
  left: 50%;
}

.input-container span:after {
  right: 50%;
}

.input-container.focus label {
  top: 0;
  transform: translateY(-50%);
  left: 25px;
  font-size: 0.8rem;
}

.input-container.focus span:before,
.input-container.focus span:after {
  width: 50%;
  opacity: 1;
}

.contact-info {
  padding: 2.3rem 2.2rem;
  position: relative;
}

.contact-info .title {
  color: #1f409a;
}

.contact-info .text {
  color: #333;
  margin: 1.5rem 0 2rem 0;
}

.information {
  display: flex;
  color: #555;
  margin: 0.7rem 0;
  align-items: center;
  font-size: 0.95rem;
}

.information i {
  color: #1f409a;
  margin-top: -15px;
}

.icon {
  width: 28px;
  margin-right: 0.7rem;
}

.social-media {
  padding: 2rem 0 0 0;
}

.social-media p {
  color: #333;
}

.social-icons {
  display: flex;
  margin-top: 0.5rem;
}

.social-icons a {
  width: 35px;
  height: 35px;
  border-radius: 5px;
  background: linear-gradient(45deg, #1f409a, #041954);
  color: #fff;
  text-align: center;
  line-height: 35px;
  margin-right: 0.5rem;
  transition: 0.3s;
}

.social-icons a:hover {
  transform: scale(1.05);
}

.contact-info:before {
  content: "";
  position: absolute;
  width: 110px;
  height: 100px;
  border: 22px solid #1abc9c;
  border-radius: 50%;
  bottom: -77px;
  right: 50px;
  opacity: 0.3;
}

.big-circle {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: linear-gradient(to bottom, #1f409a, #1543c3);
  bottom: 50%;
  right: 50%;
  transform: translate(-40%, 38%);
}

.big-circle:after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  background-color: #fafafa;
  border-radius: 50%;
  top: calc(50% - 180px);
  left: calc(50% - 180px);
}

.square {
  position: absolute;
  height: 400px;
  top: 50%;
  left: 50%;
  transform: translate(181%, 11%);
  opacity: 0.2;
}

@media (max-width: 850px) {
  .formc {
    grid-template-columns: 1fr;
  }

  .contact-info:before {
    bottom: initial;
    top: -75px;
    right: 65px;
    transform: scale(0.95);
  }

  .contact-form:before {
    top: -13px;
    left: initial;
    right: 70px;
  }

  .square {
    transform: translate(140%, 43%);
    height: 350px;
  }

  .big-circle {
    bottom: 75%;
    transform: scale(0.9) translate(-40%, 30%);
    right: 50%;
  }

  .text_c {
    margin: 1rem 0 1.5rem 0;
  }

  .social-media {
    padding: 1.5rem 0 0 0;
  }
}

@media (max-width: 480px) {
  .containerc {
    padding: 1rem;
    margin-top: 5px;
  }
  #response-text{
    font-size: 12px;
  }

  #response-text i{
    font-size: 18px;
  }

  .contact-info p{
    font-size: 14px;
  }

  .contact-info:before {
    display: none;
  }

  .square,
  .big-circle {
    display: none;
  }

  .form_c,
  .contact-info {
    padding: 1.7rem 1.6rem;
  }

  .text_c,
  .information,
  .social-media p {
    font-size: 0.8rem;
  }

  .titlec {
    font-size: 1.15rem;
  }

  .social-icons a {
    width: 30px;
    height: 30px;
    line-height: 30px;
  }

  .formc_m.icon {
    width: 23px;
  }

  .input {
    padding: 0.45rem 1.2rem;
  }

  .formc_m .btn {
    padding: 0.45rem 1.2rem;
  }
}





.read-more {
  position: relative;
  text-decoration: none;
  line-height: 1.4;
  cursor: pointer;
  cursor: text;
}
.read-more .trigger {
  display: block;
  position: absolute;
  bottom: 0;
  cursor: pointer;
  color: #2980b9;
  font-weight: bold;
}
.read-more .contented {
  position: relative;
  overflow: hidden;
  height: 450px;
  font-size: 14px;
  transition: max-height 500ms ease;
}
.read-more .contented::before {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, white 50%, white 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  transition: opactiy 500ms ease, visibility 500ms ease;
}
.read-more.expanded .contented::before,
.read-more.expanded .trigger {
  opacity: 0;
  visibility: hidden;
}
.read-more.expanded .contented {
  height: auto;
}

.no-trigger .content {
  max-height: 89.6px;
}
.no-trigger .contented::before {
  height: 48px;
}

.large {
  font-size: 17.6px;
}
.large .contented {
  max-height: 98.56px;
}
.large .contented::before {
  height: 52.8px;
}

.loader-mask {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0, 0.8);
    display: none;
    z-index: 99999;
}

.loader {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 50px;
    height: 50px;
    font-size: 0;
    color: #00c9d0;
    display: inline-block;
    margin: -25px 0 0 -25px;
    text-indent: -9999em;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
}
.lead{
  font-size:13px;
}
.loader div {
    background-color: #d9b06a;
    display: inline-block;
    float: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    height: 50px;
    opacity: .5;
    border-radius: 50%;
    -webkit-animation: ballPulseDouble 2s ease-in-out infinite;
    animation: ballPulseDouble 2s ease-in-out infinite;
}

.loader div:last-child {
    -webkit-animation-delay: -1s;
    animation-delay: -1s;
}

@-webkit-keyframes ballPulseDouble {
    0%,
    100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes ballPulseDouble {
    0%,
    100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}


.check_mark {
  width: 1600px;
  height: 130px;
  margin:  auto;
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);


}

.check_mark font{
  color: limegreen;
  font-weight: bold;
  width: 100%;
  display: flex;
  margin: auto;
  text-align: center;
  justify-content: center;

}


.sa-icon {
  width: 80px;
  height: 80px;
  border: 4px solid gray;
  -webkit-border-radius: 40px;
  border-radius: 40px;
  border-radius: 50%;
  margin: 20px auto;
  padding: 0;
  position: relative;
  box-sizing: content-box;
}

.sa-icon.sa-success {
  border-color: limegreen;
}

.sa-icon.sa-success::before, .sa-icon.sa-success::after {
  content: '';
  -webkit-border-radius: 40px;
  border-radius: 40px;
  border-radius: 50%;
  position: absolute;
  width: 60px;
  height: 120px;
  background: transparent;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.sa-icon.sa-success::before {
  -webkit-border-radius: 120px 0 0 120px;
  border-radius: 120px 0 0 120px;
  top: -7px;
  left: -33px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transform-origin: 60px 60px;
  transform-origin: 60px 60px;
}

.sa-icon.sa-success::after {
  -webkit-border-radius: 0 120px 120px 0;
  border-radius: 0 120px 120px 0;
  top: -11px;
  left: 30px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transform-origin: 0px 60px;
  transform-origin: 0px 60px;
}

.sa-icon.sa-success .sa-placeholder {
  width: 80px;
  height: 80px;
  border: 4px solid rgba(76, 175, 80, .5);
  -webkit-border-radius: 40px;
  border-radius: 40px;
  border-radius: 50%;
  box-sizing: content-box;
  position: absolute;
  left: -4px;
  top: -4px;
  z-index: 2;
}

.sa-icon.sa-success .sa-fix {
  width: 5px;
  height: 90px;
  background-color: transparent;
  position: absolute;
  left: 28px;
  top: 8px;
  z-index: 1;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.sa-icon.sa-success.animate::after {
  -webkit-animation: rotatePlaceholder 4.25s ease-in;
  animation: rotatePlaceholder 4.25s ease-in;
}

.sa-icon.sa-success {
  border-color: transparent\9;
}
.sa-icon.sa-success .sa-line.sa-tip {
  -ms-transform: rotate(45deg) \9;
}
.sa-icon.sa-success .sa-line.sa-long {
  -ms-transform: rotate(-45deg) \9;
}

.animateSuccessTip {
  -webkit-animation: animateSuccessTip 0.75s;
  animation: animateSuccessTip 0.75s;
}

.animateSuccessLong {
  -webkit-animation: animateSuccessLong 0.75s;
  animation: animateSuccessLong 0.75s;
}

@-webkit-keyframes animateSuccessLong {
  0% {
    width: 0;
    right: 46px;
    top: 54px;
  }
  65% {
    width: 0;
    right: 46px;
    top: 54px;
  }
  84% {
    width: 55px;
    right: 0px;
    top: 35px;
  }
  100% {
    width: 47px;
    right: 8px;
    top: 38px;
  }
}
@-webkit-keyframes animateSuccessTip {
  0% {
    width: 0;
    left: 1px;
    top: 19px;
  }
  54% {
    width: 0;
    left: 1px;
    top: 19px;
  }
  70% {
    width: 50px;
    left: -8px;
    top: 37px;
  }
  84% {
    width: 17px;
    left: 21px;
    top: 48px;
  }
  100% {
    width: 25px;
    left: 14px;
    top: 45px;
  }
}
@keyframes animateSuccessTip {
  0% {
    width: 0;
    left: 1px;
    top: 19px;
  }
  54% {
    width: 0;
    left: 1px;
    top: 19px;
  }
  70% {
    width: 50px;
    left: -8px;
    top: 37px;
  }
  84% {
    width: 17px;
    left: 21px;
    top: 48px;
  }
  100% {
    width: 25px;
    left: 14px;
    top: 45px;
  }
}

@keyframes animateSuccessLong {
  0% {
    width: 0;
    right: 46px;
    top: 54px;
  }
  65% {
    width: 0;
    right: 46px;
    top: 54px;
  }
  84% {
    width: 55px;
    right: 0px;
    top: 35px;
  }
  100% {
    width: 47px;
    right: 8px;
    top: 38px;
  }
}

.sa-icon.sa-success .sa-line {
  height: 5px;
  background-color: #4CAF50;
  display: block;
  border-radius: 2px;
  position: absolute;
  z-index: 2;
}

.sa-icon.sa-success .sa-line.sa-tip {
  width: 25px;
  left: 14px;
  top: 46px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.sa-icon.sa-success .sa-line.sa-long {
  width: 47px;
  right: 8px;
  top: 38px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

@-webkit-keyframes rotatePlaceholder {
  0% {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
  }
  5% {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
  }
  12% {
    transform: rotate(-405deg);
    -webkit-transform: rotate(-405deg);
  }
  100% {
    transform: rotate(-405deg);
    -webkit-transform: rotate(-405deg);
  }
}
@keyframes rotatePlaceholder {
  0% {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
  }
  5% {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
  }
  12% {
    transform: rotate(-405deg);
    -webkit-transform: rotate(-405deg);
  }
  100% {
    transform: rotate(-405deg);
    -webkit-transform: rotate(-405deg);
  }
}

.f_b{
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 6px;
  background-color: #0149db;
  color: white;
  font-weight: 700;
  border: none;
  border-radius: 3px;
}
.search_f{
  display: flex;
    margin: auto;
  margin-top: 150px;
  width: 50%;
  background-color: #f9f9f9;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
  flex-direction: column;
 justify-content: center;
 align-items: center;
  text-align: center;
  border-radius: 7px;
  padding:15px;
}

.forms{
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  justify-content: space-between;
  flex-wrap: wrap;
}

.search_f form select{
  height: 60px;
  width: 180px;
  border-radius: 10px;
  border-color: #cecece;
}

.form-grou{
  display: inline-flex;
  position: relative;
}

.cc_l{
  position: absolute;
  background: #f9f9f9;
  padding: 2px;
  left: 7px;
  font-weight: 400;
  top: -12px;
}
 
.form-grou  input{
  height: 40px;
  border: 1px solid #cecece;
  padding: 1px 10px;
  border-radius: 5px;
}
 .form-grou  input::placeholder{
  color: #333;
 }

.form-grou input:focus{
  border: 2px solid #e30000;
  box-shadow: rgba(277, 0, 0, 0.25) 0px 50px 100px -20px, rgba(277, 0, 0, 0.3) 0px 30px 60px -30px;
  transition: 0.5s;
}

.form-grou input:focus + .cc_l{
  font-weight: 400;
  color: #e30000;
  transition: 0.5s;
}
.sectiona {
  position: relative;
  height: auto;
  width: 75%;
  margin: auto;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.carda {
  position: relative;
  background: #fff;
  border-radius: 20px;
  margin: 20px 0;
  width: 23%;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  padding-bottom: 10px;
}
.carda::before {
  content: "";
  position: absolute;
  height: 40%;
  width: 100%;
  background: #005bac;
  border-radius: 20px 20px 0 0;
}
.card .card-contenta {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px;
  position: relative;
  z-index: 100;
}
.sectiona .carda .imagea {
  height: 140px;
  width: 140px;
  border-radius: 50%;
  padding: 3px;
  background: #005bac;
  position: relative;
  margin: auto;
}
.sectiona .carda .imagea img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #fff;
}
.carda .media-icons {
  position: absolute;
  top: 10px;
  right: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.carda .media-icons i {
  color: #fff;
  opacity: 0.6;
  margin-top: 10px;
  transition: all 0.3s ease;
  cursor: pointer;
}
.carda .media-icons i:hover {
  opacity: 1;
}
.carda .name-profession {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 10px;
  color: ;
}
.name-profession .name {
  font-size: 20px;
  font-weight: 600;
}
.name-profession .profession {
  font-size: 15px;
  font-weight: 500;
}
.carda .rating {
  display: flex;
  align-items: center;
  margin-top: 18px;
  margin: auto;
}
.carda .rating i {
  font-size: 18px;
  margin: 0 2px;
  color: #7d2ae8;
}
.carda .buttona {
  width: 100%;
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 20px;
}
.carda .buttona button {
  background: #ffff;
  outline: none;
  border: none;
  color: #005bac;
  padding: 8px 22px;
  border-radius: 20px;
  font-size: 14px;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.05) 0px 8px 32px;
}
.buttona button:hover {
  background: #005bac;
  color: white;
}
.swiper-pagination {
  position: absolute;
}
.swiper-pagination-bullet {
  height: 7px;
  width: 26px;
  border-radius: 25px;
  background: #7d2ae8;
}
.swiper-button-next,
.swiper-button-prev {
  opacity: 0.7;
  color: #fff;
  transition: all 0.3s ease;
}
.swiper-button-next:hover,
.swiper-button-prev:hover {
  opacity: 1;
  color: #fff;
}
/* Responsive media query code for small screens */
@media (max-width: 768px) {
  .sectiona {
    padding: 15px;
    width: 98%;
  }


.carda {
  position: relative;
  background: #fff;
  border-radius: 20px;
  margin: 20px 0;
  width: 95%;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  padding-bottom: 10px;
}


.search_f{
  display: flex;
    margin: auto;
  margin-top: 30px;
  width: 95%;
  padding: 15px;
  background-color: #f9f9f9;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
  flex-direction: column;
 justify-content: center;
 align-items: center;
  text-align: center;
  border-radius: 7px;
  padding:15px;
}

.form-grou{
  display: inline-flex;
  position: relative;
  margin-top: 15px;
  width: 100%;
}
.form-grou  input{
  height: 60px;
  width: 100%;
  border: 1px solid #cecece;
  padding: 1px 10px;
  border-radius: 5px;
}
.forms{
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  justify-content: center;
  flex-wrap: wrap;
}

form{
  width: 100%;
}

.search_f form select{
  height: 60px;
  width: 100%;
  border-radius: 5px;
  border-color: #cecece;
  margin-top: 10px;
}

  .swiper-button-next,
  .swiper-button-prev {
    display: none;
  


  }


















































#container{
            width: 100%;
            height: 50px;
            position: relative;
            display: none;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }
        .box{
            width: 15px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.7);
            border-radius: 30px;
            animation: loader 1s linear infinite;
        }
        #loader1{
            animation-delay: .1s;
        }
        #loader2{
            animation-delay: .2s;
        }
        #loader3{
            animation-delay: .3s;
        }
        #loader4{
            animation-delay: .4s;
        }
        #loader5{
            animation-delay: .5s;
        }
        @keyframes loader{
            0%,100%{
                height: 90px;
            }
            50%{
                height: 20px;
            }
        }
.owl-nav{
  display: flex;
  flex-direction: row;
  margin: auto;
  position: relative;
  justify-content: space-between;
  width: 90%;
  padding-bottom: 0;
}
.owl-prev{
  position: relative;
  display: flex;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  background: #010b27;
  font-size: 30px;
  color: white;
  text-align: center;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
}

.owl-prev:hover, .owl-next:hover{
  background: white;
  cursor: pointer;
  color: #010b27;
  border: 1px solid #010b27;
  transition: 0.5s;
}
.owl-next{
  position: relative;
  display: flex;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  background: #010b27;
  font-size: 30px;
  color: white;
  text-align: center;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
}

.containerv {
            width: 100%;
            max-width: 1000px;
            min-height: 600px;
            display: flex;
            background: white;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            overflow: hidden;
            margin: auto;
            margin-top: 120px;
            margin-bottom: 20px;
        }

        .sidebar {
            width: 300px;
            background: rgba(31, 64, 154, 1);
            padding: 40px 30px;
            position: relative;
        }

        .main-content {
            flex: 1;
            padding: 40px;
            background: white;
        }

        .progress-steps {
            display: flex;
            flex-direction: column;
            gap: 30px;
            margin-top: 60px;
        }

        .step-item {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 15px;
            border-radius: 12px;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .step-item.active {
            background: rgba(2, 32, 113, 0.7);
        }

        .step-number {
            width: 35px;
            height: 35px;
            border-radius: 10px;
            background: #021d67;
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
        }

        .step-item.completed .step-number {
            background: #00273b;
            color: white;
        }

        .step-text {
            font-weight: 500;
            color: #fff;
        }

        .step-item.active .step-text {
            color: #fcff00;
            font-weight: 600;
        }


        .step-item.active .step-number{
          color: #fcff00;
        }

        .form-container {
            max-width: 500px;
            margin: 0 auto;
        }

        .form-step {
            display: none;
        }

        .form-step.active {
            display: block;
            animation: slideIn 0.4s ease;
        }

        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateX(20px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .step-title {
            font-size: 28px;
            color: #2d3748;
            margin-bottom: 30px;
            font-weight: 600;
        }

        .form-groupv {
            margin-bottom: 25px;
        }

        .form-groupv label {
            display: block;
            margin-bottom: 10px;
            font-weight: 500;
            color: #4a5568;
            font-size: 15px;
        }

        .form-groupv input,
        .form-groupv select {
            width: 100%;
            padding: 14px;
            border: 2px solid #edf2f7;
            border-radius: 12px;
            font-size: 15px;
            transition: all 0.3s ease;
            background: #edf2f7;
        }

        .form-groupv input:focus,
        .form-groupv select:focus {
            border-color: rgba(31, 64, 154, 1);
            background: white;
            outline: none;
        }

        .form-groupv input:hover,
        .form-groupv select:hover {
            border-color: rgba(31, 64, 154, 1);
        }

        .buttons {
            display: flex;
            justify-content: flex-end;
            gap: 15px;
            margin-top: 40px;
        }

        .buttons button {
            padding: 14px 28px;
            border: none;
            border-radius: 12px;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .buttons button.prev {
            background: #f7fafc;
            color: #4a5568;
        }

       .buttons  button.next,
       .buttons  button.submit {
            background: #022071;
            color: #fff;
        }

        .buttons button:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .buttons button.prev:hover {
            background: #333;
            color: #fff;
        }

        .buttons button.next:hover,
        .buttons button.submit:hover {
            background: #fff;
            color: #022071;
        }

        .success-message {
            display: none;
            text-align: center;
            padding: 60px 40px;
        }

        .success-message.active {
            display: block;
            animation: fadeIn 0.6s ease;
        }

        .success-message h2 {
            color: #e64b8d;
            font-size: 32px;
            margin-bottom: 20px;
        }

        .success-message p {
            color: #666;
            line-height: 1.7;
            font-size: 16px;
        }

        .form-header {
            margin-bottom: 40px;
        }

        .form-header h1 {
            font-size: 24px;
            color: #2d3748;
            margin-bottom: 10px;
        }

        .form-header p {
            color: #718096;
            line-height: 1.6;
        }

        @media (max-width: 768px) {
            .containerv {
                flex-direction: column;
                width: 97%;
                border-radius: 8px;
                margin:10px auto;
            }

            .sidebar {
                width: 100%;
                padding: 20px;
            }

            .progress-steps {
                margin-top: 20px;
                flex-direction: row;
                justify-content: space-between;
                gap: 10px;
            }

            .step-item {
                flex-direction: column;
                text-align: center;
                padding: 10px;
            }

            .step-text {
                display: none;
            }

            .main-content {
                padding: 20px;
            }
        }

        .error {
            border-color: rgba(222, 0, 68, 0.4) !important;
            background: rgba(222, 0, 68, 0.3) !important;
        }

        .error-message {
            color: #e64b8d;
            font-size: 13px;
            margin-top: 5px;
            display: none;
        }

        .error + .error-message {
            display: block;
        }

        .form-groupv input:focus::placeholder {
            color: rgba(31, 64, 154, 1);
        }

        .step-description {
            color: #718096;
            font-size: 14px;
            margin-top: 5px;
        }

        .form-groupv input::placeholder{
          color: rgba(0, 0, 0, .7);
        }