@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

* {
    scrollbar-width: thin;
    scrollbar-color: var(--placeholder) var(--gray-first);
}

/* Chrome, Edge and Safari */
*::-webkit-scrollbar {
    height: 6px;
    width: 6px;
}

*::-webkit-scrollbar-track {
    border-radius: 5px;
    background-color: var(--gray-first);
}

*::-webkit-scrollbar-track:hover {
    background-color: var(--gray-first);
}

*::-webkit-scrollbar-track:active {
    background-color: var(--gray-first);
}

*::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background-color: var(--placeholder);
}

*::-webkit-scrollbar-thumb:hover {
    background-color: var(--placeholder);
}

*::-webkit-scrollbar-thumb:active {
    background-color: var(--placeholder);
}

:root {

    /* Typography */
    --base-fonts: 'Inter', sans-serif;
    --base-text: 16px;
    --text-11: 11px;
    --text-12: 12px;
    --text-13: 13px;
    --text-14: 14px;
    --text-15: 15px;
    --text-17: 17px;
    --text-18: 18px;
    --text-19: 19px;
    --text-20: 20px;
    --text-22: 22px;
    --text-24: 24px;
    --text-28: 28px;
    --text-32: 32px;
    --text-35: 35px;
    --text-40: 40px;
    --text-48: 48px;
    --text-56: 56px;
    --text-60: 60px;


    /* Colors */
    --brand-purple: #5a2d81;
    --brand-purple-light: #6a428d;
    --brand-cyan: #00b2d2;
    --text-dark: #333333;
    --text-light: #666666;
    --text-gray: #546e7a;
    --bg-light: #f9fbfd;
    --success-green: #28a745;
    --white: #ffffff;
    --dark: #263238;
    --input-border: #ccd0d5;
    --border-color: #ededed;
    --placeholder: #999999;
    --gray-first: #dddddd;
    --gray-second: #f5f5f5;
    --gray-third: #eeeeee;
    --gray-fourth: #f0f4f7;
    --gray-fifth: #fdfbff;
    --gray-sixth: #f1f1f1;
    --border: #eef2f4;
    --accent: #ff9800;
    --error: #f44336;
    --ai-purple: #7c4dff;
    --featured: #f1f1f1;
    --featured-bg: #fffdf5;

    /* Blang Colors */
    --blank-gray-first: #e1e1e1;
    --blank-gray-second: #fafafa;
    --blank-gray-third: #f0fbff;
    --blank-gray-fourth: #cccccc;
    --blank-gray-fifth: #f0eaf5;





    /* Border Rounded */
    --border-r-4: 4px;
    --border-r-6: 6px;
    --border-r-5: 5px;
    --border-r-8: 8px;
    --border-r-10: 10px;
    --border-r-12: 12px;
    --border-r-14: 14px;
    --border-r-16: 15px;
    --border-r-20: 20px;
    --border-r-25: 25px;






}

/*--------------General CSS---------*/


* {
    margin: 0;
    padding: 0;
    font-family: var(--base-fonts);
}

body {
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: subpixel-antialiased;
    -webkit-text-stroke: 1px transparent;
    font-family: var(--base-fonts);
    font-weight: 400;
    color: var(--dark);
    font-size: var(--base-text);
    background: var(--bg-light);

}



img {
    border: 0 none;
    max-width: 100%;
}

a {
    outline: none;
    cursor: pointer;
    color: var(--brand-cyan);
    text-decoration: none;
}

a:hover,
a:focus {
    color: var(--primary-dark);
    text-decoration: none;
}

a,
button,
.btn {
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}



ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

img {
    max-width: 100%;
}

main {
    margin: 40px 0;
    min-height: calc(100vh - 610px);
}



/*===================================== PLACE HOLDER CSSS START HERE        ====================================*/
.form-control::-moz-placeholder {
    color: var(--placeholder);
    opacity: 1
}

.form-control::placeholder {
    color: var(--placeholder);
    opacity: 1
}

.form-control:-ms-input-placeholder {
    color: var(--placeholder);
    opacity: 1;
}

.input-group-text {
    font-size: var(--text-14);
    background-color: #fff;
    border-color:#ccd0d5;
}

input.form-control,
textarea.form-control,
select.form-control {
    background-color: var(--white);
    border: 1px solid var(--input-border);
    border-radius: var(--border-r-10);
    box-shadow: none;
    font-size: var(--text-15);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 46px;
    color: var(--text-dark);
    padding: 8px 15px;
    font-weight: 400;
    transition: 0.3s;
}

select.form-control {
    background-image: url(../images-nct/select-arrow.svg);
    background-position: 97% center;
    background-repeat: no-repeat;
    background-size: 24px 24px;
}

input.form-control:focus,
textarea.form-control:focus,
select.form-control:focus {
    border-color: var(--brand-purple);
    outline: none;
    box-shadow: 0 0 0 3px rgb(90, 45, 129, 0.10);
}

textarea.form-control {
    height: auto;
    overflow: auto;
    white-space: normal;
    resize: none;
}

/* Form Controls */
.form-group .form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: var(--text-14);
    color: var(--dark);
}


.form-group {
    margin-bottom: 25px;
    position: relative;
}

.form-check {
    display: flex;
    padding: 0;
    gap: 7px;
    align-items: self-start;
    font-size: var(--text-13);
    align-items: flex-start;
}

.form-check .form-check-input {
    box-shadow: none;
    outline: none;
    width: 16px;
    height: 16px;
    min-width: 16px;
    min-height: 16px;
    border-color: var(--gray-first);
    margin: 1px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
}

.form-check-input:checked[type="checkbox"] {
    background-image: none;
    background-color: var(--brand-purple);
    background-size: 12px auto;
    border-color: var(--brand-purple);
    box-shadow: none;
    outline: none;
}

.form-check-input:checked[type="checkbox"]:before {
    content: "\f00c";
    font-family: 'Font Awesome 7 Free';
    font-weight: 600;
    font-size: 9px;
    color: var(--white);
}

.form-label {
    display: block;
    font-size: var(--text-14);
    font-weight: 700;
    margin-bottom: 7px;
    color: var(--text-dark);
}
.form-check-input[type="radio"] {width:16px;
   height:16px; border-radius:50%; border-color: var(--gray-first);}

.form-check-input:checked[type="radio"] {
    background-image: none;
    background-color: transparent;
    border-color: var(--brand-purple);
    box-shadow: none;
    outline: none;
}

.form-check-input:checked[type="radio"]:before {
    content: "";
   width:8px;
   height:8px;
   border-radius:50%;
   background-color:var(--brand-purple);
}
.radio-list {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}
/* --- Global Components --- */
.btn-primary {
    background: var(--brand-purple);
    border: 1px solid var(--brand-purple);
    color: var(--white);
    padding: 12px 24px;
    border-radius: var(--border-r-6);
    font-size: var(--base-text);
    font-weight: 700;
    cursor: pointer;

}

.btn-primary:hover, .btn-primary:focus {
    background-color: var(--brand-purple-light);
    border-color: var(--brand-purple-light);
    outline: none;
    color: var(--white);

}
.btn-primary-border {
    background: var(--white);
    border: 1px solid var(--brand-purple);
    color: var(--brand-purple);
    padding: 12px 24px;
    border-radius: var(--border-r-6);
    font-size: var(--base-text);
    font-weight: 700;
    cursor: pointer;

}

.btn-primary-border:hover, .btn-primary-border:focus {
    background-color: var(--brand-purple);
    border-color: var(--brand-purple);
    outline: none;
    color: var(--white);

}


.btn-primary-md {
    background: var(--brand-purple);
    border: 1px solid var(--brand-purple);
    color: var(--white);
    padding: 9px 20px;
    border-radius: var(--border-r-6);
    font-size: var(--text-14);
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;

}

.btn-primary-md:hover, .btn-primary-md:focus {
    background-color: var(--brand-purple-light);
    border-color: var(--brand-purple-light);
    outline: none;
    color: var(--white);

}
.btn-primary-border-md {
    background: var(--white);
    border: 1px solid var(--brand-purple);
    color: var(--brand-purple);
   padding: 9px 24px;
    border-radius: var(--border-r-6);
    font-size: var(--text-14);
    font-weight: 700;
    cursor: pointer;

}

.btn-primary-border-md:hover, .btn-primary-border-md:focus {
    background-color: var(--brand-purple);
    border-color: var(--brand-purple);
    outline: none;
    color: var(--white);

}
.btn-cancel-md {
    padding: 10px 25px;
    border-radius: var(--border-r-6);
    border: 1px solid var(--border);
    background: var(--white);
    color: var(--text-gray);
    font-weight: 700;
    cursor: pointer;
    font-size: var(--text-14);
}

.btn-cancel-md:hover, .btn-cancel-md:focus {
    background-color: var(--border);
    border-color: var(--border);
    color: var(--text-gray);
}

.btn-secondry-md {
    background-color: var(--brand-cyan);
    color: var(--white);
    padding: 12px 28px;
    border: none;
    border-radius: var(--border-r-6);
    font-weight: 800;
    font-size: var(--text-14);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s transform ease;
    white-space: nowrap;
}

.btn-secondry-md:hover, .btn-secondry-md:focus {
    transform: translateY(-2px);

    background-color: var(--brand-cyan);
    color: var(--white);
}

.btn-border-sm {
    background: var(--white);
    border: 1px solid var(--ai-purple);
    color: var(--ai-purple);
    padding: 6px 12px;
    border-radius: var(--border-r-6);
    font-size: var(--text-12);
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: 0.2s;
}

.btn-border-sm:hover, .btn-border-sm:focus {
    background: var(--ai-purple);
    transform: translateY(-1px);
    color: var(--white);
}

.btn-border-primary-md {
    background-color: var(--white);
    color: var(--brand-purple);
    padding: 9px 15px;
    border: 1px solid var(--brand-purple);
    border-radius: var(--border-r-6);
    font-weight: 700;
    font-size: var(--text-14);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    text-align: center;
    justify-content: center;
}

.btn-border-primary-md:hover, .btn-border-primary-md:focus {
    transform: translateY(-2px);
    background-color: var(--brand-purple);
    color: var(--white);
}
  .btn-edit-link {
        font-size: var(--text-13);
        color: var(--brand-cyan);
        text-decoration: none;
        font-weight: 600;
        cursor: pointer;
    }
      .btn-edit-link:hover, .btn-edit-link:focus {  text-decoration: underline; }
  .btn-link {
        font-size: var(--text-13);
        color: var(--brand-purple);
        text-decoration: none;
        font-weight: 600;
        cursor: pointer;
    }
      .btn-link:hover, .btn-link:focus {  text-decoration: underline; }
 .btn-border-sm-secondry {
        background-color: var(--white);
        border: 1px solid var(--brand-purple);
        color: var(--brand-purple);
        padding: 8px 18px;
        border-radius: var(--border-r-5);
        font-size: var(--text-13);
        font-weight: 600;
        white-space: nowrap;
    }

    .btn-border-sm-secondry:hover, .btn-border-sm-secondry:focus  {
        background: var(--brand-purple);
        border-color:var(--brand-purple);
        color: var(--white);
    }

    .btn-white {background: var(--white);
  color: var(--brand-purple);
  border: none;
  padding: 8px 16px;
  font-size: var(--text-14);
  font-weight: 700;
  border-radius: var(--border-r-6); border: 1px solid var(--white);}
   .btn-white:hover,  .btn-white:focus { transform: translateY(-1px);color: var(--brand-purple);}
 .btn-pay-now {
            background: var(--brand-purple);
            color: var(--white);
            border: none;
            padding: 6px 12px;
            border-radius: var(--border-r-6);
            font-size: var(--text-11);
            font-weight: 700;
            cursor: pointer;
            white-space: nowrap;
        }

        .btn-pay-now:hover {
            transform: translateY(-2px);
            background-color: var(--brand-purple);
            color: var(--white);
        }
.auth-section {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.auth-container {
    background: var(--white);
    width: 100%;
    max-width: 500px;
    padding: 40px;
    border-radius: var(--border-r-8);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin: 20px auto;
}

.auth-top {
    text-align: center;
    margin-bottom: 30px;
}

.auth-logo {
    margin: 0;
}

.auth-top p {
    color: var(--text-light);
    margin: 15px 0 0;
    font-size: 14px;
}

/* Password Wrapper for Positioning Icon */
.password-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.password-wrapper .form-control {
    padding-right: 45px;
    /* Make room for the icon */
}

.toggle-password {
    position: absolute;
    right: 15px;
    cursor: pointer;
    color: var(--text-light);
    display: flex;
    align-items: center;
    user-select: none;
    color: var(--text-light);
    opacity: 0.7;
}

.toggle-password i {
    font-size: var(--text-19);


}

.toggle-password:hover {
    opacity: 1;
    color: var(--brand-cyan);
}



/* Forgot Password Link repositioned below */

.forgot-link {
    font-size: var(--text-13);
    color: var(--brand-cyan);
    text-decoration: none;
    font-weight: 500;
}

.forgot-link:hover, .forgot-link:focus {
    text-decoration: underline;
}

.login-footer {
    margin-top: 25px;
    text-align: center;
    font-size: var(--text-14);
    color: var(--text-light);
}

.login-footer a {
    color: var(--brand-cyan);
    text-decoration: none;
    font-weight: 600;
}

.login-footer a:hover {
    text-decoration: underline;
}

.divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 25px 0;
    color: var(--placeholder);
    font-size: var(--text-13);
}

.divider::before, .divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid var(--gray-third);
}

.phone-flex {
    display: flex;
    gap: 10px;
}

.country-code {
    width: 90px;
    background-color: var(--gray-sixth);
    border: 1px solid #ddd;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-size: 14px;
    color: var(--text-dark);
}

.divider:not(:empty)::before {
    margin-right: 1em;
}

.divider:not(:empty)::after {
    margin-left: 1em;
}

/* --- Social Login Buttons --- */
.social-login-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 25px;
}

.btn-social-login {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px;
    border: 1px solid var(--gray-first);
    border-radius: var(--border-r-10);
    text-decoration: none;
    font-weight: 500;
    font-size: var(--text-14);
    color: var(--text-dark);
    transition: all 0.3s;
}

.btn-social-login:hover {
    background: var(--gray-second);
    border-color: var(--brand-cyan);
}

.btn-social-login svg {
    width: 18px;
    height: 18px;
}

/* Header Start */
.first-header {
    background: var(--white);
    border-bottom: 1px solid var(--gray-third);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .navbar {
    padding-top: 6px;
    padding-bottom: 6px;
}

.header-search {
    position: absolute;
    right: 0;
    left: 0;
    top: 14px;
    max-width: 400px;
}

.header-search .form-control {
    background: var(--bg-light);
    height: 40px;
    padding: 7px 15px 7px 40px;
}

.header-search-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
}

.header-search .form-control:focus {
    border-color: var(--brand-cyan);
    background: var(--white);
    box-shadow: none;
}

.user-avatar-sm {
    width: 40px;
    height: 40px;
    background: var(--brand-purple);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
    border: 2px solid var(--white);
    box-shadow: 0 0 0 2px var(--brand-cyan);
}

.profile-name {
    font-size: var(--text-14);
    font-weight: 600;
    color: var(--text-dark);
}

.profile-dropdown .dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    
}

.profile-dropdown .dropdown-toggle::after {
    display: none;
}
header .navbar-nav .profile-dropdown .dropdown-toggle {padding-right: 0;}
header .navbar-nav .nav-link {
    font-size: var(--text-14);
    font-weight: 600;
    color: var(--text-dark);
}

header .navbar-nav .nav-link:hover, header .navbar-nav .nav-link:focus {
    color: var(--brand-cyan);
}
header .navbar-nav .header-btn {color: var(--white); padding: 9px 20px; font-weight: 500; margin-left: 30px;}
header .navbar-nav .nav-item-second {position: relative; display: flex; align-items: center;}
header .navbar-nav .nav-item-second::before {content: ""; width: 2px; height: 20px; background-color: var(--blank-gray-fourth); display: block; }
header .navbar-nav .nav-item-second:first-child:before {display: none;}
header .navbar .navbar-nav .nav-item-second .nav-link { padding-left: 10px; padding-right: 10px; font-size: var(--text-15); font-weight: 500;}
/* Dashboard Styles */
.sidebar {
    position: sticky;
    top: 20px;
    width: 100%;

}

.sidebar-menu {
    list-style: none;
}

.menu-item {
    display: flex;
    align-items: center;
    padding: 12px 14px;
    text-decoration: none;
    color: var(--text-light);
    font-weight: 600;
    font-size: var(--text-14);
    border-radius: var(--border-r-8);
    margin-bottom: 5px;
    gap: 8px;
}

.menu-item.active {
    background-color: var(--blank-gray-fifth);
    color: var(--brand-purple);
}

.menu-icon {
    display: flex;
    align-items: center;
    font-size: var(--base-text);
}

.inner-head {
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.inner-head .title {
    color: var(--brand-purple);
    font-size: var(--text-24);
    margin: 0;
    font-weight: 700;
}

.inner-head .subtitle {
    color: var(--text-light);
    font-size: var(--text-14);
    margin: 4px 0 0 0;
}

.square-120 {
    width: 120px;
    height: 120px;
    border: 1px solid var(--gray-first);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    overflow: hidden;
}

.square-120 img {
    max-width: 100%;
    height: auto;
}
.square-80 {
    width: 80px;
    height: 80px;
    min-width: 80px;
    min-height: 80px;
    border: 1px solid var(--gray-first);
    border-radius: var(--border-r-5);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    overflow: hidden;
}

.square-80 img {
    max-width: 100%;
    height: auto;
    max-height: 78px;
}
.square-54 {
    width: 54px;
    height: 54px;
    min-width: 54px;
    min-height: 54px;
    border: 1px solid var(--gray-first);
    border-radius: var(--border-r-5);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    overflow: hidden;
}

.square-54 img {
    max-width: 100%;
    height: auto;
    max-height: 52px;
}
.square-64 {
    width: 64px;
    height: 64px;
    min-width: 64px;
    min-height: 64px;
    border: 1px solid var(--gray-second);
    border-radius: var(--border-r-5);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    overflow: hidden;
}

.square-64 img {
    max-width: 100%;
    height: auto;
    max-height: 64px;
}

.circle-120 {
    width: 120px;
    height: 120px;
    min-width: 120px;
    min-height: 120px;
    border: 1px solid var(--gray-first);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
        font-weight: 700;
}

.circle-120 img {
    border-radius: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.circle-36 {
    width: 36px;
    height: 36px;
    min-width: 36px;
    min-height: 36px;
    border: 1px solid var(--gray-first);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: var(--blank-gray-fifth);
    font-weight: 700;
    font-size: var(--text-12);
}

.circle-36 img {
    border-radius: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.circle-40 {
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    border: 1px solid var(--gray-first);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: var(--blank-gray-fifth);
    font-weight: 700;
    font-size: var(--text-12);
}

.circle-40 img {
    border-radius: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.seeker-avatar {
    border: 3px solid var(--brand-cyan);
    background-color: var(--gray-third);
    margin-bottom: 15px;
    position: relative;
}

.common-card {
    background: var(--white);
    padding: 20px;
    border-radius: var(--border-r-8);
    border: 1px solid var(--border-color);
    text-align: left;
}

.common-card-inner {
    background: var(--white);
    border-radius: var(--border-r-6);
    border: 1px solid var(--border-color);
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.stat-label {
    display: block;
    font-size: var(--text-12);
    font-weight: 700;
    color: var(--text-light);
    text-transform: uppercase;
    margin-bottom: 0;
}

.stat-value {
    font-size: var(--text-32);
    font-weight: 800;
    color: var(--brand-cyan);
    margin: 10px 0 0 0;
    /* Statistics numbers in Cyan as requested */
}


.analytics-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 30px 0 0;
    padding: 0;
}

.section-subtitle {
    font-size: var(--base-fonts);
    font-weight: 700;
    color: var(--brand-purple);
    margin: 0;
}

.chart-cards {
    margin-top: 5px;
    margin-bottom: 30px;
}

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

.chart-title {
    font-size: var(--text-15);
    font-weight: 700;
    color: var(--brand-purple);
    margin: 0;
}

.chart-legend {
    font-size: var(--text-12);
    color: #27ae60;
    /* Success Green */
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Flexbox Bar Chart */
.bar-chart {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    height: 150px;
    padding-top: 10px;
    border-bottom: 2px solid #f0f0f0;
}

.bar {
    width: 25px;
    border-radius: 4px 4px 0 0;
    transition: transform 0.3s ease;
    cursor: pointer;
    position: relative;
}



.bar:hover {
    transform: scaleY(1.1);
}

/* Tooltip on hover */
.bar:hover::after {
    content: attr(data-value);
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--brand-purple);
    color: var(--white);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 10px;
}

.x-axis-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    color: var(--placeholder);
    font-size: 11px;
    font-weight: 600;
}

.x-axis-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 12px;
}

.axis-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 25px;
    /* Matches bar width */
}

.axis-day {
    font-size: 11px;
    font-weight: 700;
    color: var(--placeholder);
    text-transform: uppercase;
}

.axis-date {
    font-size: 10px;
    font-weight: 600;
    color: var(--text-light);
    margin-top: 2px;
}

.date-selector-wrapper .form-control {
    height: 36px;
    padding: 4px 12px;
    min-width: 235px;
}

.featured-banner {
    background: linear-gradient(135deg, var(--brand-purple) 0%, #7b4397 100%);
    border-radius: var(--border-r-12);
    padding: 30px;
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(90, 45, 129, 0.15);
}

.banner-content h3 {
    font-size: var(--text-22);
    margin: 0px;
    font-weight: 700;
}

.banner-content p {
    font-size: var(--text-14);
    opacity: 0.9;
    max-width: 580px;
    margin: 10px 0 0;
}



/* Decorative element for the banner background */
.banner-bg-icon {
    position: absolute;
    right: -20px;
    top: -20px;
    opacity: 0.1;
    transform: rotate(-15px);
    font-size: 110px;
    color: var(--white);
}
.form-toggle-block {background: var(--bg-light); padding:20px; border-radius: var(--border-r-8); border: 1px solid var(--border-color);}

.form-card {
    max-width: 810px;
    margin: 0 auto;
    width: 100%;
}

.space-45 {
    padding: 45px;
}

.form-header {
    margin-bottom: 25px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 25px;
}

.form-header h1 {
    font-size: var(--text-24);
    font-weight: 800;
    color: var(--dark);
    margin: 0px;
}

.form-header p {
    color: var(--text-gray);
    font-size: var(--text-15);
    margin: 8px 0 0;
}

/* --- CKEditor Simulation --- */
.editor-container {
    border: 1px solid var(--input-border);
    border-radius: 10px;
    overflow: hidden;
    margin-top: 8px;
}

.editor-toolbar {
    background: var(--gray-fifth);
    border-bottom: 1px solid var(--input-border);
    padding: 10px 12px;
    display: flex;
    gap: 15px;
}

.tool-btn {
    background: none;
    border: none;
    color: var(--dark);
    cursor: pointer;
    font-size: 0.9rem;
    padding: 4px 8px;
    border-radius: 4px;
}

.tool-btn:hover {
    background: #e9ecef;
    color: var(--brand-purple);
}

.editor-content {
    min-height: 300px;
    padding: 15px;
    outline: none;
    font-size: 0.95rem;
    line-height: 1.6;
    background: #fff;
}

.label-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.form-actions {
    margin-top: 20px;
    display: flex;
    justify-content: end;
    gap: 15px;
    border-top: 1px solid var(--border);
    padding-top: 30px;
}

.form-actions .btn {
    min-width: 136px;
}


.profile-avatar {
    margin: 0 auto 20px;
}

.employer-name {
    font-size: var(--text-22);
    font-weight: 800;
    color: var(--brand-purple);
    margin: 0;
}

.employer-tagline {
    font-size: var(--text-14);
    font-weight: 600;
    color: var(--brand-cyan);
    display: block;
    margin: 5px 0 20px 0;
}


.info-list {
    text-align: left;
    margin-top: 25px;
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
}

.info-list-block {
    margin-bottom: 15px;
}

.info-label {
    display: block;
    font-size: var(--text-11);
    color: var(--placeholder);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
}

.info-value {
    font-weight: 600;
    font-size: var(--text-14);
    margin: 2px 0 0 0;
    display: block;
}

.badge-container {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 10px;
}

.loc-badge {
    background: var(--gray-fourth);
    padding: 2px 8px;
    border-radius: 3px;
    font-size: var(--text-11);
    color: var(--text-light);
}

.external-links-card h3 {
    font-size: var(--text-14);
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 700; display: flex; align-items: center; justify-content: space-between;
}
.external-links-card h3 a {margin-top: 3px; font-size: var(--text-12);}

.link-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    text-decoration: none;
    transition: 0.2s;
    border-bottom: 1px solid var(--border-color);
}

.link-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.link-item:first-child {
    padding-top: 0;
}

.square-32 {
    width: 32px;
    height: 32px;
    min-width: 32px;
    min-height: 32px;
    background: var(--gray-fourth);
    border-radius: var(--border-r-4);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    color: var(--brand-purple);
}

.link-info {
    display: flex;
    flex-direction: column;
}

.link-label {
    font-size: var(--text-11);
    color: var(--placeholder);
    text-transform: uppercase;
    font-weight: 700;
}

.link-url {
    font-size: var(--text-13);
    color: var(--brand-purple);
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 220px;
}

.link-item:hover .link-url {
    color: var(--brand-cyan);
    text-decoration: underline;
}

.section-title {
    color: var(--brand-purple);
    font-size: var(--text-18);
    margin: 0px;
    font-weight: 700;

}

.section-header {

    padding-bottom: 15px;
    margin-bottom: 20px;
    font-weight: 700;
    display: flex;
    border-bottom: 1px solid var(--border-color);
    justify-content: space-between;
    align-items: center;
}

.about-text {
    color: var(--text-light);
    font-size: var(--text-15);
    line-height: 1.7;
    margin-bottom: 25px;
}

.about-text p {
    margin-bottom: 15px;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
}

.value-card {
    background: var(--gray-fifth);
    border-left: 4px solid var(--brand-cyan);
    padding: 15px;
    border-radius: 0 5px 5px 0;
}

.value-card h4 {
    color: var(--brand-purple);
    font-size: var(--text-15);
    margin-bottom: 0;
}

.value-card p {
    font-size: var(--text-13);
    color: var(--text-light);
    margin: 5px 0 0 0;
}


.job-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
    transition: background 0.2s ease;
}

.job-item:first-child {
    padding-top: 0;
}

.job-item:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
}

.job-info h4 {
    color: var(--brand-purple);
    font-size: var(--base-text);
    margin-bottom: 0;
    font-weight: 700;
}

.job-meta {
    display: flex;
    gap: 15px;
    font-size: var(--text-13);
    color: var(--text-light);
    margin: 5px 0 0 0;
}

.job-meta span {
    display: flex;
    align-items: first baseline;
    gap: 5px;
}

.text-primary {
    color: var(--brand-cyan) !important;
}

.view-all-container {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.link-view-all {
    text-decoration: none;
    font-weight: 700;
    font-size: var(--text-14);
}

.link-view-all:hover {
    text-decoration: underline;
}

.sub-title {
    margin: 0 0 15px;
    font-size: 16px;
    color: var(--brand-purple);
    font-weight: 700;
}

.join-block {
    margin-bottom: 25px;
}

.join-block:last-child {
    margin-bottom: 0;
}

.perks-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 15px;
    list-style: none;
}

.perk-item {
    display: flex;
    align-items: center;
    font-size: var(--text-14);
    color: var(--text-light);
    gap: 10px;

}

.perk-item i {
    color: var(--brand-cyan);
    flex-shrink: 0;
    font-size: var(--base-text);
}

/* Photo Gallery */
.company-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.gallery-img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: var(--border-r-5);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease;
    overflow: hidden;
}

.gallery-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-r-5);
    transition: transform 0.3s ease;

}

.gallery-img:hover img {
    transform: scale(1.02);
}

/* Reviews Section */
.reviews-summary {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.rating-big {
    font-size: var(--text-35);
    font-weight: 800;
    color: var(--brand-purple);
}

.stars-container {

    display: flex;
    gap: 2px;
}

.stars-container i {
    font-size: var(--text-18);
    color: #ffc107;
}

.stars-container-sm {

    display: flex;
    gap: 2px;
}

.stars-container-sm i {
    font-size: var(--text-12);
    color: #ffc107;
}


.review-item {
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
}

.review-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.review-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.reviewer-info h5 {
    font-size: var(--text-15);
    color: var(--brand-purple);
    font-weight: 600;
    margin: 0;
}

.reviewer-info span {
    font-size: var(--text-12);
    color: var(--placeholder);
}

.review-text {
    font-size: var(--text-14);
    color: var(--text-light);
    line-height: 1.6;
    font-style: italic;
}

.review-text:last-child {
    margin-bottom: 0;
}

.verified-tag {
    color: #2196F3;
    font-size: 1.2rem;
    margin-left: 5px;
}

.info-item {
    margin-bottom: 12px;
    font-size: var(--text-14);
    display: flex;
    align-items: center;
    gap: 10px;
    word-break: break-all;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-item i {
    color: var(--brand-cyan);
    flex-shrink: 0;
}
.small-header {
    display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  gap: 10px;
}
.small-title {
  font-weight: 700;
  color: var(--brand-purple);
  font-size: var(--text-15);
  margin: 0;
}
.pro-value {font-size: var(--text-13); font-weight: 700; color: var(--brand-cyan); margin: 0;}
.pro-value.danger {color: var(--error);}
.progress-sm {
  height: 8px;
  border-radius: var(--border-r-5);
  background-color: var(--gray-third);
  overflow: hidden;
}
.progress-sm-second  .progress-bar {
  background-color: #f08c00;
}
.progress-sm-third  .progress-bar {
  background-color: var(--brand-purple);
}
.progress-bar {background-color: var(--brand-cyan);}
.progress-bar.bg-danger {background-color: var(--error) !important;}
.custom-file {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.custom-file input[type="file"] {
    opacity: 0;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}
.suggestion-item { font-size: var(--text-12); color: var(--text-light); margin-bottom: 8px; display: flex; gap: 8px; }
.suggestion-item span { color: var(--brand-cyan); font-weight: bold; }
.suggestion-item:last-child { margin-bottom: 0; } 
    .upload-area {
        border: 2px dashed var(--gray-first);
        border-radius: var(--border-r-5);
        padding: 20px;
        text-align: center;
        cursor: pointer;
    }
    .upload-area:hover { border-color: var(--brand-cyan); }
    .upload-icon { color: var(--brand-cyan); margin-bottom: 5px;font-size: var(--text-22); }
    .upload-text { font-size: var(--text-13); font-weight: 600; }
    .upload-text-sm {font-size: var(--text-12); color: var(--text-light); margin-top: 5px;}
    .avail-row { display: flex; justify-content: space-between; margin-bottom: 10px; font-size: var(--text-14); }
    .avail-row:last-child { margin-bottom: 0; } 
    .avail-key { color: var(--text-light); }
    .avail-val { font-weight: 600; }
.success { color: var(--success-green); }

.timeline-container {
        position: relative;
    }

    .timeline-item {
        position: relative;
        padding-left: 25px;
        margin-bottom: 25px;
        border-left: 2px solid var(--gray-third);
    }
    .timeline-item:last-child {
        margin-bottom: 0;
    }

    .timeline-item::before {
        content: '';
        position: absolute;
        left: -7px;
        top: 1px;
        width: 12px;
        height: 12px;
        background: var(--white);
        border: 2px solid var(--brand-cyan);
        border-radius: 50%;
    }

   .timeline-item  .timeline-title {
        font-weight: 700;
        font-size: var(--base-text);
        margin: 0;
    }

    .timeline-item .timeline-org {
        color: var(--brand-cyan);
        font-weight: 600;
        font-size: var(--text-14);
        margin: 4px 0 0 0;
    }

   .timeline-item  .timeline-date {
        color: var(--text-light);
        font-size: var(--text-13);
        margin: 4px 0 0 0;
    }
     .timeline-item .summary-text {
        font-size: var(--text-15);
        color: var(--text-light);
        margin: 10px 0 0 0;
    }
  .skills-flex {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }
.skills-flex-second  .skill-tag {background: #e0f7fa; color: #007a8a; border-color: #b2ebf2;}
    .skill-tag, .skills-flex li.map-box, .skills-flex li  {
        background: #f4f0f9; /* Light purple tint */
        color: var(--brand-purple);
        padding: 5px 14px;
        border-radius: 5px; /* Strict 5px radius */
        font-size: 13px;
        font-weight: 600;
        border: 1px solid #efe9f5;
    }
    .skills-flex li.map-box a, .skills-flex li a {color:var(--dark);}
.add-btn {
  background: none;
  padding: 5px;
  border: none;
  outline: none;
  color: var(--brand-purple);
  font-weight: 600;
}
.add-btn :hover {text-decoration: underline;}
    .pref-label {
        font-size: var(--text-13);
        font-weight: 600;
        color: var(--text-light);
        margin-bottom: 6px;
    }

    .pref-value {
        font-size: var(--text-14);
        font-weight: 400;
        margin: 0;
    }
    .thumb-card {padding:5px; border: 1px solid var(--input-border); position: relative;}
    .thumb-card .delete-thumb {position: absolute;
  right: -5px;
  top: -5px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 5px rgba(0,0,0,0.2);
  font-size: 14px;
  color: var(--error);}
 .pref-item {
        margin-bottom: 0;
    }

     .social-links-flex {
        display: flex;
        gap: 20px; flex-wrap: wrap;
        align-items: center;
    }

    .social-icon-link {
        display: flex;
        align-items: center;
        gap: 8px;
        text-decoration: none;
        color: var(--text-dark);
        font-size: var(--text-14);
        font-weight: 500;
    }

    .social-icon-link:hover {
        color: var(--brand-cyan);
    }

    .social-icon-link i {
       font-size: var(--text-18);
    }
   .achievements-list {
        padding-left: 20px;
        margin-top: 0;
        list-style-type: disc;
    }
.acv-content p:last-child {margin-bottom:0;}
    .achievements-list li {
        font-size: var(--text-14);
        color: var(--text-light);
        margin-bottom: 10px;
        line-height: 1.5;
      
    }
    .title-link-row .btn-danger {
  width: 46px;
  height: 46px;
}
        .achievements-list li:last-child {
        margin-bottom: 0;}
.acv-info {  display: flex;
  align-items: center;
  justify-content: space-between;}
  .sidebar-name { color: var(--brand-purple); font-size: var(--text-22); font-weight: bold; text-align: center; }
    .sidebar-title { color: var(--text-light); font-size: 14px; text-align: center; margin-bottom: 20px; }
.save-profile-icon {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 100;
  display: block;
  cursor: pointer;
  color: var(--placeholder);
  background: transparent;
  line-height: 0;
  font-size: var(--text-22);
}

.seeker-avatar:hover .photo-hover-overlay { opacity: 1; }

.photo-hover-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 178, 210, 0.85);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  color: white;
  opacity: 0;
  transition: opacity 0.3s ease;
  gap:10px;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  padding: 5px;
}
.photo-hover-overlay a {color:#fff;}
.photo-hover-overlay i {
  font-size: var(--text-22);
  margin-bottom: 5px;
}
.small-link {font-size: var(--text-12); font-weight: 600;}
.val-placeholder {
  color: #b2ebf2;
  font-style: italic;
  font-weight: normal;
}

.empty-placeholder {
        border: 2px dashed var(--blank-gray-first);
        border-radius: 5px;
        padding: 30px;
        text-align: center;
        background-color: var(--blank-gray-second);
        transition: all 0.3s ease;
        cursor: pointer;
    }

    .empty-placeholder:hover {
        border-color: var(--brand-cyan);
        background-color: var(--blank-gray-third);
    }

    
    .empty-text {
        color: var(--text-light);
        font-size: var(--text-14);
        margin-bottom: 15px;
        display: block;
    }

   /* My Jobs */
   .tab-container {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    justify-content: space-between;
    align-items: start;
}
.tabs-block {display: flex; gap: 10px; flex-wrap: wrap; align-items: center;}
.tab-capsule {
    padding: 8px 15px;
    border-radius: 50px;
    background-color: var(--gray-sixth);
    color: var(--text-light);
    font-size: var(--text-13);
    font-weight: 700;
    text-decoration: none;
    border: 1px solid transparent;
}

.tab-capsule.active {
    background: var(--brand-purple);
    color: var(--white);
}

.tab-capsule:hover:not(.active) {
    background: var(--gray-fourth);
    color: var(--brand-purple);
}

/* Jobs Table */
.jobs-table-card {
    background: var(--white);
    border-radius: var(--border-r-12);
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.jobs-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.jobs-table th {
    background: var(--gray-fifth);
    padding: 15px 20px;
    font-size: var(--text-12);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-color);
}

.jobs-table td {
    padding: 18px 20px;
    border-bottom: 1px solid var(--border-color);
    font-size: var(--text-13);
    color: var(--text-light);

}

.job-title-cell {
    font-weight: 700;
    color: var(--brand-purple);
    font-size: var(--text-15);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.marked-job {color: var(--accent);}
.table-value {font-weight: 600; color: var(--brand-cyan);}

.feature-tag {
    padding: 4px 10px;
    border-radius: 4px;
    font-size: var(--text-11);
    font-weight:700;
    text-transform: uppercase;
    background-color: var(--accent);
    color:var(--white);
    display:inline-block;
}

.status-badge {
    padding: 4px 10px;
    border-radius: 4px;
    font-size: var(--text-11);
    font-weight:700;
    text-transform: uppercase;
}

.status-open {   background: #ebfbee;
  color: #2b8a3e;}
.status-expired, .status-rejected  {background: #fff5f5;
  color: #f03e3e;}
.status-new {
  background: #e7f5ff;
  color: #1971c2;
}
.status-shortlisted {
  background: #f3f0ff;
  color: #6741d9;
}
.status-discussion {
  background: #fff9db;
  color: #f08c00;
}
.status-hired {
  background: #ebfbee;
  color: #2b8a3e;
}
.status-overdue {
background: #fff0f6;
  color: #d6336c;
}
.status-withdrawn {
background: #fcffd1;
  color: #d0b71c;
}
.status-badge.clickable {
  cursor: pointer;
  transition: 0.2s;
  border: 1px solid transparent;
}
.status-badge.clickable:hover {
  filter: brightness(0.95);
  border-color: rgba(0,0,0,0.1);
}

.action-btns {
    display: flex;
    gap: 6px;
    align-items: center;

}
.table-date {font-size: var(--text-12); color: var(--text-light); margin: 4px 0 0;}
.action-btn {
    background: none;
    border: none;
    color: var(--text-light);
    padding: 5px;
    font-size: var(--base-text);
    width: 34px; height: 34px; min-width: 34px; min-height: 34px;
    display: flex; align-items: center; justify-content: center;
    border-radius: var(--border-r-4);
}

.action-btn:hover, .action-btn:focus { color: var(--brand-purple);background-color: var(--gray-fourth); }
.btn-star:hover, .btn-star:focus { color: var(--accent); } 

.status-featured {
    background: var(--featured);
    color: var(--accent);
    border: 1px solid #ffe066;
}

/* Optional: Subtle glow for featured row */
.row-featured {
    background-color: var(--featured-bg);
}
.pagination-main { margin: 30px 0;}
/* Pagination Container */
.pagination-container {
    display: flex;
    justify-content: center;
    align-items: center;
   
    gap: 8px;
}

.pg-btn a{
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    min-height: 36px;
    width: 36px;
    height: 36px;
    padding: 0 8px;
    border-radius: var(--border-r-6);
    border: 1px solid var(--border-color);
    background: white;
    color: var(--text-light);
    font-size: var(--text-13);
    font-weight: 600;
    text-decoration: none;
    transition: 0.2s;
    cursor: pointer;
}

.pg-btn a:hover:not(.active) {
    border-color: var(--brand-purple);
    color: var(--brand-purple);
    background-color: var(--gray-fifth);
}

.pg-btn.active a {
    background: var(--brand-purple);
    color: var(--white);
    border-color: var(--brand-purple);
}

.pg-separator {
    color: var(--text-light);
    padding: 0 5px;
}

.page-total {text-align: center;
  margin: 15px 0 0;
  font-size: var(--text-12);
  color: var(--text-light);
}
 .breadcrumb-wrapper {
            margin: 25px auto 0;
        }

        .breadcrumb {
            display: flex;
            align-items: center;
            list-style: none;
            font-size: var(--text-14);
        }

        .breadcrumb li {
            display: flex;
            align-items: center;
        }

        .breadcrumb li a {
            color: var(--brand-purple);
            text-decoration: none;
            font-weight: 500;
        }

        .breadcrumb li a:hover {
            text-decoration: underline;
        }

        .breadcrumb li::after {
            content: "\f105";
            font-family: "Font Awesome 7 Free";
            font-weight: 900;
            margin: 0 7px 0 12px;
            font-size: var(--text-12);
            color: var(--input-border);
        }

        .breadcrumb li:last-child::after {
            display: none;
        }
        .breadcrumb li::before {display: none;}

        .breadcrumb li:last-child {
            color: var(--text-gray);
            font-weight: 500;
        }
        .space-30 { padding: 30px; }

           .job-header {
            border-bottom: 1px solid var(--border);
            display: flex;
            gap: 25px;
            align-items: flex-start;
        }

      

        .header-info h1 {
            font-size: var(--text-28);
            font-weight: 800;
            margin: 0px;
        }

        .company-link {
            color: var(--brand-cyan);
            font-weight: 700;
            text-decoration: none;
            font-size: var(--text-18);
            display: block;
            margin:8px 0 0;
        }

        .meta-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 10px;
        }

         .meta-tags .tag {
            padding: 6px 14px;
            background: var(--bg-light);
            border-radius: 20px;
            font-size: var(--text-14);
            font-weight: 600;
            color: var(--text-gray);
            display: flex;
            align-items: center;
            gap: 8px;
        }

         .meta-tags .tag i {
            color: var(--brand-purple);
            font-size:var(--text-14);
        }

        .job-detail-block {
          margin-bottom: 40px;
        }
        .job-detail-block:last-child {
          margin-bottom: 0;
        }

        .details-title {
            font-size: var(--text-19);
            font-weight: 800;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .details-title::after {
            content: "";
            flex: 1;
            height: 1px;
            background: var(--border);
        }

        .rich-text {
            color: var(--text-gray);
            font-size: var(--text-14);
        }
        .rich-text p:last-child {
            margin-bottom: 0;
        }

        .rich-text ul {
            margin-left: 20px;
            margin-top: 10px;
            list-style-type: disc;
        }

        .rich-text li {
            margin-bottom: 10px;
        }
        .rich-text li:last-child {
            margin-bottom: 0;
        }
        .applicant-panel {
            text-align: center;
            padding-bottom:15px;
            border-bottom: 1px solid var(--border);
            margin-bottom: 25px;
        }

        .applicant-panel h4 {
            font-size: var(--text-13);
            color: var(--text-gray);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 5px;
        }

        .applicant-panel .count {
            font-size: var(--text-40);
            font-weight: 800;
            color: var(--brand-cyan);
            display: block;
            line-height: 1;
            margin: 0;
        }
        .sidebar-right-sticky {
  position: sticky;
  top: 80px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.sidebar-btns .btn {margin-bottom: 10px;}
.sidebar-btns .btn:last-child {margin-bottom: 0px;}

 .job-summary-list {
            margin-top: 25px;
        }

        .job-summary-item {
            display: flex;
            justify-content: space-between;
            padding: 12px 0;
            border-bottom: 1px solid var(--border);
            font-size:var(--text-14);
        }
         .job-summary-item:first-child {
            padding-top: 0;}
        .summary-label {
            color: var(--text-gray);
            font-weight: 500;
        }

        .summary-value {
            font-weight: 700;
            text-align: right;
        }
.accent-highlight {color: var(--accent);}
        .posted-date {
            text-align: center;
            font-size: var(--text-13);
            color: var(--text-gray);
            margin: 15px 0 0;
        }
.share-card-label {font-size:var(--text-14); font-weight: 700; margin-bottom: 15px;}
.linkedin-share {color: #0077b5;}
.twitter-share {color: #1da1f2;}
  .copy-link-btn {
            background-color: var(--gray-second);
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            color: var(--text-gray);
            position: relative;
            display: inline-block;
            border: 1px solid var(--gray-second);
        }

        .copy-link-btn:hover {
            background: var(--white);
            color: var(--brand-purple);
        }
          .copy-tooltip {
            position: absolute;
            bottom: 120%;
            background: var(--dark);
            color: white;
            padding: 4px 8px;
            font-size: var(--text-11);
            border-radius: var(--border-r-4);
            visibility: hidden;
            opacity: 0;
            transition: 0.2s;
            white-space: nowrap;
        }

        .copy-link-btn.active .copy-tooltip {
            visibility: visible;
            opacity: 1;
        }
        .share-btn-group {
  display: flex;
  justify-content: center;
  gap: 18px;
  align-items: center;
}
.inner-section-title {display: flex;
  align-items: center;
  gap: 10px; justify-content: space-between; margin-bottom: 20px;}
.inner-section-title h2 {font-size: var(--text-19); font-weight: 800; margin: 0;}
.similar-card {background: var(--white);
 border-radius: var(--border-r-6);
  border: 1px solid var(--border-color);box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}
.similar-card:hover {
  border-color: var(--brand-purple);
  box-shadow: 0 4px 15px rgba(0, 150, 136, 0.10);
}  
.similar-job-card {
    padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  transition: all 0.2s ease;
  text-decoration: none;
}
.similar-job-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.similar-job-info h4 {
  font-size: var(--text-17);
  font-weight: 700;
  color: var(--brand-cyan);
  margin-bottom: 2px;
}
.company-name-mini {
  font-size: var(--text-15);
  font-weight: 700;
  color: var(--text-dark);
  margin: 2px 0 0;
}
.meta-line {
  font-size: var(--text-14);
  color: var(--text-gray);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 2px;
}
.meta-line:last-child {margin-bottom: 0;} 
.meta-line-block {margin-top: 8px;}
.similar-jobs-section {
  margin-top: 30px;
}
/* Filter Row Container */
.filter-row {
    display: flex;
    justify-content: flex-end; /* Pushes the filter to the right */
    margin-bottom: 20px;
}
.applications-toolbar .job-filter-wrapper, .tab-container .job-filter-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border: 1px solid var(--border-color);
  padding: 8px 16px;
  border-radius: var(--border-r-8);
  cursor: pointer;
  min-width: 218px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.02);
  margin-top: 0;
}
.msg-filter-wrapper {
    margin-top: 15px;
    position: relative;
}
.msg-filter-wrapper .form-control {height: 36px; padding-left: 40px;}
.msg-filter-wrapper i {position: absolute; left: 15px; top: 10px;}
.filter-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.filter-label {
    font-size: 10px; /* Smaller, uppercase label for a pro look */
    font-weight: 800;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1;
    margin-bottom: 2px;
}

.filter-select {
    border: none;
    background-color: transparent;
    font-size: var(--text-14);
    font-weight: 700;
    color: var(--brand-purple);
    cursor: pointer;
    outline: none;
    padding: 0;
    margin: 0;
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
}
.filter-select:focus {
    outline: none;
    box-shadow:none;
    border-color: transparent;
}


.applied-value {font-size: var(--text-13); font-weight: 600; margin: 0;}

.common-modal .modal-header, .common-modal .modal-footer, .common-modal .modal-body {
    border: none;
    padding: 15px 24px;
}
.common-modal .modal-title {
  font-weight: 700;
  color: var(--brand-purple);
  margin:0px;
  font-size: var(--base-text);
}

.app-meta-box {
    display: flex;
    justify-content: space-between;
    background: var(--gray-fifth);
    padding: 12px 16px;
    border-radius: var(--border-r-8);
    border: 1px solid var(--border-color);
    margin-bottom: 20px;
}

.meta-item label {
    display: block;
    font-size: var(--text-11);
    text-transform: uppercase;
    color: var(--text-light);
    font-weight: 700;
    margin-bottom: 0;
}

.meta-item p {
    font-size: var(--text-13);
    font-weight: 700;
    color: var(--brand-purple);
    margin: 2px 0 0 0;
}

.cover-letter-body {
    border: 1px solid var(--border-color);
    border-radius: var(--border-r-8);
   padding: 20px;
    max-height: 300px;
    overflow-y: auto; 
}
.cover-letter-body p { font-size: var(--text-14);
    line-height: 1.6;
    color: var(--text-dark); margin-bottom: 15px;}
    .cover-letter-body p:last-child {margin-bottom: 0;} 
.modal-label {
  font-size: var(--text-12);
  color: var(--text-light);
  font-weight: 700;
  display: block;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.modal-header .btn-close {
  color: var(--text-light);
  opacity: 1;
  background: none;
} 
.modal-header .btn-close:hover,.modal-header .btn-close:focus {
  color: var(--dark); border: none; background: none; outline: none; box-shadow: none;
}


/* Timeline Item */
.timeline-secondary {
  border-left: 2px solid var(--gray-third);
}
.timeline-secondary .timeline-item {
    position: relative;
    margin-bottom: 25px;
    border: none;
}

/* Timeline Dot */
.timeline-secondary .timeline-dot {
    position: absolute;
    left: -9px;
    top: 0px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--white);
    border: 3px solid var(--brand-purple);
    z-index: 1;
}

.timeline-secondary .timeline-content {
    background: var(--gray-fifth);
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

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

.timeline-secondary .timeline-status {
    font-size: var(--text-12);
    font-weight: 800;
    text-transform: uppercase;margin: 0;
}

.timeline-secondary .timeline-date {
    font-size: var(--text-11);
    color: var(--text-light);
    font-weight: 400;
    margin: 0;
}

.timeline-secondary .timeline-remarks {
    font-size: var(--text-13);
    color: var(--text-gray);
    line-height: 1.4;
    font-style: italic;
}
.timeline-secondary .timeline-remarks:last-child {
    margin-bottom: 0;
}   
.timeline-secondary .timeline-item::before {
    display: none;
}
.timeline-orange .timeline-dot, .timeline-orange .timeline-status { border-color: #f08c00; color: #f08c00;}
.timeline-purple .timeline-dot, .timeline-purple .timeline-status { border-color: #6741d9; color: #6741d9;}
.timeline-blue .timeline-dot, .timeline-blue .timeline-status { border-color: #1971c2; color: #1971c2; }
.timeline-red .timeline-dot, .timeline-red .timeline-status { border-color: #f03e3e; color: #f03e3e; }
.timeline-green .timeline-dot, .timeline-green .timeline-status { border-color: #2b8a3e; color: #2b8a3e; }

.applications-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  gap: 20px;
  width: 100%;
}
.filter-search {position: relative; min-width: 300px;}
.filter-search .form-control {
  padding-left: 35px; height: 38px;
}
.filter-search i {
  position: absolute;
  left: 10px;
  top: 11px;
  color: var(--text-light);
}

 .location-text {
            font-size: var(--text-13);
            color: var(--text-gray);
            display: flex;
            align-items: center;
            gap: 4px;
        }
.location-text:last-child {margin-bottom: 0;}
.meta-item-profile {display: flex; align-items: center; gap: 10px;}
.jobs-table .skills-flex {max-width: 235px;}
.jobs-table .skill-tag {padding: 4px 10px; font-size: var(--text-12);}
 .search-input-wrapper {
            flex: 1;
            position: relative;
        }

        .search-input-wrapper i {
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: #adb5bd;
        }

        .search-field.form-control {
            height: 52px; padding-left: 45px;
           
        }



  .search-field .search-icon {
  position: absolute;
  left: 15px;
  font-size: var(--text-19);
  top: 16px;
  color: #adb5bd;
}

.main-search-card {

  display: flex;
  gap: 15px;

}
 .filter-group {
            margin-bottom: 25px;
            margin-bottom: 24px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--blank-gray-first);
        }
         .filter-group:last-child {
            border-bottom: none;
            padding-bottom: 0;
            margin-bottom: 0;
        }

 .filter-group .filter-label {
    display: block;
    font-size: var(--text-13);
    font-weight: 700;
    margin-bottom: 12px;
    text-transform: uppercase;
}

 .filter-title {
            display: block;
            font-size: var(--text-14);
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 12px;
        }

/* Add More Link */
        .add-more-link {
            display: inline-block;
            font-size: var(--text-12);
            font-weight: 600;
            color: var(--brand-purple);
            text-decoration: none;
            margin-top: 4px;
        }

        .add-more-link:hover {
            text-decoration: underline;
        }


 .salary-range {
            width: 100%;
            margin-top: 10px;
            accent-color: var(--brand-purple);
        }

        .salary-values {
            display: flex;
            justify-content: space-between;
            font-size: var(--text-12);
            margin-top: 8px;
        }
.pac-container {z-index: 9999;}
   .candidate-card {
            padding: 20px;
            margin-bottom: 16px;
            justify-content: space-between;
            transition: all 0.2s;
            display: flex;
            gap: 10px;
            align-items: start;
        }

        .candidate-card:hover {
            border-color: var(--brand-purple);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
        }

.candidate-card .candidate-info {align-items: start; gap: 20px;}
.candidate-card h3 {font-weight: 700; margin: 0; font-size: var(--text-17);}
.candidate-card h3  a {color: var(--dark);}
.candidate-card h4 {margin:4px 0 0; font-size: var(--text-14); font-weight: 500;}
        .candidate-meta {
            display: flex;
            gap: 16px;
            margin-top: 8px;
            align-items: center;
        }

        .meta-item {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 13px;
            color: #666;
        }

        .meta-item svg {
            color: #adb5bd;
        }
.candidate-card .skills-flex {margin-top: 12px;}

 .card-actions-wrapper {
            display: flex;
            flex-direction: column;
            gap: 12px;
            /* Fixed width to match the image ratio */
            align-items: end;
        }
 .btn-save-candidate {
            background-color:transparent;
            color: var(--brand-purple);
            border: none;
            font-size: var(--text-18);
            display: inline-block;
         
        }
.search-top {display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; gap: 10px;}
.search-top p {font-size: var(--text-14); margin: 0; color: var(--text-gray);}
select.search-sort.form-select {border:none; background-color:transparent; font-weight:700; color:var(--brand-purple); font-size:14px; cursor:pointer; height: auto; width: auto; box-shadow: none; padding-right: 30px; background-position: 100% 0px;}


/* Message Start */

.messages-page-container {
    max-width: 1200px; /* Or whatever your dashboard width is */
    margin: 30px auto; /* Centers it and adds top/bottom spacing */
    padding: 0 20px;
}

.messages-wrapper {
    display: flex;
    /* Reduced height slightly to account for page margins */
    height: calc(100vh - 185px); 
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

/* Ensure the sidebar doesn't shrink too much */
.chat-sidebar {
    width: 320px;
    min-width: 320px;
    border-right: 1px solid var(--border-color);
}


/* LEFT PANE: Conversation List */
.chat-sidebar {
    width: 350px;
    border-right: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
}

.chat-sidebar-header {
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
}

.chat-list {
    flex: 1;
    overflow-y: auto;
}




.message-back-block {margin-bottom: 20px;}
/* RIGHT PANE: Main Chat Window */
.chat-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    background-color: var(--gray-fifth);
    width: calc(100% - 350px);
   
}
  /* New Message / Compose Button */
        .btn-compose {
            background-color: var(--blank-gray-second);
            border: none;
            border-radius: var(--border-r-8);
            outline: none;
            box-shadow: none;
            padding: 6px;
            color: var(--brand-purple);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: var(--text-18);
        }

        .btn-compose:hover, .btn-compose:focus {
            background: var(--brand-purple);
            color: var(--white);
        }
 .msg-chat-header {display: flex; justify-content: space-between; align-items: center; gap: 10px;}
 .msg-chat-header h3 {font-size: var(--text-19); font-weight: 700; margin: 0; color: var(--brand-purple);}
.msg-back-btn {text-decoration: none; color: var(--text-light); font-size: var(--text-13); font-weight: 600;}
.char-info {flex: 1;width: calc(100% - 52px);}
.chat-title {display: flex; justify-content: space-between; flex-wrap: nowrap; align-items: center;}
.chat-title h4 {font-weight: 700; font-size: var(--text-14); white-space: nowrap; text-overflow: ellipsis; overflow: hidden; margin: 0;}
.chat-title span {font-size: var(--text-11); color: var(--text-light); white-space: nowrap; display: block;}
.char-info p {font-size: var(--text-12); color: var(--text-light); text-overflow: ellipsis; overflow: hidden; white-space: nowrap; margin: 4px 0 0;}

.chat-item {
    display: flex;
    padding: 15px 20px;
    gap: 12px;
    cursor: pointer;
    transition: 0.2s;
    border-bottom: 1px solid var(--gray-fifth);
}
.chat-item:hover { background: var(--gray-sixth); }
.chat-item.active { background: #f3f0ff; border-left: 4px solid var(--brand-purple); }
.chat-header {
    padding: 15px 25px;
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
    display: flex;
  align-items: center;
  justify-content: space-between;

}
.msg-dropwoed .dropdown-toggle::after {display:none;}
.msg-dropwoed .dropdown-toggle {color: var(--text-light);}
.msg-dropwoed .delete-conversation {color:var(--error); font-size: var(--text-14);}
.chat-messages-area {
    flex: 1;
    padding: 25px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.chat-date-divider{
 text-align: center;
  position: relative;
  max-width: 550px;
  margin: 15px auto;
  width: 100%;
}
.chat-date-divider::before {
  content: "";
  height: 2px;
  border: 1px dashed #ccc;
  position: absolute;
  left: 0;
  top: 11px;
  width: 100%;
  
}
.chat-date-divider span{
    background-color: var(--blank-gray-fifth);
   color: var(--text-light);
    padding:6px 12px;
   border-radius: var(--border-r-14);
    font-size: var(--text-14);
    font-weight:500;
    position: relative;
    z-index: 1;
}
/* Message Bubbles */
.msg-bubble {
    max-width: 90%;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 14px;
    line-height: 1.5;
}
.msg-chat-row {
  display: flex;
  gap: 10px;
  align-items: start;
}

.msg-received {
    align-self: flex-start;
    background: var(--white);
    border: 1px solid var(--border-color);
    color: var(--text-dark);
}

.msg-sent {
    align-self: flex-end;
    background: var(--brand-purple);
    color: var(--white);
}

/* Input Area */
.chat-input-area {
    padding: 20px;
    background-color: var(--white);
    border-top: 1px solid var(--border-color);
    
}
.msg-form {position: relative;}

.chat-input-wrapper.form-control {
    display: flex;
    gap: 10px;
    background: var(--gray-fifth);
    padding: 8px 15px;
    border-radius: var(--border-r-25);
    border: 1px solid var(--border-color);
    height: 50px;
}
.chat-input-area .btn-secondry-md {position: absolute; right: 5px; top: 4px; border-radius: var(--border-r-20); padding: 10px 15px;}



.msg-btn:hover, .msg-btn:focus {outline: none; box-shadow: none;}
 .candidate-name {
            margin: 0;
            font-weight: 700;
            color: var(--brand-purple);
            font-size: var(--base-text);
            overflow: hidden;
            white-space: nowrap;
            
            text-overflow: ellipsis;
            width: 100%;
        }
        
         .candidate-name a {color: var(--brand-purple);}
        .chat-top {display: flex; width: calc(100% - 52px); align-items: center; justify-content: space-between;}
        .candidate-info {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  overflow: hidden;
}

  .msg-wrapper {
            display: flex;
            flex-direction: column;
            margin-bottom: 20px;
            position: relative;
            max-width: 100%;
        }

        .msg-wrapper.sent {
            align-items: flex-end;
        }

        .msg-wrapper.received {
            align-items: flex-start;
        }

        /* The actual bubble */
        .msg-bubble {
            padding: 12px 16px;
            border-radius: 12px;
            font-size: 14px;
            line-height: 1.5;
            max-width:85%;
            /* Restored to a wider professional look */
            min-width: 100px;
            /* Prevents very short messages from looking tiny */
            position: relative;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
            transition: all 0.2s;
        }
       .msg-wrapper.sent .msg-chat-row  {justify-content: end}
         .msg-chat-row .msg-menu {opacity: 0;}
         .msg-chat-row:hover .msg-menu {opacity: 1;}

        /* Time and Date styling */
        .msg-meta {
            font-size: var(--text-11);
            color: var(--text-light);
            margin-top: 6px;
            font-weight: 600;

        }
        .msg-dropdown {  outline: none; 
        border: 1px solid var(--border-color);
        border-radius: 50%;
        width: 28px;
        height: 28px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        color: var(--text-light); padding: 0;
        background-color: var(--white);
        }

        

        /* Show delete button on hover */
        .msg-wrapper:hover .btn-msg-delete {
            opacity: 1;
        }


       

       .msg-menu .dropdown-item {
            width: 100%;
            padding: 8px 12px;
            border: none;
            background: none;
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: var(--text-13);
            color: var(--text-dark);
            cursor: pointer;
            text-align: left;
        }

         .msg-menu .dropdown-item:hover {
            background: #f8f9fa;
        }
        .msg-menu .dropdown-menu {background: white;
  border: 1px solid var(--border-color);
  border-radius: 8px; min-width: 120px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);}

         .msg-menu .dropdown-item.delete {
            color: var(--error);
        }
.modal-header p {margin-bottom: 0; font-size: var(--text-12); color: var(--text-gray);}


.msg-search-wrapper {
    position: relative;
}
.msg-search-wrapper .form-control { padding-left: 40px;}
.msg-search-wrapper i {position: absolute; left: 12px; top: 15px;}
.suggestion-list {
  max-height: 200px;
  overflow-y: auto;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-top: 0;
  margin-bottom: 20px;
}
       .suggestion-item-msg  {
  padding: 10px 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
.suggestion-item-msg:hover {
  background: #f3f0ff;
}
.suggestion-item-msg h4 {font-size: var(--text-14); font-weight: 600; margin: 0;}
.suggestion-item-msg p {font-size: var(--text-12); color: var(--text-light); margin: 2px 0 0;}
/* Message END */


.iti {width:100%; }

.iti--allow-dropdown .iti__flag-container:hover .iti__selected-flag, .iti--separate-dial-code .iti__selected-flag, .iti__country.iti__highlight {background-color:transparent !important; border-right:1px solid var(--input-border);}

.note-add p {font-size: var(--text-12);color: var(--text-light);}

.common-space {padding: 0 5%;}
.common-space .container {max-width: 1274px;}
.common-section {padding: 80px 0;}
header .common-space .container {max-width: 100%;}
/* Home Page Start */
 .hero {
            display: flex;
            min-height: calc(100vh - 80px);
            background-color: var(--bg-light);
            overflow: hidden;
        }

        .hero-content {
            flex: 1;
            padding: 80px 5%;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .hero-image {
            flex: 1;
         
            position: relative;
        }
        .hero-image .banner-img {object-fit: cover; width: 100%; height: 100%;}

        .hero-image::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            bottom: 0;
            right: 0;
            background: linear-gradient(90deg, var(--bg-light) 0%, transparent 20%);
        }

        .hero h1 {
            font-size: var(--text-56);
            line-height: 1.1;
            color: var(--brand-purple);
            margin: 0px;
            font-weight: 700;
        }

        .hero h1 span {
            color: var(--brand-cyan);
        }

        .hero p {
            font-size: var(--text-19);
            color: var(--text-light);
            margin: 20px 0 0;
            max-width: 500px;
        }

        /* --- Search Bar Container --- */
        .banner-search-container {
            background: var(--white);
            padding: 10px;
            border-radius: var(--border-r-12);
            display: flex;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            max-width: 650px;
            margin-top: 40px;
        }

        .banner-search-container .search-group {
            flex: 1;
            padding: 8px 15px;
            display: flex;
            flex-direction: column;
            border-right: 1px solid var(--gray-third);
        }

        .banner-search-container .search-group:last-of-type {
            border-right: none;
        }

        .banner-search-container .search-group label {
            font-size: var(--text-12);
            text-transform: uppercase;
            font-weight: bold;
            color: var(--brand-purple);
            margin-bottom: 3px;
        }

        .banner-search-container .search-group input {
            border: none;
            outline: none;
            font-size: var(--base-text);
            width: 100%;
        }

        .btn-search {
            background: var(--brand-cyan);
            color: var(--white);
            border: none;
            padding: 0 30px;
            border-radius: var(--border-r-8);
            font-weight: bold;
            cursor: pointer;
        }

        .btn-search:hover {
            transform: translateY(-2px);
        }

        /* --- Advanced Search Link --- */
        .advanced-search-link {
            display: inline-block;
            margin-top: 15px;
            color: var(--brand-purple);
            text-decoration: none;
            font-size: var(--text-14);
            font-weight: 600;
        }

        .advanced-search-link:hover {
            color: var(--brand-cyan);
            text-decoration: underline;
        }

  .action-panel {
            padding: 100px 0;
            background-color: var(--white);
            text-align: center;
        }

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

        .section-header-second h2 {
            font-size:var(--text-40);
            color: var(--brand-purple);
            margin:0px;
            font-weight: 700;
        }
        .action-panel .section-header-second p, .job-categories .section-header-second p  {margin: 10px auto 0;}
        .section-header-second p {
            font-size: var(--text-18);
            color: var(--text-light);
            max-width: 700px;
            margin: 10px 0 0;
        }

        .action-grid {
            display: flex;
            max-width: 1200px;
            margin: 0 auto;
            gap: 0;
            /* Seamless middle join */
            border-radius: var(--border-r-20);
            overflow: hidden;
            box-shadow: 0 20px 50px rgba(90, 45, 129, 0.05);
        }

      .action-panel  .action-card {
            flex: 1;
            padding: 60px 40px;
            text-align: left;
            position: relative;
            transition: all 0.4s ease;
            background: var(--white);
        }      


 .card-seeker {
            border-top: 8px solid var(--brand-purple);
            border-right: 1px solid #f0f0f0;
        }

        .card-employer {
            border-top: 8px solid var(--brand-cyan);
        }

       .action-panel  .action-card:hover {
            background: var(--bg-light);
            transform: translateY(-5px);
        }

        .action-card h3 {
            font-size: var(--text-28);
            margin-bottom: 25px;
            font-weight: 700;
        }

        .card-seeker h3 {
            color: var(--brand-purple);
            font-weight: 700;
        }

        .card-employer h3 {
            color: var(--brand-cyan);
            font-weight: 700;
        }

        .action-links {
            display: grid;
            grid-template-columns: 1fr;
            gap: 15px;
        }

        .action-item {
            display: flex;
            align-items: center;
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 500;
            font-size: var(--text-18);
            padding: 10px 0;
            border-bottom: 1px solid var(--gray-fourth);
            transition: all 0.3s ease;
            gap: 15px;
        }

        /* Animated arrow on hover */
        .action-item::after {
            content: '→';
            margin-left: auto;
            opacity: 0;
            transform: translateX(-10px);
            transition: all 0.3s ease;
        }

        .action-item:hover {
            color: var(--brand-cyan);
            padding-left: 10px;
        }

        .action-item:hover::after {
            opacity: 1;
            transform: translateX(0);
        }

        /* --- Action Item Icon Styles --- */
        .action-item i{
            width: 24px;
            color: var(--brand-purple);
            font-size: var(--text-18);
            transition: transform 0.3s ease;
        }

        .card-seeker .action-item i {
            color: var(--brand-purple);
            font-size: var(--text-18);
            width: 24px;
        }

        .card-employer .action-item i {
            color: var(--brand-cyan);
        }

        .action-item:hover i {
            transform: scale(1.1);
        }

        /* Ensuring alignment for the link text */
        .action-item span {
            display: inline-block;
        }


        .featured-jobs {
            background-color: var(--bg-light);
        }

       

        .view-all-link {
            color: var(--brand-cyan);
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1rem;
            border-bottom: 2px solid var(--brand-cyan);
            padding-bottom: 4px;
            transition: all 0.3s ease;
        }

        .view-all-link:hover {
            color: var(--brand-purple);
            border-color: var(--brand-purple);
        }

        /* Updated to force 4 columns on large screens */
        .jobs-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            /* Slightly tighter gap for 4-column fit */
            max-width: 1400px;
            margin: 0 auto;
        }

        .job-card {
            background: #fff;
            padding: 25px 20px;
            /* Adjusted padding for better fit */
            border-radius: 15px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.03);
            border: 1px solid #edf2f7;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
        }

        .job-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(90, 45, 129, 0.08);
        }

        .job-badges {
            display: flex;
            gap: 8px;
            margin-bottom: 15px;
            flex-wrap: wrap;
            /* Prevent badges from breaking container */
        }

        .badge {
            font-size: var(--text-11);
            font-weight: 700;
            text-transform: uppercase;
            padding: 3px 8px;
            border-radius: 4px;
        }

        .badge-occupation {
            background: #f0f4f8;
            color: var(--brand-purple);
        }

        .badge-type {
            background: #e6f7fa;
            color: var(--brand-cyan);
        }

        .job-card h3 {
            font-size: var(--text-19);
            font-weight: 700;
            /* Slightly smaller for 4-column fit */
            color: var(--text-dark);
            margin-bottom: 10px;
            min-height: 60px;
            /* Ensures titles align even if one wraps */
        }
        .job-card h3 a {color: var(--text-dark);}
        .job-location {
            display: flex;
            align-items: center;
            color: var(--text-light);
            font-size: var(--text-14);
            margin-bottom: 20px;
        }

        .job-location i {
            width: 14px;
            height: 14px;
            margin-right: 6px;
            color: #a0aec0;
        }

  /* --- Footer Section --- */
        .site-footer {
            background-color: #1a103d;
            color: var(--white);
            padding: 80px 5% 40px;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            /* CHANGE THIS LINE */
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
        }

        .footer-col h4 {
            color: var(--brand-cyan);
            font-size: var(--text-15);
            margin-bottom: 25px;
            text-transform: uppercase;
            font-weight: 700;
        }

        .footer-col ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-col ul li {
            margin-bottom: 12px;
        }

        .footer-col ul li a {
            color: #cbd5e0;
            text-decoration: none;
            font-size:var(--text-14);
        }

        .footer-col ul li a:hover {
            color: var(--white);
            padding-left: 5px;
        }

        /* Newsletter Column - Spans 2 columns for better layout on wide screens */
        .newsletter-col {
            /* Set this to 'span 1' for 3 equal columns, 
       or 'span 2' if you want the newsletter to be wider */
            grid-column: span 1;
        }

        .newsletter-form .form-group{
            margin-top: 15px;
            display: flex;
            gap: 10px;
        }
.newsletter-col p {font-size:var(--text-13); color: #cbd5e0; line-height: 1.5; margin: 0 0 6px;}
        .newsletter-input {
            flex: 1;
            padding: 12px;
            border-radius: 6px;
            border: 1px solid #3d2b7a;
            background: #2d1b5e;
            color: var(--white);
            outline: none;
        }

        .newsletter-btn {
            background-color: var(--brand-cyan);
            color: var(--white);
            border: none;
            padding: 12px 20px;
            border-radius: 6px;
            font-weight: 700;
            cursor: pointer;
        }

        /* Bottom Bar & Social Icons */
        .footer-bottom {
            max-width: 1300px;
            margin: 60px auto 0;
            padding-top: 30px;
            border-top: 1px solid #3d2b7a;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .social-links {
            display: flex;
            gap: 20px;
        }

        .social-links a {
            color: #cbd5e0;
            font-size: var(--text-22);
            transition: color 0.3s ease;
            text-decoration: none;
        }

        .social-links a:hover {
            color: var(--brand-cyan);
            transform: translateY(-3px);
        }

    .copyright {color: #a0aec0; font-size: var(--text-13); margin: 0;}
       

        .job-categories {
            background-color: var(--white);
        }

       

        .categories-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 20px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .category-card {
            background: var(--white);
            border: 1px solid #f0f0f0;
            border-radius: var(--border-r-12);
            padding: 30px 15px;
            text-align: center;
            text-decoration: none;
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .category-card:hover {
            border-color: var(--brand-cyan);
            box-shadow: 0 10px 20px rgba(0, 178, 210, 0.08);
            transform: translateY(-5px);
        }

        .category-icon {
            width: 50px;
            height: 50px;
            background: #f3ebf7;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 15px;
            transition: background 0.3s ease;
        }

        .category-card:hover .category-icon {
            background: var(--brand-cyan);
        }

        .category-icon i {
       
            color: var(--brand-purple);
            font-size: var(--text-22);
          
        }

        .category-card:hover .category-icon i {
            color: #fff;
        }

        .category-card h4 {
            color: var(--text-dark);
            font-size: var(--base-text);
            font-weight: 700;
            margin: 0;
        }

        .job-count {
            font-size: var(--text-13);
            color: var(--brand-cyan);
            background: #e6f7fa;
            padding: 2px 10px;
            border-radius: var(--border-r-20);
            margin-top: 8px;
            font-weight: 600;
        }

        .job-locations {
            background-color:var(--white);
        }

        .locations-panel {
            display: flex;
            align-items: center;
            gap: 60px;
            max-width: 1300px;
            margin: 0 auto;
            background-color: #fffbf5;
            /* Light cream background for the panel */
            border-radius: 24px;
            padding: 50px;
        }

        .locations-graphic {
            flex: 0 0 30%;
            text-align: center;
        }

        .locations-graphic img {
            max-width: 100%;
            height: auto;
            margin-bottom: 20px;
        }

      

        .locations-cards-container {
            flex: 1;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }

        .location-card {
            background: var(--white);
            border-radius: var(--border-r-12);
            padding: 25px;
            text-decoration: none;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border: 1px solid #edf2f7;
            transition: all 0.3s ease;
        }

        .location-card:hover {
            box-shadow: 0 10px 25px rgba(0, 178, 210, 0.1);
            border-color: var(--brand-cyan);
            transform: translateY(-3px);
        }

        .loc-info h4 {
            color: var(--text-dark);
            font-size:var(--text-18);
            margin-bottom: 5px;
        }

        .loc-count {
            color: var(--brand-cyan);
            font-weight: 600;
            font-size: var(--text-14);
        }

        .loc-arrow {
            color: #cbd5e0;
            font-size: var(--text-19);
            transition: color 0.3s ease;
        }

        .location-card:hover .loc-arrow {
            color: var(--brand-cyan);
        }

    .why-choose-us {
            background-color: #ffffff;
        }

      

        .why-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .why-card {
            text-align: center;
            padding: 30px;
            border-radius: 16px;
            transition: all 0.3s ease;
            border: 1px solid transparent;
        }

        .why-card:hover {
            background: #fcf8ff;
            border-color: #f3ebf7;
            transform: translateY(-5px);
        }

        .why-icon {
            width: 70px;
            height: 70px;
            background: #f3ebf7;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            transition: background 0.3s ease;
        }

        .why-card:hover .why-icon {
            background: var(--brand-cyan);
        }

        .why-icon i {
           font-size: var(--text-24);
            color: var(--brand-purple);
            transition: fill 0.3s ease;
        }

        .why-card:hover .why-icon i {
            color:var(--white);
        }

        .why-card h4 {
            color: var(--text-dark);
            font-size: var(--text-19);
            margin-bottom: 10px;
            font-weight: 700;
            margin: 0;
        }

        .why-card p {
            color: var(--text-light);
            font-size: var(--text-15);
            line-height: 1.5;
        }

  .why-choose-us .section-header-second p, .how-it-works .section-header-second p {margin: 10px auto 0;}

 /* --- App Download CTA --- */
        .app-download {
            background-color: #fcf8ff;
            /* Soft brand-tinted background */
            border-top: 1px solid #edf2f7;
        }

        .app-container {
            max-width: 1200px;
            margin: 0 auto;
            background: linear-gradient(135deg, #1a103d 0%, #2d1b5e 100%);
            border-radius: var(--border-r-25);
            padding: 60px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            color: var(--white);
            overflow: hidden;
            position: relative;
        }

        .app-content {
            flex: 1;
            max-width: 550px;
            z-index: 2;
        }

        .app-content h2 {
            font-size: var(--text-40);
            font-weight: 700;
            margin-bottom: 20px;
            margin-bottom: 20px;
        }

        .app-content p {
            font-size: var(--text-18);
            opacity: 0.9;
            margin-bottom: 35px;
        }

        .store-buttons {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }

        .store-btn {
            transition: transform 0.3s ease;
        }

        .store-btn:hover {
            transform: translateY(-5px);
        }

        .store-btn img {
            height: 48px;
            width: auto;
        }

        /* Mockup/Graphic Side */
        .app-visual {
            flex: 1;
            display: flex;
            justify-content: flex-end;
            position: relative;
        }

        /* Simple CSS Phone Mockup to avoid broken image links */
        .phone-mockup {
            width: 200px;
            height: 400px;
            background: #000;
            border: 8px solid #333;
            border-radius: 30px;
            position: relative;
            box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.4);
            transform: rotate(10deg);
        }

        .phone-screen {
            width: 100%;
            height: 100%;
            background: var(--brand-cyan);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-weight: bold;
            font-size:var(--text-13);
            text-align: center;
            padding: 20px;
        }

 .employer-cta {
            background-color: var(--white);
        }

        .employer-banner {
            max-width: 1200px;
            margin: 0 auto;
            background-color: #fcf8ff;
            border: 2px dashed #d6bdec;
            border-radius: 20px;
            padding: 50px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            text-align: center;
            flex-direction: column;
            gap: 15px;
        }

        .employer-banner h2 {
            font-size: var(--text-32);
            color: var(--brand-purple);
            margin-bottom: 0;
            font-weight: 700;
        }

        .employer-banner p {
            font-size: var(--text-18);
            color: var(--text-light);
            margin-bottom: 0;
        }


 .resume-cta {
            background-color: #ffffff;
        }

        .cta-banner {
            max-width: 1200px;
            margin: 0 auto;
            background: linear-gradient(135deg, var(--brand-purple) 0%, #6b46c1 100%);
            border-radius: 20px;
            padding: 50px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: white;
            box-shadow: 0 10px 30px rgba(90, 45, 129, 0.2);
        }

        .cta-text h2 {
            font-size: var(--text-32);
            margin-bottom: 10px;
            color: var(--white);
            font-weight: 700;
        }

        .cta-text p {
            font-size: var(--text-18);
            opacity: 0.9;
            margin-bottom: 0;
        }

        .upload-btn {
            background-color: var(--brand-cyan);
            color: #fff;
            text-decoration: none;
            padding: 15px 30px;
            border-radius: 8px;
            font-weight: 700;
            font-size: 1.1rem;
            transition: background 0.3s ease;
            white-space: nowrap;
        }

        .upload-btn:hover {
            background-color: #009db8;
        }
.testimonials {
            background-color: #fcf8ff;
        }


   .slick-arrow {
            position: absolute;
            top: 50%;
            background: var(--white);
            border: 1px solid #edf2f7;
            width: 50px;
            height: 50px;      
            border-radius: 50%;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
            z-index: 10;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-light);
        }

        .slick-arrow:hover, .slick-arrow:focus {
            border-color: var(--brand-cyan);
            color: var(--brand-cyan);
            opacity: 1;
            background-color: var(--white);
        }

        .slick-prev {
            left: -42px;
        }

        .slick-next  {
            right: -42px;
          
        }
        .slick-next::before {
            right: 0;
            content: "\f105";
            font-family:  'Font Awesome 7 Free';
            font-weight: 900;
        }
        .slick-prev::before {
            right: 0;
            content: "\f104";
            font-family:  'Font Awesome 7 Free';
            font-weight: 900;
        }

        .test-card {
            background: var(--white);
            padding: 40px;
            border-radius: var(--border-r-16);
            border: 1px solid #edf2f7;
            box-shadow: 0 8px 15px rgba(90, 45, 129, 0.03);
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
.testimonials-slider .slick-slide {padding: 0 15px;}
        .test-quote {
            font-size: var(--text-18);
            color: var(--text-dark);
            line-height: 1.6;
            font-style: italic;
            position: relative;
        }

        .test-quote::before {
            content: '"';
            font-size: 4rem;
            color: #f3ebf7;
            position: absolute;
            top: -45px;
            left: -25px;
            font-family: serif;
        }
.testimonials  .section-header-second p, .hiring-partners  .section-header-second p {
  margin: 10px auto 0;
}
        .test-author {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-top: auto;
            padding-top: 20px;
            border-top: 1px solid #f0f0f0;
        }

        .author-img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            object-fit: cover;
        }

        .author-info h5 {
            color: var(--text-dark);
            font-size:var(--text-18);
            margin: 0;
            font-weight: 700;
        }

        .author-info span {
            color: var(--brand-cyan);
            font-size: var(--text-14);
            font-weight: 600;
        }

          .hiring-partners {
            background-color: #ffffff;
        }

        .partners-slider .slick-slide {padding: 10px 10px 15px;}


        .partner-card {
            flex: 0 0 200px;
         
            background: #fff;
            padding: 30px 20px;
            border-radius: 12px;
            text-align: center;
            border: 1px solid #edf2f7;
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            min-height: 150px;
        }

        .partner-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
            border-color: var(--brand-cyan);
        }

        .partner-logo-container {
            width: 80px;
            height: 60px;
            margin: 0 auto 15px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .partner-logo {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            filter: grayscale(100%);
            transition: filter 0.3s ease;
        }

        .partner-card:hover .partner-logo {
            filter: grayscale(0%);
        }

        .partner-name {
            font-size: var(--base-text);
            font-weight: 700;
            color: var(--text-dark);
            margin: 0;
        }

        /* Arrows */
       

        /* View All Button */
        .view-all-partner {
            text-align: center;
            margin-top: 30px;
        }

        .view-all-btn {
            display: inline-block;
            padding: 12px 30px;
            border: 2px solid var(--brand-purple);
            color: var(--brand-purple);
            text-decoration: none;
            border-radius: 30px;
            font-weight: 700;
            transition: all 0.3s ease;
        }

        .view-all-btn:hover {
            background: var(--brand-purple);
            color: var(--white);
        }
     
.how-it-works {
            background-color: #fcf8ff;
        }

       

        /* Tabs Styling */
        .tabs-container {
            max-width: 900px;
            margin: 0 auto;
        }

        .tabs-nav {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-bottom: 40px;
        }

       

        /* Steps Content Styling */
   

        .steps-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            position: relative;
        }

        /* The Rounded Connector Line (CSS Generated) */
        .steps-grid::before {
            content: '';
            position: absolute;
            top: 40px;
            left: 15%;
            width: 70%;
            height: 60px;
            border: 4px solid #f3ebf7;
            border-bottom: none;
            border-radius: 60px 60px 0 0;
            z-index: 0;
        }

        .step-card {
            background: var(--white);
            text-align: center;
            padding: 30px 20px;
            border-radius: 16px;
            border: 1px solid #edf2f7;
            position: relative;
            z-index: 1;
        }

        .step-number {
            width: 60px;
            height: 60px;
            background: var(--brand-cyan);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: var(--text-24);
            font-weight: 800;
            margin: 0 auto 20px;
            border: 4px solid var(--white);
            box-shadow: 0 4px 10px rgba(0, 178, 210, 0.2);
        }

        .step-card h4 {
            color: var(--text-dark);
            font-size: var(--text-19);
            margin: 0px;
        }

        .step-card p {
            color: var(--text-light);
            font-size: var(--text-15);
            margin: 10px 0 0;
        }


.first-tabs {box-shadow: none; border: none;}
.first-tabs .nav-item  .nav-link {background: var(--white);
            border: 2px solid #edf2f7;
            padding: 12px 30px;
            border-radius: 30px;
            font-weight: 700;
            color: var(--text-dark);
            cursor: pointer;
            font-size: var(--base-text);}
.first-tabs .nav-item  .nav-link:hover {    border-color: var(--brand-cyan);
            color: var(--brand-cyan);}            
.first-tabs .nav-item .nav-link.active {
        background: var(--brand-purple);
            border-color: var(--brand-purple);
            color: var(--white);
}
.how-it-works .first-tabs-content { padding: 40px 0 0 0px; max-width: 900px; width: 100%; margin: 0 auto;}

.first-tabs {justify-content: center; gap: 10px;}


.second-tabs {box-shadow: none; border: none;}
.second-tabs .nav-item  .nav-link {
     padding: 12px 4px;
            background: none;
            border: none;
            border-bottom: 3px solid transparent;
            font-weight: 700;
            color: var(--text-light);
            cursor: pointer;
            font-size: var(--text-15);
}
.second-tabs .nav-item  .nav-link:hover {    border-color: var(--brand-cyan);
            color: var(--brand-cyan);}            
.second-tabs .nav-item .nav-link.active {
        color: var(--brand-purple);
            border-bottom-color: var(--brand-purple);
}
.second-tabs { gap: 30px;   border-bottom: 1px solid var(--border-color);}
.second-tabs-content { padding: 25px 0 0 0px;}

 .plan-card {
            background: linear-gradient(135deg, var(--brand-purple) 0%, #4c33a3 100%);
            color: var(--white);
            padding: 30px;
            border-radius: var(--border-r-16);
            position: relative;
            overflow: hidden;
        }

        .plan-card::after {
            content: "";
            position: absolute;
            right: -50px;
            top: -50px;
            width: 200px;
            height: 200px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 50%;
        }

.plan-block {display: flex; justify-content: space-between; align-items: center; gap: 10px;}
.plan-status {font-size: var(--text-11); text-transform: uppercase; font-weight: 700; opacity: 0.8;}
.plan-left h2 {font-size: var(--text-24); margin: 8px 0 0; font-weight: 700;}
.plan-left p {  margin: 8px 0 0; font-size: var(--text-13); opacity: 0.9;}
.plan-right {position: relative; z-index: 2;}
.plan-right h3 {font-size: var(--text-32); font-weight: 700; margin-bottom: 10px;}
.plan-right h3 sub {font-weight: 400; vertical-align: center; line-height: 1; font-size: var(--base-text);}
.usage-container {
            background: var(--white);
            padding: 25px;
            border-radius: var(--border-r-12);
            border: 1px solid var(--border-color);
        }

        .usage-item {
            margin-bottom: 20px;
        }

        .usage-info {
            display: flex;
            justify-content: space-between;
            margin-bottom: 8px;
            font-size: var(--text-14);
            font-weight: 600;
        }

        .progress-bar-bg {
            height: 8px;
            background: var(--gray-third);
            border-radius: 10px;
            overflow: hidden;
        }

        .progress-fill {
            height: 100%;
            background: var(--brand-cyan);
            border-radius: var(--border-r-10);
        }

        /* Status Badges */
        .status-paid {
            background: #e6fcf5;
            color: #0ca678;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 700;
        }
 .card-header {margin-bottom: 20px;}
.card-header h3 {font-size: var(--base-text); color: var(--dark); margin: 0; font-weight: 700;}
.card-header p {margin: 5px 0 0;
  font-size: var(--text-12);
  color: var(--text-light);}
.progress-info {display: flex; justify-content: space-between; font-size: var(--text-13); margin-bottom: 8px;}
.progress-item {margin-bottom: 20px;}
.progress-item:last-child {margin-bottom: 0;}

 .view-history-link {
            display: block;
            text-align: center;
            margin-top: 15px;
            padding-top: 15px;
            border-top: 1px solid var(--gray-second);
            font-size: var(--text-13);
            font-weight: 700;
            text-decoration: none;
            color: var(--brand-purple);
        }

        .view-history-link:hover {
           
            text-decoration: underline;
        }
  .chart-container {
            position: relative;
            height: 250px;
            width: 100%;
        }
.job-table-top {padding: 20px; border-bottom: 1px solid var(--border-color); display: flex; justify-content: space-between; align-items: center;}
.job-table-top h3 {margin: 0; font-size: var(--base-text); font-weight: 700;}
.jobs-table td.table-id {font-weight: 600; color: var(--dark);}

        .notification-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0px 0 15px;
            margin-bottom: 15px;
            border-bottom: 1px solid var(--gray-second);
        }

        .notification-item:last-child {
            border-bottom: none;
            padding-bottom: 0;
            margin-bottom: 0;
        }

 .switch {
            position: relative;
            display: inline-block;
            width: 44px;
            height: 22px;
        }

        .switch input {
            opacity: 0;
            width: 0;
            height: 0;
        }

       .switch  .slider {
            position: absolute;
            cursor: pointer;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: #ccc;
            transition: .4s;
            border-radius: 34px;
        }

        .switch .slider:before {
            position: absolute;
            content: "";
            height: 16px;
            width: 16px;
            left: 3px;
            bottom: 3px;
            background-color: white;
            transition: .4s;
            border-radius: 50%;
        }

        .switch input:checked+.slider {
            background-color: var(--brand-purple);
        }

        .switch input:checked+.slider:before {
            transform: translateX(22px);
        }
 .notification-left p {font-size: var(--text-13); color: var(--text-gray); margin: 3px 0 0;}
 .notification-left h4 {font-size: var(--text-14); color: var(--dark); margin:0; font-weight:600;}
   .danger-box {
            margin-top: 40px;
            padding: 25px;
            background: #fff5f5;
            border: 1px solid #ffc9c9;
            border-radius: 12px;
        }
 .danger-actions {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
.danger-box h3 {color: #e03131; margin: 0; font-size: var(--base-text); font-weight: 700;}
.danger-box p {font-size: var(--text-13); color:var(--text-gray); line-height: 1.5; margin: 5px 0 0;}
.danger-border-btn {background: var(--white); color: #fa5252; border: 1px solid #fa5252; padding: 10px 20px; border-radius: var(--border-r-8); font-weight: 700; cursor: pointer; font-size: var(--base-text);}
.danger-btn {background: #fa5252; color: var(--white); border: none; padding: 10px 20px; border-radius: var(--border-r-8); font-weight: 700; cursor: pointer; font-size: var(--base-text);}
.membership-main .section-header-second p {margin: 10px auto 0;}

  .membership-pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin-bottom: 50px;
        }

        .membership-plan-card {
            background: var(--white);
            border: 1px solid var(--gray-third);
            border-radius: var(--border-r-16);
            padding: 30px;
            position: relative;
            transition: all 0.3s;
            display: flex;
            flex-direction: column;
        }

        .membership-plan-card.featured {
            border: 2px solid var(--brand-purple);
            box-shadow: 0 10px 30px rgba(103, 65, 217, 0.1);
        }
.membership-plan-card h3 {font-size: var(--text-20); color: var(--text-dark); margin: 0; font-weight: 700;}
     .membership-plan-card  .plan-badge {
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--brand-purple);
            color: var(--white);
            padding: 4px 15px;
            border-radius: 20px;
            font-size: var(--text-12);
            font-weight: 700;
        }

     .membership-plan-card   .plan-price {
            font-size: var(--text-35);
            font-weight: 800;
            margin: 15px 0 0;
            color: var(--text-dark);
        }

      .membership-plan-card  .plan-price span {
            font-size: var(--base-text);
            color: var(--text-light);
            font-weight: 400;
        }
.membership-plan-card p {font-size:13px; color:var(--text-light); margin:15px 0 0;}
      .membership-plan-card  .plan-features {
            list-style: none;
            padding: 0;
            margin: 20px 0 30px 0;
            flex-grow: 1;
        }

        .membership-plan-card .plan-features li {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 12px;
            font-size: var(--text-14);
            color: var(--text-light);
        }
.membership-plan-card .plan-features li:last-child {margin-bottom: 0;}
        .membership-plan-card .plan-features i {
            color: var(--success-green);
            font-size: var(--text-14);
        }


        /* Plan Card Enhancements */
        .membership-plan-card {
            background: var(--white);
            border: 1px solid var(--gray-third);
            border-radius: var(--border-r-16);
            padding: 32px;
            display: flex;
            flex-direction: column;
            transition: transform 0.3s ease;
        }

        .membership-plan-card:hover {
            transform: translateY(-5px);
        }

        .membership-plan-card.featured {
            border: 2px solid var(--brand-purple);
            box-shadow: 0 12px 24px rgba(103, 65, 217, 0.08);
        }

 .adhoc-section {
            background: var(--bg-light);
            border-radius: var(--border-r-16);
        }

        .credit-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: white;
            padding: 15px 25px;
            border-radius: var(--border-r-10);
            margin-bottom: 10px;
            border: 1px solid var(--gray-third);
        }
        .credit-row:last-child {
            margin-bottom: 0;
        }
        .credit-left {display: flex; align-items: center; gap: 15px;}

        /* Main Page Wrapper */
        .pricing-wrapper {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }

        /* Pricing Grid - 3 columns for the standard plans */
      
        .adhoc-section h3 {margin: 0 0 20px 0; font-size: var(--text-20); font-weight: 700;}
        .square-45 {
            width: 45px;
            height: 45px;
            min-width: 45px;
            min-height: 45px;
            background: var(--brand-cyan);
            color: var(--brand-cyan);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: var(--text-14);
            font-weight: 700;
            border-radius: 6px;
            border: 1px solid var(--gray-third);
        }
        .square-48 {
            width: 48px;
            height: 48px;
            min-width: 48px;
            min-height: 48px;
            background: var(--brand-cyan);
            color: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: var(--text-14);
            font-weight: 700;
            border-radius: 6px;
        }
         .square-48 i { font-size: var(--text-20);}
        .square-48 img {width: 100%; height: auto; object-fit: cover;}
.square-orange {background: #fff3bf; color: #f08c00;}
.square-orange i {font-size: var(--text-20);}
.square-blue {background: #e3fafc; color: #1098ad;}
.square-blue i {font-size: var(--text-20);}
.card-left-info h4 {margin:0; font-size: var(--text-16); font-weight: 700; color: var(--text-dark);}
.card-left-info p {margin:0; font-size: var(--text-12); color: var(--text-light); margin: 4px 0 0;}
.credit-right {display: flex; align-items: center; gap: 20px; flex-wrap: wrap;}
.credit-price {font-weight: 800; font-size: 18px;}
.notif-feed-wrapper {
    max-width: 850px;
    margin: 0 auto;  
}
.notif-card {
            background: var(--white);
            border: 1px solid var(--gray-third);
            border-radius: var(--border-r-12);
            padding: 20px;
            margin-bottom: 12px;
            display: flex;
            gap: 16px;
            transition: all 0.2s ease;
            cursor: pointer;
            position: relative;
        }

        .notif-card:hover {
            border-color: var(--brand-purple);
            background-color: var(--bg-light);
        }

        /* Unread State Indicator */
        .notif-card.unread {
            border-left: 4px solid var(--brand-purple);
            background-color: var(--bg-light);
        }

  .icon-app {
            background: #e7f5ff;
            color: #228be6;
        }

        /* Applications */
        .icon-msg {
            background: #f3f0ff;
            color: #6741d9;
        }

        /* Messages */
        .icon-sys {
            background: #fff4e6;
            color: #fd7e14;
        }
        .note-right h4 {margin: 0; font-size: var(--text-15);   font-weight: 400; margin: 0;}
 .notif-time {
            font-size: var(--text-12);
            color: var(--text-light);
            margin: 4px 0 0;
        }

        .notif-dot {
            width: 8px;
            height: 8px;
            background: var(--brand-purple);
            border-radius: 50%;
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
        }

.note-right {flex: 1;}
.invitation-card {gap: 25px;}
.invitation-card:hover, .review-card   {
    box-shadow: 0 8px 24px rgba(0,0,0,0.05);
}

.employer-brand {background: #f8f9fa; border-color: var(--gray-third);}
.employer-brand i {font-size: var(--text-28); color: var(--brand-purple);}

.invitation-card {
  
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: transform 0.2s;
}

.invitation-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.05);
}



.invitation-middle {
  flex: 1;

}
.invitation-row {display: flex; gap: 20px; flex: 1;}
.invitation-middle h4 {margin: 0; font-size: var(--text-18); font-weight: 700;}
.invitation-middle p {margin: 4px 0 0; font-size: var(--text-14); color: var(--text-light); }
.container {max-width: 1274px}
.invite-message-box {
  background: #f3f0ff;
  border-left: 3px solid var(--brand-purple);
  padding: 12px 16px;
  border-radius: 0 var(--border-r-8) var(--border-r-8) 0;
  margin-top: 12px;

}
.invite-message-box p { font-size: var(--text-13);
  color: var(--text-dark);  font-style: italic;
  }
.invite-message-box h5 { font-size: var(--text-13);
  color: var(--text-dark);  font-weight: 600; margin: 2px 0 0;
  }
  .invite-bottom {display: flex; gap: 15px; margin-top: 15px; color: var(--text-light); font-size: var(--text-12);}

.invite-message-box p:last-child {margin-bottom: 0;}

.invitation-card .card-actions-wrapper {
 
  align-items: center;
  justify-content: center;
}
.review-card .square-45 {background: #f8f9fa; border-color: var(--gray-third);}
.review-card .square-45 i {color: var(--brand-purple); font-size: var(--text-18);}
.review-top {display: flex; gap: 12px; justify-content: space-between;}
.review-top-left {display: flex; gap: 12px; align-items: center;}
.review-top-left h4 {color: var(--brand-purple); font-size: var(--base-text); font-weight: 700; margin: 0;}
.review-top-left p {color: var(--text-light); font-size: var(--text-12);  margin: 4px 0 0;}
.review-action {display: flex; gap: 10px; align-items: center;}
.review-action .act-btn {width: 35px; height: 35px; border-radius: var(--border-r-4); display: flex; align-items: center; justify-content: center; font-size: var(--text-18); color: var(--text-light); opacity: 0.7;}
.review-action .act-btn:hover, .review-action .act-btn:focus {
    background: var(--gray-third);
    color: var(--brand-purple); opacity: 1;
}
.review-bottom {margin-top: 12px;}
.review-sm {display: flex; gap: 2px; font-size: var(--text-13); }
.review-sm span, .review-sm a {color: #fab005;}
.review-bottom h4 {margin:12px 0 0; font-size: var(--text-15); color: var(--text-dark); font-weight: 700;}
.review-bottom p {margin: 8px 0 0; font-size: var(--text-14); }

.t-text-lg {font-size: var(--text-14); color: var(--dark); margin: 0;}

.review-main {margin-top: 25px;}
.breadcrumb {margin-bottom: 25px; font-size: var(--text-13);}
.reviews-summary-card {

  display: grid;
  grid-template-columns: 1fr 2fr 1.5fr;
  gap: 40px;
  align-items: center;
}

.big-rating {
  text-align: center;
  border-right: 1px solid var(--gray-third);
}
.big-rating h1 {font-size: var(--text-48); margin: 0 0 10px; color: #222; font-weight: 800;}
.big-rating p {font-size: var(--text-14); margin: 4px 0 0;}
.review-lg {display: flex; gap: 2px; font-size: var(--text-18); }
.review-lg span, .review-lg a {color: #fab005;}
.review-lg .date, .review-sm .date  {color: var(--text-light); font-size: var(--text-13); margin-left: 4px;}
.rating-count {width: 34px;}
.rating-bar-container {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
  font-size: var(--text-13);
}
.bar-bg {
  flex: 1;
  height: 8px;
  background: #f1f3f5;
  border-radius: var(--border-r-4);
  overflow: hidden;
}
.bar-fill {
  height: 100%;
  background: #fab005;
  border-radius: var(--border-r-4);
}

.review-right-part {display: flex; justify-content: flex-end; align-items: center; gap: 10px;}
.received-review-card h4 {margin: 0 0 10px; color: var(--text-dark); font-size: var(--text-17);}
.review-card-row .common-card-inner:last-child {margin-bottom: 0;} 

.form-control.select2-container-multi .select2-choices {background-color: var(--white);
  border: 1px solid var(--input-border);
  border-radius: var(--border-r-10); min-height:46px; padding: 8px 15px;}
.form-control.select2-container-multi .select2-choices .select2-search-choice {background-color: var(--gray-second); padding: 4px 6px 4px 18px; font-size: var(--text-15); border-radius:3px;}
.jconfirm-scrollpane .jconfirm-box-container {
  margin-left: auto;
  margin-right: auto;
}
.jconfirm.jconfirm-white .jconfirm-box .buttons button {padding: 8px 20px;}

.thank-you-sec {
  padding: 80px 0;
}




/* Notification Settings */
.notification-table td {border-bottom: 1px solid var(--gray-second); padding-left: 0; vertical-align: middle;}
.notification-table thead th {box-shadow: none;border-bottom-color:  var(--gray-second); padding-left: 0; font-weight: 600; padding-top: 0;}
.notification-table tbody tr:last-child td {border-bottom: none;}

.no-data-block { margin:20px auto;  border: 1px solid var(--blank-gray-first);
  border-radius: 5px;
  padding: 15px;
  text-align: center; color: var(--text-light);
  background-color: var(--blank-gray-second);

}
.no-data-block i {font-size: var(--text-32); opacity:0.3;}
.no-data-block p{margin:10px 0 0;}

.code-inputs {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 30px;
}

.auth-section h1 {
  font-size: var(--text-28);
  margin-bottom: 10px;
  text-align: left;
  font-weight: 700;
}
.circle-72 {
  width: 72px;
  height: 72px;
  min-width: 72px;
  min-height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: var(--blank-bg);
}
.auth-icon {
     background-color: rgba(90, 45, 129, 0.152);
  color: var(--brand-purple);
  font-size: var(--text-28);
  margin: 0 auto 20px;
}
.verify-auth label.error {display:block; text-align:center;}
.auth-section .user-email {
  color: var(--dark);
  font-weight: 700;
  font-size: var(--text-15);
}
.ratings-lg {
  font-size: var(--text-28);
  color: var(--accent);
  display: flex;
  gap: 4px;
  align-items: center;
}
.timeline-action-block {display: flex; justify-content: space-between; align-items: start;}
.timeline-action {display: flex; gap: 10px; align-items: center;}
.timeline-action .edit-tl {font-size: var(--base-text); padding: 4px; border: none; outline: none; background-color: transparent; display: inline-block;}
.timeline-action .delete-tl {font-size: var(--base-text); padding: 4px; border: none; outline: none; background-color: transparent; color: var(--error); display: inline-block;}

.ui-widget.ui-widget-content {
  z-index: 9999 !important;
}




.no-msg-data  {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
   height:auto; cursor: inherit;
   margin: 5% auto;
   width: 100%;
   max-width: 500px;
}
.no-msg-data i {font-size: 50px;
  opacity: 0.3;}
.no-msg-data p {color: var(--black); margin:10px 0 0; color: var(--text-light);
  font-size: var(--text-14);}
.calc-job-price {display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 15px;
  text-align: center;}
.calc-job-price .unit-price label {font-size:18px; font-weight:700;}
.calc-job-price i {
  opacity: 0.4;
}

.calc-job-price .form-control {
  max-width: 100px;
  text-align: center;
  height: 38px;
}
.calc-job-price .form-label {margin-bottom:3px; font-weight:500;}
.cal-price-label {margin-bottom: 8px;}
.seeker-profile-note {font-size: 11px;
  color: var(--text-light);
  margin: 10px 0 0;
  line-height: 1.4;}
.social-edit-group .input-group-text select.form-control {height:44px; padding-right: 30px;}

.avail-main {
  display: block;
  text-align: center;
}

.blankpage-header h3 {font-size: var(--text-20); margin: 0; font-weight: 700; color: var(--text-dark);}
.blankpage-header p {font-size: var(--text-14); margin: 5px 0 0; color: var(--text-light);}
.onboarding-steps .step-card {background: #f8f9fa;  border: 1px solid #eee; padding: 20px; }


.onboarding-steps {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  

}

.onboarding-steps .step-number {flex-shrink: 0;
    margin: 0;
    box-shadow: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #f3f0ff;
  color: var(--brand-purple);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-14);
  border:none;
  font-weight: 700;}

.onboarding-steps .step-info {flex: 1;}

.onboarding-steps .step-info h4 {font-size: var(--text-15); margin: 0; font-weight: 700; color: var(--text-dark);}
.onboarding-steps .step-info p {margin: 4px 0 0 0; font-size: var(--text-13); color: var(--text-light); line-height: 1.4;}
.unlock-card h3 {color: #4b2c85;
  font-size: var(--text-22);
  margin: 12px 0 6px 0;
  font-weight: 800;}
.unlock-card p {color: var(--text-light);
  font-size: var(--text-14);
  margin: 0;
  line-height: 1.5;}

.plan-feature-list {list-style: none; padding: 0; margin: 20px 0; display: flex; flex-direction: column; gap: 12px;}
.plan-feature-item {display: flex; align-items: center; gap: 10px; font-size: 14px; }
.plan-feature-item i {color:var(--brand-cyan); font-size: var(--text-14);}
.helpful-card h3 { font-weight: 700;
  font-size: var(--text-18);
  margin: 0 0 16px 0;}
.hr-block {display: flex; flex-direction: column; gap: 14px;}
.hr-link {color: var(--brand-purple); font-weight: 500; font-size: var(--text-15); text-decoration: none; display: flex; align-items: center; gap: 8px;}

.no-review-box {border: 1px solid #e5dbff; border-radius: var(--border-r-12); padding: 40px 24px; text-align: center; background: linear-gradient(180deg, #ffffff 0%, #fcfbff 100%); }
.no-review-box i {font-size: var(--text-32); color: var(--brand-purple); margin-bottom: 20px;}
.no-review-box h4 {
  color: var(--brand-purple);
  font-size: var(--base-text);
  margin: 0 0 6px 0;
  font-weight: 700;
}

.no-review-box p { 
  color: var(--text-light);
  font-size: var(--text-14);
  margin: 0 auto 0;
  line-height: 1.5;
  max-width: 600px;

}

.modal-header-second {background: #fcfbff;}
.doc-upload-area .upload-icon i {font-size: var(--text-28); color: var(--brand-purple); margin-bottom: 5px;}
.doc-upload-area {  background: rgb(248, 249, 250);  border: 2px dashed rgb(206, 212, 218); border-radius:var(--border-r-8)}





/* Responsive */
        @media (max-width: 1200px) {
            .footer-container {
                grid-template-columns: repeat(3, 1fr);
            }

            .newsletter-col {
                grid-column: span 3;
            }
             .categories-grid {
                grid-template-columns: repeat(3, 1fr);
            }
               .locations-panel {
                flex-direction: column;
                text-align: center;
            }

            .locations-graphic {
                flex: none;
                width: 100%;
                margin-bottom: 30px;
            }
        }











  @media (max-width: 1100px) {
            .jobs-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 992px) {
            .hero {
                flex-direction: column;
            }

            .hero-image {
                height: 300px;
                order: -1;
            }

            .hero-image::before {
                background: linear-gradient(0deg, var(--bg-light) 0%, transparent 20%);
            }

            .search-container {
                flex-direction: column;
            }

            .search-group {
                border-right: none;
                border-bottom: 1px solid var(--gray-third);
            }

            .btn-search {
                padding: 15px;
                margin-top: 10px;
            }

            .hero h1 {
                font-size:var(--text-40);
            }
             .app-container {
                flex-direction: column;
                text-align: center;
                padding: 40px 20px;
            }

            .app-content {
                max-width: 100%;
                margin-bottom: 40px;
            }

            .store-buttons {
                justify-content: center;
            }

            .app-visual {
                display: none;
            }
        }
      @media (max-width: 992px) {
            .why-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
   @media (max-width: 850px) {
            .action-grid {
                flex-direction: column;
            }

            .card-seeker {
                border-right: none;
                border-bottom: 1px solid var(--gray-second);
            }

            .action-panel {
                padding: 60px 5%;
            }
        }

         @media (max-width: 768px) {
                .cta-banner {
                flex-direction: column;
                text-align: center;
                gap: 20px;
            }
            .footer-container {
                grid-template-columns: repeat(2, 1fr);
            }

            .newsletter-col {
                grid-column: span 2;
            }
             .why-grid {
                grid-template-columns: 1fr;
            }
        }
        /* Mobile: 1 column */
        @media (max-width: 600px) {
            .section-top {
                flex-direction: column;
                align-items: flex-start;
                gap: 15px;
            }

            .jobs-grid {
                grid-template-columns: 1fr;
            }
             .categories-grid {
                grid-template-columns: repeat(2, 1fr);
            }
             .locations-cards-container {
                grid-template-columns: 1fr;
            }
        }
 @media (max-width: 480px) {
            .footer-container {
                grid-template-columns: 1fr;
            }

            .newsletter-col {
                grid-column: span 1;
            }

            .newsletter-form {
                flex-direction: column;
            }
        }