body {
    font-family: 'Segoe UI', Arial, sans-serif !important;
    margin: 0 !important;
    background: #f5f7f9 !important;
    color: #222 !important;
    overflow-y: scroll !important;
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
}

    body::-webkit-scrollbar {
        display: none;
    }
/* Navigation */
header {
    background: #f5f7f9;
    /*box-shadow: 0 2px 8px rgba(0,0,0,0.05);*/
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 60px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 17%;
}

    .logo img {
        width: 100%;
    }

.nav-links {
    display: flex;
    gap: 34px;
    list-style: none;
    margin: 0;
    padding: 0;
}

    .nav-links a {
        text-decoration: none;
        color: #222;
        font-weight: 500;
        transition: color 0.2s;
    }

        .nav-links a:hover {
            color: #03949b;
        }

.user-actions {
    display: flex;
    gap: 16px;
    align-items: center;
}

.sign-in {
    color: #000;
    padding: 9px 22px;
    text-decoration: none;
    font-weight: 500;
    transition: background .2s, color .2s;
    padding-right: 0px;
}

.sign-inspan:hover {
    border-bottom: 1px solid #6c63ff;
    display: inline-block;
}

.get-started {
    background: #03949B;
    color: #fff;
    padding: 9px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: background .2s;
    margin-left: 0;
}

    .get-started:hover {
        background: #fff;
        border: 1px solid #03949B;
        color: #03949B;
    }

/* Hero Banner */
.hero {
    position: relative;
    min-height: 450px;
    background: #b2eadf;
    display: flex;
    align-items: center;
}
.hero-inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
}

.hero-content-area {
    flex: 0 0 60%;
    max-width: 60%;
    padding-right: 3vw;
    padding-left: 3vw;
}

.hero-slider-area {
    flex: 0 0 40%;
    max-width: 40%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 340px;
    padding-right: 3vw;
}
.hero-slider {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 5px;
    box-shadow: 0 8px 38px rgba(86, 160, 182, 0.13);
    perspective: 1200px;
}

    .hero-slider .slider-img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0;
        transform-style: preserve-3d;
        backface-visibility: hidden;
        transition: opacity 1s ease-in-out, transform 1s ease-in-out;
        transform: translateY(30px);
        border-radius: 5px;
    }

        .hero-slider .slider-img.active {
            opacity: 1;
            transform: translateY(0);
            z-index: 2;
        }
@media (max-width: 900px) {
    .hero-inner {
        flex-direction: column;
    }

    .hero-content-area, .hero-slider-area {
        max-width: 100%;
        flex: 1 1 100%;
        padding-right: 0;
    }
}
.overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translateY(30px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.6s ease;
    max-width: 350px;
    z-index: 10;
    text-align: center;
    color: black;
    animation-fill-mode: forwards;
}

    .overlay.active {
        opacity: 1;
        pointer-events: auto;
        animation: slideUpFadeIn 0.8s ease;
        transform: translate(-50%, -50%) translateY(0);
    }
@keyframes slideUpFadeIn {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) translateY(30px);
    }

    to {
        opacity: 1;
        transform: translate(-50%, -50%) translateY(0);
    }
}

    .overlay h2 {
        font-size: 17px;
        font-weight: bold;
        margin-bottom: 0.75rem;
        background: #ffffff6b;
        border-radius: 10px;
    }

    .overlay p {
        font-size: 14px;
        margin-bottom: 1.25rem;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
        background: #ffffff6b;
        border-radius: 10px;
    }

.overlay .btn {
    background: #03949b;
    color: #fff;
    padding: 2px 7px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: background 0.3s;
    border: 1px solid #03949b;
    transition: background-color 0.3s ease;
}

        .overlay .btn:hover {
            background: #fff;
            color: #03949b;
            border: 1px solid #03949b;
        }
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 62%;
    margin-left: 50px;
}

    .hero-content h1 {
        font-size: 2.8rem;
        font-weight: bold;
        margin-bottom: 18px;
    }

    .hero-content .highlight {
        color: #03949B;
        font-weight: bold;
    }

    .hero-content .icon {
        font-size: 2.2rem;
        vertical-align: middle;
    }

    .hero-content p {
        color: #555;
        font-size: 1.2rem;
        margin-bottom: 20px;
        margin-right: 20px;
    }

.searchbar-area {
    padding: 12px 0px;
    border-radius: 20px;
    max-width: 750px;
    margin: 0;
    box-sizing: border-box;
}

.searchbar-form {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 13px rgba(140, 130, 250, 0.05);
    padding: 5px 6px 5px 16px;
    width: 102%;
    margin-bottom: 12px;
}

.searchbar-select {
    height: 45px;
    border-left: 1px solid #000000;
    border: none;
    width: 50%;
    padding-left: 5px;
    background-color: transparent !important;
}

.searchbar-input {
    flex: 1;
    border: none;
    background-color: transparent !important;
    font-size: 14px;
    padding: 12px 0px;
    border-radius: 30px;
    outline: none;
    color: #24264c;
}

.searchbar-btn {
    background: #03949B;
    color: #fff;
    font-weight: 600;
    font-size: 1em;
    border: none;
    border-radius: 10px;
    padding: 0 32px;
    margin-left: 7px;
    height: 44px;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: background .15s;
}

    .searchbar-btn:hover {
        background: #03949B;
    }

.searchbar-icon {
    margin-right: 6px;
    font-size: 1.1em;
    color: #fff;
}

.popular-jobs-row {
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 9px;
    flex-direction: row;
    font-size: 14px;
}

.popular-jobs-title {
    color: #090909;
    font-weight: 700;
    width: 125px;
}

.popular-job {
    border: 1.5px solid #03949b;
    border-radius: 7px;
    padding: 4px 12px;
    color: black;
    font-size: 12px;
    cursor: pointer;
    box-shadow: 4px 5px 6px 0px #03949b5c;
    font-weight: 700;
}

    .popular-job:hover,
    .popular-job.hover-effect {
        background: #fff;
        border-color: #1c1c1d;
    }

.search-form {
    width: 100%; /* adjust form width as needed */
}

.job-search-container {
    margin: 0 auto;
    position: relative;
}

.job-search-input {
    width: 97%;
    padding: 9px 130px 13px 20px; /* Right padding for button, left for spacing */
    border: none;
    border-radius: 30px;
    font-size: 1.1em;
    background: #f7f7fc;
    box-shadow: 0 4px 6px rgb(0 0 0 / 46%);
    outline: none;
    color: #333;
    transition: box-shadow 0.2s;
}

    .job-search-input:focus {
        box-shadow: 0 0 0 2px #7e83ff33;
    }

.job-search-btn {
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    padding: 11px 30px;
    border: none;
    border-radius: 24px;
    background: #03949B !important;
    color: #fff;
    font-weight: 600;
    font-size: 1em;
    box-shadow: 0 1px 10px #7d7ff526;
    cursor: pointer;
    transition: background 0.2s;
}

    .job-search-btn:hover {
        background: linear-gradient(90deg, #6560f0 80%, #8ca3ff 100%);
    }

.popular-jobs {
    margin-top: 8px;
    font-size: 0.9em;
    color: #555;
}

    .popular-jobs a {
        color: #007BFF;
        text-decoration: none;
        margin: 0 4px;
    }

        .popular-jobs a:hover {
            text-decoration: underline;
        }

.top-companies {
    margin-top: 5px;
    display: flex;
    align-items: center;
    gap: 22px;
    font-size: 1.05rem;
    flex-wrap: wrap;
}

    .top-companies img {
        max-width: 46px;
        max-height: 32px;
        height: auto;
        width: 50px;
        border-radius: 5px;
        padding: 2px 3px;
        box-shadow: 0 1px 3px rgba(0,0,0,0.06);
        background: #fff;
    }

/* Hero Illustration */
.hero-img {
    flex: 0 1 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .hero-img img {
        width: 300px;
        border-radius: 24px;
        object-fit: cover;
        box-shadow: 0 6px 38px rgba(44,44,77,0.11);
        background: #fff;
    }

/* Industries Grid */
.popular-industries-section {
    background: #fff;
    padding: 40px 0;
}

.popular-industries-title {
    text-align: center;
    font-size: 2.4em;
    font-weight: bold;
    margin-bottom: 36px;
    color: #111;
    letter-spacing: -1px;
}

.popular-industries-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 36px 54px;
    max-width: 980px;
    margin: 0 auto;
    padding: 0 15px;
}

.industry-card {
    width: 110px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: none;
    box-shadow: none;
    border-radius: 0;
    transition: transform 0.15s;
}

    .industry-card:hover {
        transform: translateY(-4px) scale(1.04);
    }

.industry-icon-bg {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    background: #e9eeff; /* default blue, you can change per industry */
}

.industry-card:nth-child(2) .industry-icon-bg,
.industry-card:nth-child(4) .industry-icon-bg,
.industry-card:nth-child(8) .industry-icon-bg {
    background: #e3faef; /* greenish background for some cards */
}

.industry-card:nth-child(3) .industry-icon-bg,
.industry-card:nth-child(7) .industry-icon-bg {
    background: #f3f0fb; /* purple background for some cards */
}

.industry-icon {
    width: 44px;
    height: 44px;
    object-fit: contain;
}

.industry-name {
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 4px;
    font-size: 1em;
    text-align: center;
}

.industry-count {
    font-size: 0.97em;
    color: #525252;
    text-align: center;
}

.featured-jobs-section {
    background: #fff;
    padding: 50px 0 60px 0;
}

.featured-jobs-title {
    text-align: center;
    font-size: 2.2em;
    font-weight: bold;
    color: #191919;
    margin-bottom: 36px;
    letter-spacing: -1px;
}

/*.featured-jobs-grid {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 36px;
    max-width: 1100px;
    margin: 0 auto 28px auto;
    padding: 0 15px;
}*/
.featured-jobs-grid {
    display: flex;
    gap: 36px;
    overflow: hidden; /* Prevents extra cards from showing when sliding */
    width: 100%;
    max-width: calc(4 * 300px + 3 * 36px);
    margin: 0 auto 28px auto;
    padding: 0 15px 10px;
}
    .featured-jobs-grid::-webkit-scrollbar {
        display: none;
    }

.featured-jobs-grid {
    -ms-overflow-style: none;
    scrollbar-width: none;
}
/*.job-card {
    background: #DAF9FB;
    border-radius: 18px;
    box-shadow: 0 4px 6px 0 rgb(0 0 0 / 46%);
    padding: 30px 26px 20px 26px;
    width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 9px solid #fff;
    position: relative;
    transition: box-shadow 0.20s;
}*/
.job-card {
    background: #DAF9FB;
    border-radius: 18px;
    box-shadow: 0 4px 6px 0 rgb(0 0 0 / 46%);
    padding: 30px 26px 20px 26px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 9px solid #fff;
    position: relative;
    transition: box-shadow 0.20s;
    flex: 0 0 calc((100% / 4) - 27px);
}

@media (max-width: 992px) {
    .featured-jobs-grid {
        max-width: 650px;
    }

    .job-card {
        flex: 0 0 48%;
        max-width: 95vw;
    }
}

@media (max-width: 600px) {
    .featured-jobs-grid {
        max-width: 100vw;
    }

    .job-card {
        flex: 0 0 98vw;
        max-width: 98vw;
    }
}

    .job-card:hover {
        box-shadow: 0 14px 36px 0 rgba(82, 46, 217, 0.13);
    }
.job-header {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    margin-bottom: 16px;
}

.job-logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    background: #fff;
    box-shadow: 0 1px 4px rgba(120,120,200,0.1);
}

.save-icon {
    font-size: 1.35em;
    color: #b7bac6;
    cursor: pointer;
    background: none;
    border: none;
}

.job-title {
    font-size: 1.12em;
    font-weight: bold;
    /*margin-left: 12px;*/
    margin-bottom: 2px;
    color: #232323;
}
/*.job-company {
  font-size: 0.98em;
  color: #c2bce9;
  margin-left: 12px;
  margin-top: -6px;
}*/

.job-details-list {
    margin: 12px 0 16px 0;
    padding: 0;
    list-style: none;
}

    .job-details-list li {
        display: flex;
        align-items: center;
        margin-bottom: 7px;
        color: #8249eb;
        font-size: 1em;
    }

        .job-details-list li span {
            margin-left: 7px;
            color: #9195ae;
            font-size: 1em;
        }

.job-tags {
    display: flex;
    gap: 10px;
    margin-bottom: 17px;
    flex-wrap: wrap;
}

.job-tag {
    background: #eeebfa;
    color: #7a68d0;
    border-radius: 8px;
    padding: 4px 13px;
    font-size: 12px;
    font-weight: 500;
    border: none;
    min-width: 0; /* Allow shrinking */
    word-break: break-word; /* Break long tag text if needed */
}

.job-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.job-btn {
    background: #03949B;
    color: #fff;
    border: none;
    border-radius: 15px;
    font-size: 0.97em;
    padding: 7px 19px;
    font-weight: 600;
    cursor: pointer;
    transition: background .18s;
}

    .job-btn:hover {
        color: #03949B;
        background: #fff;
        border: 1px solid #03949B;
    }

.featured-jobs-viewall {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.slider-progress-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 30px 0 20px 0;
}
.slider-progress-bar span {
  display: inline-block;
  height: 10px;
  width: 26px;
  background: #ccd0d4;       /* gray for inactive/dashed */
  border-radius: 3px;
  opacity: 0.55;
}
.slider-progress-bar span.active {
  background: #13a7a1;       /* accent for active/last bar */
  opacity: 1;
}

.popular-categories-section {
    background: #daf9fb;
    padding: 46px 0 60px 0;
}

.popular-categories-title {
    text-align: center;
    font-size: 2.2em;
    font-weight: bold;
    color: #191919;
    margin-bottom: 33px;
    letter-spacing: -1px;
}

.popular-categories-scroll-wrapper {
    position: relative;
    margin-bottom: 36px;
    overflow: hidden; /* Hide native scroll */
    width: 100%;
    max-width: 1300px; /* or your container max-width */
    margin-left: auto;
    margin-right: auto;
}

.popular-categories-grid {
    display: flex;
    gap: 30px;
    padding: 0 15px;
    animation: marquee 5s linear infinite;
    width: max-content; /* allows scrolling by animation */
    will-change: transform;
}

    .popular-categories-grid::-webkit-scrollbar {
        display: none;
    }

.category-card {
    min-width: 182px;
    max-width: 182px;
    flex: 0 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 24px 22px 24px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px 0 rgba(82, 46, 217, 0.09);
    transition: box-shadow 0.18s, border 0.18s;
    border: 3px solid transparent;
}
@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-100% + 1300px)); /* total width minus container */
    }
}
.popular-categories-scroll-wrapper:hover .popular-categories-grid {
    animation-play-state: paused;
}

    .category-card.selected {
        border: 3px solid #cfc5fa;
        background: #f6f4ff;
        box-shadow: 0 2px 6px 0 rgba(108, 81, 199, 0.11);
    }

.category-icon-bg {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #cbe8ea;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.category-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.category-name {
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 7px;
    font-size: 1.04em;
    letter-spacing: -0.5px;
}

.category-count {
    font-size: 0.97em;
    color: #525252;
}

.popular-categories-viewall {
    display: flex;
    justify-content: center;
}

.viewall-btn {
    background: #03949B;
    color: #fff;
    border: none;
    border-radius: 15px;
    font-size: 1.08em;
    padding: 11px 33px;
    font-weight: 600;
    cursor: pointer;
    transition: background .18s;
}

    .viewall-btn:hover {
        background: #fff;
        color: #03949B;
        border: 1px solid #03949B;
    }

.latest-jobs-section {
    background: #DAF9FB;
    padding: 40px 0 56px 0;
}

.latest-jobs-title {
    text-align: center;
    font-size: 2.2em;
    font-weight: bold;
    color: #191919;
    margin-bottom: 36px;
    letter-spacing: -1px;
}

.latest-jobs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 34px 34px;
    max-width: 980px;
    margin: 0 auto 32px auto;
    padding: 0 14px;
}

.latest-job-card {
    border: 2px solid #03949B;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 2px 20px 0 rgba(82, 46, 217, 0.04);
    padding: 24px 23px 19px 23px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: box-shadow 0.15s, border-color 0.15s;
}

    .latest-job-card:hover {
        border-color: #03949B;
        box-shadow: 0 8px 24px 0 rgba(82, 46, 217, 0.09);
        background: #E7FCFD;
    }

.latest-job-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 14px;
}

.latest-job-company {
    font-weight: 600;
    color: #757575;
    font-size: 1.02em;
    display: block;
}

.latest-job-type {
    font-size: 0.97em;
    color: #B3B3B3;
    margin-top: 2px;
}

.latest-job-icon {
    width: 32px;
    height: 32px;
    margin-right: 6px;
    border: solid 3px #03949B;
    border-radius: 20px;
}

.latest-job-share {
    width: 24px;
    height: 24px;
    margin-left: 6px;
    opacity: .7;
}

.latest-job-role {
    font-weight: 600;
    color: #03949B;
    font-size: 1em;
    margin-bottom: 6px;
    text-decoration: none;
    transition: color 0.13s;
}

    .latest-job-role:hover {
        color: #5f5adc;
        text-decoration: underline;
    }

.latest-job-location {
    display: flex;
    align-items: center;
    color: #3E3E3E;
    font-size: 0.97em;
    margin-top: 2px;
}

    .latest-job-location .icon-location {
        width: 12px;
        height: 13px;
        margin-right: 5px;
        opacity: .62;
    }

.latest-jobs-viewall {
    display: flex;
    justify-content: center;
}

.latest-job-btn {
    background: #03949b;
    color: #fff;
    border: none;
    border-radius: 11px;
    font-size: 1.08em;
    padding: 11px 33px;
    font-weight: 600;
    cursor: pointer;
    transition: background .18s;
}

    .latest-job-btn:hover {
        background: #fff;
        color: #03949B;
        border: 1px solid #03949B;
    }

.latest-job-headimg {
    display: flex;
    flex-direction: row;
}

@media (max-width: 860px) {
    .latest-jobs-grid {
        grid-template-columns: 1fr;
        gap: 24px 0;
    }
}

.latest-job-divider {
    border: none;
    border-top: 1.5px solid #03949B61; /* soft purple, matches your theme */
    margin: 9px 0 10px 0;
    width: 100%;
}

.jobs-cities-section {
    background: #f8fafc;
    padding: 42px 0 36px 0;
}

.jobs-cities-title {
    text-align: center;
    font-size: 2.2em;
    font-weight: bold;
    color: #191919;
    margin-bottom: 38px;
    letter-spacing: -1px;
}

.jobs-cities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 36px 32px;
    max-width: 1060px;
    margin: 0 auto;
    padding: 0 12px;
}

.jobs-city-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.jobs-city-image {
    width: 95%;
    height: 150px;
    border-radius: 20px;
    box-shadow: 0 4px 21px 0 rgba(55,55,90,0.07);
    margin-bottom: 11px;
}

.jobs-city-name {
    font-size: 1.13em;
    font-weight: 600;
    color: #252525;
    margin-bottom: 2px;
}

.jobs-city-openings {
    color: #6a6c71;
    font-size: 0.97em;
}

@media (max-width: 1000px) {
    .jobs-cities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px 16px;
    }

    .jobs-city-image {
        width: 98%;
    }
}

@media (max-width: 650px) {
    .jobs-cities-title {
        font-size: 1.35em;
    }

    .jobs-cities-grid {
        grid-template-columns: 1fr;
    }

    .jobs-city-image {
        width: 100%;
    }
}

.how-works-section {
    padding: 45px 0 50px 0;
}

.how-works-title {
    text-align: center;
    font-size: 2.2em;
    font-weight: bold;
    color: #181818;
    margin-bottom: 44px;
    letter-spacing: -1px;
}

.how-works-grid {
    display: flex;
    justify-content: center;
    gap: 75px;
    margin: 0 auto;
    padding: 0 70px;
}

.how-works-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 300px;
}

.how-works-icon-bg {
    width: 82px;
    height: 82px;
    border-radius: 50%;
    background: #03949B;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.how-works-icon {
    width: 43px;
    height: 43px;
    object-fit: contain;
}

.how-works-step-title {
    font-weight: 700;
    color: #181818;
    margin-bottom: 8px;
    font-size: 1.16em;
    letter-spacing: 0;
}

.how-works-step-desc {
    color: #222;
    font-size: 1em;
    line-height: 1.36;
}

@media (max-width: 950px) {
    .how-works-grid {
        gap: 44px;
    }

    .how-works-step {
        width: 170px;
    }

    .how-works-icon-bg {
        width: 64px;
        height: 64px;
    }

    .how-works-icon {
        width: 31px;
        height: 31px;
    }
}

@media (max-width: 600px) {
    .how-works-title {
        font-size: 1.25em;
    }

    .how-works-grid {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .how-works-step {
        width: 98%;
    }
}

.testimonials-section {
    background: #000000;
    position: relative;
    padding: 65px 0 45px 0;
    overflow: hidden;
}

.testimonials-bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.35;
    pointer-events: none;
}

.testimonials-content {
    position: relative;
    max-width: 1300px;
    margin: 0 auto;
    z-index: 1;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 36px;
    flex-wrap: nowrap;
}

.testimonials-head {
    flex: 0 0 36%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 370px;
    z-index: 2;
    padding-left: 48px;
}

.testimonials-title {
    font-size: 2.5em;
    font-weight: 700;
    color: #fff;
    margin-bottom: 48px;
    line-height: 1.1;
}

    .testimonials-title .highlight {
        color: #03949B;
    }

.testimonials-arrows {
    display: flex;
    gap: 55px;
    margin-top: 99px;
}

.testimonials-arrow {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: none;
    background: #03949B !important;
    color: #fff;
    font-size: 1.6em;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(138,86,245,0.18);
    cursor: pointer;
    transition: background 0.14s;
}

    .testimonials-arrow:active {
        background: #8162d9;
    }

.testimonials-slider {
    flex: 1 1 0;
    display: flex;
    overflow-x: auto;
    gap: 26px;
    scroll-behavior: smooth;
    padding-bottom: 12px;
    margin-right: 5px;
    z-index: 2;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-snap-type: x mandatory;
    scroll-padding-right: 20px;
}

    .testimonials-slider::-webkit-scrollbar {
        display: none;
    }

.testimonial-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 22px 0 rgba(82, 46, 217, 0.12);
    min-width: 260px;
    max-width: 292px;
    padding: 26px 19px 17px 22px;
    flex: 0 0 292px;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 2;
}
@media (max-width: 900px) {
    .testimonials-slider {
        flex-wrap: wrap;
        overflow-x: visible;
        justify-content: center;
        gap: 19px;
        scroll-snap-type: none; /* Disabled snap on small screens */
        scroll-padding-right: unset;
    }

    .testimonial-card {
        min-width: 82vw;
        max-width: 96vw;
        width: 100%;
        flex: 1 1 100%; /* Full width cards and wrap */
        scroll-snap-align: none;
    }
}
    .testimonial-card .stars {
        margin-bottom: 14px;
    }

    .testimonial-card .star-icon {
        width: 24px;
        height: 24px;
        display: inline-block;
        margin-right: 2px;
        vertical-align: middle;
    }

    .testimonial-card .text {
        font-size: 1em;
        color: #232323;
        margin-bottom: 18px;
        line-height: 1.35;
    }

    .testimonial-card .user-info {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-top: 12px;
    }

.testimonial-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    background: #eee;
    box-shadow: 0 1px 7px rgba(138, 138, 200, 0.08);
}

.testimonial-user-data {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.user-name {
    font-weight: 700;
    font-size: 1.09em;
    margin-bottom: 1px;
}

.user-role {
    color: #8587a4;
    font-size: 12px;
}

@media (max-width: 900px) {
    .testimonials-content {
        flex-direction: column;
        gap: 19px;
    }

    .testimonials-head {
        min-width: auto;
        padding-left: 0;
    }

    .testimonials-title {
        margin-bottom: 22px;
        font-size: 1.4em;
    }

    .testimonials-slider {
        flex-wrap: wrap;
        overflow-x: visible;
        justify-content: center;
        gap: 19px;
        scroll-snap-type: none; /* Optional: disable snap on mobile */
    }

    .testimonial-card {
        min-width: 82vw;
        max-width: 96vw;
        flex: 1 1 100%;
        width: 100%;
        scroll-snap-align: none;
    }
}

.find-jobs-country-section {
    background: #fff;
    padding: 48px 0 38px 0;
}

.find-jobs-country-title {
    text-align: center;
    font-size: 2.1em;
    font-weight: bold;
    color: #191919;
    margin-bottom: 42px;
    letter-spacing: -1px;
}

.country-tags-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 26px 20px;
    justify-content: center;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 13px;
}

.country-tag {
    background: #03949B61;
    padding: 10px 26px 10px 15px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    min-width: 195px;
    font-weight: 500;
    font-size: 1.09em;
    transition: box-shadow .13s;
    box-shadow: 0 3px 8px rgba(82,46,217,0.07);
    color: #191919;
}

.country-flag {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    object-fit: cover;
    margin-right: 10px;
    border: 2px solid #fff;
    box-shadow: 0 0.5px 4px rgba(82,46,217,0.08);
}

.country-meta {
    display: flex;
    flex-direction: column;
}

.country-name {
    font-size: 1em;
    font-weight: 600;
    margin-bottom: 2px;
    color: #191919;
}

.country-jobs-count {
    font-size: 0.92em;
    color: #444;
}

.latest-blog-section {
    background: #f8fafc;
    padding: 50px 0 62px 0;
}

.latest-blog-title {
    text-align: center;
    font-size: 2.2em;
    font-weight: bold;
    color: #191919;
    margin-bottom: 42px;
    letter-spacing: -1px;
}

.latest-blogs-grid {
    display: flex;
    gap: 34px;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 14px;
}

.latest-blog-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 6px 0 rgb(0 0 0 / 46%);
    width: 325px;
    min-width: 280px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: box-shadow .15s;
    align-items: center;
}

.latest-blog-img {
    width: 95%;
    height: 192px;
    border-radius: 31px;
    padding: 9px;
}

.latest-blog-body {
    padding: 16px 16px 18px 16px;
    flex: 1 1 auto;
}

.latest-blog-date {
    font-size: 0.99em;
    margin-bottom: 7px;
    font-weight: 600;
}

.latest-blog-title-txt {
    font-weight: 600;
    color: #232323;
    font-size: 1.15em;
    margin-bottom: 7px;
}

.latest-blog-desc {
    color: #525252;
    font-size: 0.99em;
    margin-bottom: 8px;
    line-height: 1.38;
}

.latest-blog-viewall {
    display: flex;
    justify-content: center;
    margin-top: 17px;
}

.latest-blog-btn {
    background: #03949b;
    color: #fff;
    border: none;
    border-radius: 11px;
    font-size: 1.08em;
    padding: 11px 33px;
    font-weight: 600;
    cursor: pointer;
    transition: background .18s;
}

    .latest-blog-btn:hover {
        background: #fff;
        color: #03949B;
        border: 1px solid #03949B;
    }

@media (max-width: 950px) {
    .country-tag {
        min-width: 140px;
        font-size: 1em;
    }

    .latest-blogs-grid {
        gap: 15px;
    }

    .latest-blog-card {
        width: 97vw;
        min-width: 220px;
    }
}

.site-footer {
    background: #03949B;
    color: #fff;
    font-family: 'Segoe UI', Arial, sans-serif;
    padding: 46px 0 0 0;
}

.footer-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 18px;
    display: flex;
    gap: 48px;
    justify-content: start;
}

.footer-column {
    flex: 1 1 0;
    min-width: 180px;
}

.footer-title-main {
    font-size: 2em;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

    .footer-title-main .footer-arrow {
        background: #d6cafe;
        color: #212049;
        font-size: 0.94em;
        padding: 8px 11px 7px 11px;
        border-radius: 7px;
        margin-left: 7px;
        vertical-align: middle;
        display: inline-block;
    }

.footer-brand-title {
    font-weight: 700;
    font-size: 1.25em;
    color: #fff;
    margin-bottom: 5px;
    letter-spacing: 0.2px;
}

.footer-address,
.footer-email {
    font-size: 0.99em;
    color: #fff;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-social {
    margin-top: 5px;
    margin-bottom: 15px;
    display: flex;
    gap: 8px;
}

    .footer-social img {
        width: 25px;
        height: 25px;
        background: #252525;
        border-radius: 6px;
        padding: 5px;
        transition: background 0.14s;
    }

        .footer-social img:hover {
            background: #fff;
            color: #000
        }

.footer-description {
    font-size: 1em;
    color: #e7e8eb;
    margin-bottom: 14px;
    line-height: 1.4;
    max-width: 320px;
}

.footer-social a {
    height: auto;
    background-color: #fff;
    width: 20px;
    padding: 2px 4px;
    border-radius: 5px;
}

    .footer-social a:hover {
        background-color: #fff;
        color: #03949B
    }

.footer-column h4 {
    font-size: 1.08em;
    font-weight: 600;
    color: #fff;
    margin-bottom: 14px;
}

.footer-links,
.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    line-height: 1.65;
    font-size: 1em;
}

    .footer-links li,
    .footer-list li {
        margin-bottom: 2px;
    }

    .footer-links a,
    .footer-list a {
        color: #fff;
        text-decoration: none;
        transition: color .14s;
    }

        .footer-links a:hover,
        .footer-list a:hover {
            color: #03949b;
            background: #fff;
            padding: 0px 5px;
            border-radius: 15px;
        }

.footer-divider {
    border: none;
    border-top: 1.6px solid #403f4d;
    margin: 22px 0 6px 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 100%;
    background: white;
    color: #211049;
    font-size: 0.97em;
    padding: 10px 18px 9px 18px;
}

    .footer-bottom a {
        color: #03949b;
        font-weight: 600;
    }

.footer-payment {
    display: flex;
    gap: 16px;
    align-items: center;
}

    .footer-payment img {
        height: 29px;
        margin-right: 2px;
    }

@media (max-width:900px) {
    .footer-main {
        flex-direction: column;
        gap: 10px;
    }

    .footer-column {
        min-width: 0;
    }

    .footer-bottom {
        font-size: 0.91em;
    }
}
/* Blurry overlay */
nav {
    position: relative;
}

/* Popup Dropdown Below Sign In */
.dropdown-modal {
    display: none;
    position: absolute;
    top: 84px; /* To appear below Sign In */
    left: 68%;
    transform: translateX(-50%);
    z-index: 9999999999;
    background-color: white;
    height: 95px;
    width: 300px;
    border-radius: 10px;
}

/* Popup Box */
.packagemodal-content {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 18px rgba(85,83,178,0.18);
    width: 360px;
    padding: 32px 18px 25px 18px;
    text-align: center;
    font-family: 'Segoe UI', Arial, sans-serif;
}

/* Title Styles */
.modal-title {
    font-weight: bold;
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: #111;
}

.login-link {
    font-weight: 500;
    color: #03949B;
    font-size: 18px;
    margin-left: 4px;
}

/* Button Group */
.modal-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 0;
}

/* Buttons */
.modal-btn {
    padding: 5px 25px;
    border: 1px solid #DDD;
    border-radius: 8px;
    background: #fff;
    color: #222;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    box-shadow: none;
    transition: background 0.16s, color 0.16s, border 0.16s;
}

    .modal-btn.active,
    .modal-btn:focus {
        background: #03949b;
        color: #fff;
        border: 1px solid #03949b;
        outline: none;
    }

    .modal-btn:hover {
        border-color: #03949b;
        color: black;
    }

/* Optional: Smooth font rendering */
body, .packagemodal-content {
    -webkit-font-smoothing: antialiased;
}

    body.modal-blur::before {
        content: "";
        position: fixed;
        left: 0;
        top: 0;
        right: 0;
        bottom: 0;
        z-index: 97;
        background: rgba(211,206,239,0.19);
        backdrop-filter: blur(6.5px);
        pointer-events: none;
    }

.hero-bar {
    background: url('jobsearch-bg.png') center/cover no-repeat;
    padding: 40px 20px 25px 20px;
    border-radius: 6px;
    text-align: center;
    /*box-shadow: 0 2px 12px rgba(80,80,120,0.18);*/
    display: flex;
    justify-content: center;
    margin: 0px 7px;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: #222;
}

.success {
    color: #03949b;
}

.search-form {
    display: inline-flex;
    border-radius: 30px;
    background: #fff;
    box-shadow: 0 2px 13px rgba(140,130,250,0.05);
    padding: 4px;
    align-items: center;
}

    .search-form input[type="text"] {
        border: none;
        outline: none;
        padding: 14px 18px;
        border-radius: 30px 0 0 30px;
        font-size: 1.12rem;
        min-width: 210px;
    }

    .search-form button {
        background: #c2abea;
        color: #3b288a;
        border: none;
        border-radius: 0 30px 30px 0;
        padding: 0 30px;
        height: 45px;
        font-weight: 600;
        font-size: 1.05rem;
        cursor: pointer;
        display: flex;
        align-items: center;
    }

.search-icon {
    margin-right: 10px;
    color: #6c63ff;
    font-size: 1.05em;
}

.results-layout {
    display: flex;
    gap: 40px;
    padding: 35px 30px 40px 30px;
    margin: 0 auto 60px auto;
    justify-content: space-around;
}

.filters-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 3px 3px 7px rgb(0 0 0 / 58%);
    padding: 24px 18px 18px 18px;
    max-width: 275px;
    width: 100%;
    font-family: 'Segoe UI', Arial, sans-serif;
    height: fit-content;
}

.filters-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.filter-icon {
    width: 22px;
    height: 22px;
    margin-right: 8px;
}

.filters-title {
    font-size: 16px;
    font-weight: 600;
    color: black;
    letter-spacing: 0.5px;
    margin-right: auto;
}

.reset-link {
    font-size: 0.98rem;
    color: #03949b;
    text-decoration: none;
    margin-left: 18px;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.15s;
}

    .reset-link:hover {
        color: #03949b;
        text-decoration: underline;
    }

.filters-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 14px;
}

    .filters-group label {
        font-size: 14px;
        color: #6c63ff;
        font-weight: 500;
        margin-bottom: 6px;
    }

    .filters-group input[type="text"],
    .filters-group select {
        border: 1.5px solid #03949b;
        border-radius: 7px;
        padding: 7px 15px;
        font-size: 12px !important;
        background: #ffffff;
        color: #000000;
        outline: none;
        transition: border-color 0.17s;
        line-height: 1;
    }

        .filters-group input[type="text"]:focus,
        .filters-group select:focus {
            border-color: #03949b;
            background: #bfe7e7;
        }

@media (max-width: 600px) {
    .filters-card {
        max-width: 98vw;
        padding: 16px 8px;
    }
}

.job-listings {
    text-align: center;
    padding-bottom: 44px;
}

.job-results-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #222;
    letter-spacing: -1px;
    margin-top: 0px;
}

.jobs-slider {
    /*display: flex;*/
    gap: 20px;
    /* justify-content: center; */
    /* flex-wrap: wrap; */
    min-height: 315px;
    margin-bottom: 30px;
    /* flex-direction: row;*/
}

.searchjob-card {
    background: #DAF9FB;
    border-radius: 18px;
    box-shadow: 4px 4px 5px rgb(58 58 58 / 32%);
    padding: 24px 5px 15px 12px;
    max-width: 280px;
    text-align: center;
    display: none;
    flex-direction: column;
    justify-content: space-around;
    border: 10px solid #fff;
    font-size: 14px;
    position: relative;
    gap: 8px;
}

    .searchjob-card.active {
        display: flex;
    }

.job-top {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 8px;
}

.job-logo {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 1px 4px rgba(120,120,200,0.09);
}

.job-title {
    font-size: 14px;
    font-weight: bold;
    color: #757575;
    margin-bottom: 8px;
}

.job-company {
    font-size: .98em;
    color: #B3B3B3;
    text-align: left
}

.job-info-row {
    display: flex;
    gap: 9px;
    margin-bottom: 9px;
    flex-direction: column;
}

    .job-info-row span {
        display: flex;
        align-items: center;
        background: none;
        font-size: 1em;
    }

    .job-info-row img {
        width: 16px;
        height: 16px;
        margin-right: 4px;
    }

.job-desc {
    display: -webkit-box;
    -webkit-line-clamp: 2; /* Limit to 3 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 4.5em; /* Approximate height depending on line height */
    line-height: 1.5em;
}

.job-tags-row {
    display: flex;
    gap: 8px;
    margin-bottom: 10px;
    margin-top: 2px;
}

.job-tag {
    background: #DAF9FB;
    color: #0394a7;
    border-radius: 6px;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 500;
    border: 1.5px solid #03949b;
}

.job-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /*margin-top: 12px;*/
    /*border-top: 1.6px solid #cac5f2;*/
    padding-top: 8px;
}

.job-date {
    color: #03949B;
    font-size: .99em;
}

.job-details-btn {
    background: #03949B;
    color: #fff;
    border: none;
    border-radius: 15px;
    font-size: 1.07em;
    padding: 7px 23px;
    font-weight: 600;
    cursor: pointer;
    transition: background .15s;
}

.pagination {
    display: flex;
    gap: 7px;
    align-items: center;
    justify-content: center;
    margin-top: 22px;
    font-size: 1.13em;
    font-weight: 500;
    color: #7c74d6;
}

.page {
    background: none;
    color: #03949b;
    border-radius: 7px;
    padding: 3px 15px;
    cursor: pointer;
    transition: background 0.14s, color 0.14s;
}

    .page.active {
        background: #03949b;
        color: #fff;
        font-weight: bold;
    }

    .page:hover:not(.active) {
        background: #03949b;
        color: #fff;
    }

    .page.prev,
    .page.next {
        background: none;
        color: #03949b;
        font-weight: 500;
    }

        .page.prev:hover,
        .page.next:hover {
            text-decoration: underline;
        }

/* Responsive */
@media (max-width: 800px) {
    .jobs-slider {
        flex-direction: column;
        gap: 18px;
    }

    .job-card {
        max-width: 98vw;
        min-width: 98vw;
        font-size: .97rem;
    }
}

.companyhero-content {
    position: relative;
    z-index: 2;
    /*max-width: 100%;*/
    /* margin-left: 60px; */
    width: 50%;
}

.search-btn {
    width: 100%;
    background: #fff;
    border: 1.5px solid #03949b;
    border-radius: 8px;
    color: #03949b;
    font-weight: bold;
    padding: 7px;
    text-align: center;
    transition: all 0.3s ease;
    font-size: 13px;
}

    .search-btn:hover {
        background: #03949b;
        color: #fff;
    }

.listcheckbox {
    border: 1.5px solid #03949b !important;
    padding: 7px 15px;
    border-radius: 7px !important;
    font-size: 13px;
    margin-bottom: 14px;
}

.checkboxlebel {
    font-size: 12px;
    margin-top: 5px;
}

.sidenav-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 3px 3px 7px rgb(0 0 0 / 58%);
    padding: 11px 18px 11px 18px;
    width: 100%;
    font-family: 'Segoe UI', Arial, sans-serif;
    height: fit-content;
}

.new-usernavdash {
    list-style: none;
    margin: 0;
    padding: 0;
}

    .new-usernavdash li {
        margin-bottom: 2px;
    }

        .new-usernavdash li a {
            display: flex;
            align-items: center;
            padding: 8px 18px;
            border-radius: 8px;
            color: #555;
            font-weight: 500;
            font-size: 14px;
            text-decoration: none;
            transition: background 0.18s, color 0.18s;
        }

            .new-usernavdash li.active a,
            .new-usernavdash li a:hover {
                background: #03949B;
                color: #fff;
            }

.nav-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 21px;
    margin-right: 13px;
    font-size: 18px;
    /* you can set background or color here for icons */
}

.nav-text {
    flex: 1;
}

/* Example for icon coloring, update selectors for your icon system */
.icon-dashboard {
    color: black;
}

.new-profilestat {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0;
    padding: 0px 12px;
    background: transparent;
}

.new-profilecard {
    list-style: none;
    flex: 1 1 0px;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 3px 12px 0 rgba(0, 0, 0, 0.09);
    display: flex;
    align-items: center;
    padding: 18px 19px;
    margin-bottom: 0;
    transition: box-shadow 0.2s;
    position: relative;
}

    .new-profilecard a {
        display: flex;
        width: 100%;
        color: inherit;
        text-decoration: none;
    }

.stat-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    position: relative;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #222;
    margin-right: 18px;
    min-width: 40px;
    display: flex;
    flex-direction: column;
}

.stat-label {
    font-size: 14px;
    color: #888;
    font-weight: 500;
}

.stat-icon {
    background: #006F75;
    border-radius: 50%;
    box-shadow: 0 1px 8px #d1c3fd70;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-left: 14px;
}

    .stat-icon img {
        width: 24px;
        height: 24px;
        object-fit: contain;
        display: block;
    }

@media (max-width: 767px) {
    .new-profilecard {
        min-width: unset;
        padding: 12px 10px;
    }

    .stat-number {
        font-size: 1.4rem;
    }

    .stat-icon {
        width: 34px;
        height: 34px;
        font-size: 1.1rem;
        right: 8px;
    }
}
/* Card and Table Styling */
.datatable-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 3px 12px 0 rgba(0,0,0,0.09);
    padding: 18px 14px 12px 14px;
    margin-bottom: 30px;
}

.table-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
}

.styled-table {
    overflow: hidden;
    width: 100%;
}

    .styled-table thead th {
        background: #03949B61;
        color: #444;
        font-weight: 600;
        font-size: 12px;
        border-bottom: none;
        padding: 12px 10px;
    }

    .styled-table tbody td {
        font-size: 11px;
        color: #232323;
        border-bottom: 1px solid #f3f2fb;
        background: #fff;
        vertical-align: middle;
        padding: 12px 10px;
    }

    .styled-table tbody tr:last-child td {
        border-bottom: none;
    }

/* Link and Button styles */
.link-purple {
    color: #9856f7;
    text-decoration: none;
    font-weight: 500;
}

    .link-purple:hover {
        text-decoration: underline;
    }

/* Download button */
.cv-btn {
    background: #03949B;
    border: none;
    border-radius: 8px;
    width: 30px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: opacity 0.2s;
    box-shadow: 0 1px 4px #e5d7fc80;
    color: white;
}

    .cv-btn img {
        width: 18px;
        height: 18px;
        filter: invert(1);
    }

    .cv-btn:hover {
        opacity: 0.8;
    }

/* DataTables Pagination and Controls */
.dataTables_wrapper .dataTables_length {
    margin-bottom: 10px;
}

    .dataTables_wrapper .dataTables_length select {
        border-radius: 8px;
        padding: 4px 8px;
        border: 1px solid #dedbe7;
        margin-right: 4px;
    }

.dataTables_wrapper .dataTables_paginate .paginate_button {
    box-sizing: border-box;
    display: inline-block;
    min-width: 0.5em;
    padding: 6px 11px;
    margin-left: 2px;
    text-align: center;
    text-decoration: none !important;
    cursor: pointer;
}

.dataTables_wrapper .dataTables_paginate {
    padding-top: 12px;
}

.dataTables_wrapper .dataTables_info {
    font-size: 12px !important;
}

.dataTables_wrapper .paginate_button {
    border: none !important;
    background: none !important;
    margin: 0 3px;
    font-weight: 500;
    font-size: 13px;
    min-width: 32px;
    height: 24px;
    padding: 0;
    border-radius: 8px !important;
    color: #03949b !important;
}

    .dataTables_wrapper .paginate_button.current,
    .dataTables_wrapper .paginate_button.current:hover {
        background: #03949B !important;
        color: #fff !important;
        font-weight: 600;
        border: none !important;
    }

    .dataTables_wrapper .paginate_button.disabled {
        color: #c7baf7 !important;
    }

    .dataTables_wrapper .paginate_button:hover:not(.current) {
        background: #c1e7ea !important;
        color: #000 !important;
    }

.dataTables_wrapper .dataTables_info {
    color: #888;
    font-size: 0.94rem;
    margin-bottom: 6px;
}

.dataTables_wrapper .dataTables_filter input {
    border-radius: 8px;
    border: 1px solid #dedbe7;
    padding: 5px 10px;
    margin-left: 8px;
}

.dataTables_filter {
    display: none !important;
}

.package-card {
    background: #bfe5e8;
    border-radius: 18px;
    border-top: 1.5px solid #03949b;
    box-shadow: 0 5px 5px 0 rgb(0 0 0 / 30%);
    max-width: 320px;
    width: 100%;
    margin: 20px auto;
    padding: 0;
    overflow: hidden;
    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    display: flex;
    flex-direction: column;
}

.package-card-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8px 18px;
    background: #fff;
    border-radius: 18px 18px 0 0;
    border-bottom: none;
}

.package-tier {
    display: inline-flex;
    align-items: center;
    color: black;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 8px;
    padding: 3px 14px 3px 8px;
    margin-bottom: 7px;
    gap: 5px;
    border: 1.5px solid #03949b;
}

.package-tier-icon {
    width: 18px;
    height: 18px;
    margin-right: 5px;
}

.package-title {
    color: #232160;
    font-size: 16px;
    font-weight: 600;
}

.package-card-body {
    padding: 16px 18px 18px 18px;
    background: transparent;
    flex: 1 1 0;
}

.package-price {
    color: #232160;
    font-weight: 900;
    font-size: 25px;
    margin-bottom: 4px;
    letter-spacing: 1px;
}

    .package-price .currency {
        font-size: 1.2rem;
        font-weight: 700;
        color: #03949b;
        margin-right: 2px;
    }

    .package-price .price-unit {
        font-size: 14px;
        color: #555;
        font-weight: 400;
        margin-left: 5px;
    }

.package-meta {
    margin: 14px 0 8px 0;
    font-size: 12px;
    font-weight: 500;
    color: #5c5184;
}

    .package-meta div {
        margin-bottom: 8px;
    }

    .package-meta strong {
        color: #232160;
        font-weight: 700;
    }

.package-upgrade-btn {
    background: #03949b;
    color: #fff;
    border: 1px solid #03949b;
    border-radius: 10px;
    padding: 7px 0;
    width: 60%;
    font-size: 16px;
    font-weight: 600;
    margin-top: 11px;
    transition: background 0.18s;
    cursor: pointer;
    box-shadow: 0 2px 12px #03949b;
}

    .package-upgrade-btn:hover {
        background: #fff;
        color: #03949b;
        border: 1px solid #03949b;
    }

@media (max-width: 600px) {
    .package-card {
        max-width: 100%;
        margin: 12px 0;
    }

    .package-card-header, .package-card-body {
        padding: 13px 11px;
    }
}

.price-modal-content {
    background: none;
    border-radius: 18px;
    border: none;
    width: 100%;
}

.plan-simple-card {
    background: #fff;
    border: 2px solid #03949b;
    border-radius: 18px;
    padding: 28px 22px 26px 22px;
    box-shadow: 0 1.5px 12px 0 #d1adf722;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.plan-card-badge {
    border: 2px solid #03949b;
    border-radius: 7px;
    color: #03949b;
    font-weight: 700;
    display: flex;
    align-items: center;
    padding: 4px 15px 4px 8px;
    font-size: 1.08rem;
    margin-bottom: 18px;
    background: #fff;
}

.plan-badge-icon {
    width: 22px;
    height: 22px;
    margin-right: 7px;
}

.plan-card-price {
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 10px;
    color: #111;
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.rupee-symbol {
    font-size: 1.6rem;
    font-weight: 800;
    color: #000;
}

.per-month {
    font-size: 1.04rem;
    color: #888;
    font-weight: 500;
    margin-left: 2px;
}

.plan-primary-btn {
    width: 100%;
    background: #03949b;
    color: #fff;
    border: 1px solid #03949b;
    border-radius: 8px;
    padding: 12px 0;
    margin: 18px 0 20px 0;
    font-size: 1.08rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: background 0.18s;
    box-shadow: 0 2px 8px #e3d7fa80;
    cursor: pointer;
}

    .plan-primary-btn:hover {
        color: #03949b;
        background: #fff;
        border: 1px solid #03949b;
    }

.plan-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

    .plan-feature-list li {
        display: flex;
        align-items: center;
        color: #353053;
        font-size: 1rem;
        font-weight: 500;
        margin-bottom: 13px;
    }

.plan-check {
    display: inline-flex;
    align-items: center;
    margin-right: 11px;
    min-width: 22px;
}

@media (max-width: 420px) {
    .plan-simple-card {
        width: 100%;
        padding: 15px 5px 12px 5px;
    }

    .plan-card-price {
        font-size: 2.1rem;
    }

    .plan-card-badge {
        font-size: 1em;
    }
}

.featured-profile-card {
    background: #006F75;
    color: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(90, 63, 205, 0.2);
    padding: 24px 20px 24px 20px;
    font-family: 'Inter', Arial, sans-serif;
    border: 2px solid #FFFFFF;
    box-shadow: 0px 0px 4px 0px #00000040;
}

.profile-header {
    background: #006F75;
    border-radius: 8px;
    display: inline-block;
    padding: 4px 14px;
    font-weight: bold;
    font-size: 1.12rem;
    margin-bottom: 18px;
    border: 2px solid #fff;
    color: #fff;
}

.profile-price {
    font-size: 2.5rem;
    color: #ffdd00;
    font-weight: bold;
    margin-bottom: 10px;
    display: flex;
    align-items: baseline;
}

    .profile-price .currency {
        font-size: 2.1rem;
    }

    .profile-price .amount {
        font-size: 2.5rem;
    }

    .profile-price .duration {
        font-size: 1.1rem;
        color: #ffdd00;
        font-weight: 400;
    }

.profile-desc {
    color: #fff;
    margin-bottom: 17px;
    margin-top: 4px;
    font-size: 14px;
    line-height: 1.35;
}

.profile-features {
    list-style: none;
    padding: 0;
    margin: 0 0 18px 0;
}

    .profile-features li {
        display: flex;
        align-items: center;
        font-size: 14px;
        margin-bottom: 7px;
        font-weight: 500;
    }

.icon-img {
    width: 22px;
    height: 22px;
    margin-right: 10px;
    vertical-align: middle;
    object-fit: contain;
}

.payment-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.paypal-btn, .stripe-btn {
    background: #fff;
    border: none;
    border-radius: 7px;
    font-size: 1.2rem;
    color: #6c41c0;
    cursor: pointer;
    font-weight: bold;
    outline: none;
    width: 100%;
    box-shadow: 0 2px 8px rgba(90,63,205,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: box-shadow 0.16s;
    padding: 7px 0px;
}

    .paypal-btn img {
        height: 17px;
        margin-right: 12px;
    }

    .paypal-btn:hover, .stripe-btn:hover {
        box-shadow: 0 6px 20px rgba(90,63,205,0.13);
    }
.dashprofile-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 18px rgba(86, 86, 105, 0.10);
    border: 2px solid #ededf6;
    overflow: hidden;
    position: relative;
}

.profile-cover {
    position: relative;
    width: 100%;
    height: 128px;
    background: #dde6e9;
    overflow: visible;
}

.cover-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cover-camera {
    position: absolute;
    top: 12px;
    right: 18px;
    background: #fff;
    border: none;
    border-radius: 50%;
    padding: 7px;
    box-shadow: 0 1.5px 6px rgba(0,0,0,0.10);
    cursor: pointer;
}

    .cover-camera img {
        width: 22px;
        height: 22px;
    }

/* Overlapping profile picture */
.avatar-container {
    position: absolute;
    left: 35px;
    bottom: -48px;
    width: 98px;
    height: 98px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    z-index: 2;
}

.avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 3px solid #03949b;
    background: #f0f0f0;
    box-shadow: 0 2px 14px rgba(124,71,231,0.09);
    object-fit: cover;
}

.profile-details {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    background: #fff;
    padding: 58px 36px 30px 36px; /* Left padding matches avatar offset */
    position: relative;
}

.profile-info {
    display: flex;
    flex-direction: column;
}

.profile-name {
    color: #006F75;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.info-line {
    display: flex;
    align-items: center;
    font-size: 14px;
    margin-bottom: 8px;
}

    .info-line i {
        color: #006F75;
        font-size: 14px;
        margin-right: 10px;
    }

/* Icon styles: use inline SVG as backgrounds for best fidelity */
.proicon {
    display: inline-block;
    width: 22px;
    height: 22px;
    margin-right: 11px;
    vertical-align: middle;
    opacity: 1;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 22px 22px;
}

    /* Substitute SVG background-images below with your icon assets if desired */
    .proicon.location {
        background-image: url('data:image/svg+xml;utf8,<svg fill="mediumpurple" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2C8.1 2 5 5.1 5 9c0 5 7 13 7 13s7-7.9 7-13c0-3.9-3.1-7-7-7zm0 9.5c-1.4 0-2.5-1.1-2.5-2.5S10.6 6.5 12 6.5 14.5 7.6 14.5 9 13.4 11.5 12 11.5z"/></svg>');
    }

    .proicon.mail {
        background-image: url('data:image/svg+xml;utf8,<svg fill="mediumpurple" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4-8 5-8-5V6l8 5 8-5v2z"/></svg>');
    }

    .proicon.phone {
        background-image: url('data:image/svg+xml;utf8,<svg fill="mediumpurple" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.62 10.79a15.05 15.05 0 006.59 6.59l2.2-2.2a1 1 0 011.11-.21 11.36 11.36 0 003.55.57 1 1 0 011 1v3.16a1 1 0 01-1 1C9.27 23 1 14.73 1 5a1 1 0 011-1h3.17a1 1 0 011 1c0 1.24.19 2.48.57 3.64a1 1 0 01-.21 1.11l-2.2 2.21z"/></svg>');
    }

.profile-meta {
    display: flex;
    align-items: center;
    /*margin-top: 14px;*/
    margin-left: 14px;
}

.work-label {
    font-size: 14px;
    color: #333;
    font-weight: 600;
    margin-right: 7px;
}

/* Toggle switch style */
.switch {
    position: relative;
    display: inline-block;
    width: 39px;
    height: 22px;
    vertical-align: middle;
}

    .switch input {
        display: none;
    }

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #e4d1fa;
    border-radius: 30px;
    transition: 0.3s;
}

    .slider:before {
        position: absolute;
        content: "";
        height: 16px;
        width: 16px;
        left: 3px;
        bottom: 3px;
        background-color: white;
        transition: 0.3s;
        border-radius: 50%;
    }

.switch input:checked + .slider {
    background-color: #03949B;
}

    .switch input:checked + .slider:before {
        transform: translateX(16px);
    }

.btn-table {
    background-color: #006F75;
    color: white;
    line-height: normal;
    padding: 4px 7px;
    font-size: 12px;
}
/*message box*/
.container1 {
    display: flex;
    border-radius: 12px;
    background: #fff;
    min-height: 420px;
    box-shadow: 0 2px 8px rgba(44,62,80,0.07);
}

.sidebar1 {
    width: 260px;
    background: #f5f8fa;
    border-radius: 12px 0 0 12px;
    border-right: 1.5px solid #006F75A8;
    display: flex;
    flex-direction: column;
}

.sidebar-header1 {
    padding: 14px 18px;
    color: #a7a7a7;
    font-size: 15px;
}

.user-list1 {
    flex: 1;
    max-height: 420px; /* fixed height, adjust as needed */
    overflow-y: scroll;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

    /* Hide scrollbar for Chrome, Safari, and Opera */
    .user-list1::-webkit-scrollbar {
        display: none;
    }

.user1 {
    display: flex;
    align-items: center;
    padding: 12px 18px;
    cursor: pointer;
    border-radius: 8px;
    margin: 6px 10px;
    transition: background 0.2s;
}

    .user1.active1, .user1:hover {
        background: #e4f1fc;
    }

.avatar1 {
    width: 37px;
    height: 37px;
    border-radius: 50%;
    margin-right: 10px;
    border: 2.5px solid #d4dff6;
}

.username1 {
    font-weight: 600;
    color: #178196;
    flex: 1;
}

.count1 {
    background: #132c52;
    color: #fff;
    border-radius: 12px;
    padding: 1.5px 8px;
    font-size: 13px;
    margin-left: 10px;
}

.chat-panel1 {
    flex: 1;
    display: flex;
    flex-direction: column;
    border-radius: 0 12px 12px 0;
    background: #fff;
    min-width: 0;
    justify-content: space-between;
}

.chat-header1 {
    padding: 7px;
    display: flex;
    align-items: center;
    border-bottom: 1.5px solid #006F75A8;
}

    .chat-header1 .chat-username1 {
        margin-left: 14px;
        color: #0c5265;
        font-weight: 600;
        font-size: 14px;
    }

.chat-date1 {
    align-self: flex-start;
    background: #d3e6ea;
    color: #125b6b;
    padding: 5px 16px;
    border-radius: 8px;
    margin: 18px 0 16px 40px;
    font-size: 13px;
    font-weight: 500;
}

.chat-body1 {
    padding: 0 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
    max-height: 297px; /* fixed height, adjust as needed */
    overflow-y: scroll;
    scrollbar-width: none; /* for Firefox */
    -ms-overflow-style: none; /* for IE and Edge */
}

    /* Hide scrollbar for Chrome, Safari, and Opera */
    .chat-body1::-webkit-scrollbar {
        display: none;
    }

.message1 {
    display: flex;
    align-items: flex-end;
    margin-bottom: 18px;
}

    .message1.left1 {
        flex-direction: row;
    }

        .message1.left1 .bubble1 {
            border-bottom-left-radius: 0px;
        }

    .message1.right1 {
        flex-direction: row-reverse;
    }

.avatar-small1, .avatar-google1 {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    margin: 0 10px;
}

.bubble1 {
    background: #c6e5ee;
    padding: 7px;
    border-radius: 4px;
    min-width: 130px;
    font-size: 12px;
    color: #22374d;
    box-shadow: 0 2px 4px rgba(190,221,235,0.17);
    position: relative;
}

.message1.right1 .bubble1 {
    background: #80c3d0;
    color: #fff;
    border-bottom-right-radius: 0px;
}

.msg-time1 {
    display: block;
    font-size: 12px;
    color: #757575;
    margin-top: 6px;
    text-align: right;
}

.chat-input1 {
    display: flex;
    align-items: center;
    border-top: 1.5px solid #e8e8e8;
    background: #f5f8fa;
    padding: 12px 30px;
    border-radius: 0 0 12px 0;
}

    .chat-input1 input {
        flex: 1;
        border: none;
        padding: 9px 18px;
        border-radius: 8px;
        border-bottom-right-radius: 0px;
        border-top-right-radius: 0px;
        background: #fff;
        /* margin-right: 12px; */
        font-size: 15px;
        outline: none;
        box-shadow: 0 2px 8px rgba(190, 221, 235, 0.12);
    }

    .chat-input1 button {
        background: #066768;
        color: #fff;
        border: none;
        padding: 11px 37px;
        font-size: 16px;
        border-radius: 0 8px 8px 0;
        cursor: pointer;
        font-weight: 600;
        transition: background 0.2s;
    }

        .chat-input1 button:hover {
            background: #178196;
        }


/*message box*/

/* ===============================
   GLOBAL RESPONSIVE FIXES
   =============================== */
img, video {
    max-width: 100%;
    height: auto;
}

/* NAVBAR */
@media (max-width: 992px) {
    nav {
        padding: 10px 20px;
        flex-wrap: wrap;
    }

    .nav-links {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        margin-top: 10px;
        display: none; /* hide by default, show with toggle (JS) */
    }

        .nav-links.show {
            display: flex;
        }

    .user-actions {
        margin-top: 10px;
        margin-left: 40px;
        margin-right: 40px;
    }
}

/* HERO SECTION */
@media (max-width: 992px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .hero-content {
        max-width: 100%;
        margin: 0;
    }

    .hero::before {
        background-size: cover;
        opacity: 0.25;
    }
}

/* FEATURED JOBS */
@media (max-width: 992px) {
    .featured-jobs-grid {
        flex-wrap: wrap;
        justify-content: center;
    }

    .job-card {
        width: 100%;
        max-width: 90%;
    }
}

/* LATEST JOBS */
@media (max-width: 768px) {
    .latest-jobs-grid {
        grid-template-columns: 1fr;
    }
}

/* CITIES GRID */
@media (max-width: 768px) {
    .jobs-cities-grid {
        grid-template-columns: 1fr;
    }
}

/* FOOTER */
@media (max-width: 768px) {
    .footer-main {
        flex-direction: column;
        gap: 20px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

/* iPhone SE / Small Phones (max 480px) */
@media (max-width: 480px) {

    /* HERO */
    .hero {
        padding: 15px;
        min-height: auto;
    }

    .hero-content {
        margin: 0;
        max-width: 100%;
        text-align: center;
    }

        .hero-content h1 {
            font-size: 1.6rem;
            line-height: 1.3;
        }

        .hero-content p {
            font-size: 1rem;
            margin: 0 auto 15px auto;
        }

    /* SEARCHBAR */
    .searchbar-form {
        flex-direction: column;
        width: 100% !important;
        padding: 10px;
    }

    .searchbar-input,
    .searchbar-select,
    .searchbar-btn {
        width: 100%;
        margin: 6px 0;
        border-radius: 25px;
    }

    /* POPULAR JOBS */
    .popular-jobs-row {
        flex-wrap: wrap;
        font-size: 12px;
    }

    /* FEATURED JOBS CARDS */
    .featured-jobs-grid {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .job-card {
        width: 95%;
        max-width: 350px;
    }

    /* FOOTER */
    .footer-main {
        padding: 0 10px;
        gap: 25px;
    }

    .footer-column {
        min-width: 100%;
        text-align: center;
    }

    .footer-bottom {
        font-size: 0.85em;
    }
}
.menu-toggle {
    display: none;
    font-size: 1.8rem;
    background: none;
    border: none;
    cursor: pointer;
}

@media (max-width: 992px) {
    .menu-toggle {
        display: block;
        color: #03949B;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background: #fff;
        padding: 10px;
        border-radius: 8px;
    }

        .nav-links.show {
            display: flex;
        }
}
.text-gray {
    color: #555555 !important;
}

/*social media*/
.social {
    position: fixed;
    top: 25%;
    right: 0;
    z-index: 9;
}

    .social ul {
        list-style-type: none;
        padding: 0;
        margin: 0; /* prevent unwanted area */
        width: 28px; /* just wide enough for icons */
    }

        .social ul li {
            display: block;
            margin: 3px 0;
            background-color: rgba(0, 0, 0, 0.5);
            width: 46px; /* match icon/container width */
            text-align: left;
            padding: 3px;
            border-radius: 30px 0 0 30px;
            transition: width 0.5s ease;
            font-weight: bold;
            overflow: hidden; /* clip content during width change */
            white-space: nowrap;
        }

            .social ul li:hover {
                width: 170px; /* wider on hover to show text */
            }

            .social ul li a {
                color: white;
                text-decoration: none;
                display: flex;
                align-items: center;
                width: 100%; /* expand link area on hover */
            }

            .social ul li img {
                display: inline-block;
                margin-right: 14px;
                background-color: white;
                padding: 3px;
                border-radius: 50%;
                width: 24px;
                height: 24px;
                transition: transform 0.7s;
            }

            .social ul li:hover img {
                transform: rotate(360deg);
            }

            /* Per-icon hover colors */
            .social ul li.facebook:hover {
                background-color: #1877f2;
            }

            .social ul li.twitter:hover {
                background-color: #000000;
            }

            .social ul li.linkedin:hover {
                background-color: #0A66C2;
            }

            .social ul li.telegram:hover {
                background-color: #0088CC;
            }

            .social ul li.youtube:hover {
                background-color: #FF0000;
            }

            .social ul li.tiktok:hover {
                background-color: #000000;
            }

            .social ul li.instagram:hover {
                background-color: #e4405f;
            }

            .social ul li.whatsapp:hover {
                background-color: #25d366;
            }
/*social media*/
/*candidate profile*/
.profile-card {
    background: #fff;
    border: 2px solid #26998a;
    border-radius: 12px;
    display: none;
    box-sizing: border-box;
    padding-bottom: 24px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    position: relative;
    transition: box-shadow 0.2s;
    margin-bottom: 20px;
    height: -webkit-fill-available;
}
    .profile-card.active {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
    }
    .profile-card.featured {
        border: 2px solid #26998a;
        box-shadow: 0 8px 16px rgba(38,153,138,0.12);
    }

    .profile-card .card-top {
        width: 100%;
        border-radius: 8px 8px 0 0;
        background: #26998a;
        height: 38px;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
    }
.profile-score {
    position: absolute;
    top: 5px;
    right: 5px;
    background-color: #279989;
    color: white;
    font-weight: 700;
    font-size: 12px;
    padding: 6px 10px;
    border-radius: 12px 12px 0 12px;
    clip-path: polygon( 0% 0%, 93% 0%, 100% 50%, 93% 100%, 0% 100%, 12% 50% );
    box-shadow: 0 3px 6px rgba(38, 153, 137, 0.2);
    z-index: 10;
    user-select: none;
    cursor: pointer;
}
.featured-badge {
    color: #fff;
    font-weight: bold;
    font-size: 18px;
    letter-spacing: 1px;
}

.card-avatar {
    display: flex;
    margin-top: 10px;
    margin-bottom: 10px;
    align-items: center;
    width: 100%;
    justify-content: flex-start;
    padding: 0px 13px;
}

    .card-avatar img {
        width: 72px;
        height: 72px;
        border-radius: 50%;
        border: 2px solid #d6d6d6;
        background: #e8e8e8;
    }

.card-content {
    text-align: center;
    width: 100%;
    padding: 0 12px;
}

.profile-card h3 {
    color: #16998a;
    font-size: 18px;
    font-weight: bold;
    margin: 8px 0 3px 0;
}

.profile-title {
    color: #777a7c;
    font-size: 14px;
    text-align: left;
}

.candidate-profile-details {
    display: flex;
    background: #fff;
    padding: 0px 20px;
    position: relative;
    margin-bottom: 16px;
    color: #777a7c;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.profile-btn {
    display: block;
    width: 80%;
    padding: 10px 0;
    background: #16998a;
    color: #fff;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    font-size: 17px;
    cursor: pointer;
    margin: 0 auto;
    box-shadow: 0 1px 4px rgba(38,153,138,0.08);
    transition: background 0.18s;
}

    .profile-btn:hover {
        background: #0e755e;
    }

/*candidate profile*/
/*on-off toggle*/
.switch {
    position: relative;
    display: inline-block;
    width: 45px;
    height: 28px;
}

    /* Hide default HTML checkbox */
    .switch input {
        display: none;
    }

/* The slider */
.slider {
    position: absolute;
    cursor: pointer;
    background-color: #ccc;
    border-radius: 34px;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transition: 0.4s;
}

    /* The circle inside the slider */
    .slider::before {
        position: absolute;
        content: "";
        height: 22px;
        width: 22px;
        left: 3px;
        bottom: 3px;
        background-color: white;
        border-radius: 50%;
        transition: 0.4s;
    }

/* Checked state - change background color */
input:checked + .slider {
    background-color: #2196F3;
}

    /* Move the circle when checked */
    input:checked + .slider::before {
        transform: translateX(22px);
    }
/*on-off toggle*/
/*About us*/
.aboutus-hero {
    background: #03949B;
    color: #fff;
    padding: 50px 0 30px;
}

.aboutus-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 48px;
}

.hero-img {
    width: 320px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 4px 32px rgba(3,148,155,0.13);
}

.aboutus-text h1 {
    font-size: 54px;
    font-weight: 800;
    margin-bottom: 12px;
}

.tagline {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 18px;
    color: #ffd700;
    letter-spacing: 1px;
}

.aboutus-text p {
    font-size: 17px;
    margin-bottom: 5px;
    line-height: 1.6;
}

.aboutus-values {
    max-width: 900px;
    margin: 60px auto 32px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 14px rgba(3,148,155,0.07);
    padding: 36px 36px 24px;
    text-align: center;
}

    .aboutus-values h2 {
        color: #03949B;
        font-size: 32px;
        font-weight: 700;
        margin-bottom: 8px;
    }

.aboutus-gallery {
    margin: 32px 0 0;
    display: flex;
    gap: 22px;
    justify-content: center;
    align-items: flex-end;
}

.gallery-img {
    width: 180px;
    border-radius: 14px;
    box-shadow: 0 2px 20px rgba(3,148,155,0.13);
}

.aboutus-details {
    max-width: 850px;
    margin: 38px auto 60px;
    padding: 28px 30px 18px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(3,148,155,0.06);
}

    .aboutus-details h2 {
        color: #03949B;
        font-size: 29px;
        font-weight: 700;
        margin-bottom: 16px;
    }

    .aboutus-details ul {
        padding-left: 22px;
        font-size: 16px;
        color: #333;
    }

    .aboutus-details li {
        margin-bottom: 9px;
    }

@media (max-width: 900px) {
    .aboutus-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-img {
        margin-bottom: 26px;
    }
}
/*About us*/
/*Terms of use*/
.terms-header {
    background-color: #03949B;
    color: white;
    text-align: center;
    padding: 48px 20px 24px;
    font-weight: 900;
    font-size: 38px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.terms-hero {
    max-width: 900px;
    margin: 32px auto 0;
    text-align: center;
}

.terms-image {
    width: 280px;
    max-width: 80vw;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(3,148,155,0.25);
}

.terms-content {
    max-width: 860px;
    margin: 44px auto 100px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 14px rgba(3,148,155,0.08);
    padding: 36px 38px 48px;
    line-height: 1.65;
}

    .terms-content h2 {
        color: #03949B;
        font-weight: 700;
        font-size: 28px;
        margin-bottom: 14px;
    }

    .terms-content h3 {
        margin-top: 28px;
        color: #02666f;
        font-weight: 600;
        font-size: 20px;
        letter-spacing: 0.03em;
        margin-bottom: 8px;
    }

    .terms-content p {
        margin-bottom: 18px;
        font-size: 16px;
        color: #404040;
    }

    .terms-content ul {
        list-style-type: disc;
        padding-left: 28px;
        color: #444;
        font-size: 16px;
    }

        .terms-content ul li {
            margin-bottom: 10px;
        }

@media (max-width: 700px) {
    .terms-header {
        font-size: 32px;
        padding: 36px 12px 16px;
    }

    .terms-content {
        padding: 26px 20px 36px;
        margin: 30px 12px 60px;
    }
}
/*Terms of use*/