/* global usage  */

:root {
  --primary-color: #4e00c2;
  --accent-color: #00c3ff;

  --bg-dark: #090029;
  --bg-light: #f9f9f9;
  --bg-warning: #fff4e5;
  --success-light: #d1f4de;
  --success: #00B768;
  --warning: #ffc107;
  --danger: #dc3545;

  

  --text-color: #333;
  --text-muted: #888;
  --text-light: #fff;
  --text-heading: #1a1a1a;

  --font-main: 'Inter', sans-serif;

  --radius: 12px;
  --shadow-sm: 0 2px 6px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 10px rgba(0, 0, 0, 0.08);
}

/* Reset */
body {
  font-family: var(--font-main);
    -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale !important;
  margin: 0;
  padding: 0;
  color: var(--text-color);
  background-color: #fff;
  height: 100vh;
}

/* form input control */

.form-control {
  padding: 12px 15px !important;
  border-radius: var(--radius) !important;

}

.form-select{

    padding: 12px 15px !important;
  border-radius: var(--radius) !important;
}



.selection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Always 3 per row */
  gap: 16px;
  width: 100%;
  max-width: 980px;
}

.select-wrapper {
  width: 100%;
}

.form-select {
  width: 100%; /* Make select fill its cell */
}



/* Style the Select2 visible box */
.select2-container--default .select2-selection--single {
  height: 48px !important;
  padding: 10px 15px !important;
  border-radius: var(--radius);
  border: 1px solid #ced4da;
  display: flex;
  align-items: center;
  font-size: 1rem;
  background-color: #fff;
}

/* Fix the selected text inside */
.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 1.5 !important;
  padding-left: 0 !important;
}

/* Fix the dropdown arrow alignment */
.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 100% !important;
  top: 0 !important;
  right: 10px;
}




/* global buttons */

.btn-gradient {
  background: linear-gradient(to right, var(--primary-color), var(--accent-color));
  color: white;
  padding: 12px 15px !important;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  text-decoration: none;
  border: none !important;
  padding: 0 20px;
  
  /* Add transition for smooth animation */
  transition: background 0.4s ease, color 0.4s ease;
}

.btn-gradient:hover {
  background: linear-gradient(to left, var(--primary-color), var(--accent-color));
  color: var(--bg-light);
    transform: scale(1.02);

}



.btn-border {
  background: transparent !important;
  color: var(--text-heading);
  border: solid 1px var(--text-color) !important;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: var(--radius);
  text-decoration: none;
    padding: 0 20px;


}


.btn-waring {
  background: transparent !important;
  color: var(--text-heading);
  border: solid 1px var(--text-color) !important;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: var(--radius);
  text-decoration: none;

}


.btn-primary{

  background-color: var(--primary-color) !important;
  border: none !important;
}




.tab-wrapper .nav-tabs {
  scrollbar-width: none; /* Firefox */
}

.tab-wrapper .nav-tabs::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

.tab-wrapper .nav-link {
  white-space: nowrap;
}

/* Hide scrollbar but allow horizontal scroll */
.tab-wrapper .overflow-auto {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;     /* Firefox */
}

.tab-wrapper .overflow-auto::-webkit-scrollbar {
  display: none;             /* Chrome, Safari, Opera */
}


@media (max-width: 576px) {
  .nav-tabs .nav-link {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    font-size: 0.85rem;
  }
}





/* =======================end global====================== */


/* =========================login ======================== */


@media (min-width: 768px) {
  #left-panel {
    width: 50% !important;
  }
}



/* =========================== end login ================== */


/* ========================start dashbaord ======================= */



/* Center the tabs horizontally */
#jobTabs {
  display: flex;
  justify-content: center;
  border-bottom: none;
  gap: 20px;
}

/* Customize the tab buttons */
#jobTabs .nav-link {
  color: #888;
  font-weight: 400;
  border: none;
  background: none;
  position: relative;
  padding-bottom: 8px;
}

/* Active tab style */
#jobTabs .nav-link.active {
  color: #10002B;
  font-weight: 600;
}

/* Active tab underline (gradient line) */
#jobTabs .nav-link.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  border-radius: 1px 1px 0 0;
  background: linear-gradient(to right, #3a0ca3, #00b4d8);
}

/* Optional: remove Bootstrap's default border */
.nav-tabs .nav-link:focus, .nav-tabs .nav-link:hover {
  border: none;
  outline: none;
}




/* ====================== end dashbaord====================================== */




/* candidate detail page  */



.bg-success-light {
  background-color: rgba(25, 135, 84, 0.1); /* soft green */
  color: #00B768;
}
.bg-warning-light {
  background-color: rgba(255, 193, 7, 0.1);
  color: #ffc107;
}
.bg-danger-light {
  background-color: rgba(220, 53, 69, 0.1);
  color: #dc3545;
}







/* end candidate detail page  */

/* Logo */
.logo {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 50px;
  color: var(--primary-color);
  position: absolute;
  top: 0.8rem;
  left: 0.8rem;
}


.google-login{

  margin-top: 30px;
  border-top: solid 1px #ececec;
  padding-top: 30px;
}


.btn-google {
  border: 1px solid #ccc;
  background-color: #fff;
  color: var(--text-color);
}



.right-panel {
  flex: 1;
  background-color: var(--bg-dark);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: auto;
  padding-top: 0px 30px 30px 30px;
}


/* right ticker */


.ticker-wrapper {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem; /* space between tickers */
  overflow: hidden;
}

.ticker {
  
  overflow: hidden;
  position: relative;
}

.ticker-track {
  display: flex;
  flex-direction: column;
  animation: scroll-up 12s linear infinite;
}

.ticker-2 .ticker-track {
  animation-duration: 18s; /* slower scroll */
}

.ticker img {
  width: 180px;
  margin-bottom: 1rem;
  object-fit: contain;
}

@keyframes scroll-up {
  0% {
    transform: translateY(0%);
  }
  100% {
    transform: translateY(-50%);
  }
}



.right-content{

  padding: 50px 120px;
}

/* ==================end auth screens============== */



/*============== global navbar =================*/

.navbar-logo {
  height: 40px;
}


/*================ end global navbar ==============*/



/*============== global search area ================== */

.search-area{

box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 0;

}


.search-area-dashboard{

  justify-content: center;
  align-items: center;
  padding: 60px 0;
  margin-top: 60px;

}



/* ========================================= end global search are======================================= */


/*===============================job without verify ====================================================== */

.banner-alert{

  margin-top: 80px !important;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
}





/* Job Cards */
.job-card {
  border: 1px solid #eee;
  border-radius: var(--radius);
  transition: 0.2s;
}
.job-card:hover {
  box-shadow: 0 0 12px rgba(0,0,0,0.08);
}



.btn-light-success {
  background-color: var(--success-light) !important;
  color: var(--success) !important;
  border: none;
  font-size: 0.85rem;
  border-radius: var(--radius);

}

.btn-light-success:hover{

  background-color: var(--success) !important;
  color: var(--bg-light) !important;

}


/* Card Grid */
/* .card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 400px;
  width: 100%;
}

.card-grid img {
  width: 100%;
  border-radius: var(--radius);
} */





/*=============== onboarding =================== */


.icon-div{

  background-color: #F4F4F4;
  padding: 50px 0;
  

}


  .step-bar {
  height: 4px;
  border-radius: 4px;
  background-color: rgba(42, 31, 188, 0.2); /* Purple with low opacity */
}


.step-bar.active {
  background: linear-gradient(to right, #00c6ff, #0072ff);
  background-color: unset; /* remove fallback if needed */
}


  .bg-gradient {
    background: linear-gradient(to right, #00c6ff, #0072ff);
  }

  .bg-purple {
    background-color: #2a1fbc; /* Match the reference purple */
  }


/* pricing */



/* pricing.css */

.pricing-section {
  padding: 2rem 0;
}

.custom-card {
  background-color: #fff;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.06);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.custom-card ul {
  list-style: none;
  padding-left: 0;
  margin: 1rem 0;
}

.custom-card ul li {
  margin-bottom: 0.75rem;
  position: relative;
  padding-left: 1.5rem;
}

.custom-card ul li::before {
  content: "✔";
  color: #198754;
  position: absolute;
  left: 0;
}

.price {
  font-size: 2.5rem;
}

.featured-card {
  background: linear-gradient(135deg, #007bff, #6610f2);
  color: white;
}

.card-header {
  padding-bottom: 1rem;
}

.separator {
  border-bottom: 1px solid #dee2e6;
  margin-bottom: 1rem;
}

.separator-white {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}




/* dashboard */


    .tab-wrapper {
  width: 100%;
  background: #fff;
  display: flex;
  justify-content: center;
  border: none;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.05); /* Light shadow only at the bottom */
}


    .nav-tabs {
      border-bottom: none;
    }

    .nav-tabs .nav-link {
      border: none;
      border-radius: 0;
      color: #333;
    }

    .nav-tabs .nav-link.active {
      border-bottom: 3px solid #007bff;
      font-weight: 500;
      color: #007bff;
    }


    .job-card {
        background-color: #f8f9fa; /* Bootstrap's bg-light */
        border-radius: 12px;
        transition: all 0.2s ease;
        cursor: pointer;
      }

      .job-card:hover {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
      }

      .job-card.active {
        background-color: #fff; /* Bootstrap's bg-light */
        border: 1px solid #e0e0e0;
      }


    .job-detail {
      border: 1px solid #ddd;
      padding: 16px;
      background-color: #fff;
      margin-bottom: 16px;
      box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px;
    }


    .btn-outline-dark {
      border-color: #ccc;
      color: #333;
      font-size: 0.85rem;
    }

    .btn-outline-dark:hover {
      background-color: #f1f1f1;
    }



    .border-success {
        border-color: var(--success) !important;
      }

      .border-warning {
        border-color: var(--warning) !important;
      }

      .border-danger {
        border-color: var(--danger) !important;
      }

      .bg-success-light {
        background-color: var(--success-light) !important;
        color: var(--success) !important;
      }
      .bg-warning-light {
        background-color: #fff3cd !important;
        color: var(--warning) !important;
      }
      .bg-danger-light {
        background-color: #f8d7da !important;
        color: var(--danger) !important;
      }


      .upgrade{

        background-color: var(--success-light);
        width: fit-content;
        color: var(--success);
        text-decoration: none;
        text-align: center;
      }



      .sidebar-menu .menu-btn {
        display: block;
        width: 100%;
        text-align: left;
        padding: 10px 16px;
        background-color: white;
        border: none;
        border-radius: 8px;
        color: #6c757d; /* muted text */
        font-size: 15px;
        margin-bottom: 10px;
        transition: background-color 0.3s, color 0.3s;
      }

      .sidebar-menu .menu-btn:hover {
        background-color: var(--primary-color);
        color: white;
      }


      .custom-card {
          background-color: #fff;
          border-radius: 12px;
          font-family: 'Inter', sans-serif;
        }

        .section-title {
          font-size: 12px;
          font-weight: 600;
          color: #6c757d;
          text-transform: uppercase;
          margin-bottom: 6px;
        }

        .skill-tag {
          display: inline-block;
          background-color: #f5f5f5;
          color: #000;
          border-radius: 20px;
          padding: 6px 12px;
          font-size: 13px;
          font-weight: 500;
        }

       
        
/* Base track style */
.custom-range {
  -webkit-appearance: none;
  width: 100%;
  height: 8px;
  border-radius: 5px;
  background: linear-gradient(to right, #0d6efd 0%, #dee2e6 0%);
  outline: none;
  
}

/* Thumb for Chrome/Safari */
.custom-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  background: #0d6efd;
  border-radius: 50%;
  cursor: pointer;
  border: none;
  margin-top: -6px; /* align thumb with track */
}

/* Thumb for Firefox */
.custom-range::-moz-range-thumb {
  width: 20px;
  height: 20px;
  background: #0d6efd;
  border-radius: 50%;
  cursor: pointer;
  border: none;
}





/* ======================= dashboard area ======================== */






/* ================= start profile area======================== */
.custom-tab-wrapper .nav-tabs .nav-link.active {
  position: relative;
  background: linear-gradient(to right, var(--primary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent; /* fallback */
  font-weight: 500;
  border-color: transparent !important;
}

/* Gradient underline */
.custom-tab-wrapper .nav-tabs .nav-link.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 100%;
  background: linear-gradient(to right, var(--primary-color), var(--accent-color));
  border-radius: 2px;
}



/* time line */

.accordion {
  --bs-accordion-border-width: 0;
  --bs-accordion-border-radius: 0;
  --bs-accordion-inner-border-radius: 0;
  float: left;
  border-left: 0 !important;
  border-top: 0 !important;
  border-bottom: 0 !important;
}

.bs-timeline {
  max-width: 600px;
  margin: 0 auto;
}

.accordion-item {
  border-radius: 0;
  padding-left: 25px;
  position: relative;
   /* Remove all borders first */
  border: none;

  /* Add only left border */
  border-left: 1.5px solid DimGrey;
}

.accordion-button {
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding-left: 15px;
}

.accordion-button::after {
  display: none !important;
}


#tl-btn-1-thin::before,
#tl-btn-2-thin::before,
#tl-btn-3-thin::before {
  content: "";
  display: block;
  position: absolute;
  width: 22px;
  height: 22px;
  left: -38px;
  border: 3px solid White;
  outline: 1px solid DimGrey;
  background-color: White;
  border-radius: 50%;
  transition: all 0.25s ease;
}

/* Custom open states — use any color system here */
#tl-btn-1-thin::before {
  background-color: DodgerBlue;
  outline-color: DodgerBlue;
}

#tl-btn-2-thin::before {
 background-color: DodgerBlue;
  outline-color: DodgerBlue;
}

#tl-btn-3-thin::before {
   background-color: DodgerBlue;
  outline-color: DodgerBlue;
}


.table-payment{

  border-bottom: none !important;
}


  .is-warning {
    border-color: #ffc107 !important;
    background-color: #fff8e1 !important;
  }

  .pending-note {
    font-size: 0.875rem;
    color: #ffc107;
    margin-top: 4px;
    display: block;
  }


/* =============== end profile=========================== */


/* Welcome Section */
.welcome-text {
  margin-top: 30px;
}
.welcome-text p {
  color: #ccc;
}

/* Light Background Cards */
.bg-light-success {
  background-color: var(--success-light);
}

/* PRICING PAGE STYLES */

h2.text-heading {
  color: var(--text-heading);
}

/* Colored Bars Above Title */
.bar {
  width: 40px;
  height: 4px;
  border-radius: 2px;
}

.bg-gradient {
  background: linear-gradient(to right, var(--primary-color), var(--accent-color));
}



/* Job Card Styles (used on left list) */
.job-card {
  padding: 15px;
  margin-bottom: 15px;
  background: #fff;
}

.job-card .badge-success {
  background-color: var(--success-light);
  color: green;
  font-size: 12px;
  padding: 4px 8px;
  border-radius: var(--radius);
}

/* Job Detail Styles */
.job-detail {
  padding: 20px;
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: var(--radius);
}

