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

html, body {
  height: 100%;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #f5f5f5;
  background: transparent; /* Changed to transparent to show particles */
  overflow-x: hidden;
  font-weight: 500;
  min-height: 100vh;
}

#particles-js {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #201d3a 0%, #1a1730 50%, #0d0b1a 100%); /* Moved gradient here */
  z-index: -1;
  pointer-events: none;
}
/* Header Styles */
.header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    padding: 0 20px;
    backdrop-filter: blur(15px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(76, 182, 159, 0.2);
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 24px;
    font-weight: bold;
    background: linear-gradient(to left, #4cb69f, #f5f5f5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.logo i {
    font-size: 28px;
    color: #4cb69f;
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    background: linear-gradient(to left, #4cb69f, #f5f5f5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    background: linear-gradient(to left, #f5f5f5, #4cb69f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.nav-links a:hover::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: #4cb69f;
    border-radius: 1px;
}

.user-menu {
    display: flex;
    align-items: center;
    gap: 16px;
}

.user-menu i {
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #f5f5f5;
}

.notification i {
    color: #4cb69f;
}

.notification i:hover {
    color: #f5f5f5;
    transform: scale(1.1);
}

.user-icon {
    color: #f5f5f5;
}

.user-icon:hover {
    color: #4cb69f;
    transform: scale(1.1);
}

/* Dropdown */
.dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    background: rgba(32, 29, 58, 0.98);
    min-width: 180px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.15);
    z-index: 1;
    border-radius: 8px;
    padding: 8px 0;
}

.dropdown-content a {
    color: #4cb69f;
    padding: 10px 20px;
    text-decoration: none;
    display: block;
    font-size: 16px;
}

.dropdown-content a:hover {
    background: rgba(76, 182, 159, 0.1);
}

.profile-dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-divider {
    border: 0;
    border-top: 1px solid rgba(76, 182, 159, 0.2);
    margin: 8px 0;
}


@media (max-width: 768px) {
    .header {
        height: 60px;
        padding: 0 16px;
    }

    .logo {
        font-size: 20px;
    }

    .logo i {
        font-size: 24px;
    }

    .nav-links {
        display: none;
    }

    .user-menu {
        gap: 12px;
    }

    .user-menu i {
        font-size: 18px;
    }

    .dropdown-content {
        min-width: 160px;
    }

    .dropdown-content a {
        font-size: 14px;
        padding: 8px 16px;
    }

    .mobile-nav-link {
        display: block;
    }
}

@media (min-width: 768px) {
    .mobile-nav-link {
        display: none !important;
    }
}
/* Main Container */
.container {
  
  margin: 4rem 2rem 2rem 2rem;
  padding: 1rem;
  min-height: calc(100vh - 80px - 120px);
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 10;
}

/* Filter Sidebar */
.filter {
  width: 280px;
  height: fit-content;
  background: #1a1730;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  position: sticky;
  top: 100px;
  padding: 2rem;
  border: 1px solid rgba(76, 182, 159, 0.2);
}

.filter-head h2 {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: linear-gradient(135deg, #3a9080 0%, #201d3a 100%); /* Updated to darker mint */
  color: #f5f5f5;
  padding: 1rem;
  border-radius: 15px;
  font-size: 1.2rem;
  text-align: center;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(76, 182, 159, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.filter p {
  font-weight: 600;
  color: #f5f5f5;
  margin: 1.5rem 0 0.5rem 0;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.filter p i {
  color: #3a9080; /* Updated to darker mint */
}

.search-jobs input.search-company {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid rgba(76, 182, 159, 0.3);
  border-radius: 12px;
  font-size: 0.9rem;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  transition: all 0.3s ease;
  background: rgba(245, 245, 245, 0.1);
  color: #f5f5f5;
}

.search-jobs input.search-company:focus {
  outline: none;
  border-color: #3a9080; /* Updated to darker mint */
  box-shadow: 0 0 0 3px rgba(76, 182, 159, 0.1);
  transform: translateY(-1px);
}

.search-jobs input.search-company:hover {
  border-color: #3a9080; /* Updated to darker mint */
  box-shadow: 0 4px 15px rgba(76, 182, 159, 0.1);
}

.categories {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.categories label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
  color: #f5f5f5;
}

.categories label:hover {
  background-color: rgba(76, 182, 159, 0.1);
  color: #3a9080; /* Updated to darker mint */
  transform: translateX(3px);
}

.categories input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #3a9080; /* Updated to darker mint */
}

.clear-all {
  width: 100px;
  height: 40px;
  text-align: center;
  border: 2px solid #201d3a;
  border-radius: 10px;
  font-size: 0.9rem;
  cursor: pointer;
  background: rgb(255, 250, 250);
  color: #171718;
  font-weight: 600;
  margin-top: 1rem;
  transition: all 0.3s ease;
  padding:5px;
}

.clear-all:hover {
  background-color: #201d3a;
  color: #f5f5f5;
  transform: scale(1.05);
}

/* Jobs Section */
.jobs {
  flex: 1;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: relative;
  z-index: 10;
}

.job-card {
  background: #1a1730;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(76, 182, 159, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.job-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #3a9080, #201d3a, #3a9080); /* Updated to darker mint */
  border-radius: 20px 20px 0 0;
}

.job-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.job-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.job-header h2 {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #f5f5f5;
  margin: 0;
}

.job-tags {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.job-tag {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  border-radius: 20px;
  border: none;
  color: #f5f5f5;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.restaurant-tag, .chef-tag, .tutor-tag, .freelance-tag, .delivery-tag {
  background: linear-gradient(135deg, #3a9080 0%, #2a6f62 100%); /* Updated to darker mint */
}

.job-tag:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.job-loc {
  display: flex;
  gap: 2rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.job-loc p {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(245, 245, 245, 0.8);
  font-weight: 500;
  font-size: 0.95rem;
}

.job-loc i {
  color: #3a9080; /* Updated to darker mint */
  font-size: 1rem;
}

.job-description {
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.job-description h4 {
  color: #f5f5f5;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.job-description ul {
  list-style: none;
  padding-left: 0;
}

.job-description li {
  color: rgba(245, 245, 245, 0.8);
  margin-bottom: 0.3rem;
  position: relative;
  padding-left: 1.2rem;
}

.job-description li::before {
  content: "•";
  color: #3a9080; /* Updated to darker mint */
  position: absolute;
  left: 0;
  font-weight: bold;
}

.job-stats {
  display: flex;
  gap: 2rem;
  padding-top: 1rem;
  border-top: 2px solid rgba(76, 182, 159, 0.2);
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(245, 245, 245, 0.8);
  font-weight: 500;
}

.stat i {
  color: #3a9080; /* Updated to darker mint */
}

.stat-value {
  font-weight: 700;
  color: #f5f5f5;
}

.job-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.button-1 {
  flex: 1;
  height: 40px;
  text-align: center;
  border: 2px solid #3a9080; /* Updated to darker mint */
  border-radius: 10px;
  font-size: 0.9rem;
  cursor: pointer;
  background: rgba(245, 245, 245, 0.1);
  color: #3a9080; /* Updated to darker mint */
  font-weight: 600;
  transition: all 0.3s ease;
}

.button-1:hover {
  background-color: #3a9080; /* Updated to darker mint */
  color: #201d3a;
  transform: scale(1.02);
}

.button-2 {
  width: 100px;
  height: 40px;
  text-align: center;
  border: 2px solid #201d3a;
  border-radius: 10px;
  cursor: pointer;
  background: rgb(255, 250, 250);
  color: #171718;
  font-weight: 600;
  transition: all 0.3s ease;
}

.button-2:hover {
  background-color: #201d3a;
  color: #f5f5f5;
  transform: scale(1.05);
}

.button-2.saved-state {
  background-color: #4CAF50;
  color: #fff;
  border-color: #4CAF50;
}

/* Footer */
 .footer {
            background: linear-gradient(135deg, #201d3a, #1a1730);
            color: #f5f5f5;
            padding: 40px 20px 20px 20px;
            margin-top: 64px;
            position: relative;
            overflow: hidden;
        }

        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, #4cb69f, #201d3a, #4cb69f);
        }

        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 32px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-logo {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 12px;
            background: linear-gradient(45deg, #4cb69f, #f5f5f5);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            color: transparent;
        }

        .footer-about p {
            color: rgba(245, 245, 245, 0.8);
            line-height: 1.6;
        }

        .footer-links h3,
        .footer-support h3,
        .footer-social h3 {
            font-size: 18px;
            margin-bottom: 16px;
            color: #4cb69f;
        }

        .footer-links ul,
        .footer-support ul {
            list-style: none;
            padding: 0;
        }

        .footer-links li,
        .footer-support li {
            margin-bottom: 8px;
        }

        .footer-links a,
        .footer-support a {
            color: rgba(245, 245, 245, 0.8);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .footer-links a:hover,
        .footer-support a:hover {
            color: #4cb69f;
            transform: translateX(4px);
        }

        .social-icons {
            display: flex;
            gap: 12px;
        }

        .social-icons a {
            display: inline-block;
            width: 36px;
            height: 36px;
            background: rgba(76, 182, 159, 0.2);
            border: 1px solid #4cb69f;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #4cb69f;
            transition: all 0.3s ease;
        }

        .social-icons a:hover {
            background: #4cb69f;
            color: #201d3a;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(76, 182, 159, 0.3);
        }

        .footer-bottom {
            text-align: center;
            margin-top: 32px;
            padding-top: 20px;
            border-top: 1px solid rgba(76, 182, 159, 0.3);
            font-size: 14px;
            color: rgba(245, 245, 245, 0.6);
        }

/* Responsive Design */
@media (max-width: 1024px) {
  .container {
    flex-direction: column;
    margin: 1rem;
  }

  .filter {
    width: 100%;
    position: static;
  }

  .job-loc {
    gap: 1rem;
  }
    .footer {
        width: 100%;
        margin-left: 20px;
    }
}

@media (max-width: 768px) {
  .hh_header {
    flex-direction: column;
    height: auto;
    padding: 1rem;
    gap: 1rem;
  }

  .nav-links {
    width: 100%;
    justify-content: space-between;
  }

  .container {
    margin: 0.5rem;
    padding: 0.5rem;
  }

  .job-card {
    padding: 1.5rem;
  }

  .job-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .job-actions {
    width: 100%;
  }

  .button-1 {
    flex: 2;
  }

  .clear-all {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .logo {
    font-size: 1.8rem;
  }

  .nav-links a {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
  }

  .job-stats {
    gap: 1rem;
  }
}

