* {
    margin: 0;
    padding: 0;
}

@font-face {
    font-family: "poppins";
    src: url("../fonts/Poppins/Poppins-Regular.ttf");
}

@font-face {
    font-family: "poppins bold";
    src: url("../fonts/Poppins/Poppins-Bold.ttf");
}

@font-face {
    font-family: "poppins semibold";
    src: url("../fonts/Poppins/Poppins-SemiBold.ttf");
}

@font-face {
    font-family: "poppins medium";
    src: url("../fonts/Poppins/Poppins-Medium.ttf");
}

:root {
    /* default theme effect  */
    --theme-gradiant: linear-gradient(150deg, rgba(26, 217, 223, 1) 0%, rgba(168, 36, 254, 1) 100%);
    --new-gradiant: linear-gradient(150deg, rgb(115, 208, 211) 0%, rgb(204, 133, 252) 100%);
    --hover-gradiant: linear-gradient(150deg, rgba(168, 36, 254, 1) 0%, rgba(26, 217, 223, 1) 100%);
}

.font-family {
    font-family: "poppins";
}

html {
    scroll-behavior: smooth;
}


/* section {
    padding: 50px 0;
    position: relative;
} */

p {
    color: #555555;
}

body a {
    text-decoration: none;
    font-size: 14px;
}

/* ///////////////home////////////////// */
body {
    font-family: 'poppins';
    overflow-x: hidden !important;
    position: relative;
}



/* [[[[[ =========== header =========== ]]]]]  */

#header {
    position: sticky !important;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1020;
    /* background-color: rgba(255, 255, 255, 0.3); */
    background-color: white !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.hamburger-menu {
    position: absolute !important;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    z-index: 1021;
    background: transparent !important;
    border: none;
    padding: 10px;
    display: none !important;
}

.menu-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* width: fit-content; */
    width: 100%;
    transition: transform 0.3s ease-in-out;

}

.menu-overlay.overlap {
    width: 100%;
    height: 100vh;
    opacity: 1;
    visibility: visible;
}


.hirree-nav {
    width: 100%;
    height: fit-content;
    background-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.hirree-logo {
    height: 60px;
}

.authen {
    display: flex;
    align-items: center;
    justify-content: end;
    flex-direction: row;
    flex-grow: 1;
    gap: 8px;
}

.employer-auth-container {
    background: var(--new-gradiant);
}

.nav-links {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.nav-link {
    position: relative;
    padding: 8px 12px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #000;
}

.nav-link.active::after,
.home-link.active::after {
    content: '';
    position: absolute;
    bottom: -24px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--theme-gradiant);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.authen .hirree-nav-divisor {
    width: 2px;
    height: 38px;
    max-height: 44px;
    background-color: #bab8b8;
    opacity: calc(40%);
}

.authen button {
    font-family: 'poppins medium';
}

.authen .employes-login {
    font-family: 'poppins';
    color: #888888;
    opacity: calc(60%);
}

/* 
.theme-btn, .theme-btnn {
    background: var(--theme-gradiant);
    border: none;
    outline: none;
    border-radius: 25px;
    padding: 7px 30px;
    font-family: 'poppins';
} */

.theme-btn.bordered-btn, .theme-btnn.bordered-btnn {
    border: none;
    outline: none;
    position: relative;
    z-index: 1;
    background: var(--theme-gradiant);
    cursor: pointer;

}

.theme-btn.bordered-btn::before {
    content: "";
    position: absolute;
    left: 1.5px;
    right: 1.5px;
    top: 1.5px;
    bottom: 1.5px;
    border-radius: 25px;
    background-color: white;
    z-index: -1;
    transition: 200ms;
}


.theme-btnn.bordered-btnn::before {
    content: "";
    position: absolute;
    left: 1.5px;
    right: 1.5px;
    top: 1.5px;
    bottom: 1.5px;
    /* border-radius: 25px; */
    background-color: white;
    z-index: -1;
    transition: 200ms;
    border-radius: 8px;
}

.theme-btn.bordered-btn::after {
    content: attr(data);
    font-size: 16px;
    background: linear-gradient(to left, #00FFA3, #DC1FFF);
    -webkit-background-clip: text;
    color: transparent;
    transition: 200ms
}

.theme-btnn.bordered-btnn::after {
    content: attr(data);
    font-size: 16px;
    background: linear-gradient(to left, #00FFA3, #DC1FFF);
    -webkit-background-clip: text;
    color: transparent;
    transition: 200ms
}

@keyframes dropdownAppear {
    from {
        opacity: 0;
        transform: translateY(-10px) scale(0.98);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.animate-dropdown {
    animation: dropdownAppear 0.3s ease-out forwards;
}

/* [[[[[ =========== Hero Section =========== ]]]]]  */

.hirree-hero-section {
    width: 100% !important;
    overflow: hidden !important;
    /* width: 100vw !important; */
    padding: 54px 0px;
    /* height: fit-content !important; */
    /* --theme-gradiant: linear-gradient(150deg, rgba(26, 217, 223, 1) 0%, rgba(168, 36, 254, 1) 100%); */
    /* overflow: hidden !important; */
}

.hirree-hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
            rgba(255, 255, 255, 1) 0%,
            rgba(180, 239, 241, 0.8) 50%,
            rgba(255, 255, 255, 1) 100%);
    filter: blur(56px);
    transform: scale(1.2);
    z-index: -1;
}

.hirree-hero-container {
    font-family: 'poppins';
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    gap: 3px;
    margin: 20px 0px;
}

.hirree-hero-container h2 {
    font-size: 26px;
    color: #45464B !important;
    opacity: calc(85%) !important;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
    text-rendering: optimizeLegibility !important;
}

.hirree-hero-container div .Header-text {
    font-size: 42px !important;
    color: #000;
    font-weight: bolder;
    text-shadow: 2px 0.5px 0 currentColor;
    letter-spacing: 2px;
}

.hirree-hero-container .short-desc p {
    margin: 0px;
    color: #333 !important;
    font-weight: 700 !important;
    opacity: calc(60%) !important;
}

.hirree-hero-container div .highlight {
    font-size: 42px !important;
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    background: linear-gradient(to right, #3ecbff, #8e5bff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    text-shadow: none;
    letter-spacing: -0.5px;
    margin-top: 2px;
}

.hirree-job-search-section {
    width: 100%;
    height: fit-content !important;
    /* background: linear-gradient(126.43deg, #DDF0FC 30%, #F3DAFD 85%); */
    z-index: 99 !important;
    box-shadow: inset 0 4px 6px -4px rgba(0, 0, 0, 0.5), Top shadow inset 0 -4px 6px -4px rgba(0, 0, 0, 0.5);
}

.hirree-job-search-section ._top {
    width: 100%;
    padding: 0px 40px;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    gap: 10px;
}

.hirree-job-search-section ._top .search-field-container {
    width: 90%;
    max-width: 900px;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: white;
    border-radius: 50px;
    padding: 6px 4px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);

}


.Upload-Resume-button-container {
    padding: 0.8rem 1.6rem;
    font-size: 15px;
    font-weight: 600;
    text-wrap: nowrap;
    border: none;
    border-radius: 999px;
    background: linear-gradient(to right, #3ecbff, #8e5bff);
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    cursor: pointer;
    transition: all 0.35s ease;
    position: relative;
    z-index: 1;
    letter-spacing: 0.5px;
    backdrop-filter: blur(4px);
}

.Upload-Resume-button-container::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 999px;
    padding: 2px;
    background: linear-gradient(135deg, #3ecbff, #8e5bff);
    -webkit-mask: linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
    transition: 0.4s ease;
}

/* Hover magic */
.Upload-Resume-button-container:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 25px rgba(173, 151, 222, 0.25);
    background-clip: border-box;
    -webkit-background-clip: border-box;
    -webkit-text-fill-color: #fff;
    color: #fff;
}

.Upload-Resume-button-container:hover::before {
    filter: brightness(1.1);
}


.search-input-container {
    display: flex;
    align-items: center;
    padding-left: 12px;
}

.search-icon {
    height: 20px;
    width: 20px;
    color: #9ca3af;
}

.search-input {
    border: none;
    outline: none;
    padding: 8px;
    width: 250px;
    font-size: 14px;
}

.divider {
    height: 32px;
    width: 1px;
    background-color: #e5e7eb;
}

.experience-container {
    display: flex;
    align-items: center;
    padding: 0 16px;
}

.experience-select {
    appearance: none;
    border: none;
    background-color: transparent;
    font-size: 14px;
    color: #6b7280;
    outline: none;
    padding-right: 16px;
}

.dropdown-icon {
    height: 16px;
    width: 16px;
    color: #9ca3af;
}

.location-container {
    display: flex;
    align-items: center;
    padding: 0 16px;
    width: 180px;
}

.location-input {
    border: none;
    outline: none;
    width: 100%;
    font-size: 14px;
}

.search-button {
    background-color: #dbeafe;
    color: #3b82f6;
    border: none;
    border-radius: 50px;
    padding: 8px 24px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
}

.search-button:hover {
    background-color: #bfdbfe;
}

.hirree-job-search-section ._bottom {
    width: 93%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hirree-job-search-section ._bottom .left {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.hirree-job-search-section ._bottom .right {
    color: #3b82f6;
    font-weight: 500;
    opacity: calc(65%);
    text-decoration: underline;
    cursor: pointer;
}

.hirree-job-search-section ._bottom .left p {
    margin: 0px;
    color: #000;
    font-weight: 600;
    opacity: calc(65%);
    font-family: "poppins";
}

/* [[[[ ======= hero section end ======= ]]]] */



/* [[[[ ======= About Us Section ======= ]]]] */

.about-us-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    padding: 4rem 1rem;
    position: relative;
    text-align: center;
}

._left {
    max-width: 800px;
}

._center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-img {
    max-width: 40%;
    height: auto;
    border-radius: 12px;
}

._right {
    position: relative;
    max-width: 800px;
    padding: 2rem 0;
}

._right::before,
._right::after {
    content: "";
    position: absolute;
    left: 10%;
    width: 80%;
    height: 2px;
    background: linear-gradient(to right, transparent, #ccc, transparent);
}

._right::before {
    top: 0;
}

._right::after {
    bottom: 0;
}

.about-heading {
    font-family: "Druk Wide Bold", sans-serif;
    font-size: 3rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 900;
    background: linear-gradient(to right, #3ecbff, #8e5bff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    text-shadow: none;
    letter-spacing: -0.5px;
    margin-top: 2px;
}

.who-we-are {
    font-family: "Druk Wide Bold", sans-serif;
    font-size: 1.2rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #888;
}

.about-description,
.about-paragraph {
    font-family: "Druk Wide Bold", sans-serif;
    font-size: 1.3rem;
    line-height: 1.8;
    margin-top: 1.5rem;
}

.join-us-btn {
    margin-top: 2rem;
    font-weight: bold;
    padding: 1rem 2rem !important;
    border-radius: 8px;
    border: none;
    color: white;
    transition: all 0.3s ease-in-out;
}

.join-us-btn:hover {
    background-color: #0056b3;
}


/* ==================================================== Popular Searches - section  ====================================================  */
/* ======================================================================================================================================  */
/* 
.scroll-container {
    position: relative;
    width: 100%;
}

.scroll-wrapper {
    display: flex;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    position: relative;
    width: 100%;
    padding-bottom: 0.5rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.scroll-wrapper::-webkit-scrollbar {
    display: none;
}

.effect-ps-left {
    position: absolute;
    top: 0;
    left: 0;
    width: 80px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    background: var(--fade-left);
}

.effect-ps-right {
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    background: var(--fade-right);
}

.mac-img img {
    height: 100%;
    width: 100%;
}

.recruitment {
    position: relative;
}

.recruitment h3 {
    font-size: 48px;
    font-family: 'poppins semibold';
}

.recruitment::after {
    content: "";
    width: 100px;
    height: 8px;
    position: absolute;
    background: var(--theme-gradiant);
    border-radius: 10px;
}

.fade-in {
    animation: fadeIn 0.8s ease-in-out forwards;
}


.slide-in-left {
    animation: slideInLeft 0.6s ease-out forwards;
}


.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.5s ease-out forwards;
}


.delay-0 {
    animation-delay: 0.1s;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.3s;
}

.delay-3 {
    animation-delay: 0.4s;
}

.delay-4 {
    animation-delay: 0.5s;
}

.delay-5 {
    animation-delay: 0.6s;
}

.hover-effect {
    transition: all 0.3s ease;
}

.hover-effect:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.icon-rotate {
    transition: transform 0.3s ease;
}

.inner-box:hover .icon-rotate {
    transform: rotate(10deg);
}

.outer-box {
    display: flex;
    align-items: center;
    height: 293px;
    margin-bottom: 20px;
    background: linear-gradient(150deg, #C1EBF3, #E4D0F4);
    border: 1px solid #C1EBF3;

    border-radius: 20px;
}

.outer-box .inner-box {
    padding: 20px 30px;
    text-align: center;
}

.inner-box .icon {
    height: 85px;
    width: 85px;
    margin: auto;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    margin-bottom: 10px;
}

.inner-box h4 {
    font-size: 24px;
    font-family: 'poppins semibold';
}

.inner-box p {
    font-size: 16px;
    font-family: 'poppins';
    color: #555555;
    margin-top: 14px;
}


@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        transform: translateX(-50px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

 */
.hirree-Hori-section {
    overflow-y: hidden !important;
    height: fit-content !important;
    margin: 0 auto !important;
}

.hirree-scroll-container {
    position: relative;
    height: auto;
    /* Changed from fixed height */
    overflow: hidden;
    margin: 0px auto;
    width: 100%;
}

.carousel-wrapper {
    position: relative;
    height: 45px;
    width: 100%;
    overflow: hidden;
}

.carousel-track {
    display: inline-flex;
    align-items: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    /* padding: 10px 0; */
    gap: 12px;
    will-change: transform;
    min-height: fit-content;
    /* background-color: rgb(188, 168, 219) !important; */

}

/* Button wrapper - improved spacing */
.button-wrapper {
    display: inline-flex;
    align-items: center;
}

/* Animation definitions with dynamic timing */
.carousel-track.start-scroll {
    animation: infinite-scroll var(--animation-duration, 30s) linear infinite;
}

@keyframes infinite-scroll {
    0% {
        transform: translate3d(0, -50%, 0);
    }

    100% {
        transform: translate3d(calc(-50%), -50%, 0);
    }
}

/* Enhanced pause on hover */
.hirree-scroll-container:hover .carousel-track {
    animation-play-state: paused;
}

/* Responsive Media Queries */
@media only screen and (max-width: 480px) {
    .carousel-track {
        gap: 6px;
    }

    .carousel-track.start-scroll {
        --animation-duration: 20s;
    }
}

@media only screen and (min-width: 481px) and (max-width: 767px) {
    .carousel-track {
        gap: 8px;
    }

    .carousel-track.start-scroll {
        --animation-duration: 25s;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .carousel-track {
        gap: 10px;
    }
}

@media only screen and (min-width: 992px) {
    .carousel-track {
        gap: 12px;
    }
}

/* You may need JavaScript to calculate proper heights */
/* Add this JavaScript function to ensure proper height after loading */
/*
document.addEventListener('DOMContentLoaded', function() {
    const track = document.querySelector('.carousel-track');
    const container = document.querySelector('.hirree-scroll-container');
    if (track && container) {
        const trackHeight = track.getBoundingClientRect().height;
        container.style.height = trackHeight + 'px';
    }
});
*/


/* [[[[[ ========= CareerHighlight Section ======== ]]]]] */

/* Main container styling */
.career-highlight-wrapper {
    padding: 4rem 0;
    margin: 6rem 0;
}

/* Section container */
.career-highlight-wrapper .career-highlight-section {
    position: relative;
    display: flex;
    padding: 3rem 2.5rem;
    justify-content: space-between;
    align-items: center;
    background: var(--theme-gradient, linear-gradient(150deg, rgba(26, 217, 223, 0.5) 10%, rgba(168, 36, 254, 1) 80%));
    border-radius: 24px;
    color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    /* overflow: hidden; */
}

/* Content area */
.career-highlight-wrapper .career-highlight-section .content {
    flex: 1;
    max-width: 60%;
    padding: 1rem 0;
    z-index: 2;
}

/* Subtitle styling */
.career-highlight-wrapper .career-highlight-section .content .subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 1rem;
    color: white;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Title styling */
.career-highlight-wrapper .career-highlight-section .content .title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.3;
}

/* Buttons container */
.career-highlight-wrapper .career-highlight-section .content .buttons-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

/* Button styling */
.career-highlight-wrapper .career-highlight-section .content .buttons-container .action-button {
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: none;
    border-radius: 14px;
    color: white;
    background: linear-gradient(150deg, rgb(94, 80, 244) 0%, rgba(168, 36, 254, 1) 100%);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.career-highlight-wrapper .career-highlight-section .content .buttons-container .action-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(168, 36, 254, 0.3);
    background: linear-gradient(150deg, rgb(43, 26, 223) 20%, rgba(168, 36, 254, 1) 100%);
}

.career-highlight-wrapper .career-highlight-section .content .buttons-container .action-button:active {
    transform: translateY(1px);
    box-shadow: 0 2px 10px rgba(168, 36, 254, 0.2);
}


/* Image container */
.career-highlight-wrapper .career-highlight-section .image-container {
    position: absolute;
    right: 30px;
    bottom: 0;
    z-index: 1;
    animation: floatUpDown 4s ease-in-out infinite;
}

.career-highlight-wrapper .career-highlight-section .candidate-image {
    max-width: 30%;
    height: auto;
    border-radius: 12px;
}

.career-highlight-wrapper .career-highlight-section .employer-image {
    max-width: 100%;
    /* border: 2px solid rgba(255, 255, 255, 0.3); */
}

.career-highlight-wrapper .career-highlight-section .image-container img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    /* box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15); */
}

/* Image styling */
/* .career-highlight-wrapper .career-highlight-section .image-container img {
    max-width: 80%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  } */

/* Animation keyframes */
/* @keyframes floatUpDown {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-5px);
    }
  }
   */
/* Responsive adjustments - tablet and below */
@media (max-width: 992px) {
    .career-highlight-wrapper .career-highlight-section {
        flex-direction: column;
        padding: 2.5rem 2rem;
    }

    .career-highlight-wrapper .career-highlight-section .content {
        max-width: 100%;
        text-align: center;
        margin-bottom: 2rem;
    }

    .career-highlight-wrapper .career-highlight-section .content .buttons-container {
        justify-content: center;
    }

    .career-highlight-wrapper .career-highlight-section .image-container {
        position: relative;
        right: auto;
        bottom: auto;
        max-width: 80%;
        margin: 1rem auto 0;
    }
}

/* Responsive adjustments - mobile */
@media (max-width: 576px) {
    .career-highlight-wrapper .career-highlight-section .content .title {
        font-size: 1.75rem;
    }

    .career-highlight-wrapper .career-highlight-section .content .subtitle {
        font-size: 1rem;
    }
}

/* .career-highlight-section .content .cta-btn {
    background: var(--theme-gradient);
    color: white;
    padding: 12px 28px;
    border-radius: 999px;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
} */

/* .career-highlight-section .content .cta-btn:hover {
    transform: translateY(-2px);
    opacity: 0.95;
} */

/* @keyframes floatUpDown {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(0px);
    }

    100% {
        transform: translateY(0);
    }
} */






















/* Job Opportunities Section Styles */
.job-opportunities-section {
    position: relative;
    overflow: hidden;
    background-color: #fcfcfc;
    padding: 3rem 0;
}

/* Title Styling */
.job-opportunities-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.job-opportunities-title-highlight {
    background: linear-gradient(to right, #36d1dc, #5b86e5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Content Sections */
.job-recommendation-row,
.interview-scheduling-row {
    margin: 4rem 0;
}

.job-recommendation-content,
.interview-scheduling-content {
    padding: 2rem;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}

.job-recommendation-content:hover,
.interview-scheduling-content:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transform: translateY(-5px);
}

.job-recommendation-heading,
.interview-scheduling-heading {
    font-size: 1.75rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.job-recommendation-text,
.interview-scheduling-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

/* Visual Elements */
.job-recommendation-visual,
.interview-scheduling-visual {
    position: relative;
    height: 400px;
    margin: 2rem 0;
}

.job-recommendation-background-shape,
.interview-scheduling-background-shape {
    position: absolute;
    width: 80%;
    height: 80%;
    border-radius: 24px;
    background-color: rgba(240, 240, 255, 0.5);
    top: 10%;
    left: 10%;
    z-index: 1;
}

.job-card,
.interview-card {
    position: absolute;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 2;
    background-color: white;
    width: 100%;
    /* max-width: 320px; */
}

.job-card:hover,
.interview-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.job-card-image,
.interview-card-image {
    width: 100%;
    height: auto;
    display: block;
}

.job-card-primary,
.interview-card-calendar {
    top: 10%;
    left: 8%;
    z-index: 3;
}

.job-card-secondary,
.interview-card-detail {
    top: 30%;
    left: 30%;
    z-index: 4;
}

/* Decorative Circles */
.decoration-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.5;
}

.decoration-circle-purple {
    width: 120px;
    height: 120px;
    background: linear-gradient(45deg, #8a2be2, #a020f0);
    bottom: 20%;
    right: 10%;
    z-index: 0;
}

.decoration-circle-blue {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #00bfff, #1e90ff);
    top: 15%;
    left: 5%;
    z-index: 0;
}

/* Animations */
.float-animation {
    animation: float 6s ease-in-out infinite;
}

.float-animation-delay {
    animation: float 6s ease-in-out 2s infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

.fade-in-left {
    animation: fadeInLeft 1s ease-out forwards;
}

.fade-in-right {
    animation: fadeInRight 1s ease-out forwards;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .job-opportunities-title {
        font-size: 2rem;
    }

    .job-recommendation-visual,
    .interview-scheduling-visual {
        height: 300px;
        margin: 1rem 0;
    }

    .job-card-primary,
    .interview-card-calendar {
        top: 5%;
        left: 5%;
    }

    .job-card-secondary,
    .interview-card-detail {
        top: 20%;
        left: 25%;
    }
}


/* Footer Section   */

@keyframes shimmer {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

.footer {
    border-top: 1px solid #e5e7eb;
    background-color: #F5F6F5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    /* padding: 10px 20px; */
}

.footer-grid {
    display: grid;
    /* Using fr units with different proportions for columns */
    grid-template-columns: 1.5fr fit-content(100%) fit-content(100%) fit-content(100%) fit-content(100%);
    gap: 30px;
}

/* Specific styling for the first column */
.footer-col.column-1 {
    /* Removed border to maintain clean design */
    padding-right: 20px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.logo {
    /* background-color: #f3f4f6; */
    padding: 8px 15px;
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 10px;
    display: inline-block;
    color: #4b5563;
}

.address {
    color: #6b7280;
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.4;
    padding: 0px;
}

.connect-title {
    color: #4b5563;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icon {
    font-size: 18px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.social-icon svg {
    color: transparent;
    stroke: url(#gradient);
    transition: all 0.3s ease;
}

.social-icon:hover svg {
    transform: scale(1.15);
}

.footer-link {
    color: #4b5563;
    text-decoration: none;
    margin-bottom: 8px;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-link:hover {
    background: var(--theme-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    font-weight: bold;
}

.footer-link.bold {
    font-weight: 600;
}

.updated-tag {
    color: #ef4444;
    font-size: 11px;
    font-weight: bold;
    margin-left: 5px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 3rem 0px !important;
    padding: 2rem 0rem !important;
    border-top: 1px solid #e5e7eb;
    color: #6b7280;
    font-size: 14px;
}

.email-link {
    color: #6b7280;
    text-decoration: none;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
}

.email-link:hover {
    background: var(--theme-gradient);
    -webkit-background-clip: text;
    background-clip: text;
}

.email-link:hover svg {
    stroke: url(#gradient);
}

/* Responsive styles */
@media (max-width: 960px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-col.column-1 {
        grid-column: span 2;
        /* Make the first column span both columns on medium screens */
        margin-bottom: 10px;
    }
}

@media (max-width: 640px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .footer-col.column-1 {
        grid-column: auto;
        /* Reset span on small screens */
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}


.hero-section {
    padding: 20px 0;
}

.hero-section h3 {
    color: rgba(85, 85, 85, 1);
    font-size: 24px;
    margin: 30px 0;
    font-family: 'poppins semibold';
}

h1.logo span {
    font-family: 'poppins bold';
    font-size: 56px;
}

.hero-section h1 {
    font-size: 64px;
    font-family: 'poppins bold';
    color: #000000;
}

span.color-text {
    background: var(--theme-gradiant);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

body .btn-primary {
    background: var(--theme-gradiant);
    border: none;
    outline: none;
    border-radius: 25px;
    padding: 10px 30px;
    font-family: 'poppins';
}

.theme-btn, .theme-btnn {
    background: var(--theme-gradiant);
    border: none;
    outline: none;
    border-radius: 25px;
    padding: 7px 30px;
    font-family: 'poppins';
    white-space: nowrap;
}

.authen button {
    margin: 0 5px;
    font-family: 'poppins medium';
}

.theme-btn.bordered-btn {
    border: none;
    outline: none;
    position: relative;
    z-index: 1;
    background: var(--theme-gradiant);
    cursor: pointer;

}

/* .theme-btn.bordered-btn::before {
    content: "";
    position: absolute;
    left: 1.5px;
    right: 1.5px;
    top: 1.5px;
    bottom: 1.5px;
    border-radius: 25px;
    background-color: white;
    z-index: -1;
    transition: 200ms
} */

.theme-btn:hover {
    background: var(--hover-gradiant);
    transition: 600ms
}

.theme-btn.bordered-btn::after {
    content: attr(data);
    font-size: 16px;
    background: linear-gradient(to left, #00FFA3, #DC1FFF);
    -webkit-background-clip: text;
    color: transparent;
    transition: 200ms
}

.hero-section p {
    font-size: 18px;
    color: #555555;
    font-family: 'poppins';
    padding-right: 20px;
    margin-top: 10px;
}

.hero-section button {
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    font-family: 'poppins medium';
    border-radius: 50px;
    width: 224px;
}

.mac-img img {
    height: 100%;
    width: 100%;
}

.recruitment h3 {
    font-size: 48px;
    font-family: 'poppins semibold';
    margin-bottom: 30px;
}

.recruitment {
    position: relative;
}

.recruitment::after {
    content: "";
    width: 100px;
    height: 8px;
    position: absolute;
    background: var(--theme-gradiant);
    border-radius: 10px;
}

.outer-box {
    display: flex;
    align-items: center;
    height: 293px;
    margin-bottom: 20px;
    background: linear-gradient(150deg, #C1EBF3, #E4D0F4);
    border: 1px solid #C1EBF3;
    margin: 15px;
    border-radius: 20px;
}

.outer-box .inner-box {
    padding: 20px 30px;
    text-align: center;
}

.inner-box .icon {
    height: 85px;
    width: 85px;
    margin: auto;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    margin-bottom: 10px;
}

.inner-box h4 {
    font-size: 24px;
    font-family: 'poppins semibold';
}

.inner-box p {
    font-size: 16px;
    font-family: 'poppins';
    color: #555555;
    margin-top: 14px;
}

/* JobOpportunities section */
.hirree-job-opp .hiree-right h1 {
    font-family: 'poppins semibold';
}

.hirree-job-opp .frames {
    background-image: url(../images/circle.png);
    background-repeat: no-repeat;
    height: 368px;
    width: 368px;
    background-position: center;
    position: relative;
}

.hirree-job-opp .hirree-text {
    font-size: 48px !important;
    font-family: 'poppins bold';
    /* line-height: 1; */
}

.hirree-job-opp .hirree-text p {
    font-size: 18px;
    color: #555555;
    margin-top: 20px;
}

.hirree-job-opp .color-box {
    height: 150px;
    width: 150px;
    background: var(--theme-gradiant);
    position: absolute;
    top: 31%;
    filter: blur(90px);
    z-index: -1;
}


/* .frame1 .color-box {
    left: 60%;
}

.frame2 .color-box {
    left: 20%;
} */

.applicants {
    width: 250px;
    padding: 10px 20px;
    background: var(--theme-gradiant);
    border-radius: 20px;
    box-shadow: 1px 6px 14px 3px #ccc;
    position: absolute;
    left: 20%;
    top: 40%;
}

.applicants h3 {
    font-size: 24px;
    margin-bottom: 2px;
    color: #fff;
}

.applicants p {
    font-size: 14px;
    margin-bottom: 0;
    color: #fff;
}

.applicant-user {
    position: absolute;
    top: 45%;
    right: 70px;
}

.circle {
    position: absolute;
    height: 15px;
    width: 15px;
    position: absolute;
    border-radius: 50%;
}

.circle.purple {
    background-color: #617FEE;
    left: 44%;
    top: 30%;
}

.circle.blue {
    background-color: #2AC6E2;
    right: 0;
    top: 50%;
}

.frame2 .circle.purple {
    background-color: #617FEE;
    left: 0%;
    top: 30%;
}

.frame2 .circle.blue {
    background-color: #2AC6E2;
    left: 22%;
    top: 98%;
    z-index: -1;
}

.looking {
    padding: 20px;
    border-radius: 25px;
    background: linear-gradient(150deg, #C1EBF3, #E4D0F4);
}

.looking h2 {
    font-size: 48px;
    font-family: 'poppins semibold';
    margin: auto;
    text-align: center;
    padding: 20px;
}

.looking button {
    font-size: 24px;
    font-family: 'poppins medium';
    border-radius: 30px;
    margin: auto;
    display: flex;
    margin-bottom: 20px;
    width: 244px;
    text-align: center;
    justify-content: center
}

.frame {
    position: relative;
}

.frame2 {
    position: relative;
}

.frame2 .applicants {
    left: 20%;
    top: 0%;
}

/* //////////Footter///////////////// */
.footer-content h2 {
    font-size: 64px;
    font-family: 'poppins bold';
    margin-bottom: 20px;
}

.footer-content button {
    display: block;
    width: 250px;
    margin-bottom: 10px;
    font-size: 18px;
    color: #555555;
    font-family: 'poppins';
}

/* .address {
    padding: 20px;
    font-size: 18px;
    font-family: 'poppins medium';
} */

.copy-right span {
    font-size: 16px;
    color: #020202;
}

.copy-right img {
    margin: 8px;
}

.theme-btn.active {
    background: var(--theme-gradiant);
    color: #fff;
}

.theme-btn.active span {
    color: #fff;
    -webkit-text-fill-color: #fff
}

.theme-btn.bordered-btn.active::before {
    background-color: transparent;

}



.popular-search p {
    font-size: 24px;
    font-family: 'poppins semibold';
}

.popular-search button {
    font-family: 'poppins medium';
}

.pointer {
    width: 180px;
    height: 70px;
    position: relative;
    background: var(--theme-gradiant);
    text-align: center;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin: 10px;
}


.pointer.grey {
    background: #E6E6E6;
}

.pointer.current {
    background: linear-gradient(150deg, #1AD9DF, #A824FE);

}

.hiring-stages .pointer.grey:before {
    border-left: 14px solid #E6E6E6;
}

.hiring-stages .pointer.current:before {
    border-left: 14px solid rgb(140 72 248) !important;
}

.pointer:before {
    border-left: 20px solid rgb(219 216 244);
}

.pointer.light {
    background: linear-gradient(150deg, #C1EBF3, #E4D0F4);
}

.pointer.light span {
    color: #000000;
}

.hiring-stages .pointer.current {
    color: #fff;
}

.pointer:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 0;
    border-left: 35px solid white;
    border-top: 35px solid transparent;
    border-bottom: 35px solid transparent;
}

.pointer:before {
    content: "";
    position: absolute;
    right: -19px;
    bottom: 0;
    width: 0;
    height: 0;
    border-left: 20px solid rgb(142 70 248);
    border-top: 35px solid transparent;
    border-bottom: 35px solid transparent;
}

.pointer span {
    color: #fff;
    font-size: 22px;
    font-family: 'poppins medium';
    margin-left: 20px;
}



/* ////////////////////comming soon page////////////////// */
.layer-page {
    position: relative;
    width: 100%;
    /* height: 400px; */
    background: linear-gradient(150deg, #1ad9dfc9 0%, #a824fedb 100%), url(../images/hero-bg.png);
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

}

.layer-page h1 {
    margin: 20px 0;
    font-size: 64px;
    /* padding-top: 40px; */
    font-family: 'poppins bold';
    color: #fff;
}

.template-img {
    background: url(../images/template.png);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 20px;
    height: 400px;
    position: relative;
    top: 60px;
    border-radius: 20px;
}

.template-img h2 {
    font-size: 40px;
    color: #fff;
    font-family: 'poppins semibold';
    padding: 20px;
}

.bg-colored {
    background: var(--theme-gradiant);
}

/* /////////////////////////////////////////// */


.jon-input {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #E4E5E8;
    padding: 5px 15px;
    border-radius: 40px;
}

.jon-input input {
    border: none;
    outline: none;
    padding: 4px;
}

.jon-input img {
    object-fit: contain;
    margin: 10px;
}

.jon-input button {
    font-size: 16px;
    height: 44px;
    padding: 0 16px;
}

.work-line {
    text-align: center;
    padding: 15px;
    position: relative;
}

.work-line .icon {
    height: 70px;
    width: 70px;
    margin: auto;
    border: 1px solid #ccc;
    padding: 1px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.work-line .icon .inner-icon {
    background: var(--theme-gradiant);
    border-radius: 50%;
    height: 60px;
    width: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.work-line .icon .inner-icon {
    background: var(--theme-gradiant);
    padding: 2px;
    z-index: 1;
}

.content h3 {
    text-align: center;
    padding: 20px;
    font-family: 'poppins semibold';
    margin-top: 20px;
}



/* .work-line .icon::after {
    content: "";
    border: 1px solid;
    border-style: dashed;
    position: absolute;
    height: 2px;
    width: 100%;
    left: 30px;
    z-index: 0;
} */
.line {
    width: 60px;
    height: 3px;
    transition: background 0.5s linear;
    border-style: dashed;
    position: absolute;
    top: 15%;
    width: 100%;
    left: 0;
    border-color: #7860f3;
}

.line.line1 {
    width: 50%;
    left: 57%;
}

.line.line3 {
    left: -10%;
    width: 66%;
}

.coming-bg {
    background: url(../images/coming.png);
    object-fit: cover;
    background-position: center right;
    background-repeat: no-repeat;
    height: 100vh;
    width: 100%;
    padding: 30px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 30px;
    right: 0;
}

.counter-outer {
    padding: 30px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
}

.counter-outer h2 {
    font-size: 40px;
    font-family: 'poppins bold';
    margin-bottom: 30px;
}

.counter {
    display: flex;
    justify-content: space-around;
}

.time-box {
    padding: 12px;
    width: 100px;
    background: #000000a8;
    margin: 12px;
    border-radius: 12px;

}

.time-box p {
    margin-bottom: 0;
    color: #fff;
}

.time-box h3 {
    padding: 12px 0;
    border-bottom: 1px solid;
}

/* .coming-content {
    position: absolute;
    left: 12%;
    top: 40%;
} */
.coming-content h1 {
    font-size: 42px;
    font-family: 'poppins bold';
}

.jon-input input:focus {
    box-shadow: none;
}

.notify {
    padding-top: 35px;
}

.notify h2 {
    font-size: 20px;
    font-family: 'poppins bold';
}

.notify button {
    width: 100%;
    border-radius: 7px;
}

.notify input {
    margin: 13px 0;
    padding: 12px;
}

.theme-btn.bordered-btn:hover::before {
    background: var(--theme-gradiant);
    color: #fff;
    transition: 0.35s;
}

.theme-btn.bordered-btn:hover span.color-text {
    color: #fff;
    background: var(--theme-gradiant);
    -webkit-background-clip: text;
    -webkit-text-fill-color: #fff;
    transition: 0.3s;
}

.window-scrn img {
    width: 100%;
}

.frame2 .img2 img {
    max-width: 100%;
}

.working-img img {
    width: 100%;
}

.coming-content {
    height: 90%;
    display: flex;
    align-items: center;
}

.comming_page {
    padding: 0;
}

.content-text p {
    font-size: 16px;
    font-family: 'poppins';
    color: #000000;
}

.content-text h3 {
    font-size: 20px;
    font-family: 'poppins semibold';
    margin-top: 12px;
    color: #2AC6E2;
}

.contetnt ul {
    padding-left: 2.5rem;
}

.contetnt ul,
ol li {
    font-size: 16px;
    font-family: 'poppins';
    color: #000000;
}

.contetnt ol li {
    margin-bottom: 14px;
}

.contetnt {
    padding: 0 50px;
}

.afterline::after {
    content: "";
    position: absolute;
    width: 2px;
    height: 20px;
    background-color: #ccc;
    margin-left: 4px;
}

.copy-right span a {
    font-size: 16px;
    color: #020202;
}

.content-text ol li {
    list-style: none;
}

.signup h1 {
    font-size: 18px;
    /* text-align: center; */
    margin: 0;
    font-family: 'poppins semibold';
}

.signup label {
    color: #484848;
    font-size: 14px;
    font-family: 'poppins medium';
    margin-left: 5px;
}

.signup input {
    /* border-color: #D9D9D9; */
    border-radius: 10px;
    padding: 6px 12px;
    font-size: 14px;
}

.footer-content p {
    font-family: 'poppins';
    color: #000;
    font-size: 14px;
}

.footer-content p a {
    color: #516AF4;
    font-family: 'poppins semibold';
}

.signup input::placeholder {
    font-size: 14px;
}

.signup button:where([type='submit']) {
    font-family: 'poppins semibold';
    width: 100%;
    font-size: 16px;
    padding: 8px;
}

.owel-box {
    height: 400px;
    width: 220px;
    background: var(--theme-gradiant);
    border-radius: 250px;
    margin: 10px;
}

.owel-box img {
    position: absolute;
    bottom: 0;
    width: 250px;
}

.owel-box.owel-box1 {
    margin-top: 150px;
    position: relative;
}

.box {
    position: relative;
}

.owel-box.owel-box2 img {
    top: -35px;
    width: 367px;
    right: 50px;
}

.center-item {
    width: 80%;
    margin: auto;
}

.login-bg {
    margin: auto;
}

.company-img {
    height: 100%;
    width: 100%;
}

.job-section {
    height: 100vh;
}

.hide-vertical-scrollbar::-webkit-scrollbar:vertical {
    display: none;
  }
  
  .hide-vertical-scrollbar {
    scrollbar-width: none; /* For Firefox */
  }

.schedule-btn {
    color: #fff;
    position: absolute;
    right: 0;
    top: 0;
    font-size: 14px;
    padding: 8px;
    background: var(--theme-gradiant);
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    border-top-right-radius: 10px;
    border-bottom-left-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 10;
}


.view-btn {
    /* position: absolute; */
    /* right: 18%; */
    /* top: 0; */
    font-size: 14px;
    padding: 8px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    border-top-right-radius: 10px;
    border-bottom-left-radius: 10px;
    transition: all 0.3s ease;
    z-index: 10;
}

.schedule-reject-btn {
    color: #fff;
    position: absolute;
    right: 68px;
    top: 0;
    font-size: 14px;
    padding: 8px;
    background: linear-gradient(to right, #ff3a3a, #ff8080);
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    border-bottom-left-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 5;
}

/* Hover effects for better user experience */
.schedule-btn:hover, .schedule-reject-btn:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.scheduled {
    position: absolute;
    right: 0;
    font-size: 10px;
    padding: 6px;
    top: 0;
    font-family: 'poppins medium';
    border-radius: 0px 10px 0 10px;
    transition: width 0.3s ease, height 0.3s ease;
}



.green {
    color: #56CDAD;
}

.yellow {
    color: #FFB836;
}

.job-stepper svg.Mui-active {
    background: var(--theme-gradiant);
    color: transparent !important;
    border-radius: 50%;
}

.job-content h3 {
    color: #000;
    font-family: 'poppins medium';
    font-size: 16px;
}

.company-logo {
    height: 60px;
    width: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.grey-card .company-logo {
    filter: grayscale(1);
}

.post-form {
    position: relative;
    top: 80px;
    padding: 20px;
    /* box-shadow: 0 0 10px 5px #cccccc20; */
    border-radius: 2px;
    background-color: #fff;
}

select.country-select {
    border-color: #D9D9D9;
    border-top: 1px solid #D9D9D9;
    border-left: 1px solid #D9D9D9;
    border-bottom: 1px solid #D9D9D9;
    height: 34.5px;
    margin-top: 4.5px;
}

.phone-box {
    border-left: none;
    border-radius: 0 10px 10px 0 !important;
}

.or {
    color: #555555c0;
    font-family: "poppins";
    text-align: center;
    display: block;
}

.or::before {
    content: "";
    position: absolute;
    height: 1px;
    width: 47%;
    left: 0;
    background-color: #cccccced;
    top: 12px
}

.or::after {
    content: "";
    position: absolute;
    height: 1px;
    width: 47%;
    right: 0;
    background-color: #cccccced;
    top: 12px
}

.select-skills #demo-multiple-chip {
    padding: 5px 10px;
}

.post-job-page .css-13xfyv0-MuiInputBase-root-MuiOutlinedInput-root {
    margin-bottom: 0;
}

.job-stepper {
    width: 80%;
    /* margin: auto; */
    margin-bottom: 10px;
}

.form-theme select.select-small {
    width: 100px;
    padding: 2px;
    margin-top: 0;
    font-size: 12px;
    text-align: left;
}

.small-select {
    padding: 0 !important;
    font-size: 12px !important;
}

.detail-header .profile-pic img {
    height: 100px;
    width: 100px;
    /* border-radius: 10px; */
    margin-bottom: 10px;
}


/* Overriding FullCalendar's day hover effect */
.fc-daygrid-day:hover {
    background-color: #bfdbfe !important;
    /* Tailwind Light Blue */
    cursor: pointer !important;
    /* Ensure pointer cursor is applied */
    transition: background-color 0.3s ease !important;
    /* Smooth transition */
}

/* Overriding FullCalendar's event hover effect */
.fc-event:hover {
    background-color: #93c5fd !important;
    /* Slightly darker blue */
    cursor: pointer !important;
    /* Ensure pointer cursor is applied */
    transition: background-color 0.3s ease !important;
    /* Smooth transition */
}

/* Overriding time slots hover effect */
.fc-timegrid-slot:hover {
    background-color: #e0f2fe !important;
    /* Tailwind light blue for slots */
    cursor: pointer !important;
    /* Ensure pointer cursor is applied */
}


/* Define the animation for the snowflakes */
@keyframes snowfall {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(100vh);
        /* This makes the snowflakes fall down the screen */
    }
}

:root {
    --globe-width: 12px;
    --globe-height: 28px;
    --globe-spacing: 40px;
    --globe-spread: 3px;
    --light-off-opacity: 0.4;
}



.lightrope {
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    position: absolute;
    z-index: 1;
    margin: -15px 0 0 0;
    padding: 0;
    /* pointer-events: none; */
    width: 100%;
}

.lightrope li {
    position: relative;
    animation-fill-mode: both;
    animation-iteration-count: infinite;
    list-style: none;
    margin: calc(var(--globe-spacing) / 2);
    padding: 0;
    display: inline-block;
    width: var(--globe-width);
    height: var(--globe-height);
    border-radius: 50%;
    background: rgba(0, 247, 165, 1);
    box-shadow: 0px calc(var(--globe-height) / 6) calc(var(--globe-width) * 2) var(--globe-spread) rgba(0, 247, 165, 1);
    animation-name: flash-1;
    animation-duration: 2s;
}

.lightrope li:nth-child(2n+1) {
    background: rgba(0, 255, 255, 1);
    box-shadow: 0px calc(var(--globe-height) / 6) calc(var(--globe-width) * 2) var(--globe-spread) rgba(0, 255, 255, 0.5);
    animation-name: flash-2;
    animation-duration: 0.4s;
}

.lightrope li:nth-child(4n+2) {
    background: rgba(247, 0, 148, 1);
    box-shadow: 0px calc(var(--globe-height) / 6) calc(var(--globe-width) * 2) var(--globe-spread) rgba(247, 0, 148, 1);
    animation-name: flash-3;
    animation-duration: 1.1s;
}

.lightrope li:nth-child(odd) {
    animation-duration: 1.8s;
}

.lightrope li:nth-child(3n+1) {
    animation-duration: 1.4s;
}

.lightrope li:before {
    content: "";
    position: absolute;
    background: #222;
    width: calc(var(--globe-width) - 2px);
    height: calc(var(--globe-height) / 3);
    border-radius: 3px;
    top: calc(-1 * (var(--globe-height) / 6));
    left: 1px;
}

.lightrope li:after {
    content: "";
    top: calc(-1 * var(--globe-height) / 2);
    left: calc(var(--globe-width) - 3px);
    position: absolute;
    width: calc(var(--globe-spacing) + 12px);
    height: calc((var(--globe-height) / 3) * 2);
    border-bottom: solid #222 2px;
    border-radius: 50%;
}

.lightrope li:last-child:after {
    content: none;
}

.lightrope li:first-child {
    margin-left: calc(-1 * var(--globe-spacing));
}

@keyframes flash-1 {
    0%, 100% {
        background: rgba(0, 247, 165, 1);
        box-shadow: 0px calc(var(--globe-height) / 6) calc(var(--globe-width) * 2) var(--globe-spread) rgba(0, 247, 165, 1);
    }

    50% {
        background: rgba(0, 247, 165, var(--light-off-opacity));
        box-shadow: 0px calc(var(--globe-height) / 6) calc(var(--globe-width) * 2) var(--globe-spread) rgba(0, 247, 165, 0.2);
    }
}

@keyframes flash-2 {
    0%, 100% {
        background: rgba(0, 255, 255, 1);
        box-shadow: 0px calc(var(--globe-height) / 6) calc(var(--globe-width) * 2) var(--globe-spread) rgba(0, 255, 255, 1);
    }

    50% {
        background: rgba(0, 255, 255, var(--light-off-opacity));
        box-shadow: 0px calc(var(--globe-height) / 6) calc(var(--globe-width) * 2) var(--globe-spread) rgba(0, 255, 255, 0.2);
    }
}

@keyframes flash-3 {
    0%, 100% {
        background: rgba(247, 0, 148, 1);
        box-shadow: 0px calc(var(--globe-height) / 6) calc(var(--globe-width) * 2) var(--globe-spread) rgba(247, 0, 148, 1);
    }

    50% {
        background: rgba(247, 0, 148, var(--light-off-opacity));
        box-shadow: 0px calc(var(--globe-height) / 6) calc(var(--globe-width) * 2) var(--globe-spread) rgba(247, 0, 148, 0.2);
    }
}


@keyframes wave {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(calc(-1 * var(--wave-height)));
    }
}


/* dark theme */
/* Dark Theme Variables */
/* Dark Theme */
/* .dark {
    --background-color: #121212;
    --surface-color: #1e1e1e;
    --text-color: #e0e0e0;
    --heading-color: #ffffff;
    --primary-color: #1e90ff;
    --secondary-color: #b0b3b8;
    --button-bg: #333333;
    --button-text: #ffffff;
    --border-color: #444;
    --hover-bg: #2a2a2a;
    --brigtness: 80%;
}

body {
    background-color: var(--background-color);
    color: var(--text-color);
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}


h1, h2, h3, h4, h5, h6 {
    color: var(--heading-color);

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

a:hover {
    text-decoration: underline;
}


button {
    background-color: var(--button-bg);
    color: var(--button-text);
    padding: 10px 20px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

button:hover {
    background-color: var(--hover-bg);
    color: var(--primary-color);
    border-color: var(--primary-color);
}


img {
    filter: brightness(var(--brigtness));
    transition: filter 0.3s ease;
}

img:hover {
    filter: brightness(100%);
}


input, textarea {
    background-color: var(--surface-color);
    color: var(--text-color);
    border: 1px solid var(--border-color);
    padding: 8px 12px;
    border-radius: 4px;
}

input:focus, textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}


.container {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
    background-color: var(--surface-color);
    border-radius: 8px;
    margin-top: 2px;
    z-index: 0;
}


.card {
    background-color: var(--surface-color);
    color: var(--text-color);
    padding: 15px;
    border-radius: 8px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
} */


.loaderElement {
    border: 4px solid #f3f3f3;
    /* Light gray */
    border-top: 4px solid #3498db;
    /* Blue color */
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


.css-19kzrtu {
    padding: 0px;
}

.dash-card .dashicons {
    height: 30px;
}

/* Scrollbar width */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #f7cfff, #c4ccff);
    border-radius: 20px;
    border: 2px solid #f3f4f6;
}

/* Track (Background) */
::-webkit-scrollbar-track {
    background: #f3f4f6;
    /* Light Gray */
    border-radius: 10px;
}


/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #3b50d8;
    /* Darker shade */
}

/* Add this to your global styles (e.g., index.css or a Tailwind utility file) */
.fc-theme-standard .fc-scrollgrid {
    @apply border-gray-800;
    /* Darker border */
}

.jobs-field {
    /* height: 100vh;
    padding-top: 20px; */
}

.jobs-field .no-data-found {
    position: absolute;
    top: 40%;
    left: 55%;
    transform: translate(-50%, -50%);
}

.drawer-open-arrow {
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.drawer-open-arrow img {
    max-width: 20px;
}

.section-2 {
    width: 75%;
}

.section-1 {
    width: 15%;
}

.section-3 {
    width: 10%;
}

.white-box.job-content {
    max-height: calc(100vh - 200px);
    overflow-y: auto;
    overflow-x: hidden;
}



.signup input {
    /* border: 1px solid #ccc; */
    border-radius: 12px;
    padding: 16px;
    width: 100%;
}

.react-tel-input .special-label {
    display: none !important;
}



/* Add this to your CSS file */
.job-description-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2d3748;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.job-description-content strong {
    font-weight: 700;
}

.job-description-content ul {
    list-style-type: disc;
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.job-description-content li {
    margin-bottom: 0.5rem;
}

.job-description-content p {
    margin-bottom: 1rem;
}

/* Ensure emoji displays properly */
.job-description-content {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

/* Make sure the content doesn't overflow its container */
.job-description-wrapper {
    width: 100%;
    max-height: 800px;
    overflow-y: auto;
    border-radius: 0.375rem;
    background-color: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}



.css-1mh9127 {
    width: 100%;
}