: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;
}

.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 {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-img {
    max-height: 120px;
    object-fit: contain;
}

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

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

.blog-image {
    height: 200px;
    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;
}

/* .highlighted-package::before {
    content: "POPULAR";
    position: absolute;
    top: 15px;
    right: -30px;
    background-color: var(--primary);
    color: white;
    padding: 3px 30px;
    transform: rotate(45deg);
    font-size: 0.8rem;
    font-weight: bold;
} */

.package-btn highlighted-package::before {
    background-color: var(--primary);
    color: white;
}

.package-btn {
    background-color: #EDEDED;
    /* background: linear-gradient(135deg, var(--primary), #357abd); */
    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);
}

.search-container {
    background: #ffffff1a;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    max-width: 900px;
    width: 100%;
    margin: 0 20px;
}

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

.search-input {
    flex: 1;
    border: 1px solid #e0e0e0;
    border-right: none;
    padding: 16px 20px;
    font-size: 16px;
    background: white;
    outline: none;
    border-radius: 0;
}

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

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

.dropdown-container {
    position: relative;
    min-width: 200px;
}

.dropdown-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: white;
    border: 1px solid #e0e0e0;
    border-right: none;
    padding: 16px 40px 16px 20px;
    font-size: 16px;
    color: #888;
    cursor: pointer;
    outline: none;
    width: 100%;
    border-radius: 0;
}

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

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

.search-btn {
    background: linear-gradient(135deg, #4a90e2, #357abd);
    border: none;
    color: white;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 0;
    min-width: 140px;
}

.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);
}

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

    .search-input,
    .dropdown-select,
    .search-btn {
        border-radius: 0;
        border-right: 1px solid #e0e0e0;
    }

    .dropdown-container {
        min-width: auto;
    }
}

@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;
    }
}

.d-flex .badge {
    position: relative;
    display: inline-flex;
    align-items: center;
    font-family: "Nunito", sans-serif;
    font-weight: bold;
    font-size: 16px;
}

.d-flex .badge:not(:last-child)::after {
    content: "•";
    margin-left: 10px;
    font-size: 24px;
    color: white;
    vertical-align: middle;
}

.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: "Ubuntu", sans-serif;
    font-weight: bold;
    font-size: 20px;
    color: black;
    margin-bottom: 20px;
    position: relative;
}

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

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 {
    font-family: "Nunito", sans-serif;
    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 25s linear infinite;
}

/* Duplicate for reverse direction */
.scroll-track.reverse {
    animation: scroll-right 25s 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;
}

@media (min-width: 992px) {
    .video-layout {
        flex-direction: row;
        align-items: flex-start;
    }

    .video-sidebar {
        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;
}

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

  .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;
  }
}

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