* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(to bottom, #f8f9fa 0%, #e9ecef 100%);
    min-height: 100vh;
    padding: 20px;
}

.container {
    max-width: 1077px;
    margin: 0 auto;
    padding: 24px 24px;
    
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.logo {
    display: flex;
    align-items: center;
    font-weight: bold;
    color: #3b82f6;
    font-size: 20px;
}

.logo-icon {
    width: 100px;
    height: 80px;
    background-image: url("https://yourcolor.in/assets/jobbari.png");
    background-size: contain;
    /* keeps logo aspect ratio */
    background-position: center;
    background-repeat: no-repeat;
    margin-right: 8px;
}


.logout-btn {
    padding: 8px 24px;
    border: 2px solid #DCB05C;
    background: white;
    color: #DCB05C;
    border-radius: 26px;
    cursor: pointer;
    font-size: 18px;
    width: 178px;
    height: 66px;
    font-weight: 500;
    transition: all 0.3s;
}

.logout-btn:hover {
    background: #DCB05C;
    color: white;
}

.page-title {
    text-align: center;
    font: normal normal bold 53px/63px Greycliff CF;
    letter-spacing: 0px;
    color: #284E63;
    opacity: 1;
}

.page-subtitle {
    text-align: center;
    font: normal normal normal 17px/26px Greycliff CF;
    letter-spacing: 0px;
    color: #8083A3;
    opacity: 1;
}

.form-group {
    width: 100%;
    padding: 28px ;
    border: 1px solid #DCB05C;
    border-radius: 28px;
    font-size: 14px;
    color: #1e293b;
    background-color: white;
    transition: border-color 0.3s;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 16px;
}

label {
    text-align: left;
font: normal normal bold 19px/17px Greycliff CF;
letter-spacing: 0px;
color: #31576F;
opacity: 1;
}

input,
select,
textarea {
    width: 100%;
    font-size: 14px;
   margin-top: 6px;
    border: none;
    color: #31576F;
    background: white;
}

.inputp {
    text-align: left;
    font: normal normal normal 16px/17px Greycliff CF;
    letter-spacing: 0px;
    color: #31576F;
    opacity: 0.53;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: #DCB05C;
}

input::placeholder,
textarea::placeholder {
    color: #cbd5e1;
}

textarea {
    min-height: 100px;
    resize: vertical;
}

.checkbox-group {
    display: flex;
    align-items: center;
    margin: 16px 0;
    color: #3b82f6;
}

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-right: 8px;
    cursor: pointer;
    accent-color: #e1b35f;
    color: white;
    
}

.checkbox-group label {
    margin: 0;
    cursor: pointer;
    color: #64748b;
}

.info-card {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s;
}

.info-card:hover {
    border-color: #DCB05C;
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.1);
}

.info-card-content h3 {
    color: #1e293b;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.info-card-content p {
    color: #94a3b8;
    font-size: 13px;
}

.info-card-icon {
    color: #DCB05C;
    font-size: 24px;
}

.social-link {
    display: flex;
    align-items: center;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 12px;
}

.social-icon {
    width: 24px;
    height: 24px;
    margin-right: 12px;
    color: #64748b;
}

.social-link-content h3 {
    color: #1e293b;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 2px;
}

.social-link-content p {
    color: #94a3b8;
    font-size: 12px;
}

.button-group {
    display: flex;
    gap: 12px;
    margin-top: 32px;
}

.btn {
    flex: 1;
    padding: 14px 24px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-primary {
    background: #DCB05C;
    color: white;
}

.btn-primary:hover {
    background: #d97706;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.btn-secondary {
    margin: auto;
    color: #DCB05C;
    border: 3px solid #DCB05C;
}
.no-exp-btn {
    width: 60%;
    display: block;          /* required */
    margin: 86px auto 0;     /* top | left-right(auto) | bottom */
}
.form-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
}

/* Back text button */
.back-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 16px;
    color: #8a8fb3;
    text-decoration: none;
    font-weight: 500;
}

.back-btn .arrow {
    font-size: 20px;
    line-height: 1;
}

/* Next primary button */
.next-btn {
    width: 635px;
    height: 54px;
    background: #DCB05C;   /* golden color */
    border: none;
    border-radius: 15px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.next-btn:hover {
    background: #fff;
    border-radius: 15px;
    color: #DCB05C;
    border: 3px solid #DCB05C;

}


.btn-secondary:hover {
    background: #DCB05C;
    color: white;
}

.btn-back {
    background: transparent;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}

.progress-bar {
    height: 4px;
    background: #e2e8f0;
    border-radius: 2px;
    margin-top: 24px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: #DCB05C;
    transition: width 0.3s;
}

.page {
    display: none;
}

.page.active {
    display: block;
}

@media (max-width: 640px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.btn-down {
    top: 462px;
    left: 346px;
    width: 15px;
    height: 10px;
    transform: matrix(0, 1, -1, 0, 0, 0);
    background: #8083A3 0% 0% no-repeat padding-box;
    opacity: 1;
}

.threebox{
    display: flex;
    justify-content: space-between;
    gap: 20px;
}