:root {
    --primary-green: #439539;
    --secondary-orange: #D3691B;
    --jbk-green: #439539;
}

* {
    box-sizing: border-box;
}

body,
html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: "Arsenal", sans-serif;
}

a,
li {
    text-decoration: none;
    color: black;
}

ul {
    list-style: none;
}

/* ========================================
   NAVBAR STYLES
   ======================================== */

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: background-color 0.3s ease;
    background-color: white;
}

.navbar a {
    color: white;
}

#navbar {
    background-color: white;
    transition: background-color 0.3s ease, color 0.3s ease;
}

#navbar .navbar-nav .nav-link {
    color: black !important;
}

#navbar .btn-outline-light {
    border-color: #439539;
    color: black;
}

#navbar .btn-outline-light:hover {
    color: white;
    background-color: #439539;
}

#navbar #default-logo {
    display: inline-block !important;
    width: 100%;
    height: 85px;
    height: auto;
}

.navbar-nav .dropdown-menu {
    background-color: #333;
}

.navbar-nav .dropdown-menu .dropdown-item {
    color: white;
}

.navbar-nav .dropdown-menu .dropdown-item:hover {
    background-color: #439539;
    color: white;
}

/* ========================================
   HERO SECTION STYLES
   ======================================== */

.hero-box {
    position: relative;
    width: 100%;
    height: 100vh;
    background-image: url(../img/bg-image.jpg);
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

.overlay-content {
    z-index: 10;
    width: 100%;
    max-width: 800px;
    padding: 0 20px;
}

.hero-container {
    position: relative;
    z-index: 10;

    width: 100%;
    padding: 0 20px;
}

/* Hero Title - Desktop Default */
.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;

}

/* Hero Subtitle */
.hero-subtitle {
    font-size: 2rem;
    margin-bottom: 32px;
}

.hero-cta .btn {
    border: none;
}

/* ========================================
   BUTTON STYLES
   ======================================== */

.btn-primary {
    background-color: #439539;
    opacity: 95%;
}

.btn-primary:hover {
    background-color: white;
    color: #000;
}

.btn-outline-primary {
    background-color: transparent;
    color: #000;
    border-color: #439539;
}

.btn-outline-primary:hover {
    background-color: #439539;
    color: white;
    border-color: #439539;
}

.btn-outline-secondary {
    background-color: transparent;
    color: black;
}

.btn-outline-secondary:hover {
    background-color: #439539;
    color: white;
}

.btn-secondary {
    background-color: #fff;
    color: #000;
}

.btn-secondary:hover {
    background-color: #000;
    color: #fff;
}

.button-container {
    display: flex;
    justify-content: center;
}

.button-container .btn {
    margin: 0 10px;
}

.jbk-button {
    font-size: 1.2rem;
    padding: 10px 20px;
    margin-top: 15px;
}

.apply-btn:hover {
    background-color: #439539;
    color: white;
    border-color: #439539;
}

.contact-btn {
    width: 50%;
    display: block;
    margin: 20px auto 0 auto;
}

/* ========================================
   UTILITY CLASSES
   ======================================== */

.section-spacer {
    height: 75px;
}

.scroll-fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scroll-fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.highlight-green {
    color: #439539;
    font-weight: 600;
}

.black-bg {
    background-color: black !important;
}

.social-link {
    margin: 0 5px;
}

.social-link:hover {
    color: white;
}

.reduced-size {
    max-width: 100%;
    height: auto;
    max-height: 300px;
    border-radius: 20%;
}

.bi {
    margin-right: 5px;
}

/* ========================================
   CARD STYLES
   ======================================== */

.card {
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 0.5rem 1rem rgba(67, 149, 57, 0.15);
}

.expert-card {
    color: white;
    background-color: #439539;
}

.card-body {
    flex-grow: 1;
    text-align: center;
}

.card-body a {
    color: white;
}

.card-body a:hover {
    color: black;
}

.value-card {
    background: #f8f9fa;
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 16px;
    border-left: 4px solid #439539;
    height: 100%;
}

.value-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #439539;
}

.feature-box {
    padding: 32px 24px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    margin-bottom: 24px;
}

.feature-box h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.quote-box {
    background: #f8f9fa;
    padding: 32px;
    border-radius: 8px;
    border-left: 4px solid #439539;
    font-style: italic;
    margin: 32px 0;
}

.info-list-box {
    background: #f8f9fa;
    padding: 24px;
    border-radius: 8px;
    border-left: 4px solid #439539;
    height: 100%;
}

/* ========================================
   FEATURE LIST
   ======================================== */

.feature-list {
    list-style: none;
    padding-left: 0;
}

.feature-list li {
    padding-left: 28px;
    position: relative;
    margin-bottom: 12px;
    font-size: 1.05rem;
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #439539;
    font-weight: bold;
    font-size: 1.2rem;
}

/* ========================================
   PROFILE / TEAM STYLES
   ======================================== */

.profile-card {
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    background-color: #f9f9f9;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, background-color 0.3s;
    position: relative;
    overflow: hidden;
    height: 350px;
}

.profile-card img {
    margin-bottom: 15px;
    border-radius: 50%;
    width: 150px;
    height: 150px;
}

.profile-card:hover {
    transform: translateY(-10px);
    background-color: #439539;
}

.profile-details {
    transition: opacity 0.3s, transform 0.3s;
}

.profile-info {
    opacity: 0;
    position: absolute;
    top: 75%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    transition: opacity 0.3s, transform 0.3s;
}

.profile-info a:hover {
    color: white;
}

.profile-card:hover .profile-details {
    opacity: 0;
    transform: translateY(-20px);
}

.profile-card:hover .profile-info {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    color: white;
}

.profile-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
}

/* ========================================
   JUMBOTRON & CTA SECTIONS
   ======================================== */

.jumbotron {
    background-color: #f8f9fa;
    margin: 0;
    padding: 10px 0 20px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.jumbotron,
.jumbotron .lead {
    font-weight: 700;
}

.jumbotron .container {
    max-width: 800px;
}

.cta-section {
    background: #f8f9fa;
    padding: 48px 32px;
    border-radius: 8px;
    text-align: center;
    margin: 48px 0;
}

/* ========================================
   SPECIFIC PAGE SECTIONS
   ======================================== */

.blockquote h3 {
    font-weight: 700;
}

.recruit-img {
    max-width: 100%;
    height: auto;
    width: 90%;
}

.expertise {
    background-color: #F9F9F9;
}

.expertise .btn-primary:hover {
    background-color: black;
    color: white;
}

.about-us {
    font-size: 1.15em;
    background-color: #F9F9F9;
    padding-top: 50px;
    padding-bottom: 50px;
    background-image: url('../img/bgn-industries.png');
    background-size: cover;
    transform: rotate(180deg) scale(-1, -1);
}

.about-quote {
    font-style: italic;
}

.about-container {
    background-image: url('../img/bgn-industries.png');
    background-size: cover;
}

.quote-container {
    background-image: url('../img/bgn-industries.png');
    background-size: cover;
    background-color: #F9F9F9;
}

.about-bio p a:hover {
    background-color: #439539;
    color: white;
    padding: 5px;
    border-radius: 4%;
}

.about-bio h2 {
    color: #439539;
}

.about-bio h4 {
    color: black;
    font-weight: 700;
}

.story-container {
    background-color: white;
    min-width: 60%;
    padding: 100px 50px 100px 50px;
    border-radius: 10px;
    margin-top: 100px;
    margin-bottom: 50px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
}

.about-background {
    background-image: url('../img/about_bg_image.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 100vh;
}

.team-section {
    background-image: url('../img/bgn-industries.png');
    background-size: cover;
    background-position: center;
}

.custom-img {
    width: 90%;
    height: auto;
}

.employers {
    background-color: #f8f9fa;
    background-image: url('../img/bgn-industries.png');
    min-height: 60vh;
}

.employers .recruit-img {
    width: 60%;
}

.employers h1,
.job-seekers-section h1 {
    font-size: 3.5em;
}

.employers .lead {
    font-size: 1.5em;
    width: 50%;
}

.job-seekers {
    background-color: #f8f9fa;
    min-height: 50vh;
}

.job-seekers-section {
    background-color: #f8f9fa;
}

.job-seekers-section h1 {
    font-size: 2.5em;
}

.job-seekers-section .lead {
    font-size: 1.5em;
}

.job-seekers-section .btn-primary {
    font-size: 1.2rem;
    padding: 10px 20px;
    margin-top: 15px;
}

.job-seekers-hero {
    background-image: url('../img/job_seekers_hero.jpg');
}

.employers-hero {
    background-image: url('../img/bg-image.jpg');
}

.employers-hero h1 {
    color: #fff;
}

.services {
    background-image: url('../img/about_bg_image.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.services-img {
    height: auto;
    width: 75%;
}

.services-cta {
    background-image: url('../img/bgn-industries.png');
}

/* ========================================
   CONTACT FORM
   ======================================== */

.contact-container {
    margin-top: 50px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.contact-info {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.contact-info h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.contact-info p {
    font-size: 18px;
    margin-bottom: 10px;
}

:root {
    --primary-green: #439539;
    --secondary-orange: #D3691B;
    --jbk-green: #439539;
}

* {
    box-sizing: border-box;
}

body,
html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: "Arsenal", sans-serif;
}

a,
li {
    text-decoration: none;
    color: black;
}

ul {
    list-style: none;
}

/* ========================================
   NAVBAR STYLES
   ======================================== */

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: background-color 0.3s ease;
    background-color: white;
}

.navbar a {
    color: white;
}

#navbar {
    background-color: white;
    transition: background-color 0.3s ease, color 0.3s ease;
}

#navbar .navbar-nav .nav-link {
    color: black !important;
}

#navbar .btn-outline-light {
    border-color: #439539;
    color: black;
}

#navbar .btn-outline-light:hover {
    color: white;
    background-color: #439539;
}

#navbar #default-logo {
    display: inline-block !important;
    width: 100%;
    height: 85px;
    height: auto;
}

.navbar-nav .dropdown-menu {
    background-color: #333;
}

.navbar-nav .dropdown-menu .dropdown-item {
    color: white;
}

.navbar-nav .dropdown-menu .dropdown-item:hover {
    background-color: #439539;
    color: white;
}

/* ========================================
   HERO SECTION STYLES
   ======================================== */

.hero-box {
    position: relative;
    width: 100%;
    height: 100vh;
    background-image: url(../img/bg-image.jpg);
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

.overlay-content {
    z-index: 10;
    width: 100%;
    max-width: 800px;
    padding: 0 20px;
}

.hero-container {
    position: relative;
    z-index: 10;

    width: 100%;
    padding: 0 20px;
}

/* Hero Title - Desktop Default */
.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;

}

/* Hero Subtitle */
.hero-subtitle {
    font-size: 2rem;
    margin-bottom: 32px;
}

.hero-cta .btn {
    border: none;
}

/* ========================================
   BUTTON STYLES
   ======================================== */

.btn-primary {
    background-color: #439539;
    opacity: 95%;
}

.btn-primary:hover {
    background-color: white;
    color: #000;
}

.btn-outline-primary {
    background-color: transparent;
    color: #000;
    border-color: #439539;
}

.btn-outline-primary:hover {
    background-color: #439539;
    color: white;
    border-color: #439539;
}

.btn-outline-secondary {
    background-color: transparent;
    color: black;
}

.btn-outline-secondary:hover {
    background-color: #439539;
    color: white;
}

.btn-secondary {
    background-color: #fff;
    color: #000;
}

.btn-secondary:hover {
    background-color: #000;
    color: #fff;
}

.button-container {
    display: flex;
    justify-content: center;
}

.button-container .btn {
    margin: 0 10px;
}

.jbk-button {
    font-size: 1.2rem;
    padding: 10px 20px;
    margin-top: 15px;
}

.apply-btn:hover {
    background-color: #439539;
    color: white;
    border-color: #439539;
}

.contact-btn {
    width: 50%;
    display: block;
    margin: 20px auto 0 auto;
}

/* ========================================
   UTILITY CLASSES
   ======================================== */

.section-spacer {
    height: 75px;
}

.scroll-fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scroll-fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.highlight-green {
    color: #439539;
    font-weight: 600;
}

.black-bg {
    background-color: black !important;
}

.social-link {
    margin: 0 5px;
}

.social-link:hover {
    color: white;
}

.reduced-size {
    max-width: 100%;
    height: auto;
    max-height: 300px;
    border-radius: 20%;
}

.bi {
    margin-right: 5px;
}

/* ========================================
   CARD STYLES
   ======================================== */

.card {
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 0.5rem 1rem rgba(67, 149, 57, 0.15);
}

.expert-card {
    color: white;
    background-color: #439539;
}

.card-body {
    flex-grow: 1;
    text-align: center;
}

.card-body a {
    color: white;
}

.card-body a:hover {
    color: black;
}

.value-card {
    background: #f8f9fa;
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 16px;
    border-left: 4px solid #439539;
    height: 100%;
}

.value-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #439539;
}

.feature-box {
    padding: 32px 24px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    margin-bottom: 24px;
}

.feature-box h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.quote-box {
    background: #f8f9fa;
    padding: 32px;
    border-radius: 8px;
    border-left: 4px solid #439539;
    font-style: italic;
    margin: 32px 0;
}

.info-list-box {
    background: #f8f9fa;
    padding: 24px;
    border-radius: 8px;
    border-left: 4px solid #439539;
    height: 100%;
}

/* ========================================
   FEATURE LIST
   ======================================== */

.feature-list {
    list-style: none;
    padding-left: 0;
}

.feature-list li {
    padding-left: 28px;
    position: relative;
    margin-bottom: 12px;
    font-size: 1.05rem;
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #439539;
    font-weight: bold;
    font-size: 1.2rem;
}

/* ========================================
   PROFILE / TEAM STYLES
   ======================================== */

.profile-card {
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    background-color: #f9f9f9;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, background-color 0.3s;
    position: relative;
    overflow: hidden;
    height: 350px;
}

.profile-card img {
    margin-bottom: 15px;
    border-radius: 50%;
    width: 150px;
    height: 150px;
}

.profile-card:hover {
    transform: translateY(-10px);
    background-color: #439539;
}

.profile-details {
    transition: opacity 0.3s, transform 0.3s;
}

.profile-info {
    opacity: 0;
    position: absolute;
    top: 75%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    transition: opacity 0.3s, transform 0.3s;
}

.profile-info a:hover {
    color: white;
}

.profile-card:hover .profile-details {
    opacity: 0;
    transform: translateY(-20px);
}

.profile-card:hover .profile-info {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    color: white;
}

.profile-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
}

/* ========================================
   JUMBOTRON & CTA SECTIONS
   ======================================== */

.jumbotron {
    background-color: #f8f9fa;
    margin: 0;
    padding: 10px 0 20px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.jumbotron,
.jumbotron .lead {
    font-weight: 700;
}

.jumbotron .container {
    max-width: 800px;
}

.cta-section {
    background: #f8f9fa;
    padding: 48px 32px;
    border-radius: 8px;
    text-align: center;
    margin: 48px 0;
}

/* ========================================
   SPECIFIC PAGE SECTIONS
   ======================================== */

.blockquote h3 {
    font-weight: 700;
}

.recruit-img {
    max-width: 100%;
    height: auto;
    width: 90%;
}

.expertise {
    background-color: #F9F9F9;
}

.expertise .btn-primary:hover {
    background-color: black;
    color: white;
}

.about-us {
    font-size: 1.15em;
    background-color: #F9F9F9;
    padding-top: 50px;
    padding-bottom: 50px;
    background-image: url('../img/bgn-industries.png');
    background-size: cover;
    transform: rotate(180deg) scale(-1, -1);
}

.about-quote {
    font-style: italic;
}

.about-container {
    background-image: url('../img/bgn-industries.png');
    background-size: cover;
}

.quote-container {
    background-image: url('../img/bgn-industries.png');
    background-size: cover;
    background-color: #F9F9F9;
}

.about-bio p a:hover {
    background-color: #439539;
    color: white;
    padding: 5px;
    border-radius: 4%;
}

.about-bio h2 {
    color: #439539;
}

.about-bio h4 {
    color: black;
    font-weight: 700;
}

.story-container {
    background-color: white;
    min-width: 60%;
    padding: 100px 50px 100px 50px;
    border-radius: 10px;
    margin-top: 100px;
    margin-bottom: 50px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
}

.about-background {
    background-image: url('../img/about_bg_image.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 100vh;
}

.team-section {
    background-image: url('../img/bgn-industries.png');
    background-size: cover;
    background-position: center;
}

.custom-img {
    width: 90%;
    height: auto;
}

.employers {
    background-color: #f8f9fa;
    background-image: url('../img/bgn-industries.png');
    min-height: 60vh;
}

.employers .recruit-img {
    width: 60%;
}

.employers h1,
.job-seekers-section h1 {
    font-size: 3.5em;
}

.employers .lead {
    font-size: 1.5em;
    width: 50%;
}

.job-seekers {
    background-color: #f8f9fa;
    min-height: 50vh;
}

.job-seekers-section {
    background-color: #f8f9fa;
}

.job-seekers-section h1 {
    font-size: 2.5em;
}

.job-seekers-section .lead {
    font-size: 1.5em;
}

.job-seekers-section .btn-primary {
    font-size: 1.2rem;
    padding: 10px 20px;
    margin-top: 15px;
}

.job-seekers-hero {
    background-image: url('../img/job_seekers_hero.jpg');
}

.employers-hero {
    background-image: url('../img/bg-image.jpg');
}

.employers-hero h1 {
    color: #fff;
}

.services {
    background-image: url('../img/about_bg_image.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.services-img {
    height: auto;
    width: 75%;
}

.services-cta {
    background-image: url('../img/bgn-industries.png');
}

/* ========================================
   CONTACT FORM
   ======================================== */

.contact-container {
    margin-top: 50px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.contact-info {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.contact-info h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.contact-info p {
    font-size: 18px;
    margin-bottom: 10px;
}

form label {
    font-weight: 600;
}

form .form-control {
    border-radius: 5px;
}

form button {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
}

form textarea {
    resize: vertical;
    overflow: auto;
    min-width: 100%;
    box-sizing: border-box;
    max-height: 500px;
}

.alert {
    background-color: white;
    border-color: #439539;
}

/* ========================================
   SCROLLER / TAG LIST
   ======================================== */

.tag-list {
    margin: 0;
    padding-inline: 0;
    list-style: none;
    padding: 1rem;
    border-radius: .5rem;
    box-shadow: 0 0.5rem 1rem -0.25rem;
}

.scroller {
    max-width: 900px;
    max-height: 250px;
}

.scroller[data-animated="true"] {
    overflow: hidden;
    -webkit-mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);
    mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);
}

.scroller[data-animated="true"] .scroller__inner {
    width: fit-content;
    flex-wrap: nowrap;
    animation: scroll var(--_animation-duration, 120s) var(--_animation-direction, forwards) linear infinite;
}

.scroller__inner {
    padding-block: 1rem;
    display: flex;
    gap: 1rem;
    max-height: 250px;
}

.scoller__inner img {
    height: 175px;
    width: 175px;
}

@keyframes scroll {
    to {
        transform: translate(calc(-100% - 0.5rem));
    }
}

/* ========================================
   BLOG STYLES
   ======================================== */

.hero-banner {
    position: relative;
    height: 30vh;
    background-image: url('../img/blog-header.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 125px 50px 25px 50px;
    box-shadow: inset 0 0 0 1000px rgba(0, 0, 0, 0.4);
}

.hero-content-left {
    max-width: 40%;
}

.hero-content-left h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.hero-content-left p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.hero-content-right {
    max-width: 40%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.hero-content-right h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.hero-content-right img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.blog-grid {
    margin-top: 50px;
}

.research-section h5 {
    display: inline;
    color: #439539;
    font-weight: 700;
    margin-right: 0.5rem;
}

.research-section p {
    display: inline;
    margin-left: 0;
}

.blog-img {
    width: auto;
    height: 100%;
}

.blog-hero {
    background-size: cover;
    background-position: center;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.featured-post {
    border: 2px solid var(--jbk-green);
    border-radius: 10px;
    overflow: hidden;
}

.featured-post img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.blog-card {
    border: 2px solid var(--jbk-green);
    border-radius: 10px;
    transition: transform 0.3s ease;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.category-badge {
    background-color: var(--jbk-green);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-right: 10px;
}

.author-info {
    display: flex;
    align-items: center;
    margin-top: 15px;
}

.author-info img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
}

.author-info small {
    margin-left: 7px;
}

.search-box {
    border: 2px solid var(--jbk-green);
    border-radius: 25px;
    padding: 10px 20px;
    width: 100%;
}

.category-list {
    list-style: none;
    padding: 0;
}

.category-list li {
    margin-bottom: 10px;
}

.category-list a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.category-list a:hover {
    color: var(--jbk-green);
}

.newsletter-box {
    background-color: #f8f9fa;
    border: 2px solid var(--jbk-green);
    border-radius: 10px;
    padding: 20px;
}

form label {
    font-weight: 600;
}

form .form-control {
    border-radius: 5px;
}

form button {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
}

form textarea {
    resize: vertical;
    overflow: auto;
    min-width: 100%;
    box-sizing: border-box;
    max-height: 500px;
}

.alert {
    background-color: white;
    border-color: #439539;
}

/* ========================================
   SCROLLER / TAG LIST
   ======================================== */

.tag-list {
    margin: 0;
    padding-inline: 0;
    list-style: none;
    padding: 1rem;
    border-radius: .5rem;
    box-shadow: 0 0.5rem 1rem -0.25rem;
}

.scroller {
    max-width: 900px;
    max-height: 250px;
}

.scroller[data-animated="true"] {
    overflow: hidden;
    -webkit-mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);
    mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);
}

.scroller[data-animated="true"] .scroller__inner {
    width: fit-content;
    flex-wrap: nowrap;
    animation: scroll var(--_animation-duration, 120s) var(--_animation-direction, forwards) linear infinite;
}

.scroller__inner {
    padding-block: 1rem;
    display: flex;
    gap: 1rem;
    max-height: 250px;
}

.scoller__inner img {
    height: 175px;
    width: 175px;
}

@keyframes scroll {
    to {
        transform: translate(calc(-100% - 0.5rem));
    }
}

/* ========================================
   BLOG STYLES
   ======================================== */

.hero-banner {
    position: relative;
    height: 30vh;
    background-image: url('../img/blog-header.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 125px 50px 25px 50px;
    box-shadow: inset 0 0 0 1000px rgba(0, 0, 0, 0.4);
}

.hero-content-left {
    max-width: 40%;
}

.hero-content-left h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.hero-content-left p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.hero-content-right {
    max-width: 40%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.hero-content-right h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.hero-content-right img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.blog-grid {
    margin-top: 50px;
}

.research-section h5 {
    display: inline;
    color: #439539;
    font-weight: 700;
    margin-right: 0.5rem;
}

.research-section p {
    display: inline;
    margin-left: 0;
}

.blog-img {
    width: auto;
    height: 100%;
}

.blog-hero {
    background-size: cover;
    background-position: center;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.featured-post {
    border: 2px solid var(--jbk-green);
    border-radius: 10px;
    overflow: hidden;
}

.featured-post img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.blog-card {
    border: 2px solid var(--jbk-green);
    border-radius: 10px;
    transition: transform 0.3s ease;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.category-badge {
    background-color: var(--jbk-green);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-right: 10px;
}

.author-info {
    display: flex;
    align-items: center;
    margin-top: 15px;
}

.author-info img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
}

.author-info small {
    margin-left: 7px;
}

.search-box {
    border: 2px solid var(--jbk-green);
    border-radius: 25px;
    padding: 10px 20px;
    width: 100%;
}

.category-list {
    list-style: none;
    padding: 0;
}

.category-list li {
    margin-bottom: 10px;
}

.category-list a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.category-list a:hover {
    color: var(--jbk-green);
}

.newsletter-box {
    background-color: #f8f9fa;
    border: 2px solid var(--jbk-green);
    border-radius: 10px;
    padding: 20px;
}

/* ========================================
   BLOG CATEGORY CARD FIX
   ======================================== */

.blog-category-card .list-group-item {
    color: #333 !important;
}

.blog-category-card .list-group-item:hover {
    background-color: #f8f9fa;
    color: #439539 !important;
}

.blog-category-card .list-group-item .badge {
    background-color: #e9ecef !important;
    color: #333 !important;
}

/* ========================================
   FOOTER STYLES
   ======================================== */

.footer-fill {
    background-color: #f8f9fa;
}

.footer {
    background-color: #f8f9fa;
}
/* BLOG CATEGORY FIX - MORE SPECIFIC */
.blog-category-card .list-group-flush .list-group-item-action {
    color: #333 !important;
}

.blog-category-card .list-group-flush .list-group-item-action:hover {
    background-color: #f8f9fa !important;
    color: #439539 !important;
}
