/* 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 {
    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: 0.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));
}

.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;
    transition: background-color 0.3s ease;
}

.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);
}

.location-container {
    padding-bottom: 2rem;
}

.location-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.location-card {
    padding: 10px;
    border-radius: 6px;
    text-align: center;
    font-size: 0.9rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.location-card a {
    color: #000;
    font-weight: 500;
    font-size: 1rem;
}

.location-card a:hover {
    text-decoration: underline;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    padding: 20px 0;
}

.category-button {
    background: linear-gradient(145deg, #ffffff, #f8f8f8);
    border: 3px solid #fb923c;
    border-radius: 15px;
    padding: 16px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.15);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.category-button:hover::before {
    left: 100%;
}

.category-button:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: #fb923c;
    box-shadow: 0 15px 35px rgba(255, 140, 0, 0.3);
    background: linear-gradient(145deg, #fff, #fafafa);
}

.category-button:active {
    transform: translateY(-4px) scale(0.98);
    box-shadow: 0 8px 20px rgba(255, 140, 0, 0.4);
}

.category-button p {
    color: #333;
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.category-button:hover p {
    color: #FF8C00;
}

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

    .categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 20px;
    }

    .category-button {
        padding: 25px 15px;
        min-height: 120px;
    }

    .category-button p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px;
    }
}

.company-section .companies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.company-section .company-card {
    background: white;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 8px 25px rgba(230, 126, 34, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.company-section .company-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #fb923c, #ef4444);
}

.company-section .company-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(230, 126, 34, 0.2);
    border-color: #ffeaa7;
}

.company-section .company-logo {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #fb923c, #ef4444);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.4rem;
    font-weight: bold;
    flex-shrink: 0;
    text-transform: uppercase;
    grid-row: span 2;
    align-self: center;
}

.company-section .company-logo img {
    border-radius: 12px;
}

.company-section .jobs-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding: 15px;
    background: #fdf6f0;
    border-radius: 10px;
}

.company-section .jobs-count {
    display: flex;
    align-items: center;
    gap: 8px;
}

.company-section .jobs-number {
    font-size: 1.8rem;
    font-weight: bold;
    color: #fb923c;
}

.company-section .jobs-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

@media (max-width: 768px) {
    .company-section .companies-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .company-section .company-card {
        padding: 20px;
    }

    .company-section .company-logo {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .company-section .jobs-section {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}


.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 {
    /* max-width: 80rem; */
    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-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
} */

.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;
    }

    .footer-links {
        flex-direction: column;
    }
}

.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;
    }
}

.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;
}

.contact-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

.page-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 10px;
    text-align: center;
}

.page-description {
    font-size: 16px;
    margin-bottom: 30px;
    text-align: center;
    color: #555;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 15px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #fb923c;
    outline: none;
}

.form-actions {
    text-align: right;
}
.contact-grid {
    display: grid;
    grid-template-columns: 2fr;
    gap: 30px;
  }
.contact-item {
  display: flex;
  align-items: center;
  gap: 5px;
}
  .contact-info {
    padding: 20px;
    border-radius: 8px;
  }

  @media (min-width: 768px) {
    .contact-grid {
      grid-template-columns: 2fr 2fr;
      align-items: start;
    }
  }

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