@font-face {
    font-family: 'Clash Display';
    src: url('../fontfamily/ClashDisplay-Extralight.otf') format('opentype');
    font-weight: 200;
    font-style: normal;
}

@font-face {
    font-family: 'Clash Display';
    src: url('../fontfamily/ClashDisplay-Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Clash Display';
    src: url('../fontfamily/ClashDisplay-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Clash Display';
    src: url('../fontfamily/ClashDisplay-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Clash Display';
    src: url('../fontfamily/ClashDisplay-Semibold.otf') format('opentype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Clash Display';
    src: url('../fontfamily/ClashDisplay-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

/* Variables */
:root {
    --primary-color: #05214A;
    /* Dark Navy */
    --secondary-color: #f97316;
    /* Orange */
    --text-dark: #2d3748;
    --text-muted: #718096;
    --bg-light: #f8fafc;
    --bg-gray: #f1f5f9;
    --white: #ffffff;
    --border-color: #e2e8f0;

    --tag-yellow: rgba(250, 204, 21, 0.2);
    --tag-yellow-text: #ca8a04;
    --tag-green: rgba(74, 222, 128, 0.2);
    --tag-green-text: #16a34a;

    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Epilogue', sans-serif;
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.6;
    padding-top: 80px;
    /* Space for fixed header */
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Clash Display', sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 10px 24px;
    border-radius: 0px;
    border: none;
    font-weight: bold;
    cursor: pointer;
    display: inline-block;
    transition: var(--transition);
    font-family: "Epilogue", sans-serif;
    font-size: 16px;
}

.btn-primary:hover {
    background-color: #1a2a4f;
    color: white;
}

.btn-login {
    color: var(--text-dark);
    font-weight: 600;
    padding: 10px 20px;
}

.btn-white {
    background-color: var(--white);
    color: var(--primary-color);
    padding: 12px 24px;
    font-weight: 600;
    display: inline-block;
    font-family: "Epilogue", sans-serif;
    font-size: 16px;
    font-weight: bold;
}

.btn-white:hover {
    background-color: #f8fafc;
}

.highlight {
    color: #E65A1D;
}

.highlight-orange {
    color: #E65A1D;
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    height: 78px;
    display: flex;
    align-items: center;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo img {
    margin-top: 12px;
}

.logo-icon {
    color: var(--secondary-color);
}

.main-nav ul {
    display: flex;
    gap: 30px;
    font-family: 'Epilogue', sans-serif;
}

.main-nav a {
    color: #515B6F;
    font-weight: 500;
    font-size: 16px;
}

.main-nav a.active,
.main-nav a:hover {
    color: #05214A;
}

.main-nav a.active {
    position: relative;
}

.main-nav a.active::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #05214A;
    border-radius: 2px;
}

.auth-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.auth-buttons .btn-login {
    position: relative;
}

.auth-buttons .btn-login::after {
    content: "";
    position: absolute;
    right: -7.5px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 48px;
    background-color: #D6DDEB;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding: 80px 0;
    background: url(../images/herobanner.png);
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}


.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.hero-title {
    font-size: 72px;
    line-height: 1.1;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-family: 'Clash Display', sans-serif;
}

.hero-title .highlight {
    position: relative;
    display: inline-block;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: -46px;
    left: 0;
    width: 100%;
    height: 40px;
    background-image: url('../images/line.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: -1;
}

.find-job-highlight {
    position: relative;
    display: inline-block;
    color: #E65A1D;
    z-index: 1;
}

.find-job-highlight::after {
    content: '';
    position: absolute;
    bottom: -26px;
    left: 0;
    width: 100%;
    height: 30px;
    background-image: url('../images/line.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: -1;
}

.hero-subtitle {
    font-size: 18px;
    color: #515B6F;
    margin-bottom: 20px;
    margin-top: 60px;
    opacity: 50%;
}

.search-box {
    background: var(--white);
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
}

.search-box form {
    display: flex;
    align-items: center;
}

.input-group {
    position: relative;
    display: flex;
    align-items: center;
    flex: 1;
    padding: 0 15px 12px;
    /* bottom padding so line doesn't touch content */
}

.input-group::after {
    content: "";
    position: absolute;
    left: 45px;
    right: 15px;
    bottom: 0;
    height: 1px;
    background-color: #D6DDEB;
    width: 75%;
}

.input-group img {
    margin-right: 10px;
    flex-shrink: 0;
}

.input-group input,
.input-group select {
    border: none;
    outline: none;
    width: 100%;
    font-size: 16px;
    font-family: "Epilogue", sans-serif;
    color: #25324B;
    background: transparent;
}

.search-box .divider {
    width: 1px;
    height: 30px;
    background-color: var(--border-color);
}

.search-btn {
    padding: 14px 27px;
}

.popular-tags {
    font-size: 16px;
    color: #202430;
    font-family: "Epilogue", sans-serif;
}

.popular-tags span {
    font-weight: 400;
}

.popular-tags a {
    font-weight: 500;
}

.popular-tags a:hover {
    color: var(--secondary-color);
}

/* Companies */
.companies {
    padding: 48px 0;
}

.section-subtitle {
    font-size: 18px;
    color: rgba(32, 36, 48, 50%);
    font-family: "Epilogue", sans-serif;
    margin-bottom: 20px;
}

.companies-logos {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.logo-item h3 {
    color: #94a3b8;
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: lowercase;
}

/* Categories */
.categories {
    padding: 80px 0;
}

.section-title {
    font-size: 48px;
    font-weight: 600;
    color: #05214A;
    margin-bottom: 30px;
    font-family: "Clash Display", sans-serif;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.category-card {
    border: 1px solid var(--border-color);
    padding: 32px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: var(--transition);
}

.category-card .icon {
    font-size: 2rem;
    color: var(--primary-color);
}

.category-card h3 {
    font-size: 24px;
    margin-bottom: 8px;
    font-family: "Clash Display", sans-serif;
    color: var(--primary-color);
    font-weight: 600;
}

.info i {
    color: var(--primary-color);
}

.category-card p {
    color: #7C8493;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: "Epilogue", sans-serif;
}

.category-card:hover .info i {
    color: #ffffff !important;
}

.category-card:hover h3 {
    color: #ffffff;
}

.category-card:hover,
.category-card.active {
    background-color: var(--primary-color);
    color: var(--white) !important;
    border-color: var(--primary-color);
}

.category-card:hover .icon,
.category-card.active .icon,
.category-card:hover p,
.category-card.active p {
    color: var(--white);
}

.category-card .icon {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    width: 48px;
    position: relative;
}

.category-card .icon img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

.category-card .img-active {
    opacity: 0;
}

.category-card:hover .img-noactive,
.category-card.active .img-noactive {
    opacity: 0;
}

.category-card:hover .img-active,
.category-card.active .img-active {
    opacity: 1;
}


/* CTA */
.cta {
    padding: 0 0 80px 0;
}

.cta-box {
    padding: 60px 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    clip-path: polygon(0 80px, 160px 0, 100% 0, 100% calc(100% - 130px), calc(100% - 220px) 100%, 0 100%);
    z-index: 0;
}

.cta-content {
    color: var(--white);
    position: relative;
    z-index: 1;
    max-width: 40%;
}

.cta-content h2 {
    font-size: 48px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 15px;
    font-family: "Clash Display", sans-serif;
}

.cta-content p {
    color: #fff;
    margin-bottom: 30px;
    font-family: "Epilogue", sans-serif;
    font-size: 16px;
    font-weight: 500;
}

.cta-image {
    position: relative;
    z-index: 1;
    width: 55%;
    display: flex;
    justify-content: flex-end;
}

.mockup-placeholder img {
    width: 100%;
    height: auto;
    display: block;
}

.mockup-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--bg-gray);
}

.mockup-row:last-child {
    border-bottom: none;
}

.mockup-row .line {
    height: 12px;
    width: 60%;
    background: var(--bg-gray);
    border-radius: 6px;
}

.mockup-row .btn-sm {
    height: 24px;
    width: 60px;
    background: var(--primary-color);
    border-radius: 4px;
}

/* Featured Jobs */
.featured-jobs {
    padding: 0 0 80px 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}

.section-header .section-title {
    margin-bottom: 0;
}

.view-all {
    color: var(--primary-color);
    font-weight: 600;
}

.view-all i {
    margin-left: 5px;
}

.jobs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.job-card {
    border: 1px solid #D6DDEB;
    padding: 24px;
    transition: var(--transition);
}

.job-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    border-color: transparent;
}

.job-header {
    margin-bottom: 15px;
}

.title-wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 5px;
}

.title-wrap h3 {
    font-size: 17px;
    color: #25324B;
    font-family: "Epilogue", sans-serif;
    font-weight: 600;
}

.badge {
    font-size: 14px;
    padding: 4px 8px;
    border: 1px solid var(--primary-color);
    border-radius: 4px;
    color: var(--text-muted);
    font-weight: 500;
    font-family: "Epilogue", sans-serif;
}

.location {
    font-size: 16px;
    color: #515B6F;
    font-family: "Epilogue", sans-serif;
}

.job-card .desc {
    font-size: 16px;
    color: #7C8493;
    margin-bottom: 20px;
    font-weight: 400;
    font-family: "Inter", sans-serif;
}

.tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.tag {
    font-size: 0.8rem;
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 500;
}

.tag-yellow {
    background-color: rgba(235, 133, 51, 10%);
    color: #FFB836;
}

.tag-green {
    background-color: rgba(86, 205, 173, 10%);
    color: #56CDAD;
}

.tag-yellow-outline {
    border: 1px solid #FFB836;
    color: #FFB836;
}

.tag-dark-outline {
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

/* Latest Jobs */
.latest-jobs {
    padding: 80px 0;
    background: url(../images/bannerpattern.svg);
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.jobs-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.job-list-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.job-list-card {
    background: var(--white);
    padding: 24px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.job-list-card:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.job-list-card h3 {
    font-size: 20px;
    color: #25324B;
    margin-bottom: 5px;
    font-family: "Epilogue", sans-serif;
    font-weight: 600;
}

.job-list-card .location {
    margin-bottom: 15px;
    font-size: 16px;
    color: #515B6F;
    font-family: "Epilogue", sans-serif;
    font-weight: 400;
}

/* Footer */
.site-footer {
    background-color: #33383E;
    color: var(--white);
    padding-top: 80px;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.logo-white {
    margin-bottom: 20px;
}

.logo-white .logo-text {
    color: var(--white);
}

.logo-white .logo-icon {
    color: var(--secondary-color);
}

.brand-col p {
    color: #D6DDEB;
    font-size: 18px;
    font-family: "Epilogue", sans-serif;
    font-weight: 400;
    max-width: 340px;
}

.footer-col h4 {
    font-family: "Epilogue", sans-serif;
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul a {
    color: #D6DDEB;
    font-size: 16px;
    font-family: "Epilogue", sans-serif;
    font-weight: 400;
}

.footer-col ul a:hover {
    color: var(--white);
}

.newsletter-col p {
    color: #D6DDEB;
    font-size: 16px;
    font-family: "Epilogue", sans-serif;
    font-weight: 400;
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    border: none;
    outline: none;
    color: #A8ADB7;
    font-size: 16px;
    font-family: "Epilogue", sans-serif;
    font-weight: 400;
}

.newsletter-form button {
    border-radius: 0 4px 4px 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 16px;
    font-family: "Epilogue", sans-serif;
    font-weight: 500;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
}

.social-links a:hover {
    background-color: var(--secondary-color);
}

/* Find Jobs Page */
.find-jobs-hero {
    background-color: #F8FAFC;
    padding: 60px 0 40px;
}

.find-jobs-hero .hero-title {
    font-size: 48px;
    margin-bottom: 10px;
}

.find-jobs-hero .hero-subtitle {
    margin-top: 25px;
    margin-bottom: 0;
}

.find-jobs-hero .search-box {
    background: var(--white);
    padding: 10px;
    border-radius: 0;
    box-shadow: none;
    border: 1px solid #D6DDEB;
}

.text-center {
    text-align: center;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.py-5 {
    padding-top: 50px;
    padding-bottom: 50px;
}

.mt-3 {
    margin-top: 1rem;
}

.find-jobs-layout {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

/* Sidebar */
.filters-sidebar {
    width: 250px;
    flex-shrink: 0;
}

.filter-section {
    margin-bottom: 30px;
}

.filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    margin-bottom: 15px;
}

.filter-header h4 {
    font-family: 'Epilogue', sans-serif;
    font-size: 16px;
    color: #25324B;
    font-weight: 600;
}

.filter-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.custom-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Epilogue', sans-serif;
    font-size: 16px;
    color: #515B6F;
    cursor: pointer;
    position: relative;
    padding-left: 30px;
}

.custom-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.custom-checkbox .checkmark {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #fff;
    border: 1px solid #D6DDEB;
    border-radius: 4px;
}

.custom-checkbox:hover input~.checkmark {
    border-color: var(--primary-color);
}

.custom-checkbox input:checked~.checkmark {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.custom-checkbox .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.custom-checkbox input:checked~.checkmark:after {
    display: block;
}

.custom-checkbox .checkmark:after {
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* Main Content */
.jobs-main-content {
    flex: 1;
}

.jobs-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 25px;
}

.jobs-header-title h2 {
    font-family: 'Clash Display', sans-serif;
    font-size: 32px;
    color: #25324B;
    font-weight: 600;
    margin-bottom: 5px;
}

.jobs-header-title p {
    font-family: 'Epilogue', sans-serif;
    font-size: 16px;
    color: #7C8493;
}

.jobs-header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.sort-by {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Epilogue', sans-serif;
    font-size: 15px;
    color: #515B6F;
}

.sort-by select {
    border: none;
    font-weight: 500;
    color: #25324B;
    cursor: pointer;
    outline: none;
    background: transparent;
}

.view-toggles {
    display: flex;
    gap: 10px;
}

.view-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    cursor: pointer;
    color: #A8ADB7;
    transition: var(--transition);
}

.view-btn.active {
    background: rgba(5, 33, 74, 0.06);
    border-radius: 4px;
}

/* Jobs Display Views */
.jobs-display-container {
    display: grid;
    gap: 20px;
}

.jobs-display-container.list-view {
    grid-template-columns: 1fr;
}

.jobs-display-container.grid-view {
    grid-template-columns: repeat(2, 1fr);
}

.job-list-item {
    border: 1px solid #D6DDEB;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.grid-view .job-list-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.grid-view .job-item-action {
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.job-list-item:hover {
    border-color: var(--primary-color);
}

.job-item-info h3 {
    font-family: 'Epilogue', sans-serif;
    font-size: 20px;
    color: #25324B;
    font-weight: 600;
    margin-bottom: 5px;
}

.job-item-info .location {
    font-family: 'Epilogue', sans-serif;
    font-size: 16px;
    color: #515B6F;
    margin-bottom: 15px;
}

.job-item-action {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.job-item-action .applied-count {
    font-family: 'Epilogue', sans-serif;
    font-size: 14px;
    color: #515B6F;
    font-weight: 500;
}

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 50px;
}

.pagination a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Epilogue', sans-serif;
    font-weight: 600;
    color: #515B6F;
    border-radius: 4px;
}

.pagination a:hover {
    background-color: #F8FAFC;
    color: var(--primary-color);
}

.pagination a.active {
    background-color: var(--primary-color);
    color: var(--white);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .category-grid,
    .jobs-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-box {
        flex-direction: column;
        text-align: center;
        padding: 40px;
    }

    .cta-image {
        margin-top: 40px;
        width: 100%;
    }

    .footer-top {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1120px) {
    .mobile-menu-btn {
        display: block;
    }

    .main-nav,
    .auth-buttons {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--white);
        padding: 20px;
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.05);
    }

    .main-nav.active,
    .auth-buttons.active {
        display: flex;
        flex-direction: column;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 15px;
    }

    .main-nav a.active::after {
        bottom: -5px;
    }

    .auth-buttons {
        top: 280px;
        /* Adjust based on nav height */
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.05);
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero {
        padding: 40px 0;
    }

    .hero-subtitle {
        margin-top: 30px;
    }

    .search-box form {
        flex-direction: column;
        gap: 10px;
    }

    .search-box .divider {
        display: none;
    }

    .search-btn {
        width: 100%;
    }

    .companies-logos {
        justify-content: center;
    }

    .category-grid,
    .jobs-grid {
        grid-template-columns: 1fr;
    }

    .jobs-list {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-bottom-inner {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}


.view-toggles .view-btn .icon-active {
    display: none;
}

.view-toggles .view-btn .icon-inactive {
    display: inline-block;
}

.view-toggles .view-btn.active .icon-active {
    display: inline-block;
}

.view-toggles .view-btn.active .icon-inactive {
    display: none;
}

/* Find Jobs Responsive */
@media (max-width: 1120px) {
    .find-jobs-layout {
        flex-direction: column;
    }

    .filters-sidebar {
        width: 100%;
        margin-bottom: 30px;
    }

    .jobs-main-content {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .find-jobs-hero .hero-title {
        font-size: 32px;
    }

    .jobs-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .jobs-header-actions {
        width: 100%;
        justify-content: space-between;
    }

    .job-list-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .job-item-action {
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .find-jobs-hero {
        padding: 40px 0 20px;
    }

    .popular-tags {
        font-size: 14px;
        line-height: 1.6;
    }

    .jobs-display-container.grid-view {
        grid-template-columns: 1fr;
    }
}

/* Job Detail Page */
.job-detail-header-bg {
    background-color: #F8FAFC;
    padding: 40px 0px 100px;
}

.breadcrumb {
    font-size: 16px;
    color: #515B6F;
    margin-bottom: 30px;
    font-family: "Epilogue", sans-serif;
}

.breadcrumb a {
    color: rgba(32,36,48,50%);
}

.breadcrumb span {
    color: #25324B;
    font-weight: 500;
}

.job-header-card {
    background: var(--white);
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #D6DDEB;
}

.job-header-info h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 600;
    font-family: 'Clash Display', sans-serif;
}

.job-header-info p {
    font-size: 20px;
    color: #515B6F;
    font-family: "Epilogue", sans-serif;
}

.job-detail-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin-top: 70px;
}

.detail-section {
    margin-bottom: 40px;
}

.detail-section h3 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 0px;
    font-weight: 600;
}

.detail-section p {
    font-size: 16px;
    color: #515B6F;
    line-height: 1.8;
    font-family: "Epilogue", sans-serif;
    font-weight: 400;

}

.custom-list {
    list-style: none;
    padding: 0;
}

.custom-list li {
    font-size: 16px;
    color: #515B6F;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-family: "Epilogue", sans-serif;
}

.custom-list li i {
    color: #56CDAD;
    margin-top: 4px;
}

.perks-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.perk-card i {
    font-size: 32px;
    color: #E65A1D;
    margin-bottom: 15px;
}

.perk-card h4 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-family: "Clash Display", sans-serif;
    font-weight: 600;
}

.perk-card p {
    font-size: 16px;
    color: #515B6F;
    line-height: 1.6;
    font-family: "Epilogue", sans-serif;
    font-weight: 400;
}

.job-sidebar .sidebar-section {
    margin-bottom: 40px;
}

.sidebar-section h3 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 600;
    border-bottom: 1px solid #D6DDEB;
    padding-bottom: 15px;
}

.stats-box {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.stats-applied {
    font-size: 16px;
    color: #25324B;
    font-weight: 600;
    margin-bottom: 10px;
    font-family: "Epilogue", sans-serif;
    padding: 16px;
    background: #F8F8FD;
}

.stat-row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    font-family: "Epilogue", sans-serif;
}

.stat-label {
    color: #515B6F;
    font-family: "Epilogue", sans-serif;
    font-weight: 400;
    font-size: 16px;
}

.stat-value {
    color: #25324B;
    font-weight: 600;
}

.tags-skills .tag {
    background-color: #F8F8FD;
    color: var(--primary-color);
    font-weight: 500;
    display: inline-block;
    padding: 4px 12px;
    font-size: 16px;
    font-family: "Epilogue", sans-serif;
    font-weight: 400;
    border-radius: 0px !important;
}

@media (max-width: 991px) {
    .job-detail-layout {
        grid-template-columns: 1fr;
    }
    .job-header-card {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    .perks-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .perks-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   ABOUT US PAGE
   ============================================================ */

/* Hero */
.about-hero {
    background-color: #F8FAFC;
    padding: 80px 0 70px;
    text-align: center;
}

.about-hero-inner {
    max-width: 700px;
    margin: 0 auto;
}

.about-eyebrow {
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 2px;
    color: #515B6F;
    text-transform: uppercase;
    font-family: "Epilogue", sans-serif;
    margin-bottom: 16px;
}

.about-hero-title {
    font-size: 48px;
    font-weight: 600;
    color: #070828;
    line-height: 1.2;
    margin-bottom: 24px;
    font-family: 'Clash Display', sans-serif;
}

.about-hero-desc {
    font-size: 18px;
    color: #515B6F;
    line-height: 1.8;
    font-family: "Epilogue", sans-serif;
    font-weight: 400;
}

/* Mission & Vision */
.about-mission-vision {
    padding: 80px 0;
}

.mv-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.mv-image-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
}

.mv-main-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
}

.mv-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: 8px;
    font-size: 14px;
    font-family: "Epilogue", sans-serif;
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

.mv-badge i {
    font-size: 18px;
}

.mv-badge-orange {
    background-color: #E65A1D;
    color: #fff;
    top: 30px;
    left: -20px;
}

.mv-badge-white {
    background-color: #fff;
    color: var(--primary-color);
    bottom: 80px;
    left: -20px;
}

.mv-badge strong {
    display: block;
    font-size: 13px;
    font-weight: 600;
}

.mv-circle-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-color: var(--primary-color);
    color: #fff;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 11px;
    font-family: "Epilogue", sans-serif;
    line-height: 1.3;
    padding: 10px;
}

.mv-circle-badge strong {
    font-size: 12px;
    font-weight: 700;
}

.mv-block {
    margin-bottom: 40px;
}

.mv-block:last-child {
    margin-bottom: 0;
}

.mv-heading {
    font-size: 48px;
    font-weight:500;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: 'Clash Display', sans-serif;
}

.mv-underline {
    display: block;
    width: 220px;
    height: auto;
    margin-bottom: 20px;
    margin-top: 0;
}

.mv-block p {
    font-size: 18px;
    color: #44474E;
    line-height: 1.8;
    font-family: "Epilogue", sans-serif;
    font-weight: 400;
}

/* Values */
.about-values {
    background-color: #F8FAFC;
    padding: 80px 0;
    text-align: center;
}

.values-eyebrow {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #515B6F;
    text-transform: uppercase;
    font-family: "Epilogue", sans-serif;
    margin-bottom: 16px;
}

.values-title {
    font-size: 48px;
    font-weight: 500;
    color:#070828;
    margin-bottom: 16px;
    font-family: 'Clash Display', sans-serif;
    line-height: 56px;
}

.values-desc {
    font-size: 20px;
    color: #515B6F;
    margin-bottom: 50px;
    font-family: "Epilogue", sans-serif;
    font-weight: 400;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: center;
}

.value-card {
    padding: 30px 20px;
    background: #fff;
    border: 1px solid #E2E8F0;
    transition: var(--transition);
}

.value-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    border-color: transparent;
}

.value-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}



.value-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #070828;
    margin-bottom: 12px;
    font-family: 'Lexend', sans-serif;
}

.value-card p {
    font-size: 16px;
    color: #8E939C;
    line-height: 1.7;
    font-family: "Lexend", sans-serif;
    font-weight: 400;
}

/* Accordion Section */
.about-accordion-section {
    padding: 80px 0;
}

.accordion-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.accordion-img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
}

.accordion-title {
    font-size: 48px;
    font-weight: 500;
    color: #070828;
    margin-bottom: 35px;
    line-height: 1.2;
    font-family: 'Clash Display', sans-serif;
}

.about-accordion {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.acc-item {
    border-bottom: 1px solid #D6DDEB;
}

.acc-header {
    width: 100%;
    background: none;
    border: none;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 0;
    cursor: pointer;
    text-align: left;
}

.acc-num {
    font-size: 20px;
    color: #070828;
    font-family: "Lexend", sans-serif;
    font-weight: 500;
    min-width: 28px;
}

.acc-label {
    font-size: 20px;
    font-weight: 500;
    color: #070828;
    flex: 1;
    font-family: 'Lexend', sans-serif;
}

.acc-icon {
    color: var(--primary-color);
    font-size: 14px;
    transition: var(--transition);
}

.acc-body {
    display: none;
    padding: 0 0 20px 44px;
}

.acc-item.active .acc-body {
    display: block;
}

.acc-body p {
    font-size: 16px;
    color: #515B6F;
    line-height: 1.8;
    font-family: "Epilogue", sans-serif;
    font-weight: 400;
}

/* Contact Section */
.about-contact {
    background-color: #F8FAFC;
    padding: 80px 0;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.contact-title {
    font-size: 40px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.2;
    font-family: 'Clash Display', sans-serif;
}

.contact-desc {
    font-size: 20px;
    color: #515B6F;
    line-height: 1.8;
    font-family: "Epilogue", sans-serif;
    margin-bottom: 35px;
}

.contact-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.contact-icon {
  
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}


.contact-item strong {
    font-size: 20px;
    font-weight: 500;
    color: #070828;
    display: block;
    margin-bottom: 4px;
    font-family: 'Lexend', sans-serif;
}

.contact-item p {
    font-size: 16px;
    color: #515B6F;
    font-family: "Lexend", sans-serif;
    margin: 0;
}

.contact-img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    display: block;
}

/* ============================================================
   ABOUT US RESPONSIVE
   ============================================================ */
@media (max-width: 991px) {
    .mv-layout,
    .accordion-layout,
    .contact-layout {
        grid-template-columns: 1fr;
    }
    .mv-image-col {
        order: -1;
    }
    .about-hero-title {
        font-size: 40px;
    }
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .accordion-img {
        height: 300px;
    }
    .contact-img {
        height: 300px;
    }
}

@media (max-width: 576px) {
    .about-hero-title {
        font-size: 32px;
    }
    .values-grid {
        grid-template-columns: 1fr;
    }
    .contact-details {
        grid-template-columns: 1fr;
    }
    .values-title,
    .accordion-title,
    .contact-title {
        font-size: 28px;
    }
    .mv-heading {
        font-size: 22px;
    }
    .mv-badge-orange,
    .mv-badge-white {
        left: 0;
    }
}