/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --text-opacity: 1;
    --bg-opacity: 1;
  }

/* Organic 3D Shapes */
.organic-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.organic-shape {
    position: absolute;
}

.main-shape {
    top: 2.5rem;
    right: 2.5rem;
    width: 24rem;
    height: 24rem;
    opacity: 0.2;
}

.main-inner {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #fb923c, #ef4444);
    border-radius: 50%;
    transform: rotate(12deg);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
    filter: blur(2px);
}

.secondary-shape {
    bottom: 5rem;
    left: 5rem;
    width: 16rem;
    height: 16rem;
    opacity: 0.15;
}

.secondary-inner {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #fbbf24, #fb923c);
    border-radius: 50%;
    transform: rotate(-45deg);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    clip-path: ellipse(80% 60% at 50% 40%);
    filter: blur(1px);
}

.tertiary-shape {
    top: 33.333333%;
    left: 25%;
    width: 8rem;
    height: 8rem;
    opacity: 0.1;
}

.tertiary-inner {
    width: 100%;
    height: 100%;
    background: linear-gradient(225deg, #f87171, #ec4899);
    border-radius: 50%;
    transform: rotate(45deg);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    clip-path: polygon(50% 0%, 80% 10%, 100% 35%, 100% 70%, 80% 90%, 50% 100%, 20% 90%, 0% 70%, 0% 35%, 20% 10%);
}

/* Navbar */
.navbar {
    /* position: relative; */
    z-index: 10;
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 999;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.brand-icon {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, #fb923c, #ef4444);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transform: rotate(12deg);
}

.brand-icon .icon {
    width: 1.75rem;
    height: 1.75rem;
    color: white;
}

.brand-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
}

.nav-links {
    align-items: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }
}

.nav-link {
    color: #4b5563;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: #ea580c;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -0.25rem;
    left: 0;
    width: 0;
    height: 0.125rem;
    background: linear-gradient(90deg, #fb923c, #ef4444);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.btn-secondary {
    color: #4b5563;
    background: transparent;
    border: none;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.3s ease;
}

.btn-secondary:hover {
    color: #1f2937;
}

.btn-primary {
    background: linear-gradient(90deg, #fb923c, #ef4444);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 1rem;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(251, 146, 60, 0.25);
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 15px -3px rgba(251, 146, 60, 0.25);
}


.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.nav-center {
    /* flex: 1; */
    display: flex;
    justify-content: center;
}

.nav-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}
.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.2); /* light glass */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3); /* optional for extra glassy edge */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);  
  }

/* Burger icon styles */
.burger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    border: none;
    background: transparent;
    gap: 5px;
    z-index: 3;
}

.burger-menu .bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    transition: 0.3s;
}

/* Mobile Menu */
.mobile-menu {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.4s ease;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.2); 
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 0 1rem;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    z-index: 10;
    pointer-events: none; 
}

.mobile-menu.active {
    max-height: 500px; 
    opacity: 1;
    padding: 1rem;   
    pointer-events: auto;
}
.mobile-menu.scrolled {
    background-color: rgba(255, 255, 255, 0.9); 
  }

.mobile-menu .nav-links,
.mobile-menu .nav-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    justify-content: center;
    align-items: center;
    margin-top: 1rem;
}

.mobile-menu .nav-actions .btn-primary {
    width: 100%;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .nav-center,
    .nav-actions {
        display: none; /* hide desktop nav in mobile */
    }

    .burger-menu {
        display: flex;
    }
}


/* Hero Section */
.hero-section {
    position: relative;
    z-index: 10;
    max-width: 80rem;
    margin: 0 auto;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr 1fr;
    }
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgb(255 237 213 / var(--bg-opacity, 1));
    color: rgb(194 65 12 / var(--text-opacity, 1));;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    border: 1px solid #fdba74;
    width: fit-content;
}

.badge-icon {
    width: 1.25rem;
    height: 1.25rem;
}

.hero-title {
    font-size: 3.75rem;
    font-weight: 700;
    color: #1f2937;
    line-height: 1.1;
    text-align: start;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

.gradient-text {
    background: linear-gradient(90deg, #f97316, #dc2626);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.hero-description {
    font-size: 1.25rem;
    color: #4b5563;
    line-height: 1.6;
    text-align: start;
}

/* Search Section */
.search-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.search-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    border-radius: 1.5rem;
    padding: 1.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 1px solid #fed7aa;
}

.search-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.search-icon {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, #fb923c, #ef4444);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.search-icon .icon {
    width: 1.5rem;
    height: 1.5rem;
    color: white;
}

.search-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
}

.search-inputs {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.input-group {
    background: rgb(255 247 237 / var(--tw-bg-opacity, 1));
    border-radius: 1rem;
    border: 1px solid #ffedd5;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem;
}

.input-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: rgb(249 115 22 / var(--tw-text-opacity, 1))    ;
}

/* .input-icon-badges {
    width: 1rem;
    height: 1rem;
    color: rgb(249 115 22 / var(--tw-text-opacity, 1))    ;
} */
.job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px; 
    align-items: center;
}
.job-meta span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.search-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #1f2937;
    font-size: 1.125rem;
}

.search-input::placeholder {
    color: #6b7280;
}
.input-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
  }

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

.tag {
    background: white;
    border: 1px solid #fdba74;
    color:  rgb(194 65 12 / var(--tw-text-opacity, 1));;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    /* cursor: pointer; */
}
/* 
.tag:hover {
    background: #fed7aa;
} */

.search-button {
    width: 100%;
    background: linear-gradient(90deg, #fb923c, #ef4444);
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 1rem;
    font-weight: 600;
    font-size: 1.125rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(251, 146, 60, 0.25);
}

.search-button:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 15px -3px rgba(251, 146, 60, 0.25);
}

/* Hero Sidebar */
.hero-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    border-radius: 1.5rem;
    padding: 1.5rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border: 1px solid #f3f4f6;
    transition: all 0.3s ease;
}

.stat-card:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.stat-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.stat-card:hover .stat-icon {
    transform: scale(1.1);
}

.green-gradient {
    background: linear-gradient(135deg, #4ade80, #16a34a);
}

.blue-gradient {
    background: linear-gradient(135deg, #60a5fa, #2563eb);
}

.purple-gradient {
    background: linear-gradient(135deg, #a78bfa, #7c3aed);
}

.orange-gradient {
    background: linear-gradient(135deg, #fbbf24, #f97316);
}

.stat-icon .icon {
    width: 1.5rem;
    height: 1.5rem;
    color: white;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.25rem;
    text-align: center;
}

.stat-label {
    color: #4b5563;
    font-size: 0.875rem;
    line-height: 1.25;
    text-align: center;
}

/* Testimonial */
.testimonial-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border: 1px solid #f3f4f6;
}

.testimonial-content {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.testimonial-avatar {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, #fb923c, #ef4444);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.testimonial-text {
    flex: 1;
}

.testimonial-quote {
    color: #374151;
    margin-bottom: 1rem;
    font-style: italic;
    line-height: 1.6;
}

.author-name {
    font-weight: 600;
    color: #1f2937;
}

.author-title {
    color: #6b7280;
    font-size: 0.875rem;
}

/* Footer */
.footer {
    position: relative;
    z-index: 10;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(8px);
    border-top: 1px solid #fed7aa;
}

.footer-container {
    margin: 0 auto;
    padding: 0.5rem 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-description {
    color: #4b5563;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 3rem;
    height: 3rem;
    background: rgb(255 237 213 / var(--bg-opacity, 1));
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ea580c;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
    .footer-bottom {
      flex-direction: column;
    }
  
    .footer-section {
      order: 1;
    }
  
    .social-links {
      order: 2;
    }
  }

.social-link:hover {
    color: #c2410c;
    background: #fdba74;
}

.footer-section {
    display: flex;
    /* flex-direction: column; */
    gap: 1.5rem;
}

.footer-title {
    color: #1f2937;
    font-weight: 600;
}

.footer-links {
    display: flex;
    gap: 1.75rem;
}

.footer-link {
    color: #4b5563;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #ea580c;
}

.footer-cpyright  {
    border-top: 1px solid #fdba74;
    margin-top: 1rem;
    padding-top: 1rem;
    text-align: center;
    color: #4b5563;
}
.footer-bottom{
    border-top: 1px solid #fdba74;
    font-weight: 500;
    padding-top: 1rem;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-content {
        flex-direction: column;
        text-align: center;
    }
    
    .nav-actions {
        gap: 0.5rem;
    }
    
    .btn-primary {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }
    .footer-links {
        flex-direction: column;
    }
}
  .autocomplete-dropdown {
    position: absolute;
    background: white;
    width: calc(100% - 24px); 
    top:calc(100% - -4px);
    max-height: 200px;
    overflow-y: auto;
    border: 1px solid #ddd;
    border-top: none;
    border-radius: 0 0 4px 4px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
    margin-top: -1px;
  }

  .suggestion-item {
    padding: 8px 12px;
    cursor: pointer;
  }

  .suggestion-item:hover {
    background-color: #f5f5f5;
  }

  .error-message {
    color: red;
    font-size: 0.8rem;
    margin-top: 0.25rem;
    text-align: start;
  }
