/* ================================================================
   CareerPortal Public Site CSS
   Aesthetic: Modern editorial — warm cream background, bold type,
   clean cards with subtle depth. Outfit + DM Serif Display.
================================================================ */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --cream: #faf8f5;
    --cream-dark: #f0ece4;
    --surface: #ffffff;
    --border: #e8e2d9;
    --border-dark: #d4cbbf;

    --ink: #1a1714;
    --ink-2: #4a453f;
    --ink-3: #8c857a;

    --accent: #89C02F;
    --accent-hover: #066D36;
    --accent-2: #e8440a;
    --accent-light: #eff4ff;

    --green: #059669;
    --green-bg: #ecfdf5;

    --radius: 10px;
    --radius-lg: 16px;
    --shadow-sm: 0 1px 4px rgba(26, 23, 20, .06);
    --shadow: 0 4px 16px rgba(26, 23, 20, .08);
    --shadow-lg: 0 12px 40px rgba(26, 23, 20, .12);

    --max-w: 1160px;
    --nav-h: 64px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter';
    background: var(--cream);
    color: var(--ink);
    line-height: 1.65;
    font-size: 16px;
}

/* ---- Utility ---- */
.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 24px;
}

/* ---- Navbar ---- */
/* .navbar {
    height: var(--nav-h);
    background: rgba(250,248,245,.9);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0; z-index: 100;
}

.nav-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--ink);
    font-weight: 700;
    font-size: 18px;
}

.nav-logo {
    width: 36px; height: 36px;
    background: var(--ink);
    border-radius: 8px;
    display: grid; place-items: center;
    color: #fff;
    font-size: 15px;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 14px;
    font-weight: 600;
    color: var(--ink-2);
    text-decoration: none;
    transition: color .15s;
}

.nav-link:hover { color: var(--accent); } */

/* ---- Hero ---- */
.hero {
    background: #89C02F;
    color: #fff;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: .07;
}

.shape-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #4b8ef8, transparent);
    top: -200px;
    right: -100px;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #e8440a, transparent);
    bottom: -150px;
    left: -100px;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .2);
    color: rgba(255, 255, 255, .8);
    font-size: 13px;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 20px;
    letter-spacing: .5px;
    text-transform: uppercase;
}

.hero-badge::before {
    content: '';
    width: 7px;
    height: 7px;
    background: #4ade80;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: .5;
        transform: scale(1.3);
    }
}

.hero-title {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(42px, 7vw, 72px);
    line-height: 1.1;
    font-weight: 400;
    margin-bottom: 20px;
    color: #fff;
}

.hero-title em {
    font-style: italic;
    color: #93b8fc;
}

.hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, .65);
    max-width: 500px;
    margin-bottom: 36px;
    font-weight: 400;
}

.hero-search {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 12px;
    padding: 6px 6px 6px 16px;
    max-width: 540px;
    box-shadow: var(--shadow-lg);
    gap: 8px;
}

.search-icon {
    color: var(--ink-3);
    font-size: 15px;
    flex-shrink: 0;
}

.search-input {
    flex: 1;
    border: none;
    background: transparent;
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    color: var(--ink);
    padding: 6px 0;
    min-width: 0;
}

.search-input:focus {
    outline: none;
}

.search-input::placeholder {
    color: var(--ink-3);
}

.search-btn {
    background: var(--ink);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background .15s;
    flex-shrink: 0;
}

.search-btn:hover {
    background: var(--accent);
}

/* ---- Section ---- */
.section {
    padding: 64px 0;
}

/* ---- Layout ---- */
.layout {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 28px;
    align-items: start;
}

/* ---- Filter Sidebar ---- */
.filter-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 20px;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: calc(var(--nav-h) + 20px);
}

.filter-title {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--ink-3);
    margin-bottom: 12px;
}

.filter-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 10px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--ink-2);
    text-decoration: none;
    transition: background .15s, color .15s;
    margin-bottom: 2px;
}

.filter-item:hover {
    background: var(--cream-dark);
    color: var(--ink);
}

.filter-item.active {
    background: var(--ink);
    color: #fff;
}

.filter-item.active .filter-count {
    background: rgba(255, 255, 255, .2);
    color: #fff;
}

.filter-count {
    background: var(--cream-dark);
    color: var(--ink-3);
    font-size: 11px;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 20px;
    min-width: 22px;
    text-align: center;
}

/* ---- Listings ---- */
.listings-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.listings-count {
    font-size: 20px;
    font-weight: 700;
    color: var(--ink);
}

.clear-filters {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--ink-3);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color .15s;
}

.clear-filters:hover {
    color: var(--accent-2);
}

/* ---- Job Cards ---- */
.job-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.job-card {
    display: block;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    text-decoration: none;
    color: var(--ink);
    transition: box-shadow .2s, transform .2s, border-color .2s;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.job-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-2px);
    border-color: var(--border-dark);
}

.job-card:hover .job-cta {
    color: var(--accent);
}

.job-card:hover .job-cta i {
    transform: translateX(4px);
}

.job-card-inner {
    padding: 22px 24px;
}

.job-dept {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #89C02F;
    margin-bottom: 6px;
}

.job-title {
    font-size: 19px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 8px;
    line-height: 1.3;
}

.job-desc {
    font-size: 14.5px;
    color: var(--ink-2);
    margin-bottom: 16px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.job-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--border);
    padding-top: 14px;
}

.job-meta {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--ink-3);
    font-weight: 500;
}

.job-cta {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13.5px;
    font-weight: 700;
    color: var(--ink-2);
    transition: color .15s;
}

.job-cta i {
    transition: transform .2s;
}

/* ---- Empty State ---- */
.empty-jobs {
    text-align: center;
    padding: 80px 24px;
    background: var(--surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}

.empty-icon {
    width: 72px;
    height: 72px;
    background: var(--cream-dark);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 28px;
    color: var(--ink-3);
    margin: 0 auto 16px;
}

.empty-jobs h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.empty-jobs p {
    color: var(--ink-2);
    font-size: 15px;
    margin-bottom: 20px;
}

.btn-clear {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--ink);
    color: #fff;
    padding: 10px 22px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: background .15s;
}

.btn-clear:hover {
    background: var(--accent);
}

/* ---- Breadcrumb ---- */
.breadcrumb-bar {
    background: #89C02F;
    border-bottom: 1px solid var(--border);
    padding: 12px 0;
}

.breadcrumb-bar .container {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    color: var(--ink-3);
}

.breadcrumb-bar a {
    color: var(--ink-2);
    text-decoration: none;
    font-weight: 500;
}

.breadcrumb-bar a:hover {
    color: var(--accent-hover);
}

.breadcrumb-bar i {
    font-size: 10px;
}

.breadcrumb-bar span {
    color: var(--ink);
    font-weight: 600;
}

/* ---- Detail Layout ---- */
.detail-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 28px;
    align-items: start;
}

.detail-header-card {
    background: var(--ink);
    color: #fff;
    border-radius: var(--radius-lg);
    padding: 32px;
    margin-bottom: 20px;
}

.job-dept-tag {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #89C02F;
    margin-bottom: 10px;
}

.detail-title {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 14px;
    color: #fff;
}

.detail-summary {
    font-size: 16px;
    color: rgba(255, 255, 255, .7);
    line-height: 1.65;
    margin-bottom: 20px;
    max-width: 600px;
}

.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding-top: 16px;
}

.detail-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: rgba(255, 255, 255, .55);
    font-weight: 500;
}

.card-section {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-sm);
}

/* ---- Rich Content ---- */
.rich-content {
    color: var(--ink-2);
    line-height: 1.75;
    font-size: 16px;
}

.rich-content h1,
.rich-content h2,
.rich-content h3 {
    color: var(--ink);
    font-weight: 700;
    margin: 24px 0 10px;
    line-height: 1.3;
}

.rich-content h3 {
    font-size: 18px;
}

.rich-content h2 {
    font-size: 22px;
}

.rich-content p {
    margin-bottom: 14px;
}

.rich-content ul,
.rich-content ol {
    padding-left: 22px;
    margin-bottom: 14px;
}

.rich-content li {
    margin-bottom: 6px;
}

.rich-content strong {
    color: var(--ink);
    font-weight: 600;
}

.rich-content a {
    color: var(--accent);
}

/* ---- Sidebar Cards ---- */
.apply-card {
    background: var(--ink);
    color: #fff;
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 16px;
}

.apply-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.apply-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, .65);
    margin-bottom: 18px;
    line-height: 1.6;
}

.apply-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #fff;
    color: var(--ink);
    padding: 12px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14.5px;
    text-decoration: none;
    transition: background .15s, color .15s;
    margin-bottom: 12px;
}

.apply-btn:hover {
    background: #89C02F;
}

.apply-note {
    font-size: 12.5px;
    color: rgba(255, 255, 255, .45);
    display: flex;
    align-items: center;
    gap: 6px;
    justify-content: center;
}

.detail-info-card,
.related-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 20px;
    margin-bottom: 16px;
    box-shadow: var(--shadow-sm);
}

.info-title {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--ink-3);
    margin-bottom: 14px;
}

.info-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
}

.info-row:last-child {
    border-bottom: none;
}

.info-label {
    color: var(--ink-3);
    display: flex;
    align-items: center;
    gap: 6px;
}

.info-value {
    font-weight: 600;
    color: var(--ink);
}

.badge-active-pill {
    background: var(--green-bg);
    color: var(--green);
    font-size: 12.5px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
}

.related-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    text-decoration: none;
    color: var(--ink);
    transition: color .15s;
}

.related-item:last-child {
    border-bottom: none;
}

.related-item:hover {
    color: var(--accent);
}

.related-title {
    font-size: 14px;
    font-weight: 500;
}

.related-arrow {
    font-size: 11px;
    color: var(--ink-3);
    transition: transform .15s;
}

.related-item:hover .related-arrow {
    transform: translateX(3px);
    color: var(--accent);
}

/* ---- Footer ---- */
.footer {
    background: var(--ink);
    color: rgba(255, 255, 255, .4);
    text-align: center;
    padding: 24px;
    font-size: 13.5px;
    margin-top: 40px;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
    .layout {
        grid-template-columns: 1fr;
    }

    .filters-sidebar {
        position: static;
    }

    .filter-card {
        position: static;
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
        padding: 14px;
    }

    .filter-title {
        width: 100%;
        margin-bottom: 4px;
    }

    .detail-layout {
        grid-template-columns: 1fr;
    }

    .detail-sidebar {
        order: -1;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .apply-card,
    .detail-info-card,
    .related-card {
        margin-bottom: 0;
    }

    .job-list {
        grid-template-columns: repeat(1, 1fr);
    }
}

@media (max-width: 600px) {
    .hero {
        padding: 56px 0 72px;
    }

    .hero-search {
        flex-wrap: wrap;
        border-radius: 10px;
    }

    .search-btn {
        width: 100%;
        justify-content: center;
    }

    .section {
        padding: 40px 0;
    }

    .detail-sidebar {
        grid-template-columns: 1fr;
    }
}

/* Navbar */

header {
    background-color: transparent;
    position: sticky;
    height: 80px;
    z-index: 10000;
    top: 0;
    background-color: #fff;
    transition: transform 0.4s ease-out;
    /* You can remove this line if no transitions are needed */
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    height: 80px;
    z-index: 99;
    background-color: #fff;
    transition: transform 0.4s ease-out;
    /* You can remove this line if no transitions are needed */
}

/* Remaining CSS code remains unchanged */

nav .navbar {
    height: 100%;
    max-width: 1920px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: auto;
    padding: 0 50px;
}

.navbar .logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.navbar .logo a {
    display: flex;
}

.navbar .logo a img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 45px;
    object-fit: cover;
}

nav .navbar .nav-links {
    line-height: 80px;
    height: 100%;
}

nav .navbar .links {
    display: flex;
}

nav .navbar .links li {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    list-style: none;
    padding: 0 14px;
}

nav .navbar .links li a {
    height: 100%;
    text-decoration: none;
    text-underline-offset: 10px;
    white-space: nowrap;
    color: #000;
    font-size: 16px;
    font-weight: 500;
}

nav .navbar .links li a:hover {
    text-decoration: underline 2px;
    text-underline-offset: 10px;
}

.links li:hover .htmlcss-arrow,
.links li:hover .js-arrow {
    transform: rotate(180deg);
}

nav .navbar .links li .arrow {
    height: 100%;
    width: 22px;
    line-height: 80px;
    text-align: center;
    display: inline-block;
    color: #000;
    transition: all 0.3s ease;
}

nav .navbar .links li .sub-menu {
    position: absolute;
    top: 80px;
    left: 0;
    line-height: 40px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    z-index: 999;
    padding: 10px;
    background-color: #fff;
}

nav .navbar .links li:hover .htmlcss-sub-menu,
nav .navbar .links li:hover .js-sub-menu {
    display: block;
    z-index: 999;
}

.navbar .links li .sub-menu li {
    padding: 0;
}

.navbar .links li .sub-menu .submenu-heading {
    border-bottom: 1px solid #7a7a7a;
    color: #7a7a7a;
}

.navbar .links li .sub-menu a {
    color: #000;
    font-size: 16px;
    font-weight: 500;
    padding: 0 10px;
    width: 100%;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.navbar .links li .sub-menu a:hover {
    text-decoration: none;
    background-color: #f0f0f0;
}

nav .navbar .con-btn {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
}

nav .navbar .con-btn a {
    text-decoration: none;
    color: #000;
}

nav .navbar .con-btn .phone-btn {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    align-content: center;
    justify-content: center;
    gap: 5px;
}

nav .navbar .con-btn .phone-btn img {
    height: auto;
    max-height: 36px;
    width: auto;
    max-width: 36px;
}

nav .navbar .con-btn .phone-btn h5 {
    font-size: 16px;
    font-weight: 500;
}

nav .navbar .con-btn button {
    padding: 0.5rem 1.5rem;
    border: 2px solid #fff;
    border-radius: 20px;
    background-color: #89C02F;
    color: #000;
    font-size: 16px;
    letter-spacing: 1px;
    font-weight: 600;
    box-shadow: rgba(149, 157, 165, 0.3) 0px 8px 20px;
}

nav .navbar .con-btn button:hover {
    transform: scale(1.05);
}

.navbar .nav-links .sidebar-logo {
    display: none;
}

.navbar .fa-bars {
    display: none;
}

@media (max-width: 1279px) {

    nav .navbar {
        padding: 0 30px;
    }

    .navbar .logo a img {
        max-width: 150px;
        max-height: 100%;
    }

    nav .navbar .links li {
        padding: 0 9.45px;
    }

    nav .navbar .con-btn .phone-btn img {
        max-width: 30px;
        max-height: 30px;
    }

    nav .navbar .con-btn {
        gap: 10px;
    }

    nav .navbar .con-btn button {
        padding: 0.5rem 0.7rem;
    }

    nav .navbar .con-btn .phone-btn h5 {
        display: none;
    }
}

@media (max-width: 1024px) {

    .no-scroll {
        overflow: hidden;
    }

    .navbar .fa-bars {
        display: block;
    }

    nav .navbar .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        display: block;
        max-width: 360px;
        width: 100%;
        height: auto;
        background: #89C02F;
        line-height: 30px;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
        transition: all 0.5s ease;
        z-index: 1000;
    }

    .navbar .nav-links .sidebar-logo {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .sidebar-logo .logo-name {
        font-size: 25px;
        color: #000;
    }

    .sidebar-logo i,
    .navbar .fa-bars {
        font-size: 25px;
        color: #000;
    }

    nav .navbar .links {
        display: block;
        margin-top: 20px;
    }

    nav .navbar .links li .arrow {
        line-height: 30px;
    }

    nav .navbar .links li {
        display: block;
        padding: 5px 14px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    .navbar .links li .sub-menu li {
        padding: 2px 0;
    }

    nav .navbar .links li .sub-menu {
        position: relative;
        top: 0;
        box-shadow: none;
        display: none;
    }

    .navbar .links li .sub-menu .submenu-heading {
        color: #fff;
        border-bottom: 1px solid #fff;
        padding: 5px 0;
    }

    .links li:hover .htmlcss-arrow,
    .links li:hover .js-arrow {
        transform: rotate(0deg);
    }

    nav .navbar .links li:hover .htmlcss-sub-menu,
    nav .navbar .links li:hover .js-sub-menu {
        display: none;
    }

    .navbar .nav-links.show1 .links .htmlcss-sub-menu,
    .navbar .nav-links.show3 .links .js-sub-menu,
    .navbar .nav-links.show2 .links .more .more-sub-menu {
        display: block;
        background-color: #89C02F;
    }

    .navbar .nav-links.show1 .links .htmlcss-arrow,
    .navbar .nav-links.show3 .links .js-arrow {
        transform: rotate(180deg);
    }

    .navbar .nav-links.show1 .links .htmlcss-arrow-outer,
    .navbar .nav-links.show3 .links .js-arrow-outer {
        border: none;
    }

    nav .navbar .con-btn .phone-btn h5 {
        display: block;
    }

}

@media (max-width: 768px) {
    nav .navbar {
        padding: 0 25px;
    }

    .navbar .logo a img {
        max-height: 40px;
    }

    nav .navbar .links li {
        white-space: nowrap;
        line-height: 30px;
    }

    nav .navbar .con-btn .phone-btn-outer {
        display: none;
    }

    .sidebar-logo i,
    .navbar .fa-bars {
        font-size: 20px;
    }

    nav .navbar .con-btn button {
        padding: 0.5rem 1rem;
    }
}

/* Footer Section */

.footer-main {
    margin-top: 50px;
}

.footer-main .second-last {
    background-color: #15171A;
}

.footer-main .second-last .container .second-last-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    color: white;
    padding: 2% 0;
}

.footer-main .second-last .container .second-last-content h5 {
    color: #D1FF19;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 2px;
    width: 100%;
    text-align: center;
    height: auto;
    width: 100%;
    max-width: 1024px;
}

.footer-main .second-last .container .second-last-content h4 {
    color: #9CA3AF;
    font-size: 36px;
    font-weight: normal;
    line-height: 1.1;
    height: auto;
    width: 100%;
    max-width: 1024px;
    text-align: center;
    padding: 10px 0;
}

.footer-main .second-last .container .second-last-content h4 span {
    color: #ffffff;
}

.footer-main .second-last .container .second-last-content h6 {
    color: #ffffff;
    font-size: 36px;
    font-weight: normal;
    height: auto;
    width: 100%;
    max-width: 1024px;
    text-align: center;
    padding: 10px 0;
}

.footer-main .second-last .container .second-last-content .buttonss {
    margin-top: 10px;
}

.footer-main .second-last .container .second-last-content .buttonss button {
    background-color: #89C02F;
    color: #000;
}

.footer-main .second-last .container .second-last-content .buttonss button:hover {
    background-color: #fff;
}

.footer-main .last .last-content {
    display: grid;
    grid-template-columns: 1fr minmax(max-content, 200px) 1fr 1fr;
}

.footer-main .last .last-content .footer-about,
.footer-main .last .last-content .footer-quick-link,
.footer-main .last .last-content .footer-contact,
.footer-main .last .last-content .footer-map {
    padding: 0 25px;
    justify-content: space-between;
}

.footer-main .last .last-content .footer-about .footer-logo {
    width: 100%;
    margin: 0 0 10px 0;
}

.footer-main .last .last-content .footer-about .footer-logo img {
    width: 100%;
    max-width: 152px;
}

.footer-main .last .last-content .footer-header h5 {
    font-size: 20px;
    margin: 0 0 20px 0;
}

.footer-main .last .last-content .footer-quick-link .footer-menu-link {
    display: flex;
    flex-direction: column;
    padding: 0 0 0 15px;
}

.footer-main .last .last-content .footer-quick-link .footer-menu-link a {
    text-decoration: none;
    color: #7a7a7a;
    font-weight: 600;

    padding: 0 0 5px 0;
}

.footer-main .last .last-content .footer-quick-link .footer-menu-link a:hover {
    color: #7EB693;
    padding: 0 0 5px 0;
    font-weight: 600;
}

.footer-main .last .last-content .footer-contact .footer-contact-details .footer-queensland-address {
    padding: 0 0 20px 0;
}

.footer-main .last .last-content .footer-contact .footer-contact-details h6 {
    font-size: 18px;
    color: #7a7a7a;
    font-weight: 550;
    padding: 0 0 10px 0;
}

.footer-main .last .last-content .footer-contact .footer-contact-details p {
    padding: 0 0 5px 0;
    color: #7a7a7a;
}

.footer-main .last .last-content .footer-contact .footer-contact-details p a {
    color: #7EB693;
    text-decoration: none;
}

.footer-main .last .last-content .footer-contact .footer-contact-details p a:hover {
    color: #000;
}

.footer-main .last .last-content .footer-map img {
    border-radius: 20px;
    height: auto;
    max-height: 300px;
    max-width: 100%;
    object-fit: cover;
}

.footer-copyright {
    border-top: 1px solid #000;
    margin: 0 2%;
}

.footer-copyright-inner {
    padding: 10px 0;
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.footer-copyright p {
    color: #7a7a7a;
}

@media (max-width: 1023px) {
    /* Footer */

    .footer-main {
        margin-top: 0;
    }

    .footer-main .second-last .container .second-last-content h4 {
        font-size: 30px;
        padding: 20px 0;
    }

    .footer-main .second-last .container .second-last-content h6 {
        font-size: 30px;
        padding: 0 0 10px 0;
    }

    .footer-main .last {
        padding: 20px 0;
    }

    .footer-main .last .last-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: fit-content(10px) 1fr;
        grid-gap: 40px 40px;
    }

    .footer-main .last .last-content .footer-about,
    .footer-main .last .last-content .footer-quick-link,
    .footer-main .last .last-content .footer-contact,
    .footer-main .last .last-content .footer-map {
        padding: 0 0;
    }

    .footer-main .last .last-content .footer-contact .footer-contact-details .footer-queensland-address {
        padding: 0 0 20px 0;
    }
}

@media (max-width: 767px) {
    /* footer */

    .footer-main .second-last .container .second-last-content h4 {
        font-size: 24px;
    }

    .footer-main .second-last .container .second-last-content h6 {
        font-size: 24px;
    }

    .footer-main .last .last-content {
        grid-template-columns: auto;
        grid-template-rows: fit-content(10px) fit-content(10px) fit-content(10px) 1fr;
        grid-gap: 20px 0;
    }

    .footer-main .last .last-content .footer-contact .footer-contact-details .footer-queensland-address {
        padding: 0 0 10px 0;
    }
}

#feedback {
    position: fixed;
    cursor: pointer;
    z-index: 9999999;
    border: none;
    background-color: #89C02F;
    bottom: 42%;
    right: -29px;
    padding: 5px 10px;
    font-size: 14px;
    transform: rotate(270deg);
}

#feedback:hover {
    background-color: #000;
    color: #fff;
    transition: 0.2s linear;
}

#feedback a {
    text-decoration: none;
    color: #000;
}

#feedback:hover a {
    color: #fff;
    transition: 0.2s linear;
}

#support-contact {
    position: fixed;
    cursor: pointer;
    z-index: 9999999;
    border: none;
    background-color: #89C02F;
    bottom: 54%;
    right: -73px;
    /* Start partially hidden */
    padding: 5px 10px;
    font-size: 14px;
    transform: rotate(270deg);
    transition: right 0.3s ease, background-color 0.2s linear, color 0.2s linear;
}

#support-contact:hover {
    background-color: #000;
    color: #fff;
    right: -40px;
    /* Slide left into view */
}

#support-contact a {
    text-decoration: none;
    color: #000;
}

#support-contact:hover a {
    color: #fff;
}