*{
    margin: 5px 0px;
    padding: 0;
    font-family: 'Roboto Condensed', sans-serif;
}

/* ============================================ *
 * Wrapper
 * ============================================ */

 
 
.header{
    min-height: 100vh;
    width: 100%;
}
.sub-header h1.mainHead { font-size: 30px; }
nav{
    display: flex;
    padding: 0 10px;
    justify-content: space-between;
    align-items: center;
}
nav img{
    width: 70px;
}
.nav-links{
    flex: 1;
    text-align: right;
}
.nav-links ul li{
    list-style: none;
    display: inline-block;
    padding: 8px 12px;
    position: relative;
}
.nav-links ul li a{
    color: black;
    text-decoration: none;
    font-size: 16px;
}
.nav-links ul li::after{
    content: '';
    width: 100%;
    height: 3px;
    background: #ad227c;
    display: block;
    margin: auto;
    transition: 0.5s;
}
.text-box{
    
    color: black;  
    text-align: center;
}
.text-box h4{
    font-size: 20px;
    color: rgb(21, 118, 209);
}
.text-box p{
    margin: 10px 0 20px;
    font-size: 16px;
}
.text-box img{
    width: 100%;
    padding-top: 0;
}
.hero-btn{
    display: inline-block;
    text-decoration: none;
    color: white;
    border: 1px solid black;
    padding: 12px 34px;
    font-size: 18px;
    background: #e78241;
    position: relative;
    cursor: pointer;
}
.hero-btn:hover{
    border: 1px solid;
    background: #f75f00;
    transition: 1s;
}

nav .fa{
    display: none;
}

@media(max-width: 700px){
    .text-box p{
        font-size: 12px;
    }
    .header h1{
        position:relative;
    }
    .nav-links ul li{
        display: block;
    }
    .nav-links{
        position: fixed;
        background: #e78241;
        height: 100vh;
        width: 200px;
        top: 0;
        right: -200px;
        text-align: left;
        z-index: 2;
        transition: 1s;
    }
    nav .fa{
        display: block;
        color: #ad227c;
        margin: 10px;
        font-size: 22px;
        cursor: pointer;
    }
    .nav-links ul{
        padding: 30px;
    }
    .row{
        flex-direction: column;
    }
    .testimonials-col img{
        margin-left: 0px;
        margin-right: 15px;
    }
    .cta h1{
        font-size: 24px;
    }
}
.services{
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 50px;
}
h2{
    font-size: 30px;
    font-weight: 600;
}
p{
    color: black;
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    padding: 10px;
}
.row{
    margin-top: 5%;
    display: flex;
    justify-content: space-between;
}
.services-col{
    flex-basis: 31%;
    background: skyblue;
    border-radius: 10px;
    margin-bottom: 5%;
    padding: 20px 12px;
    box-sizing: border-box;
    transition: 0.5s;
}
h3{
    text-align: center;
    font-weight: 600;
    margin: 10px 0;
}
.services-col:hover{
    box-shadow: 0 0 20px rgba(0,0,0,0.2);
}
.care{
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 0px;
}
.care-col{
    flex-basis: 32%;
    border-radius: 10px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}
.care-col img{
    width: 100%;
}
.testimonials{
    width: 80%;
    margin: auto;
    padding-top: 0;
    text-align: center;
}
.testimonials-col{
    flex-basis: 44%;
    border-radius: 10px;
    margin-bottom: 5%;
    text-align: left;
    background: rgba(255, 166, 0, 0.1);
    padding: 25px;
    cursor: pointer;
    display: flex;
}
.testimonials-col img{
    height: 40px;
    margin-left: 5px;
    margin-right: 30px;
    border-radius: 50%;
}
.testimonials-col p{
    padding: 0;
}
.testimonials-col h3{
    margin-top: 15px;
    text-align: left;
}
.testimonials-col .fa{
    color: #f44336;
}
.cta{
    margin: 100px auto;
    width: 80%;
    background-color: #ad227c;
    background-position: center;
    background-size: cover;
    border-radius: 10px;
    text-align: center;
    padding: 100px 0;
}
.cta h1{
    color: white;
    margin-bottom: 40px;
    padding: 0;
}
.footer{
    width: 100%;
    text-align: center;
    padding: 30px 0;   
}
.footer h4{
    margin-bottom: 25px;
    margin-top: 20px;
    font-weight: 600;
}
.icons .fa{
    color: skyblue;
    margin: 0 13px;
    cursor: pointer;
    padding: 18px 0;
}
.sub-header{
    /*height: 20vh;*/
    width: 100%;
    background-position: center;
    background-size: cover;
    text-align: center;
    color: black;
}
.location{
    width: 80%;
    margin: auto;
    padding: 0px 0px;
}
.location iframe{
    width: 100%;
}
.contact-us{
    width: 80%;
    margin: auto;
}
.contact-col{
    flex-basis: 48%;
    margin-bottom: 30px;
}
.contact-col div{
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}
.contact-col div .fa{
    font-size: 28px;
    color: #ad227c;
    margin: 10px;
    margin-right: 30px;
}
.contact-col div p{
    padding: 0;
}
.contact-col div h5{
    font-size: 20px;
    margin-bottom: 5px;
    font-weight: 400;
}
.contact-col input, .contact-col textarea{
    width: 100%;
    padding: 15px;
    margin-bottom: 17px;
    outline: none;
    border: 1px solid #ccc;
    box-sizing: border-box;
}


/* login page */
.loginBg { position: relative; }
.loginBg h1 { 
    position: absolute;
    right: 0;
    left: 0;
    /* width: 100%; */
    margin: 0 auto;
    text-align: center;
    top: 0;
    background: rgba(255,255,255,0.5);
    padding: 20px;
    font-size: 34px; 
}
.loginBg img { width:100%; }
.login-page { 
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
 }
 .login.contact-col { flex-basis:80%; margin: 0 auto; }
 .loginform {
    display: block;
    border: 1.8px solid;
    padding: 20px;
    border-radius: 14px;
}
.loginform p.forgotP { float: right; }
.loginform .hero-btn { width:100%; }
.contact-col .rememberMeBtn { 
    display: inline-flex;
    align-items: last baseline;
    margin-top: 10px;
    margin-bottom: 0;
 }
 .login.contact-col input, .login.contact-col button { border-radius: 7px; }
 .rememberMeBtn #rememberMe { width: auto; margin-left: 5px; margin-bottom: 0; }
/* Style for the "OR" section */
.contact-col .or {
  text-align: center;
  font-size: 16px;
  color: #333;
  position: relative;
  margin: 13px 0;
  display: block;
}
.contact-col .or::before,
.contact-col .or::after {
    content: "";
    display: block;
    height: 1px;
    width: 47%;
    background-color: #ccc;
    position: absolute;
    top: 50%;
}

.contact-col .or::before {
    left: 0;
}

.contact-col .or::after {
    right: 0;
}

.contact-col .createAcc {
    display: block;
    text-align: center;
    margin-bottom: 0;
}
.contact-col .createAcc a { color: #e78241; margin-left: 5px; }
/* customer profile page */

.profileInfo { 
    flex-basis: 90%;
    margin: 0 auto;
 }

  /* Style for customer information section */
.customer-info {
    /*border: 1px solid #ccc;*/
    padding: 20px;
}
.customer-info p {
    color: #fff;
    font-size: 18px;
    font-weight: normal;
    line-height: normal;
    padding: 5px;
}

.customer-info .infoContent {
    position: absolute;
    left: 0;
    top: 15%;
    padding: 0 35px;
    width: 85%;
}
.customer-info .infoContent h2 {
    color:#fff;
}

.customer-info .customerContent {
    display: inline-block;
    vertical-align: top;
    margin-top: 30px;
    
}

.customer-info .customerImg { 
    display:inline-block;
    margin-right: 2%;
}

.customer-info .infobg img { width: 100%; }

/* Style for the document checklist sections */
.document-section {
    margin-top: 50px;
}

.document-title {
    font-weight: bold;
    position: relative;
}

.document-title h3 {
    text-align: center;
    font-size: 24px;
    color: #1375d0;
}

.document-section h2 {
    text-align: center;
    margin-bottom: 40px;
}

.document-section ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between; /* Adjust as needed */
}

.document-section ul li {
    flex-basis: calc(33.2% - 20px); /* Adjust the width and margin */
    text-align: center;
    border: 2px solid #1375d0;
    margin-bottom: 25px;
    padding: 50px 0;
    border-radius: 22px;
    list-style: none;
}

.document-section ul li:hover {
    border-color: rgba(19, 117, 208, 0.7);
    box-shadow: 2px 2px 5px 0px gray;
    transition-duration: 1s;
    background-color: rgba(19, 117, 208, 0.7);
    color: #fff;
}

.document-section ul li:hover h3 {
    color: #fff;
}

.document-section ul li:hover button {
    color: #fff;
}

.document-section.secondDoc ul li {
    border-color: #ad227c;
}

.document-section.secondDoc ul li h3 {
    color: #ad227c;
}

.document-section.secondDoc ul li:hover {
    background-color: rgba(173, 34, 124, 0.8);
}

.document-section.secondDoc ul li:hover h3 {
    color: #fff;
}

.document-section ul li:hover .date-popup label {
    color: #000;
}

.document-section ul li:hover .date-popup button {
    color: #000;
}

.popupbtn button {
    border: none;
    padding: 5px 0;
    font-size: 18px;
    display: inline-block;
    background: none;
    cursor: pointer;
    text-align: center;
    width: 100%;
    color: #000;
}

/* Style for date popups */
.date-popup {
    display: none;
    position: absolute;
    background-color: #fff;
    border: 1px solid #1375d0;
    padding: 38px;
    top: 30px;
    right: 0;
    left: 0;
    margin: 0 auto;
    
    box-shadow: 2px 2px 10px #1375d0;
    border-radius: 15px;
    z-index: 1000;
}

.date-popup label {
    display: block;
    font-size: 18px;
}

.date-popup input {
    font-size: 18px;
}

.date-popup #pre-hire-document-upload {
    font-size: 16px;
}


#file-input {
    display: none;
}

.document-title .custom-button {
    display: inline-block;
    background-color: #1375d0;
    color: #fff;
    cursor: pointer;
    font-size: 17px;
    font-weight: normal;
    padding: 5px 30px;
    border: 1px solid #ccc;

}
.secondDoc .document-title .custom-button {
    background-color: #ad227c;
}

/* Style for submit buttons in popups */
.submit-button {
    margin: 10px auto 0;
    display: block;
    background-color: #1375d0;
    color: #fff;
    padding: 5px 30px;
    font-size: 17px;
    border: 1px solid #ccc;
}

/* Style for close button */
.close-button {
    position: absolute;
    top: 5px;
    right: 10px;
    cursor: pointer;
    background: none;
    border: none;
    font-size: 18px;
}

/* Define a class for animating fade-in */
.fade-in {
    animation: fadeIn 0.4s;
}

.slide-in {
    animation: slideIn 2s forwards;
}

@keyframes slideIn {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.arrow-border {
    position: relative;
    padding: 5px; /* Adjust the padding to control the space between the content and the border */
}

/* Keyframes for fade-in animation */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}


#goToTopBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #3498db;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
  }
  
  #goToTopBtn:hover {
    background-color: #2980b9;
    transform: scale(1.1);
  }

.row.zeromargin { margin:0; }

/* Add this CSS for the table */
.documenttable { 
    width: 90%;
    margin: 0 auto;
 }
.documenttable .document-table {
    width: 100%;
    margin-top: 20px;
    margin-bottom: 40px;
    border-collapse: collapse;
    border-radius: 20px !important;
}

.document-table th, .document-table td {
    border: 1px solid #1375d0;
    padding: 10px;
    text-align: center;
}

.document-table th {
    background-color: #1375d0;
    color: #fff;
}

.document-table td.status {
    
}

.document-table td.status input {
    margin-right: 10px;
}
 
/* Create Account Page */

.createAccount {
    display: block;
    background-image: url('../Images/create-acc-bg2.jpg');
    background-size: cover; /* Adjust as needed */
    background-repeat: no-repeat;
    padding: 50px 0;
}
.createAccount h1 { 
    text-align: center;
    font-size: 32px;
 }
 .createAccount .row { margin-top:3%; }

.createAccount form {
  display: block;
  width: 600px;
  margin: 0 auto;
  padding: 20px;
  border: 1.8px solid;
  border-radius: 14px;
  background: rgb(0 188 212 / 50%);
}
.createAccount form label {
    display: block;
}
.createAccount form .gender { display: inline-block; }
.createAccount .contact-col input, .createAccount .contact-col textarea {
    padding: 10px;
    margin-bottom: 10px;
}
.createAccount .contact-col textarea {
    border-radius: 7px;
}
.createAccount .contact-col #termsAndConditions {
    width: auto;
  margin-right: 5px;
}

/* Pre Hire Forms */

.preHireBg.loginBg img {
    height: 320px;
}

.pre-hire-content {
    text-align: center;
    position: absolute;
    right: 0;
    left: 0;
    top: 38%;
    margin: 0 auto;
}

/* Style for the list (ul) */
.pre-hire-content ul {
    list-style: none;
    padding: 5px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 auto;
    width: 35%;
    background: #fff;
    border: 2px solid #000;
}

/* Style for each list item (li) */
.pre-hire-content li {
    margin-right: 10px ;
    text-align: center;
    width: 46%;
    border: 1px solid #ddd;
}
.pre-hire-content li:nth-child(2),.pre-hire-content li:nth-child(4),.pre-hire-content li:nth-child(6) {
    margin-right:0;
}
.pre-hire-content li h2 {
    font-size:18px;
}

/* Optional: Style for the icons inside each list item */
.pre-hire-content li i {
    font-size: 24px; /* Adjust the font size as needed */
    margin-bottom: 10px; /* Adjust the margin as needed */
}

.preHireBody .footer { margin-top:10%; }