:root {
  --theme-bg-color: #52b3eb;
  --primary-color: #3B82F6;
  --primary-hover: #2563EB;
  --secondary-color: #10B981;
  --secondary-hover: #059669;
  --accent-color: #F59E0B;
  --accent-hover: #D97706;
  --background-color: #F8FAFC;
  --surface-color: #FFFFFF;
  --surface-hover: #F1F5F9;
  --text-primary: #1E293B;
  --text-secondary: #64748B;
  --text-muted: #94A3B8;
  --text-white: #FFFFFF;
  --border-color: #E2E8F0;
  --border-hover: #CBD5E1;
  --success-color: #10B981;
  --warning-color: #F59E0B;
  --error-color: #EF4444;
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
  --spacing-2xl: 3rem;
  --spacing-3xl: 4rem;
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 1.875rem;
  --font-size-4xl: 2.25rem;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --transition-fast: 150ms ease-in-out;
  --transition-normal: 250ms ease-in-out;
  --transition-slow: 350ms ease-in-out;
}


* {
  text-decoration: none !important;
}

body {
  font-family: "Montserrat" !important;
}

header#main_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  gap: 12px;
  min-width: 0;
}

header#main_header .logo {
  flex-shrink: 0;

}

header#main_header .logo img {
  height: 80px !important;
}


ul.navigaiton {
  display: flex;
  align-items: center;
  gap: 80px;
  margin: 0;
}

ul.navigaiton li {
  list-style: none;
}

ul.navigaiton li a {
  color: #000;
  text-decoration: none;
  transition: all 0.2s linear;
}

ul.navigaiton li a:hover {
  color: #52b3eb;
}

.right_side a {
  color: var(--theme-bg-color);
  text-decoration: none;
}

.right_side .logbutton {
  padding: 8px 20px;
  border: 1px solid var(--theme-bg-color);
  border-radius: 10px;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.right_side {
  display: flex;
  align-items: center;
  gap: 15px;
  min-width: 0;
  flex-shrink: 1;
  justify-content: flex-end;
}

.right_side .notification-bar {
  flex-shrink: 0;
}

.right_side .dropdown {
  min-width: 0;
  max-width: 100%;
}

.right_side a {
  color: var(--theme-bg-color);

  transition: 0.5s !important;
}

.right_side a:hover,
.right_side .signoutbutton:hover {
  background-color: var(--theme-bg-color);
  color: #fff;
}

section.herosec.main-searchsec {
  text-align: center;
  padding: 200px 0;
  background-image: url(../img/mainbg.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  color: white;
}

h1.herotitle {
  font-size: 1rem;
  font-weight: 800;
  font-family: "Archivo" !important;
  color: #52b3eb;
}

h2.herosubtitle {
  font-family: "Archivo";
  font-size: 5rem;
  font-weight: 800;
  text-transform: capitalize;
  color: #ffffff;
}

p.herocontent {
  font-family: "Montserrat";
  font-size: 14px;
  font-weight: 600;
}

.search-bar {
  display: flex;
  align-items: center;
  border: 1px solid #ccc;
  border-radius: 8px;
  overflow: hidden;
  background-color: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  width: fit-content;
  margin: 20px auto;
  padding: 5px 8px;
}

.search-icon {
  padding: 0 15px;
  font-size: 18px;
  color: #333;
}

.search-bar input {
  border: none;
  outline: none;
  padding: 15px 10px;
  font-size: 16px;
  width: 280px;
}

.divider {
  height: 30px;
  width: 1px;
  background-color: #ccc;
  margin: 0 10px;
}

.category-select {
  border: none;
  outline: none;
  background: transparent;
  font-size: 14px;
  color: #333;
  cursor: pointer;
  padding: 0 25px;
}

.dropdown-icon {
  margin-left: 5px;
  font-size: 12px;
}

.search-btn {
  background-color: var(--theme-bg-color);
  border: none;
  color: white;
  padding: 14px 30px;
  cursor: pointer !important;
  font-weight: 600;
  font-size: 16px;
  transition: background 0.3s;
  border-radius: 5px !important;
  margin-left: 20px;
  font-family: "Archivo";
  letter-spacing: 1px;
}

.search-btn:hover {
  background-color: var(--theme-bg-color);
}

p.popular_search_title {
  font-size: 16px;
  font-weight: 600;
  margin-top: 30px;
}

.popular_searchs span {
  border: 1px solid #ffffff;
  padding: 10px 20px;
  display: inline-block;
  margin: 5px;
  border-radius: 5px;
  pointer-events: all;
  cursor: pointer;
}

section.sponcer {
  background-color: var(--theme-bg-color);
  height: 160px;
  align-items: center;
  display: flex;
  position: relative;
  overflow: hidden;
}

.spncer_wraper {
  display: flex;
  justify-content: space-between;
}

section.Gigs {
  text-align: center;
  padding: 60px 0px;
}

.gigs_card {
  box-shadow: 0px 0px 10px #f1f1f1;
  padding: 25px 22px !important;
  border-radius: 10px;
  text-align: left;
}

.gigs_content {
  padding-bottom: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.gigs_content h1 {
  font-family: archivo;
  color: #0e0b33;
  font-size: 3.5rem;
  font-weight: bold;
}

.gigs_content h3 {
  color: #52b3eb;
  font-family: "Archivo";
  font-weight: bold;
  padding-bottom: 40px;
  font-size: 2rem;
  position: relative;
}

.gigs_content h3::before {
  content: "";
  width: 90%;
  height: 3px;
  position: absolute;
  background-color: #52b3eb;
  left: 5%;
  top: 60%;
}

.gigs_content p {
  width: 50%;
  color: #0e0b33;
  font-family: "Montserrat";
  font-weight: 400;
  font-size: 15px;
}

.gigs_card h6 {
  color: #0e0b33;
  font-size: 16px;
  font-weight: bold;
}

.card_icon {
  display: flex;
  align-items: center;
}

.card_icon img {
  width: 30px;
}

.card_prize p,
.card_location p,
.card_icon p {
  margin: 0;
  color: #0e0b33;
  font-weight: 400;
  font-size: 14px;
  padding-left: 10px;
}

.gig_time {
  padding: 25px 0px 20px 0px;
}

a.card_time {
  background-color: #eef7fd;
  padding: 10px 20px;
  text-decoration: none;
  font-family: "Montserrat";
  font-size: 14px;
  font-weight: bold;
  color: #52b3eb;
  border-radius: 10px;
}

a.card_time:hover {
  color: #52b3eb;
}

.gigs_card ul {
  padding-left: 17px;
  margin-bottom: 10px;
}

.gigs_cards li {
  color: #0e0b33;
  font-size: 13px;
  font-family: Montserrat;
  font-weight: 400;
  padding-bottom: 3px;
}

.card_location {
  display: flex;
  align-items: center;
  padding-bottom: 10px;
}

.card_location img {
  width: 20px;
}

.card_prize {
  display: flex;
  align-items: center;
  padding-bottom: 15px;
}

.card_prize img {
  width: 20px;
}

.apply_job {
  display: flex;
  justify-content: space-between;
}

.apply_job a {
  background-color: #52b3eb;
  color: white;
  text-decoration: none;
  font-family: "Montserrat";
  font-weight: bold;
  font-size: 13px;
  padding: 9px 55px;
  border-radius: 7px;
  transition: all 0.3s linear;
}

.apply_job a:hover {
  color: white;
  background-color: #0e0b33;
}

.apply_job img {
  object-fit: contain;
  border: 1px solid #52b3eb;
  border-radius: 10px;
  padding: 6px 10px;
}

.gigs_btn {
  padding-top: 80px;
}

.gigs_btn button {
  border: none;
  background-color: transparent;
}

.gigs_btn a {
  color: #0e0b33;
  text-decoration: none;
  font-family: "Archivo";
  font-weight: bold;
  font-size: 15px;
  border-bottom: 3px solid #0e0b33;
  padding-bottom: 3px;
  transition: all 0.2s linear;
}

.gigs_btn a:hover {
  color: #52b3eb;
}

.career {
  background-image: url(../img/career.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0px 100px !important;
  border-radius: 15px;
}

.career h1 {
  color: white;
  font-weight: bold;
  font-family: "Archivo";
  font-size: 3.5rem;
  width: 55%;
  line-height: 4rem;
}

.career p {
  width: 35%;
  padding: 10px 0px 30px 0px;
}

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

a.con {
  background-color: #52b3eb;
  color: white;
  font-size: 14px;
  font-family: "Archivo";
  font-weight: bold;
  padding: 15px 20px;
  border-radius: 7px;
  border: 1px solid #52b3eb;
  transition: all 0.2s linear;
}

a.con:hover {
  background-color: transparent;
  color: #52b3eb;
}

a.learn {
  background-color: transparent;
  color: #52b3eb;
  font-size: 14px;
  font-family: "Archivo";
  font-weight: bold;
  padding: 15px 20px;
  border-radius: 7px;
  border: 1px solid #52b3eb;
  transition: all 0.2s linear;
}

a.learn:hover {
  background-color: #52b3eb;
  color: white;
  border: 1px solid #52b3eb;
}

section.jobs {
  text-align: center;
  padding: 60px 0px;
}

.jobs_heading {
  padding-bottom: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.jobs_heading h1 {
  font-family: archivo;
  color: #0e0b33;
  font-size: 3.5rem;
  font-weight: bold;
  width: 32%;
  padding-bottom: 10px;
}

.jobs_heading p {
  width: 50%;
  color: #0e0b33;
  font-family: "Montserrat";
  font-weight: 400;
  font-size: 15px;
}

.job_card_img img {
  width: 55px;
}

.job_card {
  display: flex;
  align-items: center;
}

.job_title {
  padding-left: 15px;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 50px;
}

.job_title h5 {
  margin: 0;
  font-family: "Archivo";
  font-weight: bold;
  color: #0e0b33;
  font-size: 24px;
}

.job_title p {
  margin: 0;
  font-family: "Montserrat";
  font-size: 13px;
  font-weight: 400;
  color: #0e0b33;
  opacity: 0.5;
}

.row-two {
  padding-top: 50px;
}

.join {
  background-color: #0e0b33;
  height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 15px;
  align-items: center;
  text-align: center;
}

.join h1 {
  color: white;
  font-weight: bold;
  font-family: "Archivo";
  font-size: 3.5rem;
  width: 75%;
  line-height: 4rem;
}

.join p {
  color: white;
  width: 60%;
  padding: 20px 0px;
}

.join-btn {
  background-color: #52b3eb;
  color: white;
  font-size: 14px;
  font-family: "Archivo";
  font-weight: bold;
  padding: 15px 20px;
  border-radius: 7px;
  border: 1px solid #52b3eb;
  transition: all 0.2s linear;
}

a.join-btn:hover {
  color: #52b3eb;
  background-color: transparent;
}

section.top-users {
  text-align: center;
  padding: 100px 0px;
}

.users_heading {
  padding-bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.users_heading h1 {
  font-family: archivo;
  color: #0e0b33;
  font-size: 3.5rem;
  font-weight: bold;
  padding-bottom: 10px;
}

.users_heading p {
  color: #0e0b33;
  font-family: "Montserrat";
  font-weight: 400;
  font-size: 15px;
}

.user_card {
  box-shadow: 0px 0px 20px #e5e5e5;
  padding: 15px !important;
  border-radius: 10px;
  text-align: left;
}

.user_card_title {
  padding-left: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.user_card_title h6 {
  margin: 0;
  color: #0e0b33;
  font-weight: bold;
  font-size: 16px;
  line-height: 25px;
}

.user_card_title img {
  width: 65px;
}

.user_card_details {
  display: flex;
  justify-content: space-between;
  padding-top: 15px;
}

.employees {
  display: flex;
  align-items: center;
}

.employees img {
  width: 20px;
}

.employees p {
  margin: 0;
  font-family: "Montserrat";
  font-size: 13px;
  color: #0e0b33;
  font-weight: 400;
  opacity: 0.7;
  padding-left: 10px;
}

.user-open_jobs p {
  margin: 0;
  font-family: "Montserrat";
  font-size: 13px;
  color: #0e0b33;
  font-weight: 400;
  opacity: 0.7;
  padding-left: 10px;
}

.users-row-two {
  padding-top: 20px;
}

.uesrs_btn {
  padding-top: 60px;
}

.uesrs_btn button {
  border: none;
  background-color: transparent;
}

.uesrs_btn a {
  color: #52b3eb;
  text-decoration: none;
  font-family: "Archivo";
  font-weight: bold;
  font-size: 15px;
  border-bottom: 3px solid #0e0b33;
  padding-bottom: 3px;
  transition: all 0.2s linear;
}

.uesrs_btn a:hover {
  color: #0e0b33;
}

.user_card_main {
  display: flex;
  align-items: center;
  height: 75px;
}

.user-card_img img {
  width: 70px;
}

.footer-main-wrapper {
  padding-bottom: 50px;
}

.footer-logo-section h1 {
  color: #0e0b33;
  font-family: "Archivo";
  font-weight: bold;
  font-size: 51px;
}

.footer-logo-section p {
  margin: 0;
  color: #0e0b33;
  opacity: 0.7;
  font-family: "Montserrat";
  font-size: 15px;
  width: 64%;
  padding: 5px 0px 30px 0px;
}

.footer-logo-section form {
  border: 1px solid #52b3eb;
  border-radius: 10px;
  height: 55px;
  align-content: center;
  padding: 5px;
  margin-left: 0;
}

.footer-logo-section form input {
  width: 100%;
  border: none;
  color: #0e0b33;
  font-family: "Montserrat";
  font-size: 14px;
  padding-left: 10px;
}

.footer-logo-section form input:focus-visible {
  outline: none;
}

.footer-logo-section form .col-lg-8 {
  align-content: center;
}

.footer-logo-section form .col-lg-4 {
  height: 100%;
  padding: 0;
}

.footer-form-btn {
  height: 100%;
  width: 100%;
  background-color: #52b3eb;
  border: none;
  border-radius: 10px;
  color: white;
  font-family: "Archivo";
  font-weight: bold;
  font-size: 13px;
}

img.footer-logo {
  width: 60px;
  margin: 40px 0px 30px 0px;
}

.footer-logo-section ul {
  padding: 0;
  display: flex;
  gap: 10px;
  margin: 0;
  justify-content: center;
}

.footer-logo-section ul li {
  list-style-type: none;
}

.footer-logo-section ul li img {
  width: 25px;
  transition: all 0.3s linear;
}

.footer-logo-section ul li img:hover {
  transform: scale(1.2);
}

.footer-main {
  padding-bottom: 60px;
  border-bottom: 2px solid #c3c2cc;
  /* height: 420px; */
  text-align: center;
}

.footer-main ul {
  padding: 0;
  margin: 0;
}

.footer-main ul li {
  list-style-type: none;
}

.footer-about {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.footer-services {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.footer-titles {
  color: #0e0b33;
  font-family: "Archivo";
  font-weight: bold;
  font-size: 35px;
}

.footer-jobs {
  height: 100%;
}

ul.pages-link li a {
  font-size: 14px;
  color: #0e0b33;
  font-family: "Montserrat";
  opacity: 0.75;
  transition: all 0.2s linear;
}

ul.pages-link li a:hover {
  color: #52b3eb;
}

ul.pages-link {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 8px;
}

.footer-copyright {
  padding-top: 20px;
}

.copyright p {
  color: #0e0b33;
  opacity: 0.5;
  font-family: "Montserrat";
  font-size: 15px;
}

.copyright-links a {
  color: #0e0b33;
  opacity: 0.5;
  font-family: "Montserrat";
  font-size: 15px;
  transition: all 0.2s linear;
}

.copyright-links a:hover {
  color: #52b3eb;
}

/* Corrected Modern Select2 Dropdown Styling - With Working Search */

/* Main Search Bar Styling */
.search-bar {
  display: flex;
  align-items: center;
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 8px 10px;
  max-width: 700px;
  margin: 40px auto;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  height: 50px;
}

.search-icon {
  font-size: 1.6em;
  padding: 0 15px;
  color: #555;
}

.search-bar .select2-container {
  flex-grow: 1;
  height: 100%;
}

.search-bar .select2-container .select2-selection--single {
  height: 100% !important;
  border: none !important;
  background-color: transparent !important;
  display: flex;
  align-items: center;
  outline: none !important;
}

.search-bar .select2-container--default .select2-selection--single .select2-selection__rendered {
  font-size: 1.1em;
  color: #333;
  line-height: normal !important;
  padding-left: 0 !important;
}

.search-bar .select2-container--default .select2-selection--single .select2-selection__arrow {
  display: none !important;
}

.search-btn {
  /* background-color: #007bff; */
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1.05em;
  font-weight: 500;
  height: 44px;
  padding: 0 30px;
  margin-left: 10px;
  transition: background-color 0.3s;
}


/* MODERN DROPDOWN STYLING - With Working Search */

/* Dropdown container - make it look like a suggestion box */
.select2-dropdown {
  background-color: #ffffff !important;
  border: 1px solid #ddd !important;
  border-radius: 12px !important;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15) !important;
  margin-top: 8px !important;
  overflow: hidden !important;
  z-index: 9999 !important;
}

/* Style the search box inside dropdown - KEEP IT VISIBLE AND FUNCTIONAL */
.select2-search--dropdown {
  padding: 12px !important;
  background-color: #f8f9fa !important;
  border-bottom: 1px solid #e9ecef !important;
}

.select2-search--dropdown .select2-search__field {
  width: 100% !important;
  border: 1px solid #ced4da !important;
  border-radius: 8px !important;
  padding: 10px 12px !important;
  font-size: 1em !important;
  outline: none !important;
  background-color: white !important;
  color: #495057 !important;
}

.select2-search--dropdown .select2-search__field:focus {
  border-color: #80bdff !important;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25) !important;
}

/* Style the results container */
.select2-results {
  padding: 0 !important;
  margin: 0 !important;
}

.select2-results>.select2-results__options {
  max-height: 300px !important;
  overflow-y: auto !important;
  padding: 8px 0 !important;
}

/* Style each option to look like a suggestion */
.select2-results__option {
  padding: 16px 20px !important;
  font-size: 1.05em !important;
  color: #333 !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
  border: none !important;
  margin: 0 !important;
  background-color: transparent !important;
}

/* Hover effect - make it look like modern suggestions */
.select2-results__option--highlighted[aria-selected] {
  background-color: #f8f9fa !important;
  color: #007bff !important;
  font-weight: 500 !important;
}

/* Selected option styling */
.select2-results__option[aria-selected="true"] {
  background-color: #e3f2fd !important;
  color: #1976d2 !important;
  font-weight: 600 !important;
}

/* Add subtle borders between options */
.select2-results__option:not(:last-child) {
  border-bottom: 1px solid #f5f5f5 !important;
}

/* Style for "No results found" message */
.select2-results__message {
  padding: 20px !important;
  color: #666 !important;
  text-align: center !important;
  font-style: italic !important;
}

/* Make sure dropdown appears above other elements */
.select2-container--open .select2-dropdown {
  z-index: 9999 !important;
}

/* Additional styling for better appearance */
.select2-container--default .select2-results__option--disabled {
  color: #999 !important;
}

/* Scrollbar styling for the dropdown */
.select2-results__options::-webkit-scrollbar {
  width: 6px;
}

.select2-results__options::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 3px;
}

.select2-results__options::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 3px;
}

.select2-results__options::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}


.notify-alert .close {
  color: #fff;
}

[dir=rtl] .notify-alert .close {
  right: unset !important;
  left: 10px !important;
}

.notify-alert.alert-light .close {
  color: #2F2F3B;
}

.alert-theme button {
  top: 45px !important;
  right: 20px !important;
  color: var(--theme-deafult);
}

[dir=rtl] .alert-theme button {
  right: unset !important;
  left: 20px !important;
}

.alert-theme span+span+span {
  background-color: #fff;
  color: var(--theme-deafult);
  border-radius: 4px;
  box-shadow: 0 2px 14px -3px rgba(0, 0, 0, 0.2);
}

.alert-theme .close {
  /* color: var(--theme-deafult); */
  color: #000;
}

.alert-theme i {
  padding: 20px;
  padding-right: 0 !important;
  margin-right: 20px !important;
}

.alert-theme .progress {
  margin-top: -2px !important;
  height: 2px;
  width: 100%;
}

.alert-theme .progress .progress-bar {
  background-color: var(--theme-deafult);
}

.alert-copy {
  border: 1px solid var(--theme-deafult);
  line-height: 1;
  display: inline-block;
  width: 300px;
  color: #fff;
  background-color: var(--theme-deafult);
}

.alert-copy .close {
  box-shadow: none;
  color: #fff;
  line-height: 1.4;
  font-weight: 100;
  top: -15px;
}

[dir=rtl] .alert-copy .close {
  right: unset !important;
  left: 10px !important;
}

.alert-copy .close:focus {
  outline: none;
}


.alert-theme button {
  top: 45px !important;
  right: 20px !important;
  color: var(--theme-deafult);
}

[dir=rtl] .alert-theme button {
  right: unset !important;
  left: 20px !important;
}

.alert-theme span+span+span {
  background-color: #fff;
  color: var(--theme-deafult);
  border-radius: 4px;
  box-shadow: 0 2px 14px -3px rgba(0, 0, 0, 0.2);
}

.alert-theme .close {
  /* color: var(--theme-deafult); */
  color: #000;
}

.alert-theme i {
  padding: 20px;
  padding-right: 0 !important;
  margin-right: 20px !important;
}

.alert-theme .progress {
  margin-top: -2px !important;
  height: 2px;
  width: 100%;
}

.alert-theme .progress .progress-bar {
  background-color: var(--theme-deafult);
}

body.dark-only .alert-theme span+span+span {
  border-left: 5px solid var(--theme-deafult);
  background-color: #1d1e26;
  border-radius: 4px;
}

body.dark-only .alert-theme i {
  color: #fff;
  padding: 20px;
  margin-right: 20px !important;
}

.alert-theme button {
  top: 45px !important;
  right: 20px !important;
  color: var(--theme-deafult);
}

[dir=rtl] .alert-theme button {
  right: unset !important;
  left: 20px !important;
}

.alert-theme span+span+span {
  background-color: #fff;
  color: var(--theme-deafult);
  border-radius: 4px;
  box-shadow: 0 2px 14px -3px rgba(0, 0, 0, 0.2);
}

.alert-theme .close {
  /* color: var(--theme-deafult); */
  color: #000;
}

.alert-theme i {
  padding: 20px;
  padding-right: 0 !important;
  margin-right: 20px !important;
}

.alert-theme .progress {
  margin-top: -2px !important;
  height: 2px;
  width: 100%;
}

.alert-theme .progress .progress-bar {
  background-color: var(--theme-deafult);
}

body.dark-only .alert-theme span+span+span {
  border-left: 5px solid var(--theme-deafult);
  background-color: #1d1e26;
  border-radius: 4px;
}

body.dark-only .alert-theme i {
  color: #fff;
  padding: 20px;
  margin-right: 20px !important;
}


@keyframes backgroundShift {

  0%,
  100% {
    transform: scale(1) rotate(0deg);
  }

  50% {
    transform: scale(1.1) rotate(5deg);
  }
}

/* Header Section - Updated Colors */
.service-header {
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.95) 0%, rgba(51, 65, 85, 0.95) 100%);
  backdrop-filter: blur(20px);
  color: white;
  padding: 20px 0;
  text-align: center;
  position: relative;
  border-radius: 0 0 50px 50px;
  margin-bottom: 40px;
  box-shadow: 0 20px 60px rgba(30, 41, 59, 0.3);
}

.service-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="stars" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23stars)"/></svg>');
  animation: twinkle 10s linear infinite;
}

@keyframes twinkle {

  0%,
  100% {
    opacity: 0.3;
  }

  50% {
    opacity: 0.8;
  }
}

.service-image-container {
  margin-bottom: 50px;
  position: relative;
}

.service-image-container img {
  max-height: 350px;
  border-radius: 25px;
  box-shadow: 0 30px 60px rgba(30, 41, 59, 0.4);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border: 3px solid rgba(255, 255, 255, 0.2);
}

.service-image-container img:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 40px 80px rgba(30, 41, 59, 0.5);
}

.service-header h1 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 25px;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
  0% {
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
  }

  100% {
    filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.6));
  }
}

.service-header p {
  font-size: 1.1rem;
  opacity: 0.95;
  max-width: 700px;
  margin: 0 auto;
  font-weight: 300;
}

/* Card Styling - Updated Colors */
.card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 30px;
  box-shadow: 0 20px 40px rgba(30, 41, 59, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  position: relative;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #3b82f6 0%, #1d4ed8 50%, #6366f1 100%);
  animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(30, 41, 59, 0.15);
  border-color: rgba(59, 130, 246, 0.3);
}

.card-header {
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  color: white;
  padding: 30px 40px;
  border: none;
  font-weight: 700;
  font-size: 1.3rem;
  position: relative;
  overflow: hidden;
}

.card-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  animation: cardHeaderShine 3s infinite;
}

@keyframes cardHeaderShine {
  0% {
    left: -100%;
  }

  100% {
    left: 100%;
  }
}

.card-header.bg-success {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.card-header.bg-info {
  background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
}

.card-body {
  padding: 30px;
  position: relative;
}

/* Questionnaire Styling - Updated Colors */
.form-group {
  margin-bottom: 25px;
  position: relative;
}

.form-label {
  font-weight: 700;
  font-size: 1.2rem;
  color: #1e293b;
  margin-bottom: 10px;
  display: block;
  position: relative;
}

.form-label::after {
  /* content: ''; */
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #3b82f6, #1d4ed8);
  border-radius: 2px;
}

/* Custom Radio Buttons - Updated Colors */
.form-check {
  margin-bottom: 16px;
  padding: 10px;
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  transition: all 0.2s ease;
  cursor: pointer;
  background: white;
  position: relative;
}

.form-check:hover {
  border-color: #3b82f6;
  background-color: #f8fafc;
}

.form-check-input[type="radio"] {
  appearance: none;
  width: 24px;
  height: 24px;
  border: 3px solid #e2e8f0;
  border-radius: 50%;
  background: white;
  margin-right: 16px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.form-check-input[type="radio"]:checked {
  border-color: #3b82f6;
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.form-check-input[type="radio"]:checked::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  background: white;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: radioCheck 0.3s ease-out;
}

@keyframes radioCheck {
  0% {
    transform: translate(-50%, -50%) scale(0);
  }

  100% {
    transform: translate(-50%, -50%) scale(1);
  }
}

.form-check-input[type="radio"]:hover {
  border-color: #3b82f6;
  transform: scale(1.05);
}

/* Custom Checkboxes - Updated Colors */
.form-check-input[type="checkbox"] {
  appearance: none;
  width: 24px;
  height: 24px;
  border: 3px solid #e2e8f0;
  border-radius: 8px;
  background: white;
  margin-right: 16px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.form-check-input[type="checkbox"]:checked {
  border-color: #3b82f6;
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.form-check-input[type="checkbox"]:checked::after {
  content: 'âœ“';
  position: absolute;
  top: 50%;
  left: 50%;
  color: white;
  font-size: 14px;
  font-weight: bold;
  transform: translate(-50%, -50%);
  animation: checkboxCheck 0.3s ease-out;
}

@keyframes checkboxCheck {
  0% {
    transform: translate(-50%, -50%) scale(0) rotate(180deg);
  }

  100% {
    transform: translate(-50%, -50%) scale(1) rotate(0deg);
  }
}

.form-check-input[type="checkbox"]:hover {
  border-color: #3b82f6;
  transform: scale(1.05);
}

.form-check-input:checked+.form-check-label {
  color: #3b82f6;
  font-weight: 600;
}

.form-check-input:checked {
  background-color: #3b82f6;
  border-color: #3b82f6;
}

.form-check-label {
  font-size: 1.1rem;
  color: #475569;
  cursor: pointer;
  font-weight: 600;
  line-height: 1.6;
  transition: color 0.3s ease;
  position: relative;
  margin-left: 10px;
}

.form-check-label:hover {
  color: #3b82f6;
}

/* Input Field Styling - Updated Colors */
.form-control,
.form-select {
  border: 3px solid #e2e8f0;
  border-radius: 20px;
  padding: 13px 16px;
  font-size: 1.1rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 500;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.form-control:focus,
.form-select:focus {
  border-color: #3b82f6;
  box-shadow: 0 0 0 6px rgba(59, 130, 246, 0.15), 0 12px 30px rgba(59, 130, 246, 0.2);
  outline: none;
  transform: translateY(-2px);
  background: white;
}

.form-control::placeholder {
  color: #94a3b8;
  font-weight: 400;
}

/* Textarea Styling */
textarea.form-control {
  resize: vertical;
  min-height: 140px;
}

/* Button Styling - Updated Colors */
.btn {
  font-weight: 700;
  border-radius: 20px;
  padding: 20px 40px;
  font-size: 1.1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  color: white;
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
}

.btn-primary:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(59, 130, 246, 0.6);
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
}

.btn-outline-success {
  border: 3px solid #10b981;
  color: #10b981;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
}

.btn-outline-success:hover {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(16, 185, 129, 0.4);
}

/* Service Summary Sidebar - Updated Colors */
.question-item {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(29, 78, 216, 0.05) 100%);
  border: 2px solid rgba(59, 130, 246, 0.1);
  border-radius: 20px;
  padding: 10px;
  margin-bottom: 0px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.question-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(135deg, #52b3eb 0%, #a2d7f7 100%);
  border-radius: 2px 0 0 2px;
}

.question-item:hover {
  border-color: rgba(59, 130, 246, 0.3);
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.15);
  transform: translateX(5px);
}

.question-label {
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 5px;
  font-size: 1rem;
}

.question-response {
  color: #64748b;
  font-size: 0.95rem;
  font-weight: 500;
}

/* Service Summary Details - Updated Colors */
.service-summary-details {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(29, 78, 216, 0.05) 100%);
  border-radius: 20px;
  padding: 30px;
  margin-top: 30px;
  border: 2px solid rgba(59, 130, 246, 0.1);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid rgba(59, 130, 246, 0.1);
  transition: all 0.3s ease;
}

.summary-row:hover {
  background: rgba(59, 130, 246, 0.05);
  border-radius: 10px;
  padding-left: 10px;
  padding-right: 10px;
}

.summary-row:last-child {
  border-bottom: none;
  font-weight: 700;
  font-size: 1.2rem;
}

.badge {
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.bg-warning {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%) !important;
  color: white;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.text-success {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
}

/* Sticky Sidebar */
.sticky-top {
  /* top: 30px; */
}

/* Responsive Design */
@media (max-width: 768px) {
  .service-header {
    padding: 60px 0;
    border-radius: 0 0 30px 30px;
  }

  .service-header h1 {
    font-size: 2.2rem;
  }

  .service-header p {
    font-size: 1rem;
  }

  .row {
    gap: 30px;
  }

  .card-body {
    padding: 25px;
  }

  .sticky-top {
    position: relative !important;
    top: auto !important;
  }

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

/* Loading States */
.loading {
  opacity: 0.6;
  pointer-events: none;
}

/* Animation for smooth interactions */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.card {
  animation: fadeInUp 0.8s ease-out;
}

.card:nth-child(2) {
  animation-delay: 0.2s;
}

.card:nth-child(3) {
  animation-delay: 0.4s;
}

/* Focus states for accessibility */
.form-check-input:focus,
.btn:focus {
  outline: 3px solid rgba(59, 130, 246, 0.5);
  outline-offset: 3px;
}

/* Custom scrollbar - Updated Colors */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: rgba(241, 245, 249, 0.5);
  border-radius: 6px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #52b3eb 0%, #a2d7f7 100%);
  border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #3497d1 0%, #84c8f1 100%);
}

.cbackground {
  background: linear-gradient(135deg, #52b3eb 0%, #bfc4cd 100%) !important;
}

.card-header {
  background: linear-gradient(135deg, #52b3eb 0%, #a2d7f7 100%) !important;
  color: var(--text-white);
  padding: var(--spacing-lg);
  border-bottom: none;
}

.cbackground .card-body {
  padding: 2rem;
}

/* Cards */
.cbackground .card {
  background: var(--surface-color);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  overflow: hidden;
  transition: all var(--transition-normal);
}

.cbackground .card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.cbackground .card-header {
  background: linear-gradient(135deg, #52b3eb 0%, #a2d7f7 100%) !important;
  color: var(--text-white);
  padding: var(--spacing-lg);
  border-bottom: none;
}

.cbackground .card-title {
  font-size: var(--font-size-lg);
  font-weight: 600;
  margin: 0;
  display: flex;
  align-items: center;
}

.cbackground .card-icon {
  margin-right: var(--spacing-sm);
  font-size: 1.2em;
}

/* NOTIFICATION BAR */



.notification-bar {
  display: flex;
  justify-content: center;
  gap: 15px;
  align-items: center;
}

.notification-item {
  position: relative;
  display: inline-block;
}

.notification-icon {
  position: relative;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.bell-icon,
.message-icon {
  background: linear-gradient(135deg, #52b3eb 0%, #95d1f5 100%);
  color: #ffffff;
}

.notification-icon:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.notification-badge {
  position: absolute;
  top: -11px;
  right: -8px;
  background: #e74c3c;
  color: white;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
  border: 3px solid white;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

.notification-bar .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  width: 320px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
  margin-top: 15px;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.notification-bar .dropdown-menu::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid white;
}

.notification-bar .dropdown-menu {
  width: 300px;
}

.notification-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.notification-bar .dropdown-header {
  padding: 20px 20px 15px;
  border-bottom: 1px solid #f0f0f0;
  display: flex !important;
  justify-content: space-between;
  align-items: center;
}

.notification-bar .dropdown-header h3 {
  font-size: 18px;
  font-weight: 600;
  color: #333;
}

.notification-count {
  font-size: 12px;
  color: #666;
  background: #f8f9fa;
  padding: 4px 8px;
  border-radius: 12px;
}

.dropdown-content {
  max-height: 300px;
  overflow-y: auto;
}

.notification-item-dropdown {
  display: flex;
  align-items: flex-start;
  padding: 15px 20px;
  border-bottom: 1px solid #f8f9fa;
  transition: background-color 0.2s ease;
}

.notification-item-dropdown:hover {
  background-color: #f8f9fa;
}

.notification-item-dropdown:last-child {
  border-bottom: none;
}

.notification-item-dropdown.urgent {
  background-color: #fff5f5;
  border-left: 3px solid #e74c3c;
}

.notification-avatar {
  margin-right: 12px;
  flex-shrink: 0;
}

.notification-bar .avatar-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #52b3eb 0%, #95d1f5 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
}

.notification-bar .avatar-circle.alert {
  background: #fff2e6;
  font-size: 18px;
}

.notification-text {
  flex: 1;
  text-align: left;
}

.notification-text p {
  margin: 0 0 4px 0;
  font-size: 14px;
  color: #333;
}

.notification-text strong {
  font-weight: 600;
}

.message-preview {
  display: block;
  font-size: 13px;
  color: #666;
  margin: 2px 0 4px 0;
  line-height: 1.3;
}

.notification-time {
  font-size: 12px;
  color: #999;
}

.notification-bar .dropdown-footer {
  padding: 15px 20px;
  border-top: 1px solid #f0f0f0;
  text-align: center;
}

.view-all-link {
  color: #667eea;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s ease;
}

.view-all-link:hover {
  color: #764ba2;
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {


  .notification-bar {
    gap: 20px;
  }

  .notification-icon {
    width: 50px;
    height: 50px;
  }

  .dropdown-menu {
    width: 280px;
  }


}

/* Custom scrollbar for dropdown content */
.dropdown-content::-webkit-scrollbar {
  width: 4px;
}

.dropdown-content::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 2px;
}

.dropdown-content::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 2px;
}

.dropdown-content::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}

/* Smooth entrance animation for dropdown items */
.notification-item:hover .notification-item-dropdown {
  animation: slideInUp 0.3s ease forwards;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Add staggered animation delay for multiple items */
.notification-item:hover .notification-item-dropdown:nth-child(1) {
  animation-delay: 0.1s;
}

.notification-item:hover .notification-item-dropdown:nth-child(2) {
  animation-delay: 0.2s;
}

.notification-item:hover .notification-item-dropdown:nth-child(3) {
  animation-delay: 0.3s;
}

.mobilemenue {
  display: none;
}

/* ====== Hamburger Button ====== */
.hamburger {
  width: 30px;
  height: 20px;
  position: relative;
  cursor: pointer;
  display: none;
  /* hidden on desktop */
}

.hamburger span {
  background: #000000;
  position: absolute;
  width: 100%;
  height: 3px;
  left: 0;
  transition: 0.3s;
}

.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2) {
  top: 8px;
}

.hamburger span:nth-child(3) {
  top: 16px;
}

/* Animation when active */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 8px;
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg);
  top: 8px;
}


@media (max-width: 1600px) {
  h2.herosubtitle {
    font-size: 3.5rem;
  }
}

@media (max-width: 1440px) {}

@media (max-width: 1366px) {
  .ZNIPy {
    grid-template-columns: 30% 60% !important;
  }

  .contactinnercard ul li {
    font-size: 12px;
  }
}

@media (max-width: 1280px) {}

@media (max-width: 1199px) {}

@media (max-width: 1024px) {
  .mobilemenue {
    display: block;
  }

  nav.navigationmenue.active ul.navigaiton {
    flex-direction: column;
    justify-content: center;
    position: relative;
    height: 100%;
    align-items: center;
    padding: 0;
  }

  nav.navigationmenue.active {
    position: fixed;
    right: 0;
    background-color: #fff;
    height: 100vh;
    width: 300px;
    display: flex;
    justify-content: center;
    text-align: center;
    z-index: 999;
  }

  nav.navigationmenue {
    position: fixed;
    right: -100%;
    background-color: #fff;
    height: 100vh;
    width: 300px;
    top: 0;
  }

  .hamburger {
    display: block;
    z-index: 99999;
  }

  nav.active {
    display: flex;
    animation: slideDown 0.3s ease;
  }

  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .about-section {
    overflow: hidden !important;
  }
}

button.mobile-closebutton,
button.sidebaropenbutton {
  display: none;
}

@media (max-width: 991px) {
  .dash-sidebar ul.dash-nav-menu {
    padding: 0 20px !important;
  }

  .dash-sidebar {
    background-color: #fff !important;
    height: 100vh;
    top: 0 !important;
    padding-top: 50px !important;
    z-index: 999999 !important;
    position: fixed;
  }

  .dash-sidebar.active {
    right: 0 !important;
    transform: none !important;
  }

  .dash-sidebar {
    border: 0px !important;
  }

  button.mobile-closebutton {
    display: block;
    position: absolute;
    right: 15px;
    top: 0px;
    background-color: transparent;
    border: 0;
    font-size: 30px;
  }

  button.sidebaropenbutton {
    display: block;
    width: 30px;
    height: 30px;
    overflow: hidden;
    position: absolute;
    right: -20px;
    background-color: transparent;
    border: 0;
    top: 90px;
    background-color: #59b6ec !important;
    border-radius: 5px;
  }

  button.sidebaropenbutton svg#Capa_1 {
    width: 30px;
    height: 25px;
    fill: #fff;
  }

  .dataTables_wrapper {
    overflow: scroll;
  }
}

@media (max-width: 800px) {}

@media (max-width: 768px) {}

@media (max-width: 690px) {
  section.herosec.main-searchsec {
    padding: 50px 0;
  }

  .search-bar {
    width: 100%;
    position: relative;
    height: 45px;
  }

  .jobs_heading h1 {
    font-size: 2rem;
    width: 100%;
  }

  .gigs_content h1 {
    font-size: 2rem;
  }

  .gigs_content p {
    width: 100%;
  }

  .gigs_content {
    padding-bottom: 0;
  }

  .career h1 {
    font-size: 2rem;
    width: 100%;
    line-height: 1;
  }

  .career {
    padding: 0px 20px !important;
  }

  .career p {
    width: 100%;
    padding: 10px 0px 30px 0px;
  }

  .gigs_btn {
    padding-top: 0;
  }

  .popular_searchs span {
    padding: 5px 10px;
    margin: 3px 2px;
    font-size: 12px;
  }

  .jobs_heading p {
    width: 100% !important;
  }

  .jobs_heading {
    padding-bottom: 10px;
  }

  .join h1 {
    font-size: 1.5rem;
    width: 100%;
    line-height: 1;
  }

  .join p {
    width: 100%;
    padding: 10px 0px;
  }

  .footer-copyright {
    padding-top: 20px;
    gap: 0 !important;
    text-align: center !important;
  }

  .copyright-links.text-end {
    text-align: center !important;
  }

  .sec-title h2 {
    font-size: 22px !important;
  }

  .about-section .content-column .inner-column {
    position: relative;
    padding-left: 0 !important;
  }

  .about-section .sec-title {
    margin-bottom: 0px !important;
  }

  .about-section {
    position: relative;
    padding: 70px 0 0 !important;
  }
}

@media (max-width: 580px) {
  h2.herosubtitle {
    font-size: 2.5rem;
  }
}

.apexcharts-datalabels-group text:first-child {
  display: none;
}

@media (max-width: 480px) {
  .search-btn {
    font-size: 0.9em;
    padding: 0 15px;
    position: absolute;
    right: 10px;
    height: 35px;
  }

  .search-bar .select2-container--default .select2-selection--single .select2-selection__placeholder {
    font-size: 12px;
  }
}

@media (max-width: 414px) {
  .right_side .logbutton {
    padding: 8px 8px;
    border: 1px solid var(--theme-bg-color);
    border-radius: 10px;
    font-size: 12px;
  }
}

@media (max-width: 375px) {}

@media (max-width: 360px) {}