/*
  Reminder: Periodically audit and remove unused CSS selectors and rules for optimal performance.
  Use tools like PurgeCSS, UnCSS, or browser DevTools Coverage tab.
*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #ab91ff; 
}

::-webkit-scrollbar-thumb {
    background: #414aff; 
}

::-webkit-scrollbar-thumb:hover {
    background: #1900ff; 
    cursor: pointer;
}

html, body{
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
}

body {
    background: linear-gradient(135deg, #E6F3FF, #CCE7FF, #B3D9FF);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Header Styling */
header {
  width: 100%;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(46, 7, 117, 0.3);
  padding: 10px 20px;
  position: sticky;
  top: 0;
  z-index: 1000;
}


/* Flex container */
.headContainer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* Logo */
.logo {
  width: 180px;
  height: auto;
}

.footer {
  width: 100%;
  height: 4rem;
  background: #3d55b4;
  color: #fff;
  text-align: center;
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 99;
  box-shadow: 0 -2px 12px rgba(61, 85, 180, 0.08);
  font-size: 17px;
  letter-spacing: 0.5px;
}

.footer-content {
  font-family: "Poppins", sans-serif;
  text-align: center;
  margin-top: 1.5rem;
  margin-bottom: 2rem;
  margin-left: 29.5rem;
}

header {

  width: 100%;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 10px 20px;
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(135deg, #4f46e5, #3b82f6, #06b6d4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}


/* Navigation links & button container */
.headlinks {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 40px;
  height: 100%;

}

/* Links & Button Styles */
.headlinks a,
.apply-btn {
  font-size: 16px;
  padding: 8px 16px;
  border: 2px solid transparent;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  color: #1e3a8a;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  background: linear-gradient(135deg, #ffffff, #f3f4f6); 
  transition: all 0.3s ease;
  text-align: center;
  text-decoration: none;
}

.headlinks a:hover,
.apply-btn:hover {
    background: linear-gradient(135deg, #8b5cf6, #d946ef, #ec4899); /* violet → magenta → pink */
  color: #fff;
  transform: translateY(-2px);
  border-color: transparent;
  box-shadow: 0 6px 20px rgba(139, 92, 246, 0.35); 
}

.job-btn {
  height: 2.3rem;
  width: 6.5rem;
  text-align: center;
  margin-left: 0rem;
  margin-right: 1rem;
  font-size: 18px;
  cursor: pointer;
  border-radius: 8px;
  border: 2px solid #1e3a8a;
  transition: all 0.3s ease;
  font-weight: 600;
  color: #1e3a8a;
  background: rgba(255, 255, 255, 0.8);
}

.job-btn:hover {
  box-shadow: 0 4px 12px rgba(30, 58, 138, 0.3);
}


.headContainer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    height: 100%;
}

#dropdown{
    padding: 6px;
    font-size: .8rem;
    border-radius: 8px;
    margin-right: 15px;
    cursor: pointer;
    border: 2px solid rgb(159, 198, 224);
    transition: all 0.5s ease;
}

#dropdown:focus{
    border: 1px solid rgb(198, 225, 243);
    outline: none;
}

#dropdown:hover{
    background-color: rgb(226, 248, 255);
    box-shadow: 0px 2px 5px rgb(74, 183, 216);

}

footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 8vh;
    background-color: rgb(77, 77, 246);
}

.footContainer {
    display: flex;
    align-items: center;
    justify-content: space-around;
    color: white;
}

.footlinks {
    display: flex;
    align-items: center;
    float: right;
    gap: 20px;
}

.footlinks a {
    width: 40px;
    height: 40px;
    margin-top: 4px;
}

.fa-brands {
    font-size: 40px;
    color: white;
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.2s ease-in-out;
}

.fa-instagram:hover {
    color: red
}

.fa-linkedin:hover {
    color: rgb(1, 1, 156)
}

.fa-github:hover {
    color: black
}

.body2 {
    width: 100%;
    min-height: calc(100vh - 23vh);
    flex: 1;
    background: linear-gradient(135deg, #E6F3FF, #CCE7FF, #B3D9FF);
}

.heading{
    padding: 30px 40px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.heading h2{
    margin: 0 auto;
    font-size: 40px;
    color: #1e3a8a;
    text-shadow: 2px 2px 4px rgba(30, 58, 138, 0.1);
    font-weight: 700;
}

.heading p{
    margin: 0 auto;
    color: #1e3a8a;
    font-size: 18px;
    font-weight: 500;
}

.choice{
    max-width: 70vw;
    height: 6vh;
    margin: 0 auto;
}

.job-id{
    height: inherit;
    display: flex;
    gap:40px;
    list-style: none;
    justify-content: space-evenly;
    align-items: center;
    border: 1px solid rgb(0, 21, 255);
    backdrop-filter: grayscale(20%);
}

.job-id li{
    padding: 10px 20px;
    font-size: 24px;
    font-weight: 700;
    cursor: pointer;
}

/* NEW CARD-BASED JOBS CONTAINER */
.jobs-container{
    max-width: 90vw;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    margin-top: 20px;
    margin-bottom: 40px;
    padding: 20px;
    padding-bottom: 100px;

}

/* JOB CARD STYLING */
.jList{
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 24px;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    overflow: hidden;
}

.jList::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4F46E5, #7C3AED, #EC4899);
}

.jList:hover{
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(79, 70, 229, 0.3);
}

/* CARD HEADER */
.card-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.jList img{
    width: 60px;
    height: 60px;
    border-radius: 12px;
    object-fit: cover;
    border: 2px solid rgba(79, 70, 229, 0.1);
    flex-shrink: 0;
}

.job-title-section {
    flex: 1;
}

.jList h3{
    font-size: 20px;
    font-weight: 600;
    color: #1e3a8a;
    margin: 0 0 4px 0;
    line-height: 1.3;
}

.company-name {
    color: #3b82f6;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
}

/* JOB TYPE BADGE */
.type{
    width: auto;
    height: auto;
    padding: 6px 14px;
    border: none;
    border-radius: 20px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    font-size: 12px;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: absolute;
    top: 16px;
    right: 16px;
}

/* JOB DETAILS */
.job-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.job-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

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

.meta-icon {
    width: 16px;
    height: 16px;
    opacity: 0.7;
}

.job-description {
    color: #1e40af;
    font-size: 14px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* SKILLS TAGS */
.job-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 4px;
}

.skill-tag {
    background: rgba(30, 58, 138, 0.1);
    color: #1e3a8a;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

.suggestions-list li:hover {
    background: linear-gradient(135deg, #e6f3ff, #cce7ff);
    color: #1e40af;
    transform: translateX(5px);
}

footer {
    background: rgba(33, 181, 204, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #1e3a8a;
    padding: 2rem 5%;
    font-family: "Poppins", sans-serif;
    border-top: 1px solid rgba(46, 7, 117, 0.3);
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
}

#footer-statement {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(30, 58, 138, 0.1);
}
  
/* CARD FOOTER */
.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 8px;
    padding-top: 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.job-salary {
    font-weight: 600;
    color: #059669;
    font-size: 16px;
}

.job-time {
    color: #9CA3AF;
    font-size: 12px;
}

.job-links{
    all: unset;
    text-decoration: none;
}

.job-type{
    display: flex;
}

.apply{
    position: fixed;
    width: 50vw;
    height: 70vh;
    border: 2px solid rgb(126, 126, 234);
    left: 25%;
    top: 15%;
    z-index: 1000;
    background-color: rgba(150, 150, 251, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.apply .input{
    position: relative;
    display: flex;
    margin: 0 auto;
    width: 35vw;
    height: 40px;
    border-radius: 10px;
    border: 1px solid blue;
}

.apply input{
    padding-left: 10px;
    font-size: 20px;
    width: 100%;
    border: none;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.9);
}

.job-type-apply{
    display: flex;
    gap: 10px;
    align-items: center;
}

.job-type-apply input{
    cursor: pointer;
}

.apply button{
    width: 100px;
    height: 40px;
    border-radius: 10px;
    cursor: pointer;
    margin-left: 10px;
    background-color: rgb(193, 193, 255);
    font-size: 18px;
    font-weight: 600;
    transition: all 0.2s ease-in-out;
    border: none;
}

.apply button:hover{
    transform: scale(1.05);
    background-color: rgb(102, 102, 253);
    color: white;
}
/* Enhanced Search Box Styles - Add to seeker.css */
.search-filter-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 2rem 0;
  padding: 1.5rem;
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(102, 126, 234, 0.1);
}

.search-box-wrapper {
  position: relative;
  width: 100%;
}

.search-input-group {
  position: relative;
  display: flex;
  align-items: center;
  background: #f8fafc;
  border: 2px solid #e2e8f0;
  border-radius: 0.75rem;
  transition: all 0.3s ease;
}

.search-input-group:focus-within {
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
  background: #fff;
}

.search-icon {
  position: absolute;
  left: 1rem;
  color: #64748b;
  font-size: 1.1rem;
  z-index: 2;
}

.enhanced-search {
  width: 100%;
  padding: 1rem 1rem 1rem 3rem;
  border: none;
  background: transparent;
  font-size: 1rem;
  color: #1e293b;
  outline: none;
}

.enhanced-search::placeholder {
  color: #94a3b8;
  font-weight: 400;
}

.clear-search-btn {
  position: absolute;
  right: 0.5rem;
  background: none;
  border: none;
  color: #64748b;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 0.5rem;
  transition: all 0.2s ease;
  opacity: 0;
  visibility: hidden;
}

.clear-search-btn.visible {
  opacity: 1;
  visibility: visible;
}

.clear-search-btn:hover {
  background: #fee2e2;
  color: #dc2626;
}

.search-suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem;
  max-height: 200px;
  overflow-y: auto;
  z-index: 10;
  display: none;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.search-suggestions.show {
  display: block;
}

.suggestion-item {
  padding: 0.75rem 1rem;
  cursor: pointer;
  border-bottom: 1px solid #f1f5f9;
  transition: background 0.2s ease;
}

.suggestion-item:hover {
  background: #f8fafc;
}

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

.filters-wrapper {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.enhanced-filter {
  padding: 0.75rem 1rem;
  border: 2px solid #e2e8f0;
  border-radius: 0.5rem;
  background: #fff;
  font-size: 0.95rem;
  color: #1e293b;
  transition: all 0.3s ease;
  min-width: 140px;
}

.enhanced-filter:focus {
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
  outline: none;
}

.filter-reset-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: #f1f5f9;
  border: 2px solid #e2e8f0;
  border-radius: 0.5rem;
  color: #64748b;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-reset-btn:hover {
  background: #e2e8f0;
  color: #1e293b;
=======
/* Improved Job Card Design for seeker.html */
/* Add this to seeker.css or in a <style> block in seeker.html */

.jobs-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.5rem;
  margin-top: 1.2rem;
}

.job-card {
  background: #fff;
  border-radius: 1.2rem;
  box-shadow: 0 4px 24px rgba(102,126,234,0.10);
  padding: 1.5rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: box-shadow 0.2s, transform 0.2s;
  border: 1px solid #e5e7eb;
  position: relative;
}

.job-card:hover, .job-card:focus-within {
  box-shadow: 0 8px 32px rgba(102,126,234,0.18);
  transform: translateY(-4px) scale(1.02);
  border-color: #667eea;
}

.job-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #3d55b4;
  margin-bottom: 0.3rem;
}

.job-card .company {
  font-size: 1rem;
  color: #64748b;
  margin-bottom: 0.2rem;
}

.job-card .meta {
  display: flex;
  gap: 1.2rem;
  font-size: 0.98rem;
  color: #764ba2;
  margin-bottom: 0.5rem;
}

.job-card .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.job-card .tag {
  background: #e0e7ff;
  color: #3d55b4;
  font-size: 0.92rem;
  padding: 0.25rem 0.8rem;
  border-radius: 1rem;
  font-weight: 500;
}

.job-card .apply-btn {
  align-self: flex-end;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 0.5rem 1.2rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 0.5rem;
}
.job-card .apply-btn:hover {
  background: linear-gradient(135deg, #764ba2, #667eea);
}

/* Responsive */
@media (max-width: 700px) {
  .jobs-container {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .job-card {
    padding: 1rem 0.7rem;
  }
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px){
    .jobs-container{
        grid-template-columns: 1fr;
        max-width: 95vw;
        gap: 20px;
        padding: 15px;
        padding-bottom: 100px;

    }
    
    .jList {
        padding: 20px;
    }
    
    .card-header {
        gap: 12px;
    }
    
    .jList img {
        width: 50px;
        height: 50px;
    }
    
    .jList h3 {
        font-size: 18px;
    }
    
    .type {
        position: static;
        margin-top: 8px;
        align-self: flex-start;
    }
}

@media (max-width:555px){
    .headContainer{
        display: flex;
        flex-direction: column;
    }
    
    header {
        width: 100%;
        height: 22vh;
        background: linear-gradient(135deg, #E6F3FF, #B3D9FF);
    }
    
    .heading{
        padding: 30px 15px;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    
    .apply{
        position: fixed;
        width: 95vw !important;
        left: 2.5%;
        top: 10%;
        height: 80vh;
    }
    
    .apply .input{
        width: 85vw;
    }
    
    .jobs-container{
        max-width: 95vw;
        padding: 10px;
    }
}

@media (max-width:395px){
    header {
        width: 100%;
        height: 35vh;
        background: linear-gradient(135deg, #E6F3FF, #B3D9FF);
    }
    
    .apply{
        top: 5%;
        height: 85vh !important;
    }
    
    .headlinks{
        display: flex;
        flex-direction: column;
    }
    
    .heading{
        padding: 20px 10px;
    }
    
    .heading h2 {
        font-size: 28px;
    }
    
    .jList {
        padding: 16px;
    }
    
    .card-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .type {
        position: static;
        margin-top: 8px;
    }
}
.search-filter-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  margin: 2rem 0;
}

.fancy-input,
.fancy-select {
  flex: 1 1 250px;
  max-width: 300px;
  padding: 0.9rem 1.2rem;
  font-size: 1rem;
  border-radius: 16px;
  border: none;
  background: linear-gradient(to right, #f0f0f0, #ffffff);
  box-shadow: 0 5px 20px rgba(100, 100, 255, 0.15);
  transition: all 0.3s ease;
  color: #333;
}

.fancy-input:focus,
.fancy-select:focus {
  outline: none;
  background: linear-gradient(to right, #e0f0ff, #ffffff);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.4);
}

.fancy-input::placeholder {
  color: #777;
}

.fancy-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg fill='gray' height='20' viewBox='0 0 24 24' width='20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1rem;
  padding-right: 2.5rem;
}


/* Optional: Add hover effect */
.fancy-input:hover,
.fancy-select:hover {
  box-shadow: 0 5px 25px rgba(0, 123, 255, 0.3);
  transform: scale(1.02);
}


.clear-search {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #999;
    font-size: 1.2rem;
    background: none;
    border: none;
    padding: 0;
    transition: color 0.2s ease;
    display: none;
}

.clear-search:hover {
    color: #333;
}

/* Back to Top Button */

#backToTopBtn {
  display: none;
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 999;
  font-size: 20px;
  background-color: #3b82f6;
  color: #f7f9fc;
  border: none;
  outline: none;
  padding: 12px 16px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  transition: opacity 0.3s ease;
  opacity: 0;
}
#backToTopBtn.show {
  display: block;
  opacity: 1;
}
#backToTopBtn:hover {
  background-color: #1e40af;
}
/* --- Navigation Bar Fix --- */
.headContainer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  padding: 1rem 2rem;
  box-shadow: 0 2px 12px rgba(102,126,234,0.08);
  border-radius: 0 0 1.2rem 1.2rem;
  position: sticky;
  top: 0;
  z-index: 100;
}
.logo {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  margin-right: 1rem;
}
.headlinks {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}
.headlinks a, .headlinks button {
  color: #3d55b4;
  background: none;
  border: none;
  font-weight: 500;
  font-size: 1rem;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
}
.headlinks a:hover, .headlinks button:hover {
  background: #f0f4ff;
  color: #764ba2;
}
.apply-btn {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: #fff !important;
  border: none;
  font-weight: 600;
  padding: 0.5rem 1.2rem;
  border-radius: 8px;
  transition: background 0.2s;
}
.apply-btn:hover {
  background: linear-gradient(135deg, #764ba2, #667eea);
}

/* --- Provide Details Modal Fix --- */
.apply {
  display: none;
  flex-direction: column;
  gap: 1rem;
  background: #fff;
  border-radius: 1.2rem;
  box-shadow: 0 8px 32px rgba(102,126,234,0.10);
  padding: 2rem 1.5rem;
  max-width: 400px;
  margin: 2rem auto;
  position: relative;
  z-index: 200;
}
.apply.active {
  display: flex;
}
.apply h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #3d55b4;
  margin-bottom: 1rem;
}
.apply .modal-close-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #764ba2;
  cursor: pointer;
}
.apply div {
  margin-bottom: 0.7rem;
}
.input, #skillInput {
  width: 100%;
  padding: 0.5rem;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  font-size: 1rem;
  margin-top: 0.3rem;
}
.skill-input-container {
  margin-bottom: 1rem;
}
#tag-container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.tag {
  background: #667eea;
  color: #fff;
  padding: 0.3rem 0.7rem;
  border-radius: 1rem;
  font-size: 0.95rem;
}
.suggestions-list {
  background: #f9fafb;
  border-radius: 0.5rem;
  box-shadow: 0 2px 8px rgba(102,126,234,0.08);
  margin-top: 0.3rem;
  padding: 0.3rem 0;
  list-style: none;
  max-height: 120px;
  overflow-y: auto;
}
.suggestions-list li {
  padding: 0.4rem 1rem;
  cursor: pointer;
}
.suggestions-list li:hover {
  background: #e0e7ff;
}
.job-type-apply {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1rem;
}
.job-type-apply input[type="radio"] {
  margin-right: 0.3rem;
}
.job-type-apply h4 {
  margin: 0 0.7rem 0 0;
  font-size: 1rem;
  font-weight: 500;
  color: #3d55b4;
  display: inline;
}
.Submit, .Cancel {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 0.5rem 1.2rem;
  font-weight: 600;
  margin-right: 0.7rem;
  cursor: pointer;
  transition: background 0.2s;
}
.Cancel {
  background: #e5e7eb;
  color: #3d55b4;
}
.Submit:hover {
  background: linear-gradient(135deg, #764ba2, #667eea);
}
.Cancel:hover {
  background: #d1d5db;
  color: #764ba2;
}

/* --- Jobs Section --- */
.body2 {
  max-width: 1100px;
  margin: 2rem auto;
  padding: 1rem;
  background: #f9fafb;
  border-radius: 1.2rem;
  box-shadow: 0 4px 24px rgba(102,126,234,0.08);
}
.heading h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #3d55b4;
  margin-bottom: 0.5rem;
}
.heading p {
  color: #64748b;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}
.search-filter-container {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
}
.search-bar, .filter-dropdown {
  padding: 0.6rem 1rem;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  font-size: 1rem;
  background: #fff;
}
.jobs-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 1.2rem;
}

/* --- Back to Top Button --- */
#backToTopBtn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: #667eea;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  font-size: 1.5rem;
  box-shadow: 0 4px 16px rgba(102,126,234,0.15);
  cursor: pointer;
  display: none;
  z-index: 999;
}
#backToTopBtn.show {
  display: block;
}

/* --- Footer --- */
footer {
  background: #23272f;
  color: #e5e7eb;
  padding: 2rem 0 1rem;
  border-radius: 2rem 2rem 0 0;
  margin-top: 2rem;
  text-align: center;
}
#footer-statement {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  color: #e0e7eb;
}
.footer-links {
  display: inline-block;
  vertical-align: top;
  margin: 0 2rem 1rem 2rem;
  text-align: left;
}
.footer-links h3 {
  color: #f093fb;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.footer-links ul {
  list-style: none;
  padding: 0;
}
.footer-links ul li {
  margin-bottom: 0.4rem;
}
.footer-links ul li a {
  color: #e5e7eb;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links ul li a:hover {
  color: #f093fb;
}
.social-icons {
  margin: 1rem 0;
}
.social-icons a {
  color: #e5e7eb;
  margin: 0 0.7rem;
  font-size: 1.5rem;
  transition: color 0.2s, transform 0.2s;
}
.social-icons a:hover {
  color: #f093fb;
  transform: scale(1.2);
}
footer h3 {
  margin-top: 1rem;
  font-size: 1rem;
  color: #e5e7eb;
}

/* --- Responsive --- */
@media (max-width: 900px) {
  .headContainer {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
  }
  .headlinks {
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 0.5rem;
  }
  .body2 {
    padding: 0.5rem;
    margin: 1rem auto;
  }
  .jobs-container {
    grid-template-columns: 1fr;
  }
  .apply {
    max-width: 95vw;
    padding: 1rem;
  }
  .footer-links {
    display: block;
    margin: 1rem auto;
    text-align: center;
  }
}
@media (max-width: 600px) {
  .logo { width: 36px; height: 36px; }
  .headContainer { padding: 0.5rem; }
  .body2 { padding: 0.3rem; }
  .apply { padding: 0.7rem; }
  .footer-links { margin: 0.5rem auto; }
}

/* --- Show Modal on .active --- */
.apply.active {
  display: flex !important;
}
/* Interactive Job Card Flip/Expand Animations */
/* Add this to your seeker.css or components/seeker.css */

.job-card {
  background: #fff;
  border-radius: 1rem;
  padding: 0;
  box-shadow: 0 4px 20px rgba(102, 126, 234, 0.08);
  border: 1px solid #e2e8f0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  height: 280px;
  perspective: 1000px;
}

.job-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}

.job-card.flipped .job-card-inner {
  transform: rotateY(180deg);
}

.job-card-front,
.job-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  padding: 1.5rem;
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.job-card-front {
  background: #fff;
}

.job-card-back {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  transform: rotateY(180deg);
}

/* Front Card Content */
.job-card-header {
  text-align: left;
}

.job-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.company-name {
  color: #64748b;
  font-size: 1rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.company-logo {
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 50%;
  flex-shrink: 0;
}

.job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: #64748b;
}

.job-meta span {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

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

.job-tag {
  background: #e0e7ff;
  color: #3d55b4;
  font-size: 0.8rem;
  padding: 0.25rem 0.6rem;
  border-radius: 1rem;
  font-weight: 500;
}

.flip-indicator {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: rgba(102, 126, 234, 0.1);
  color: #667eea;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.flip-indicator:hover {
  background: #667eea;
  color: #fff;
  transform: scale(1.1);
}

/* Back Card Content */
.job-card-back h4 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: #fff;
}

.job-description {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  opacity: 0.95;
}

.job-requirements {
  margin-bottom: 1rem;
}

.job-requirements h5 {
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.requirements-list {
  list-style: none;
  padding: 0;
  font-size: 0.85rem;
  line-height: 1.5;
}

.requirements-list li {
  margin-bottom: 0.3rem;
  padding-left: 1rem;
  position: relative;
}

.requirements-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: bold;
}

.job-actions {
  display: flex;
  gap: 0.5rem;
  margin-top: auto;
}

.apply-btn,
.save-btn {
  flex: 1;
  padding: 0.6rem 1rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-decoration: none;
  text-align: center;
}

.apply-btn {
  background: #fff;
  color: #667eea;
  border: 2px solid #fff;
}

.apply-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.save-btn {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.save-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.back-indicator {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.back-indicator:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

/* Hover Effects */
.job-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(102, 126, 234, 0.15);
}

/* Alternative: Expandable Cards */
.job-card.expandable {
  height: auto;
  min-height: 280px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.job-card.expandable.expanded {
  height: auto;
  min-height: 400px;
}

.expandable-content {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  opacity: 0;
}

.job-card.expanded .expandable-content {
  max-height: 500px;
  opacity: 1;
  padding-top: 1rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .job-card {
    height: 250px;
  }
  
  .job-card-front,
  .job-card-back {
    padding: 1rem;
  }
  
  .job-meta {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .job-actions {
    flex-direction: column;
  }
}

/* Loading Animation */
.job-card.loading {
  pointer-events: none;
}

.job-card.loading::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
/* Updated Hover Effects for seeker.html to match global styles */
/* Add this to components/seeker.css */

/* Navigation Links Hover */
.headlinks a {
  transition: all 0.3s ease;
  position: relative;
}

.headlinks a:hover {
  color: #667eea;
  transform: translateY(-2px);
}

.headlinks a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 50%;
  background: linear-gradient(135deg, #667eea, #764ba2);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.headlinks a:hover::after {
  width: 100%;
}

/* Apply Button Hover */
.apply-btn {
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.apply-btn:hover {
  background: linear-gradient(135deg, #764ba2, #667eea);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

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

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

/* Job Cards Hover */
.job-card {
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.job-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
}

.job-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.job-card:hover::before {
  transform: scaleX(1);
}

/* Search Bar Hover */
.search-bar {
  transition: all 0.3s ease;
}

.search-bar:hover {
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.search-bar:focus {
  border-color: #764ba2;
  box-shadow: 0 0 0 3px rgba(118, 75, 162, 0.2);
  transform: scale(1.02);
}

/* Filter Dropdown Hover */
.filter-dropdown {
  transition: all 0.3s ease;
}

.filter-dropdown:hover {
  border-color: #667eea;
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.15);
}

/* Submit/Cancel Buttons Hover */
.Submit {
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.Submit:hover {
  background: linear-gradient(135deg, #764ba2, #667eea);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);
}

.Cancel {
  transition: all 0.3s ease;
}

.Cancel:hover {
  background: #f3f4f6;
  color: #764ba2;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Footer Links Hover */
footer a {
  transition: all 0.3s ease;
  position: relative;
}

footer a:hover {
  color: #667eea;
  transform: translateX(5px);
}

footer a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  bottom: -2px;
  left: 0;
  background: #667eea;
  transition: width 0.3s ease;
}

footer a:hover::after {
  width: 100%;
}

/* Social Icons Hover */
.social-icons a {
  transition: all 0.3s ease;
}

.social-icons a:hover {
  color: #667eea;
  transform: translateY(-3px) scale(1.2);
}

/* Back to Top Button Hover */
#backToTopBtn {
  transition: all 0.3s ease;
}

#backToTopBtn:hover {
  background: linear-gradient(135deg, #667eea, #764ba2);
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

/* Logo Hover */
.logo {
  transition: all 0.3s ease;
}

.logo:hover {
  transform: rotate(5deg) scale(1.1);
  filter: brightness(1.1);
}

/* Modal Close Button Hover */
.modal-close-btn {
  transition: all 0.3s ease;
}

.modal-close-btn:hover {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
  transform: scale(1.2);
}

/* Input Fields Hover/Focus */
.input {
  transition: all 0.3s ease;
}

.input:hover {
  border-color: #667eea;
  box-shadow: 0 0 0 2px rgba(102, 126, 234, 0.1);
}

.input:focus {
  border-color: #764ba2;
  box-shadow: 0 0 0 3px rgba(118, 75, 162, 0.2);
  transform: scale(1.02);
}

/* Skills Container Hover */
.skill-input-container {
  transition: all 0.3s ease;
}

.skill-input-container:hover {
  transform: translateY(-2px);
}

/* Tag Hover */
.tag {
  transition: all 0.3s ease;
}

.tag:hover {
  background: linear-gradient(135deg, #667eea, #764ba2);
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}