@import url('https://fonts.googleapis.com/css2?family=Edu+VIC+WA+NT+Beginner:wght@400..500&display=swap');

.out-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 40vh;
    /* background-color: #f5f5f5; */
    /* padding: 20px; */
    margin-top: 10px;
}

.container-2 {
    width: 1300px;
    height: auto;
    display: flex;
    border-radius: 8px;
    overflow: hidden;
}
.progress-bar {
  margin-bottom: 10px;
  height: 10px;
  background-color: #f3f3f3;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
}

.progress {
  height: 100%;
  width: 0;
  background-color: #ffcdcdfa;
  transition: width 0.4s ease-in-out;
}

.form-step {
  display: none;
}

.form-step.form-step-active {
  display: block;
}

.button {
  margin-top: 0px;
}

.form-section {
  background: #ffffff;
    width: 70%;
    height: 100%;
    box-shadow: 0px 0.25rem 1rem #171a211f;
    border-radius: 10px;
    padding: 30px;
    box-sizing: border-box;
}

form {
  margin-top: 20px;
}
.form-section h2 {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 24px;
}

.input-group {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 20px;
}

.input-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
    position: relative;
    margin-bottom: 1.25rem;
    border: 1px solid #c2c7d1;
    border-radius: 6px;
}

.input-wrapper input {
  width: 100%;
  padding: 20px;
  border: 1px solid #cccccc63;
  border-radius: 4px;
  box-sizing: border-box;
  font-size: 18px;
}
:focus-visible {
  outline: none !important;
}
.input-wrapper input:focus-visible {
  border: 1px solid #93c4ff;
}

.input-wrapper label {
    position: absolute;
    top: 20px;
    left: 10px;
    font-size: 16px;
    color: #999;
    pointer-events: none;
    transition: all 0.2s ease;
    background: #fff;
    padding: 0 5px;
    z-index: 1;
}
.input-wrapper i {
  margin-right: 10px;
  color: var(--main-color);
}
.input-wrapper input[type="date"]::-webkit-calendar-picker-indicator {
  background: var(--main-color);
  border-radius: 50%;
  padding: 2px;
  cursor: pointer;
}

.input-wrapper input[type="date"]::-webkit-calendar-picker-indicator:hover {
  background: var(--main-color);
}

.input-wrapper input[type="date"]::-webkit-calendar-picker-indicator:active {
  background: var(--main-color);
}

.input-wrapper input[type="date"]::-moz-calendar-picker-indicator {
  background: var(--main-color);
  border-radius: 50%;
}

.input-wrapper input[type="date"]::-moz-calendar-picker-indicator:hover {
  background: var(--main-color);
}

.input-wrapper input[type="date"]::-moz-calendar-picker-indicator:active {
  background: var(--main-color);
}
.input-wrapper input:focus + label,
.input-wrapper input:not(:placeholder-shown) + label {
    top: -10px;
    left: 5px;
    font-size: 12px;
    color: var(--main-color);
}
.input-wrapper input[type="date"]:focus + label,
.input-wrapper input[type="date"]:not(:placeholder-shown) + label {
    top: -10px;
    left: 5px;
    font-size: 12px;
    color: var(--main-color);
}

/* phone  */
.phone-wrapper {
  display: flex;
  align-items: center;
  position: relative;
}

.phone-prefix {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  font-size: 16px;
  color: #999;
  background: #fff;
  padding: 0 5px;
  border-radius: 6px;
}

.phone-wrapper input[type="tel"] {
  padding-left: 60px;
}

.phone-wrapper input[type="tel"]:focus + label,
.phone-wrapper input[type="tel"]:not(:placeholder-shown) + label {
  top: -10px;
  left: 5px;
  font-size: 12px;
  color: var(--main-color);
}

.input-wrapper input[type="date"] {
  width: 100%;
  padding: 10px;
  padding-top: 20px;
  border: 1px solid #cccccc63;
  border-radius: 4px;
  box-sizing: border-box;
  font-size: 16px;
  color: var(--second-color);
  text-transform: uppercase;
  font-family:'Poppins',sans-serif ;
}

.terms {
    margin-bottom: 20px;
}

.terms input {
    margin-right: 10px;
}

.terms a {
    color: var(--main-color);
    text-decoration: none;
}

.terms a:hover {
    text-decoration: underline;
}
.form-btn{
  display: flex;
  justify-content: center;
}
.button:hover {
  background-position: right center;
  color: #FFF;
}
.button {
    font-family: 'Poppins';
    width: 50%;
    height: 45px;
    padding: 7px;
    color: #FFF;
    border: none;
    border-radius: 4px;
    background-image: linear-gradient(to right, #ff0000 0%, #FF2525 74%);
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s linear;
    transition: ease-in-out all 0.5s;
    text-transform: capitalize;
}
.button > i {
    margin-right: 5px;
    margin-left: 5px;
    font-size: 0.9em;
    transition: all 0.4s ease-in;
}
   
.button:hover > i {
    font-size: 1.0em;
    transform: translateX(-3px);
}

.button:hover {
    background-color: #df0e0e;
    box-shadow: 9px 9px 33px #d1d1d1, -9px -9px 33px #ffffff;
}
.gender-selection {
  margin-bottom: 20px;
}

.gender-selection p {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 10px;
}

.radio-group {
  display: flex;
  gap: 10px;
}

.radio-group input[type="radio"] {
  display: none;
}

.radio-group label {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  border: 2px solid #bfbfc0;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}
.radio-group img{
  width: 25px;
  margin-right: 8px;
}
.radio-group i {
  margin-right: 8px;
  font-size: 1.2em; /* Adjust size as needed */
  color: #bfbfc0; /* Default icon color */
  transition: color 0.3s;
}

.radio-group input[type="radio"]:checked + label {
  background-color: #b1afaf;
  color: white;
  border-color: #b1afaf;
}

.radio-group input[type="radio"]:checked + label i {
  color: white; /* Change icon color when selected */
}

.radio-group label:hover {
  background-color: #f0f0f0;
}

.image-section {
    width: 100%;
    /* background: #eee; */
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    overflow: hidden;
}

.map-section {
    width: 60%;
    /* background: #eee; */
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    overflow: hidden;
    padding: 0rem 3rem 0rem 0rem;
}

.image-section img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
}
.error-message {
    color: red;
    font-size: 12px;
    display: none; 
    margin-top: 5px;
}

.heading{
    padding-top: 140px;
}

.carrer{
    padding-top: 140px;
}
.heading h1{
    font-size: 25px;
    font-weight: 500;
}
.heading h2{
  font-size: 20px;
  font-weight: 500;
  color: var(--main-color);
}
.heading h4{
  font-size: 30px;
  padding-bottom: 15px;
  
  font-weight: 500;
}
.carrer h2{
  font-size: 25px;
  font-weight: 500;
  color: var(--second-color);
}
@media (max-width: 991px) {
  .heading h1 {
      margin-left: 0px;
  }
  .heading h2 {
    margin-left: 0px;
  }
  .job-card {
    width: 100%;
  }
  .benefits ul {
    display: block;
  }
  .benefits li {
    margin-bottom: 5px;
    margin-left: 40px;
    text-align: left;
  }
  .job-card h3 {
    font-size: 16px;
  }

}
@media (max-width: 767px) {
  .out-container{
    padding: 0;
    margin-top: 15px;
  }
  .text-container{
    padding-top: 0;
  }
}
@media (max-width: 575px) {
    /* .image-section{
        display: none;
    } */
    .form-section {
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      background-color: #fff;
    }
    .container-2 {
      flex-direction: column; /* Stack items vertically on mobile */
    }
    .form-section {
        width: 100%;
    }
    .out-container {
        min-height: 50vh;
    }
}
/* Checkbox */
.checkbox-container {
  margin: 20px 0;
}

.checkbox-container p {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 10px;
}

.checkbox-wrapper-12 {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  position: relative;
}

.checkbox-wrapper-12 input[type="checkbox"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-tap-highlight-color: transparent;
  cursor: pointer;
  margin: 0;
}

.checkbox-wrapper-12 .cbx {
  width: 24px;
  height: 24px;
  margin-right: 10px;
}

.checkbox-wrapper-12 .cbx input {
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  border: 2px solid #bfbfc0;
  border-radius: 50%;
}

.checkbox-wrapper-12 .cbx label {
  width: 24px;
  height: 24px;
  background: none;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-filter: url("#goo-12");
  filter: url("#goo-12");
  transform: translate3d(0, 0, 0);
  pointer-events: none;
}

.checkbox-wrapper-12 .cbx svg {
  position: absolute;
  top: 5px;
  left: 4px;
  z-index: 1;
  pointer-events: none;
}

.checkbox-wrapper-12 .cbx svg path {
  stroke: #fff;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 19;
  stroke-dashoffset: 19;
  transition: stroke-dashoffset 0.3s ease;
  transition-delay: 0.2s;
}

.checkbox-wrapper-12 .cbx input:checked + label {
  animation: splash-12 0.6s ease forwards;
}

.checkbox-wrapper-12 .cbx input:checked + label + svg path {
  stroke-dashoffset: 0;
}

@-moz-keyframes splash-12 {
  40% {
    background: #866efb;
    box-shadow: 0 -18px 0 -8px #866efb, 16px -8px 0 -8px #866efb, 16px 8px 0 -8px #866efb, 0 18px 0 -8px #866efb, -16px 8px 0 -8px #866efb, -16px -8px 0 -8px #866efb;
  }
  100% {
    background: #866efb;
    box-shadow: 0 -36px 0 -10px transparent, 32px -16px 0 -10px transparent, 32px 16px 0 -10px transparent, 0 36px 0 -10px transparent, -32px 16px 0 -10px transparent, -32px -16px 0 -10px transparent;
  }
}

@-webkit-keyframes splash-12 {
  40% {
    background: #866efb;
    box-shadow: 0 -18px 0 -8px #866efb, 16px -8px 0 -8px #866efb, 16px 8px 0 -8px #866efb, 0 18px 0 -8px #866efb, -16px 8px 0 -8px #866efb, -16px -8px 0 -8px #866efb;
  }
  100% {
    background: #866efb;
    box-shadow: 0 -36px 0 -10px transparent, 32px -16px 0 -10px transparent, 32px 16px 0 -10px transparent, 0 36px 0 -10px transparent, -32px 16px 0 -10px transparent, -32px -16px 0 -10px transparent;
  }
}

@-o-keyframes splash-12 {
  40% {
    background: #866efb;
    box-shadow: 0 -18px 0 -8px #866efb, 16px -8px 0 -8px #866efb, 16px 8px 0 -8px #866efb, 0 18px 0 -8px #866efb, -16px 8px 0 -8px #866efb, -16px -8px 0 -8px #866efb;
  }
  100% {
    background: #866efb;
    box-shadow: 0 -36px 0 -10px transparent, 32px -16px 0 -10px transparent, 32px 16px 0 -10px transparent, 0 36px 0 -10px transparent, -32px 16px 0 -10px transparent, -32px -16px 0 -10px transparent;
  }
}

@keyframes splash-12 {
  40% {
    background: #866efb;
    box-shadow: 0 -18px 0 -8px #866efb, 16px -8px 0 -8px #866efb, 16px 8px 0 -8px #866efb, 0 18px 0 -8px #866efb, -16px 8px 0 -8px #866efb, -16px -8px 0 -8px #866efb;
  }
  100% {
    background: #866efb;
    box-shadow: 0 -36px 0 -10px transparent, 32px -16px 0 -10px transparent, 32px 16px 0 -10px transparent, 0 36px 0 -10px transparent, -32px 16px 0 -10px transparent, -32px -16px 0 -10px transparent;
  }
}
.summary{
    margin: 50px auto;
    max-width: 1000px;
    padding: 16px 30px;
    border-radius: 16px;
    border: 1px solid rgba(51, 56, 70, .1);
    background: #fff;
}
.summary h2{
  text-align: center;
  padding: 15px 0;
  font-weight: 500;
}
.summary p{
  font-size: 14px;
}
.summary span{
  font-weight:400;
  color: var(--subtitle-color);
}
/* Con */
.con {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}
.con {
  display: flex;
  align-items: center;
  text-align: left;
}
.con img {
  width: 40px;
  height: 40px;
  /* margin-right: 10px; */
}
.con-text {
  font-size: 16px;
}
.con-text h3 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 4px;
}
.head {
  font-size: 30px;
  padding: 20px 0;
  
  font-weight: 500;
  color: var(--main-color);
}   
.form-section p{
  color: #8690a3;
  margin-top: 10px;
}
.form-section h3{
  color: #171a21;
  font-weight: 500;
  font-size: 1.25rem;
}
@media (max-width: 1024px){
  .heading h1 {
    font-size: 25px;
  }
  .heading h2 {
    font-size: 25px;
  }
  .container-title h2 {
    font-size: 20px;
  }
  .service-data h4{
    font-size: 14px;
  }
  .service-data p{
    font-size: 12px;
  }
  .icon-bg {
    padding: 0px !important;
  }
  .icon-bg img {
    max-width: 45px !important;
  }
  .radio-group label{
    padding: 7px 10px !important;
  }
  .con img {
    width: 30px;
    height: 30px;
  }
  .con-text h3 {
    font-size: 14px;
  }
  .head{
    font-size: 25px;
  }
  .button{
    font-size: 14px;
  }
  .container-title h2 {
    font-size: 24px !important;
  }
}
@media (max-width: 768px) {
  .heading h1 {
    font-size: 20px;
  }
  .heading h2 {
    font-size: 15px;
  }
  .form-section h3{
    font-size: 15px;
  }
  .form-section {
    width: 100%;
  }
  .image-section {
    width: 155%;
  }
  .dropdown_menu{
    position: relative !important;
    left: 30px !important;
  }
  
}
.container-title {
  text-align: left;
}
.container-title h2 {
  font-size: 28px;
  margin-bottom: 10px;
  font-weight: 500;
}
@media (max-width: 767px){
  .form-section {
    width: 100%;
  }
  .image-section {
    width: 100%;
  }  
  .map-section{
    width: 100%;
  }
}
/* paragraph css */
.prg {
  position: relative;
  margin-bottom: 1.5rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  min-width: 0;
  border-radius: 5px;
  word-wrap: break-word;
  background-color: #fff;
  border: 1px solid #d8dde6;
  box-shadow: 0 0 40px 0 rgba(234, 238, 249, 0.5);
}

.prg-header {
  background: 0 0;
  padding: 0.5rem 1.5rem;
  display: flex;
  align-items: center;
  min-height: 3.5rem;
  background-color: rgba(0, 0, 0, 0.03);
  border-bottom: 1px solid #d8dde6;
}

.prg-body {
  flex: 1 1 auto;
  padding: 1.5rem;
  position: relative;
  height: 100%;
  font-size: 14px;
  line-height: 1.66;
}
.prg-wrap {
  font-size: 14px;
  line-height: 1.7;
  white-space: normal !important;
}
.uls{
  list-style: decimal;
  margin-left: 25px;
}
.uld{
  list-style: inside;
  margin-left: 25px;
}

/*Form Filed*/
.input-group {
    margin-bottom: 10px;
}

select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 0.25rem;
    font-size: 1rem;
    background-color: #fff;
    font-family: 'Poppins',sans-serif;  
}

select:focus {
    border-color: #007bff;
    outline: none;
}

select:focus + label,
select:not(:placeholder-shown) + label {
    top: -0.5rem;
    left: 0.75rem;
    font-size: 0.75rem;
}

/*HOME FORM VALIDATION*/
.modal-form-group.success input {
  border-color: #09c372;
}

.modal-form-group.error input {
  border-color: #ff3860;
}

.modal-form-group .error {
  color: #ff3860;
  font-size: 9px;
  height: 13px;
}

/*Thank you Popup-css */

#thankYouModal {
    display: none;
    position: fixed;
    z-index: 9999; /* Increased z-index to make sure it's on top */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
    padding-top: 60px;
    transition: opacity 0.5s ease;
}

.modal-content {
    background-color: #fff;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 400px;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    animation: modalAnimation 0.3s ease-in-out;
    position: relative;
    z-index: 10000; /* Ensure modal content is on top of the background overlay */
}

/* Close button */
.close {
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

#thankYouModal .modal-content h2 {
    color: var(--main-color);
    font-size: 24px;
    margin-bottom: 10px;
}

#thankYouModal .modal-content p {
    font-size: 16px;
    color: #555;
    margin-bottom: 15px;
}

#thankYouModal .modal-content a {
    padding: 12px 24px;
    background-color: var(--main-color);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 15px;
    display: inline-block;
}

#thankYouModal .modal-content a:hover {
    background-color: #45a049;
}

@keyframes modalAnimation {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}


@media screen and (max-width: 768px) {
  .heading {
    padding-top: 70px;
  }
}