:root {
    --primary: #2271b6;
    --secondary: #6c757d;
    --accent: #C7A930;
    --light-bg: #f8f9fa;
    --dark-bg: #212529;
}

html,
body {
    overflow-x: hidden;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--primary);
}

.nav-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url("../images/hero-image.jpg");
    background-size: cover;
    background-position: center;
    padding: 6rem 0;
}

.hero-section h2 {
    font-family: 'Acme', sans-serif;
    font-weight: bold;
    font-size: 44px;
}

.hero-section h3 {
     font-family: 'Acme', sans-serif;
     font-size: 35px;
}

.hero-section p {
    font-family: 'Nunito', sans-serif;
    font-weight: bold;
    font-size: 20px;
    padding-top: 20px;
    padding-bottom: 20px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .hero-section h2 {
        font-size: clamp(24px, 6vw, 32px); /* Scales between 24px and 32px */
    }

    .hero-section h3 {
        font-size: clamp(20px, 5vw, 28px); /* Scales between 20px and 28px */
    }

    .hero-section p {
        font-size: clamp(14px, 4vw, 18px); /* Scales between 14px and 18px */
        padding-top: 15px;
        padding-bottom: 15px;
        line-height: 1.5;
    }

    .hero-section p br {
        display: none; /* Remove line breaks on mobile for better flow */
    }
}

/* For very small screens */
@media (max-width: 480px) {
    .hero-section h2 {
        font-size: clamp(22px, 7vw, 28px);
    }

    .hero-section h3 {
        font-size: clamp(18px, 6vw, 24px);
    }

    .hero-section p {
        font-size: clamp(14px, 4.5vw, 16px);
        padding-top: 10px;
        padding-bottom: 10px;
    }
}

.divider {
    width: 60%;
    height: 4px;
    background-color: var(--accent);
    margin: 1rem auto;
}

.featured-job-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.featured-job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.stat-card {
    transition: all 0.3s ease;
    cursor: pointer;
}

.stat-card:hover {
    transform: scale(1.03);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.icon-container {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10%;
    background-color: var(--primary);
    margin: 0 auto 1.5rem;
}

.icon-container i {
    font-size: 1.8rem;
    color: white;
}

.location-item {
    border: #c7c7c7 1px solid;
    transition: all 0.3s ease;
    cursor: pointer;
    font-family: "Nunito", sans-serif;
    font-weight: bold;
    font-size: 16px;
    color: #353535;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

.btn-lang-group {
    font-family: "Nunito", sans-serif;
    font-weight: bold;
    font-size: 16px;
    border-radius: 10px;
    border: none;
}

.location-item:hover {
    background-color: var(--light-bg);
    color: var(--primary) !important;
}

.trusted-logo {
  flex: 0 0 auto;
  margin: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
}

.trusted-logo img {
  max-height: 124px;
  max-width: 120px;
}

@media (max-width: 767.98px) {
  .trusted-logo img {
    max-height: 80px;
    max-width: 90px;
  }
}

@media (max-width: 575.98px) {
  .trusted-logo {
    margin: 0 0.5rem;
  }
}

.blog-card {
    transition: transform 0.3s ease;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-image {
    height: 250px;
    background-color: #e9ecef;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.package-card {
    transition: all 0.3s ease;
    height: 100%;
    border-radius: 10px;
}

.package-card:hover {
    transform: translateY(-5px);
}

.highlighted-package {
    border: 2px solid var(--primary);
    position: relative;
    overflow: hidden;
}

.package-btn {
    background-color: #EDEDED;
    border: none;
    color: #868686;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.nav-link {
    font-weight: 500;
    color: var(--secondary);
}

.nav-link:hover {
    color: var(--primary);
}

.footer-column h3 {
    position: relative;
    padding-left: 15px;
    margin-bottom: 1.5rem;
}

.footer-column h3::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background-color: var(--accent);
}

.state-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 8px;
}

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

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
}

/* Reset and global styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Container */
.search-container {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    position: relative;
}

/* Form layout */
.search-form {
    display: flex;
    flex-wrap: wrap;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Common styles for input, select, and button */
.search-input,
.dropdown-select,
.search-btn {
    height: 56px;
    padding: 0 20px;
    font-size: 16px;
    line-height: 1;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    border-radius: 0;
}

/* Input field */
.search-input {
    flex: 1 1 200px;
    border: 1px solid #e0e0e0;
    background: white;
    outline: none;
    min-width: 200px;
}

.search-input:focus {
    border-color: #4a90e2;
    box-shadow: none;
}

.search-input::placeholder {
    color: #888;
    font-weight: 400;
}

/* Chrome autofill fix */
input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 1000px white inset !important;
    box-shadow: 0 0 0 1000px white inset !important;
    color: #333 !important;
    font-size: 16px !important;
    line-height: 1 !important;
    padding: 0 20px !important;
    height: 56px !important;
}

/* Dropdown container */
.dropdown-container {
    position: relative;
    flex: 1 1 200px;
    min-width: 200px;
}

/* Dropdown select */
.dropdown-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: white;
    background-image: none;
    border: 1px solid #e0e0e0;
    color: #888;
    cursor: pointer;
    outline: none;
    width: 100%;
    line-height: 1.2;
}

.dropdown-select:focus {
    border-color: #4a90e2;
    color: #333;
}

/* Dropdown arrow */
.dropdown-arrow {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #4a90e2;
    pointer-events: none;
    font-size: 14px;
    z-index: 2;
}

/* Submit button */
.search-btn {
    background: linear-gradient(135deg, #4a90e2, #357abd);
    border: none;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1 1 auto;
    max-width: 200px;
    justify-content: center;
}

.search-btn:hover {
    background: linear-gradient(135deg, #357abd, #2a5d94);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3);
}

.search-btn:active {
    transform: translateY(0);
}

/* Responsive styles */
@media (max-width: 768px) {
    .search-form {
        flex-direction: column;
    }

    .search-input,
    .dropdown-container,
    .search-btn {
        flex: 1 1 100%;
        width: 100%;
        max-width: 100%;
    }

    .dropdown-select {
        padding: 0 20px;
        font-size: 16px;
    }

    .search-btn {
        padding: 0 20px;
        font-size: 16px;
        text-align: center;
    }

    .dropdown-arrow {
        right: 12px;
        font-size: 12px;
    }
}

.badge-container {
    margin: 1.5rem 0;
}

.badge-container .badge {
    display: inline-flex;
    align-items: center;
    font-size: 16px;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
}

.badge-container .badge:hover {
    transform: translateY(-3px);
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.7);
}

.badge-container .badge:not(:last-child)::after {
    content: "•";
    margin-left: 16px;
    margin-right: 16px;
    font-size: 16px;
    color: white;
    line-height: 1;
}

/* Mobile layout - two columns with left-aligned bullets */
@media (max-width: 768px) {
    .badge-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem 1rem;
        align-items: start;
    }

    .badge-container .badge {
        display: flex;
        align-items: flex-start;
        padding: 0.5rem 0;
        width: 100%;
        text-align: left;
        background-color: transparent;
        border: none;
    }

    .badge-container .badge:not(:last-child)::after {
        display: none;
    }

    .badge-container .badge::before {
        content: "•";
        margin-right: 8px;
        font-size: 18px;
        color: white;
        line-height: 1.2;
        font-weight: bold;
        flex-shrink: 0;
    }
}

/* Update for existing d-flex structure */
@media (max-width: 768px) {
    .d-flex.flex-wrap.justify-content-center {
        display: grid !important;
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem 1rem;
        align-items: start;
    }

    .d-flex .badge {
        display: flex;
        align-items: flex-start;
        padding: 0.5rem 0;
        width: 100%;
        text-align: left;
        background-color: transparent;
        border: none;
    }

    .d-flex .badge:not(:last-child)::after {
        display: none;
    }

    .d-flex .badge::before {
        content: "•";
        margin-right: 8px;
        font-size: 18px;
        color: white;
        line-height: 1.2;
        font-weight: bold;
        flex-shrink: 0;
    }
}

/* For very small screens, adjust to single column */
@media (max-width: 480px) {
    .badge-container,
    .d-flex.flex-wrap.justify-content-center {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }
}

.namebadge {
    padding: 5px 10px;
    border-radius: 12px;
    background-color: #e9f1f8;
    color: #2271b6;
    font-family: "Nunito", sans-serif;
    font-size: 12px;
    font-weight: bold;
}

h3.feactured-job-title {
    font-family: "Acme", sans-serif;
    font-weight: bold;
    font-size: 24px;
    color: black;
    margin-bottom: 20px;
    position: relative;
}

.short-select {
    width: 150px;
    min-width: auto;
}

p.feactured-job-subtitle {
    font-family: "Ubuntu", sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: #868686;
    margin-bottom: 10px;
    position: relative;
}

p.feactured-job-title {
    font-family: "Nunito", sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #868686;
    margin-bottom: 15px;
    position: relative;
}

span.feactured-job-title-detail {
    font-family: "Nunito", sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #868686;
    margin-left: 5px;
}

  @media (max-width: 576px) {
        h3.feactured-job-title {
            font-size: 20px !important;
        }

        p.feactured-job-subtitle {
            font-size: 14px !important;
        }

        span.feactured-job-title-detail {
            font-size: 14px !important;
        }
    }

.site-apply-btn:hover{
    /* border-radius: 20px; */
    background-color: #2271B6 !important;
    color: black !important;
}

span.feactured-job-title {
    font-family: "Nunito", sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #868686;
    margin-bottom: 5px;
}
.custom-btn {
    border: 2px solid black;
    border-radius: 8px;
    padding: 10px 20px;
    transition: all 0.3s ease;
}

.custom-btn:hover {
    border-color: #fbfbfb;
    background-color: #2271b6;
    color: #fbfbfb;
}

h3.category-title {
    font-family: "Ubuntu", sans-serif;
    font-weight: bold;
    font-size: 20px;
    color: var(--primary);
    padding-bottom: 20px;
}

p.category-title {
    font-family: "Nunito", sans-serif;
    font-weight: bold;
    font-size: 14px;
    color: #868686;
    margin-bottom: 15px;
}

.job-details {
    font-family: "Nunito", sans-serif;
    font-weight: bold;
    font-size: 14px;
    color: #868686;
    margin-bottom: 15px;
}

.job-description {
    text-align: justify;
    line-height: 1.6;
    hyphens: auto;
    word-spacing: 0.05em;
}
/* Scroll container */
.scroll-wrapper {
    position: relative;
    overflow: hidden;
}

.scroll-track {
    display: flex;
    gap: 1.5rem;
    width: max-content;
    animation: scroll-left 11s linear infinite;
}

h2.site-title {
    font-family: 'Acme', sans-serif;
    font-weight: bold;
    font-size: 34px;
}

p.site-subtitle {
    font-family: 'Nunito', sans-serif;
    font-weight: bold;
    font-size: 16px;
}

@media (max-width: 576px) {
    h2.site-title {
        font-size: 25px;
    }

}

/* Duplicate for reverse direction */
.scroll-track.reverse {
    animation: scroll-right 11s linear infinite;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes scroll-right {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

/* Fade overlay for edge fading */
.fade-overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}

.fade-overlay.left {
    left: 0;
    background: linear-gradient(to right, white, transparent);
}

.fade-overlay.right {
    right: 0;
    background: linear-gradient(to left, white, transparent);
}

.video-layout {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.crossbar {
    width: 100%;
    height: 4px;
    background-color: var(--accent);
    margin: 1rem 0 2rem 0;
    border-radius: 2px;
}

.customer-feedback {
    font-family: "Nunito", sans-serif;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 15px;
    text-align: justify;
    line-height: 1.6;
    hyphens: auto;
    word-spacing: 0.05em;
}

.customer-name {
    font-family: "Nunito", sans-serif;
    font-weight: bold;
    font-size: 18px;
    color: black;
    margin-bottom: 2px;
}

.customer-office {
    font-family: "Nunito", sans-serif;
    font-weight: bold;
    font-size: 14px;
    color: black;
    margin-bottom: 5px;
}

.csu-dsc {
    font-family: "Nunito", sans-serif;
    font-weight: bold;
    font-size: 16px;
    color: black;
    margin-bottom: 5px;
}

.blog-topic {
    font-family: "Acme", sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: black;
    margin-bottom: 5px;
}

 .blog-card small {
    font-family: "Nunito", sans-serif;
    font-weight: bold;
    font-size: 16px;
}
.blog-card a {
    font-family: "Nunito", sans-serif;
    font-weight: bold !important;
    font-size: 16px;
    color: #2271b6 !important;
    text-decoration: none;
}
.package-title {
    font-family: "Acme", sans-serif;
    font-weight: 400;
    font-size: 20px;
    color: black;
    margin-bottom: 10px;
}
.package-detail {
    font-family: "Nunito", sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #212121;
    margin-bottom: 10px;
}
.package-list li {
    font-family: "Nunito", sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #4B4B4B;
    list-style-type: none;
}

#faqAccordion .accordion-item {
    border: none !important;
    border-bottom: 3px solid #000 !important;
}

#faqAccordion .accordion-item:last-child {
    border-bottom: none !important;
}

#faqAccordion .accordion-button:not(.collapsed) {
    background-color: var(--primary) !important;
    color: white !important;
    border-color: var(--primary) !important;
    font-weight: bold !important;
    transition: background-color 0.1s ease;
}

.dropdown-container {
    position: relative;
}

.dropdown-container::after {
    content: '';
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 12px solid #2271B6;
    pointer-events: none;
}

.job-dropdown {
    position: relative;
    width: fit-content;
}

.job-dropdown select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: none;
    background-color: #EDEDED;
    padding-right: 30px;
}

.job-dropdown::after {
    content: '';
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-top: 10px solid #868686;
    pointer-events: none;
    z-index: 1;
}

.job-dropdown select:focus {
    background-color: #2271B6;
    color: white;
    outline: none;
}

.job-dropdown:focus-within::after {
    border-top-color: white;
}

.text-secondary {
    color: white !important;
}

/* job-details landing page */
.job-card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

/* Job Detail Page Styles */
.job-detail-header {
    background-color: var(--light-bg);
    padding: 3rem 0;
    border-bottom: 1px solid #dee2e6;
}

.job-detail-header .job-title {
    font-family: 'Acme', sans-serif;
    font-weight: bold;
    font-size: 2.5rem;
    color: var(--dark-bg);
}



.job-detail-header .company-info {
    font-size: 1.1rem;
    color: var(--secondary);
}

.company-logo-wrapper {
    background: white;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.company-logo {
    max-width: 80px;
    max-height: 80px;
    object-fit: contain;
}

.job-summary-card {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    margin-bottom: 2.5rem;
}

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

.summary-item .icon {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.summary-item strong {
    display: block;
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 0.25rem;
}

.summary-item span {
    font-weight: 600;
}

.job-section {
    margin-bottom: 2.5rem;
}

.section-title {
    font-family: 'Acme', sans-serif;
    font-weight: bold;
    font-size: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--accent);
    margin-bottom: 1.5rem;
    display: inline-block;
}

.job-description-content {
    line-height: 1.8;
    color: #343a40;
}
.job-description-content ul, .job-description-content ol {
    padding-left: 20px;
}

.sidebar-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    margin-bottom: 1.5rem;
}

.sidebar-title {
    font-family: 'Acme', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.apply-btn {
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.social-share {
    display: flex;
    gap: 10px;
}

.social-share .social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}
.social-icon.facebook { background-color: #3b5998; }
.social-icon.twitter { background-color: #1da1f2; }
.social-icon.linkedin { background-color: #0077b5; }
.social-icon.whatsapp { background-color: #25d366; }

.social-share .social-icon:hover {
    transform: translateY(-3px);
    opacity: 0.9;
}

.related-job-card {
    display: block;
    padding: 1rem;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    margin-bottom: 1rem;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.related-job-card:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 10px rgba(0,0,0,0.07);
    transform: translateY(-2px);
}

.related-job-card h6 {
    font-weight: bold;
    color: var(--primary);
}

.related-job-card .company {
    font-size: 0.9rem;
    color: #343a40;
}

.related-job-card .location {
    font-size: 0.9rem;
    color: #6c757d;
}

.related-job-card .details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #6c757d;
    margin-top: 0.75rem;
}

.related-job-card .detail-item {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}


/* Mobile Responsive Styles */
@media (max-width: 991.98px) {
  .d-flex.flex-column.flex-lg-row {
    flex-direction: column !important;
  }

  .job-detail-header .job-title {
    font-size: 1.5rem;
    }

  .video-sidebar {
    width: 100% !important;
    flex-direction: row !important;
    justify-content: flex-start !important;
    gap: 10px;
    overflow-x: auto;
  }

  .video-thumb {
    width: 150px !important;
    height: 100px !important;
    flex-shrink: 0;
  }

  .flex-grow-1 {
    width: 100% !important;
  }

  iframe.home-yt {
    height: auto !important;
    aspect-ratio: 16 / 9;
    width: 100% !important;
    border-radius: 15px;
  }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 4rem 0;
    }
    .hero-section h2 {
        font-size: 32px;
    }
    .hero-section h3 {
        font-size: 24px;
    }
    .hero-section p {
        font-size: 16px;
    }
    .search-form {
        flex-direction: column;
        border-radius: 8px;
    }
    .search-input,
    .dropdown-select,
    .search-btn {
        border-radius: 0;
        border-right: 1px solid #e0e0e0;
        border-bottom: 1px solid #e0e0e0;
    }
     .search-input:first-child {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
    }
    .search-btn {
        border-bottom-left-radius: 8px;
        border-bottom-right-radius: 8px;
        border-bottom: none;
    }

    .dropdown-container {
        min-width: auto;
    }
    .d-flex .badge {
        font-size: 14px;
    }
    .d-flex .badge:not(:last-child)::after {
        margin-left: 8px;
        font-size: 20px;
    }

    .featured-job-card, .stat-card, .blog-card, .package-card {
        margin-bottom: 1.5rem;
    }

    .blog-image {
        height: 200px;
    }
}

@media (max-width: 576px) {
    .search-container {
        margin: 0 10px;
        padding: 15px;
    }
    .search-input,
    .dropdown-select {
        padding: 14px 20px;
        font-size: 14px;
    }
    .dropdown-select {
        padding-right: 35px;
    }
    .search-btn {
        padding: 14px 24px;
        font-size: 14px;
    }
    .hero-job-title {
        font-size: 2.2rem;
    }
    .hero-company-info {
        font-size: 1rem;
    }
    .job-summary-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 1.5rem;
    }
    .job-content-card, .sidebar-card {
        padding: 1.5rem;
    }
}

.stom-card {
    border: 1px solid transparent;
    border-left-width: 5px;
    transition: border 0.3s ease, box-shadow 0.3s ease;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    hyphens: auto;
}

.stom-card:hover {
    border: 1px solid #ccc;
    border-left: 5px solid #C7A930;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.stom-card span {
    font-family: "Nunito", sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #353535;
}
