/*!
 * 
 * Adwa Jobs v0.1
 * https://adwajobs.com
 * 
 * 
 * Copyright 2025- Nigus Abate.
 * Adwa Jobs may be freely distributed under the MIT license.
 * 
 * Date: 2025-05-19T09:12Z
 * 
 */

:root {
    /*--primary-rgb: 67, 97, 238;  /*RGB of #4361ee */
    --primary-rgb: 191, 214, 65; /* RGB of #BFD641 */ 
    --primary: rgb(var(--primary-rgb));
    --primary-dark: rgba(var(--primary-rgb), 0.75); /* 75% opacity version */

    --secondary: #3f37c9;
    --accent: #4cc9f0;
    --dark: #212529;
    --dark-alt: #343a40;
    --light: #f8f9fa;
    --light-alt: #e9ecef;
    --gray: #6c757d;
    --gray-light: #adb5bd;
    --body-font: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    --border-radius: 12px;
    --border-radius-sm: 8px;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    --box-shadow-lg: 0 15px 50px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --navbar-bg: rgba(255, 255, 255, 0.85);
    --sidebar-bg: #fff;
}

/* Dark mode variables */
[data-bs-theme="dark"] {
    --dark: #f8f9fa;
    --light: #1a1a1a;
    --light-alt: #2d2d2d;
    --gray: #adb5bd;
    --gray-light: #6c757d;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    --box-shadow-lg: 0 15px 50px rgba(0, 0, 0, 0.3);
    --navbar-bg: rgba(30, 30, 30, 0.85);
    --sidebar-bg: #0C0C14;
}

/* Base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--body-font);
    background-color: var(--light);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 70px;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

.btn {
    font-weight: 600;
    padding: 0.5rem 1.25rem;
    border-radius: var(--border-radius-sm);
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
}

.btn-primary:focus-visible,
.btn-primary:active,
.btn-outline-primary:focus-visible,
.btn-outline-primary:active {
  background-color: var(--primary) !important;
  color: var(--light);
  outline: none;
  box-shadow: none;
}

/*.btn-primary:hover, .btn-outline-primary:hover {
  background-color: var(--primary-dark);
}*/

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(67, 97, 238, 0.3);
}

.btn-outline-primary {
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline-primary:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(67, 97, 238, 0.3);
}

.btn-light {
    background-color: var(--light);
    color: var(--dark);
}

.btn-light:hover {
    background-color: var(--gray-light);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(248, 249, 250, 0.3);
}

.btn-outline-light {
    color: var(--light);
    border-color: var(--light);
}

.btn-outline-light:hover {
    background-color: var(--light);
    color: var(--dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(248, 249, 250, 0.3);
}

.btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1.1rem;
}

.btn-sm {
    padding: 0.35rem 0.75rem;
    font-size: 0.875rem;
}

.btn-icon {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border-radius: 50%;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    border-radius: 12px !important;

    background-color: var(--primary);
    border-color: var(--primary);
}

/* social icon*/
.social-icon {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(var(--bs-primary-rgb), 0.1);
    color: var(--primary);
    transition: var(--transition);
}

.social-icon:hover {
    background-color: var(--primary);
    color: white;
    transform: translateY(-3px);
}

.back-to-top.active {
    background-color: var(--primary);
    opacity: 1;
    visibility: visible;
}

.back-to-topy:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(67, 97, 238, 0.3);
}

.text-gradient {
    background: linear-gradient(to right, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.badge {
    font-weight: 500;
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
    background-color: rgba(67, 97, 238, 0.1);
    color: var(--primary);
}

/* Pagination */
.pagination .page-link {
    color: var(--dark); /* Default text color */
    background-color: var(--light); /* Default background */
    border: 1px solid var(--gray-light);
    /*margin: 0 4px;
    border-radius: var(--border-radius-sm);*/
    transition: var(--transition);
}

.pagination .page-link:hover {
    background-color: var(--primary);
    color: var(--light);
    border-color: var(--primary);
}

.pagination .page-item.active .page-link {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--light);
}

.pagination .page-item.disabled .page-link {
    background-color: var(--light-alt);
    color: var(--gray);
    border-color: var(--gray-light);
    cursor: not-allowed;
}
/* navbar toggler */
.navbar-toggler {
  border: 2px solid var(--light-alt) !important;
  padding: 10px;
  border-radius: 50%;
  background-color: var(--light);
  box-sizing: border-box;
}

.navbar-toggler:focus,
.navbar-toggler:active {
  outline: none;
  box-shadow: none !important;
}

/* Layout */
.container {
    padding-left: 15px;
    padding-right: 15px;
}

.section {
    padding: 80px 0;
    position: relative;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}

.section-title {
    font-size: 2rem;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    border-radius: 2px;
}

.section-subtitle {
    color: var(--gray);
    font-size: 1.1rem;
    max-width: 600px;
}

.section-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.bg-light {
    background-color: var(--light-alt) !important;
}

.bg-primary-gradient {
    background: linear-gradient(to right, var(--primary), var(--secondary)) !important;
    color: var(--light);
}



/* Navbar */
.navbar-glass {
    /*background: rgba(255, 255, 255, 0.85);*/
    background: var(--navbar-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 15px 0;
    transition: var(--transition);
}

[data-bs-theme="dark"] .navbar-glass {
    /*background: rgba(30, 30, 30, 0.85);*/
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar-glass .nav-item .nav-link:hover {
    /*background-color: var(--primary);*/
    color: var(--primary-dark);
}

/* ----------------- Enhanced Dropdown Styles -------------- */
.nav-item.dropdown .dropdown-toggle::after {
    transition: var(--transition);
    vertical-align: middle;
    margin-left: 0.5rem;
}

.nav-item.dropdown.show .dropdown-toggle::after {
    transform: rotate(180deg);
}

.nav-item {
  position: relative;
}

.nav-item.dropdown .dropdown-menu {
  /*display: none;*/
  position: absolute;
  top: calc(100% + 16px); /* vertical gap */
  left: -50px;
  min-width: 240px;
  padding: 0.5rem 0;
  background: var(--navbar-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--box-shadow-lg);
  border-radius: var(--border-radius-sm);
  border-top-left-radius: 0; /* remove top rounding */
  border-top-right-radius: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-top: none;
  z-index: 1000;
  animation: fadeIn 0.2s ease-out;
  color: var(--dark);
}


/* Show dropdown on hover */
/*.nav-item.dropdown:hover .dropdown-menu {
  display: block;
}*/

[data-bs-theme="dark"] .nav-item.dropdown .dropdown-menu {
    background: var(--navbar-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-item.dropdown .dropdown-item {
    padding: 0.625rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--dark);
    transition: var(--transition);
    position: relative;
    font-family: var(--body-font);
}

[data-bs-theme="dark"] .nav-item.dropdown .dropdown-item {
    color: var(--dark);
}

.nav-item.dropdown .dropdown-item:hover {
    background: rgba(var(--primary-rgb), 0.08);
    color: var(--primary);
    padding-left: 1.75rem;
}

.nav-item.dropdown .dropdown-item i {
    margin-right: 0.75rem;
    width: 18px;
    text-align: center;
    color: var(--primary);
}

/* Arrow effect on hover */
.nav-item.dropdown .dropdown-item:hover::after {
    content: "→";
    position: absolute;
    right: 1rem;
    color: var(--primary);
    opacity: 0;
    transition: var(--transition);
}

.nav-item.dropdown .dropdown-item:hover::after {
    opacity: 1;
    right: 0.75rem;
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/*--------------end normal dropdown*/

/* Mega Dropdown with Color Variables */
.navbar-glass .dropdown-menu {
    border: none;
    box-shadow: var(--box-shadow-lg);
    margin-top: 0;
    padding: 0;
    overflow: hidden;
}

.dropdown-menu-glass {
    background: var(--navbar-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

[data-bs-theme="dark"] .dropdown-menu-glass {
    background: var(--sidebar-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.dropdown-mega .dropdown-menu {
    width: 100vw;
    left: 50% !important;
    transform: translateX(-50%) !important;
    /*top: 100% !important;*/

     position: absolute;
      top: calc(100% + 19px); /* vertical gap */
      border-top: none;
}

.dropdown-mega-container {
    padding: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.dropdown-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--light-alt);
}

[data-bs-theme="dark"] .dropdown-header {
    border-bottom-color: rgba(255, 255, 255, 0.05);
}

.dropdown-header i {
    font-size: 1.25rem;
    margin-right: 0.75rem;
    color: var(--primary);
}

.dropdown-header h5 {
    font-size: 0.9375rem;
    font-weight: 600;
    margin: 0;
    color: var(--dark);
    font-family: var(--body-font);
}

[data-bs-theme="dark"] .dropdown-header h5 {
    color: var(--light);
}

.dropdown-item {
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-sm);
    margin-bottom: 0.25rem;
    font-weight: 500;
    transition: var(--transition);
    color: var(--dark);
    font-family: var(--body-font);
}

[data-bs-theme="dark"] .dropdown-item {
    color: var(--light-alt);
}

.dropdown-item i {
    margin-right: 0.5rem;
    width: 20px;
    text-align: center;
    color: var(--primary);
}

.dropdown-item:hover {
    background: rgba(var(--primary-rgb), 0.1);
    color: var(--primary);
}

/* Jobs Preview in Dropdown */
.dropdown-jobs-preview {
    margin-top: 1rem;
}

.mega-job-preview-item {
    display: block;
    padding: 0.75rem;
    border-radius: var(--border-radius-sm);
    margin-bottom: 0.5rem;
    transition: var(--transition);
    border: 1px solid var(--light-alt);
    background: var(--light);
}

[data-bs-theme="dark"] .mega-job-preview-item {
    background: var(--light-alt);
    border-color: rgba(255, 255, 255, 0.05);
}

.mega-job-preview-item:hover {
    background: rgba(var(--primary-rgb), 0.05);
    border-color: rgba(var(--primary-rgb), 0.2);
    transform: translateY(-2px);
}

.mega-job-preview-item h6 {
    font-size: 0.875rem;
    margin-bottom: 0.15rem;
    color: var(--dark);
    font-family: var(--body-font);
}

[data-bs-theme="dark"] .mega-job-preview-item h6 {
    color: var(--light);
}

.mega-job-preview-item small {
    font-size: 0.75rem;
    color: var(--gray);
}

/* Company Categories */
.mega-menu-company-categories {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    margin-top: 1rem;
}

.mega-menu-company-category {
    display: flex;
    align-items: center;
    padding: 0.75rem;
    border-radius: var(--border-radius-sm);
    background: var(--light);
    transition: var(--transition);
    color: var(--dark);
    font-size: 0.875rem;
    font-weight: 500;
    font-family: var(--body-font);
    border: 1px solid var(--light-alt);
}

[data-bs-theme="dark"] .mega-menu-company-category {
    background: var(--light-alt);
    color: var(--light);
    border-color: rgba(255, 255, 255, 0.05);
}

.mega-menu-company-category i {
    margin-right: 0.5rem;
    font-size: 1rem;
    color: var(--primary);
}

.mega-menu-company-category:hover {
    background: rgba(var(--primary-rgb), 0.1);
    color: var(--primary);
    text-decoration: none;
}

/* Featured Companies */
.mega-menu-featured-companies {
    margin-top: 1rem;
}

.mega-menu-featured-company {
    display: flex;
    align-items: center;
    padding: 0.75rem;
    border-radius: var(--border-radius-sm);
    margin-bottom: 0.5rem;
    transition: var(--transition);
    border: 1px solid var(--light-alt);
    background: var(--light);
}

[data-bs-theme="dark"] .mega-menu-featured-company {
    background: var(--light-alt);
    border-color: rgba(255, 255, 255, 0.05);
}

.mega-menu-featured-company:hover {
    background: rgba(var(--primary-rgb), 0.05);
    border-color: rgba(var(--primary-rgb), 0.2);
    transform: translateY(-2px);
    text-decoration: none;
}

.mega-menu-featured-company img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    margin-right: 1rem;
    border-radius: 6px;
}

.mega-menu-featured-company h6 {
    font-size: 0.875rem;
    margin-bottom: 0.15rem;
    color: var(--dark);
    font-family: var(--body-font);
}

[data-bs-theme="dark"] .mega-menu-featured-company h6 {
    color: var(--light);
}

.mega-menu-featured-company small {
    font-size: 0.75rem;
    color: var(--gray);
}

/* Animation for dropdown */
.dropdown-menu {
    animation: fadeInDown 0.3s ease forwards;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile adjustments */
@media (max-width: 991.98px) {
    .dropdown-mega .dropdown-menu {
        width: auto;
        left: 0 !important;
        transform: none !important;
    }
    
    .dropdown-mega-container {
        padding: 1rem;
    }
    
    .dropdown-mega .row {
        flex-direction: column;
    }
    
    .mega-menu-company-categories {
        grid-template-columns: 1fr;
    }
}
/*--------------end mega menu--------------*/

.navbar-brand {
    display: flex;
    align-items: center;
    font-weight: 700;
}

.brand-logo {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    font-size: 1.2rem;
}

.brand-text {
    font-size: 1.4rem;
    color: var(--dark);
}

[data-bs-theme="dark"] .brand-text {
    color: white;
}

.navbar-nav .nav-link {
    font-weight: 600;
    padding: 0.5rem 1rem;
    color: var(--dark);
    display: flex;
    align-items: center;
}

[data-bs-theme="dark"] .navbar-nav .nav-link {
    color: white;
}

.navbar-nav .nav-link i {
    margin-right: 8px;
    font-size: 1.1rem;
}

.navbar-nav .nav-link.active {
    color: var(--primary);
}

.nav-actions {
    display: flex;
    align-items: center;
}

.theme-toggle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    background-color: var(--light-alt);
}

[data-bs-theme="dark"] .theme-toggle {
    color: white;
    background-color: var(--dark-alt);
}

/* Mobile Menu */
.offcanvas {
    background-color: var(--light);
}

[data-bs-theme="dark"] .offcanvas {
    background-color: var(--dark-alt);
}

.offcanvas-header {
    border-bottom: 1px solid var(--light-alt);
}

[data-bs-theme="dark"] .offcanvas-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav {
    list-style: none;
    padding-left: 0;
}

.mobile-nav li a {
    display: flex;
    align-items: center;
    padding: 12px 0;
    color: var(--dark);
    font-weight: 500;
}

[data-bs-theme="dark"] .mobile-nav li a {
    color: white;
}

.mobile-nav li a i {
    margin-right: 10px;
    font-size: 1.1rem;
    width: 24px;
    text-align: center;
}

.mobile-nav li.has-submenu > a {
    justify-content: space-between;
}

.mobile-nav li.has-submenu > a {
    display: flex;
    align-items: center;
}

.dropdown-icon {
    margin-left: auto;
    display: flex;
    align-items: center;
}

.mobile-nav .active {
    color: var(--primary);
}

.mobile-nav a {
    color: inherit;
    text-decoration: none;
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    transition: color 0.3s ease;
}

.mobile-nav a:hover {
    color: var(--primary);
}

[data-bs-theme="dark"] .mobile-nav .active {
    color: var(--primary);
}

[data-bs-theme="dark"] .mobile-nav a:hover {
    color: var(--primary);
}

.submenu {
    list-style: none;
    padding-left: 34px;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
}

.submenu.active {
    max-height: 500px;
}

.submenu li a {
    padding: 8px 0;
    font-weight: 400;
    color: var(--gray);
}

[data-bs-theme="dark"] .submenu li a {
    color: var(--gray-light);
}

/* Hero Section */
.hero-section {
    position: relative;
    overflow: hidden;
    padding-top: 40px;
    padding-bottom: 20px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    opacity: 0.95;
}

.min-vh-80 {
    min-height: 80vh;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    max-width: 600px;
}

.hero-search {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.search-tabs {
    display: flex;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.search-tabs button {
    flex: 1;
    padding: 10px;
    border: none;
    background: none;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    transition: var(--transition);
}

.search-tabs button.active {
    color: white;
}

.search-tabs button.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background: white;
    border-radius: 3px 3px 0 0;
}

.search-form .input-group {
    margin-bottom: 15px;
}

.search-form .input-group-text {
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
}

.search-form .form-control {
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    height: 50px;
}

.search-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.search-form .btn {
    height: 50px;
    min-width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-filters {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
}

.search-filters .form-select {
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    height: 45px;
}

.search-filters .form-select option {
    color: var(--dark);
}

.hero-tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
}

.hero-tags a {
    color: white;
    font-weight: 500;
    padding: 5px 12px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
}

.hero-tags a:hover {
    background: rgba(255, 255, 255, 0.2);
}

.hero-illustration {
    position: relative;
    padding: 30px;
}

.job-card-preview {
    background: white;
    border-radius: var(--border-radius);
    padding: 25px;
    box-shadow: var(--box-shadow-lg);
    position: relative;
    z-index: 1;
    transform: rotate(-2deg);
}

[data-bs-theme="dark"] .job-card-preview {
    background: var(--dark-alt);
}

.job-card-preview .company-badge {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 15px;
    border: 3px solid white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.job-card-preview h5 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.job-card-preview .meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
    color: var(--gray);
    font-size: 0.9rem;
}

.job-card-preview .meta i {
    margin-right: 5px;
}

.job-card-preview .skills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.job-card-preview .skills span {
    background: rgba(67, 97, 238, 0.1);
    color: var(--primary);
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
}

.job-card-preview .actions {
    display: flex;
    gap: 10px;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-elements .element {
    position: absolute;
    background: white;
    border-radius: var(--border-radius);
    padding: 10px 15px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: var(--box-shadow);
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0;
    animation: floatIn 1s ease-out forwards;
}

[data-bs-theme="dark"] .floating-elements .element {
    background: var(--dark-alt);
    color: white;
}

.floating-elements .element i {
    color: var(--primary);
    font-size: 1.1rem;
}

.floating-elements .element:nth-child(1) {
    top: 10%;
    left: -5%;
    animation-delay: 0.5s;
    z-index: 1;
}

.floating-elements .element:nth-child(2) {
    top: 60%;
    right: -5%;
    animation-delay: 1s;
    z-index: 1;
}

.floating-elements .element:nth-child(3) {
    top: 35%;
    right: 15%;
    animation-delay: 1.5s;
    z-index: 1;
    border: 1px var(--primary) dashed;
}

@keyframes floatIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-20px) translateX(-50%);
    }
    60% {
        transform: translateY(-10px) translateX(-50%);
    }
}

/* Floating Shapes */
.floating-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    opacity: 0.1;
    filter: blur(60px);
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    left: -100px;
    animation: float 15s ease-in-out infinite;
}

.shape-2 {
    width: 400px;
    height: 400px;
    bottom: -150px;
    right: -100px;
    animation: float 18s ease-in-out infinite reverse;
}

.shape-3 {
    width: 200px;
    height: 200px;
    top: 30%;
    right: 20%;
    animation: float 12s ease-in-out infinite;
}

.shape-4 {
    width: 250px;
    height: 250px;
    bottom: 20%;
    left: 15%;
    animation: float 14s ease-in-out infinite reverse;
}

@keyframes float {
    0% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(50px, 50px);
    }
    100% {
        transform: translate(0, 0);
    }
}

/* Ad Bars */
.ad-bar {
    padding: 15px 0;
    background-color: var(--light-alt);
    position: relative;
}

[data-bs-theme="dark"] .ad-bar {
    background-color: var(--dark-alt);
}

.ad-label {
    position: absolute;
    top: 5px;
    left: 15px;
    font-size: 0.7rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ad-content {
    width: 100%;
    min-height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--light);
    border-radius: var(--border-radius-sm);
    overflow: hidden;
}

[data-bs-theme="dark"] .ad-content {
    background-color: var(--light);
}

.ad-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.ad-mock {
    padding: 20px;
    text-align: center;
    color: var(--gray);
    font-size: 0.9rem;
    position: relative;
}

.ad-close {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    cursor: pointer;
    transition: var(--transition);
}

.ad-close:hover {
    background-color: rgba(0, 0, 0, 0.2);
}

[data-bs-theme="dark"] .ad-close {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
}

[data-bs-theme="dark"] .ad-close:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.top-ad, .bottom-ad {
    padding: 20px 0;
}

.top-ad .ad-content, .bottom-ad .ad-content {
    min-height: 90px;
}

.middle-ad .ad-content {
    min-height: 250px;
}

/* Feature Cards */
.feature-card {
    background-color: var(--light);
    border-radius: var(--border-radius);
    padding: 30px;
    height: 100%;
    transition: var(--transition);
    border: 1px solid var(--light-alt);
}

[data-bs-theme="dark"] .feature-card {
    background-color: var(--light);
    border-color: rgba(255, 255, 255, 0.05);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-lg);
    border-color: transparent;
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.feature-card h5 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--gray);
    margin-bottom: 15px;
}

.feature-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
}

/* Job Cards */
.job-listings {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.job-card {
    background-color: var(--light);
    border-radius: var(--border-radius);
    padding: 25px;
    transition: var(--transition);
    border: 1px solid var(--light-alt);
}

[data-bs-theme="dark"] .job-card {
    background-color: var(--light);
    border-color: rgba(255, 255, 255, 0.05);
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-lg);
    border-color: transparent;
}

.job-card-header {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.job-title {
    font-size: 1.125rem;
    font-weight: 600;
}

.company-logo {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
}

.company-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 50px;
    box-shadow: 0 3px 10px rgba(67, 97, 238, 0.3);
}

.job-info {
    flex-grow: 1;
}

.job-info h5 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.company-name {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.company-name::before {
    /*content: '·';*/
    margin: 0 5px;
}

.job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.job-meta .badge {
    font-size: 0.8rem;
    padding: 0.25rem 0.75rem;
}

.bookmark-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--light-alt);
    color: var(--gray);
    border: none;
    flex-shrink: 0;
    transition: var(--transition);
}

[data-bs-theme="dark"] .bookmark-btn {
    background-color: rgba(67, 97, 238, 0.1);
}

.bookmark-btn:hover, .bookmark-btn.active {
    color: var(--primary);
    background-color: rgba(67, 97, 238, 0.1);
}

.bookmark-btn i {
    font-size: 1.2rem;
}

.job-card-body {
    margin-bottom: 20px;
}

.job-description {
    color: var(--gray);
    margin-bottom: 15px;
    font-size: 0.95rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.job-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.job-skills span {
    background-color: var(--light-alt);
    color: var(--dark);
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
}

[data-bs-theme="dark"] .job-skills span {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
}

.job-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid var(--light-alt);
}

.job-posted {
    color: var(--gray);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
}

.job-posted i {
    margin-right: 5px;
}

.job-actions {
    display: flex;
    gap: 10px;
}

/* Sidebar Cards */
.sidebar-card {
    background-color: var(--light);
    border-radius: var(--border-radius);
    margin-bottom: 20px;
    overflow: hidden;
    border: 1px solid var(--light-alt);
}

[data-bs-theme="dark"] .sidebar-card {
    background-color: var(--light);
    border-color: rgba(255, 255, 255, 0.05);
}

.sidebar-card .card-header {
    padding: 15px 20px;
    border-bottom: 1px solid var(--light-alt);
}

[data-bs-theme="dark"] .sidebar-card .card-header {
    border-bottom-color: rgba(255, 255, 255, 0.05);
}

.sidebar-card .card-header h5 {
    font-size: 1.1rem;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sidebar-card .card-body {
    padding: 20px;
}

.sidebar-card p {
    color: var(--gray);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.premium-ad {
    border: 2px solid #ffc107;
    position: relative;
    overflow: hidden;
}

.premium-ad::before {
    content: 'Premium';
    position: absolute;
    top: 10px;
    right: -25px;
    background-color: #ffc107;
    color: #212529;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 2px 30px;
    transform: rotate(45deg);
}

.premium-ad .company-logo {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    overflow: hidden;
    margin: 0 auto 15px;
}

.premium-ad h6 {
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 5px;
}

.premium-ad .company-name {
    text-align: center;
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 15px;
}

.premium-ad .job-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 15px;
}

.premium-ad .job-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray);
    font-size: 0.9rem;
}

.premium-ad .job-meta i {
    color: var(--primary);
}

.ad-card .card-body {
    padding: 0;
}

.ad-card .ad-content {
    min-height: 250px;
    border-radius: 0;
}

/* Category Section Styles */
/*.bg-light {
    background-color: var(--light) !important;
}

[data-bs-theme="dark"] .bg-light {
    background-color: var(--light-alt) !important;
}*/


/* Category Cards */
.category-card {
    border: none;
    background-color: var(--light);
    border-radius: var(--border-radius);
    transition: var(--transition);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    position: relative;
}

[data-bs-theme="dark"] .category-card {
    /*background-color: var(--light-alt);*/
    background-color: var(--light);
    box-shadow: var(--box-shadow-lg);
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    opacity: 0;
    transition: var(--transition);
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-lg);
}

.category-card:hover::before {
    opacity: 1;
}

.category-card .card-body {
    padding: 1.5rem 1rem;
}

.category-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: var(--transition);
}

.category-card:hover .category-icon {
    /*background-color: var(--primary) !important;*/
    /*color: white !important;*/
    color: var(--light);
    transform: scale(1.1);
}

.category-card h6 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.5rem;
    font-family: var(--body-font);
    transition: var(--transition);
}

[data-bs-theme="dark"] .category-card h6 {
    color: var(--dark);
}

.category-card:hover h6 {
    color: var(--primary);
}

.category-card small {
    font-size: 0.8rem;
    color: var(--gray);
    transition: var(--transition);
}

.category-card:hover small {
    color: var(--primary-dark);
}

/* Responsive Adjustments */
@media (max-width: 767.98px) {
    .section-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .section-actions {
        margin-top: 1rem;
    }
    
    .category-card .card-body {
        padding: 1.25rem 0.75rem;
    }
    
    .category-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
}
/* Stats section */
.stats-section {
    padding: 60px 0;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    color: white;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path fill="rgba(255,255,255,0.05)" d="M0,0 L100,0 L100,100 L0,100 Z"></path></svg>');
    background-size: cover;
    z-index: -1;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}
.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: white;
}

.stat-content h3 {
    font-size: 2.2rem;
    margin-bottom: 5px;
    font-weight: 700;
}

.stat-content p {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 0;
}

/* Testimonials */
.testimonials-section {
    background-color: var(--light-alt);
}

[data-bs-theme="dark"] .testimonials-section {
    background-color: var(--light);
}

.testimonial-card {
    background-color: var(--light);
    border-radius: var(--border-radius);
    padding: 30px;
    height: 100%;
    transition: var(--transition);
    border: 1px solid var(--light-alt);
}

[data-bs-theme="dark"] .testimonial-card {
    background-color: var(--dark-alt);
    border-color: rgba(255, 255, 255, 0.05);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-lg);
    border-color: transparent;
}

.quote-icon {
    font-size: 2.5rem;
    color: rgba(67, 97, 238, 0.1);
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 25px;
    font-style: italic;
    position: relative;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h6 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.author-info p {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.rating {
    color: #ffc107;
    font-size: 0.9rem;
}

.glide__arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--light);
    color: var(--dark);
    border: none;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

[data-bs-theme="dark"] .glide__arrow {
    background-color: var(--dark-alt);
    color: white;
}

.glide__arrow:hover {
    background-color: var(--primary);
    color: white;
}

.glide__arrow--left {
    left: -20px;
}

.glide__arrow--right {
    right: -20px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path fill="rgba(255,255,255,0.05)" d="M0,0 L100,0 L100,100 L0,100 Z"></path></svg>');
    background-size: cover;
    z-index: 0;
}



.cta-title {
    font-size: 2rem;
    margin-bottom: 15px;
}

.cta-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 0;
}

/* Footer */
footer {
    box-shadow: 0 -2px 30px rgba(0, 0, 0, 0.05);
}

[data-bs-theme="dark"] footer {
    box-shadow: 0 -2px 30px rgba(0, 0, 0, 0.3);
}
.footer {
    background-color: var(--light);
    /*color: white;*/
    /*color: var(--dark);*/
    padding: 80px 0 0;
}

.footer-brand {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-brand .brand-logo {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    margin-right: 15px;
}

.footer-brand .brand-text {
    font-size: 1.8rem;
    /*color: white;*/
    /*color: var(--light);*/
}

.footer-about {
    opacity: 0.7;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    /*color: white;*/
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: var(--transition);
}

[data-bs-theme="light"] .social-links a {
    background-color: var(--primary);
    color: white;
}

.social-links a:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
}

.footer-title {
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding-left: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    /*color: rgba(255, 255, 255, 0.7);*/
    color: var(--dark);
    transition: var(--transition);
}

.footer-links a:hover {
    /*color: white;*/
    color: var(--dark);
    padding-left: 5px;
}

.footer-bottom {
    padding: 30px 0;
    margin-top: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Adjustments */
@media (max-width: 1199.98px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section {
        padding: 60px 0;
    }
}

@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .section-actions {
        margin-top: 20px;
    }
    
    .search-filters {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        padding-top: 60px;
        padding-bottom: 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .cta-section .btn {
        display: block;
        width: 100%;
        margin-bottom: 10px;
    }
    
    .footer-brand .brand-text {
        font-size: 1.5rem;
    }
}

@media (max-width: 575.98px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-search {
        padding: 15px;
    }
    
    .job-card-footer {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .job-actions {
        width: 100%;
    }
    
    .job-actions .btn {
        flex: 1;
    }
}

 /* Company Listing Header */
        .company-listing-header {
            position: relative;
            overflow: hidden;
            /*background: linear-gradient(135deg, #4361ee, #3a0ca3);*/
            background: linear-gradient(90deg, var(--primary), var(--accent));
        }

        [data-bs-theme="dark"] .company-listing {
         background-color: var(--light-alt);
        }

       [data-bs-theme="dark"] .company-categories {
         background-color: var(--light) !important;

        }
        .company-search-card {
            position: relative;
            z-index: 1;
        }

        .company-search-form .input-group-text {
            color: #6c757d;
        }

        /* Category Scroller */
        .category-scroller {
            overflow-x: auto;
            padding-bottom: 10px;
        }

        .category-tags {
            display: flex;
            gap: 10px;
            min-width: max-content;
        }

        .category-tag {
            padding: 8px 16px;
            border-radius: 50px;
            /*background: white;*/
            border: none;
            font-weight: 500;
            white-space: nowrap;
            transition: all 0.3s ease;
            /*box-shadow: 0 2px 5px rgba(0,0,0,0.1);*/
            box-shadow: 0 2px 5px rgba(67, 97, 238, 0.3);
        }

        .category-tag.active {
            background-color: var(--primary);
            border-color: var(--primary);
        }

        .category-tag:hover:not(.active) {
            background-color: var(--primary);
            transform: translateY(-2px);
        }

        /* Company Cards */
        .company-card {
            background-color: var(--light);
            border: none;
            border-radius: 12px;
            overflow: hidden;
            /*box-shadow: 0 5px 15px rgba(0,0,0,0.05);*/
            box-shadow: var(--box-shadow);
            transition: all 0.3s ease;
            position: relative;
            display: flex;
            flex-direction: column;
        }

        .company-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }

        .company-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            /*background: #4361ee;*/
            /*color: white;*/
            background: var(--primary);
            color: var(--light);
            padding: 4px 12px;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 500;
        }

        .company-logo {
           /* padding: 30px;
            text-align: center;*/
            /*border-bottom: 1px solid #f1f1f1;*/
        }

        .company-logo img {
            /*width: 120px;
            height: 120px;*/
            object-fit: contain;
        }

        .company-info {
            padding: 20px;
            flex-grow: 1;
        }

        .company-name {
            font-size: 1.25rem;
            margin-bottom: 10px;
        }

        .company-meta {
            display: flex;
            flex-direction: column;
            gap: 5px;
            color: #6c757d;
            font-size: 0.9rem;
            margin-bottom: 15px;
        }

        .company-meta i {
            margin-right: 5px;
        }

        .company-rating {
            margin-bottom: 15px;
        }

        .stars {
            color: #ffc107;
            margin-bottom: 5px;
        }

        .stars span {
            color: #495057;
            font-weight: 600;
            margin-left: 5px;
        }

        .company-rating small {
            color: #6c757d;
            font-size: 0.8rem;
        }

        .company-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 15px;
        }

        .company-tags span {
            background: var(--light-alt);
            color: var(--dark);
            padding: 4px 10px;
            border-radius: 50px;
            font-size: 0.8rem;
        }

        .company-jobs {
            padding: 15px 20px;
            border-top: 1px solid #f1f1f1;
            text-align: center;
        }

        /* Responsive Adjustments */
        @media (max-width: 767.98px) {
            .company-search-card {
                padding: 20px;
            }

            .company-logo {
                padding: 20px;
            }

            .company-logo img {
                width: 80px;
                height: 80px;
            }
        }