@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

body {
    font-family: "Roboto", sans-serif;
    background-color: #030303;
}

:root {
    --primary-color: #FF8600;
    --text-grey: #5E6670;
}

/*#region header */

.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 5rem;
    color: #FFF;
    background-color: #030303;
    z-index: 10;
    position: relative;
}


.menu {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.menu>ul {
    font-family: var(--font-inter);
    list-style: none;
    display: flex;
    align-items: center;
    gap: 3rem;
    margin: 0;
    padding: 0;
}

.menu>ul>li a {
    text-decoration: none;
    color: white;
    /* color: var(--text-grey); */
    font-size: 14px;
    font-weight: 400;
    position: relative;
    padding-bottom: 6px;
    transition:
        color 0.25s ease-in-out 0.1s,
        transform 0.2s ease-out;
    display: inline-block;
}

.menu>ul>li a:hover {
    color: var(--primary-color);
    /* transform: translateY(-2px); */
}

.menu>ul>li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition:
        width 0.3s cubic-bezier(0.25, 0.1, 0.25, 1),
        left 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
}

/* .menu>ul>li a:hover::after {
        width: 100%;
        left: 0;
        transform: translateX(0);
    } */

.right-side {
    font-family: var(--font-inter);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.header-right {
    text-align: right;
}

.header-right span {
    font-size: 0.8rem;
    color: var(--primary-color);
}

.header-right p {
    font-size: 1.05rem;
    color: #fff;
}


.header-right .icon-box {
    width: 40px;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    background-color: transparent;
    /* You can add a background color if needed */
    border-radius: 50%;
    /* Optional if you want the icon box to be round */
    bottom: 15px;
    ;
}

.header-right .icon-box::before {
    content: '';
    position: absolute;
    top: 1px;
    left: -3px;
    width: calc(100% + 6px);
    height: calc(100% + 6px);
    background-color: var(--primary-color);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    z-index: 0;
}

.text-align-right {
    text-align: right;
}

.header-right .icon-box::after {
    content: '';
    position: absolute;
    top: 4px;
    /* left: 0; */
    left: -3px;
    width: 100%;
    height: 100%;
    background-color: #000000;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    z-index: 0;
}

.header-right .icon-box img {
    position: relative;
    z-index: 1;
    top: 4px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.language-dropdown {
    position: relative;
    display: inline-block;
    font-family: 'Inter', sans-serif;
}

.language-toggle {
    background: transparent;
    border: none;
    border-radius: 4px;
    padding: 8px 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #FFF;
    transition: all 0.2s ease;
}

.language-toggle:hover {
    border-color: #FF8600;
}

.flag {
    width: 20px;
    height: auto;
    border-radius: 2px;
}

.arrow {
    font-size: 14px;
    transition: transform 0.2s ease;
}

.language-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 8px 0;
    margin-top: 5px;
    min-width: 140px;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.2s ease;
    z-index: 100;
}

.language-dropdown:hover .language-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-dropdown:hover .arrow {
    transform: rotate(180deg);
}

.language-menu li a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    text-decoration: none;
    color: #333;
    font-size: 14px;
    transition: background 0.2s ease;
}

.language-menu li a:hover {
    background: #f5f5f5;
    color: #FF8600;
}

.phone-number {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
}

.circle {
    background: rgb(255 134 0);
    filter: blur(180px);
    width: 15rem;
    height: 30rem;
    margin-top: -1rem;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5rem;
    background-color: #030303;
}

.header-responsive {
    display: none;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 1rem;
}

.header-responsive.menu-open {
    background-color: #030303;
    position: absolute;
    left: 0;
    right: 0;
    z-index: 100;
}

.border50 {
    border-radius: 50% !important;
}

.menu-reponsive {
    background-color: #030303 !important;
    padding: 1rem 1rem;
    z-index: 9;
    position: absolute;
    left: 0;
    top: 8rem;
    right: 0;
    text-align: center;
    display: none;
}

.menu-reponsive>ul {
    font-family: var(--font-inter);
    list-style: none;
    margin: 0;
    padding: 0;
    color: #FFF;
    font-size: 1rem;
    display: grid;
    gap: 1.5rem;
}

.menu-reponsive>ul>li a {
    text-decoration: none;
    color: #ffff;
    font-size: 14px;
    font-weight: 400;
    position: relative;
    padding-bottom: 6px;
    transition:
        color 0.25s ease-in-out 0.1s,
        transform 0.2s ease-out;
    display: inline-block;
}

.menu-reponsive>ul>li a:hover {
    color: #FF8600;
    transform: translateY(-2px);
}

.menu-reponsive>ul>li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: #FF8600;
    transition:
        width 0.3s cubic-bezier(0.25, 0.1, 0.25, 1),
        left 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.menu-reponsive>ul>li a:hover::after {
    width: 100%;
    left: 0;
    transform: translateX(0);
}

.menu-reponsive.active {
    display: block;
    z-index: 10;
}

/* #endregion */

/*#region buttons  */

.btn-primary {
    background-color: #FF8600 !important;
    border: 1px solid #FF8600 !important;
    color: #ffffff;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    border-radius: 0.375rem;
    transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    display: inline-block;
    cursor: pointer;
    text-decoration: none;
    user-select: none;
}

/* Hover state */
.btn-primary:hover {
    background-color: #db7500 !important;
    border-color: #db7500 !important;
    text-decoration: none;
}

/* Focus state (keyboard tab highlight) */
.btn-primary:focus {
    background-color: #db7500 !important;
    border-color: #db7500 !important;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(255, 134, 0, 0.5);
}

/* Active state (jab click karte hain) */
.btn-primary:active {
    background-color: #c56800 !important;
    border-color: #c56800 !important;
    box-shadow: 0 0 0 0.2rem rgba(255, 134, 0, 0.5);
}

/* Disabled state */
.btn-primary:disabled,
.btn-primary.disabled {
    background-color: #ffb366 !important;
    border-color: #ffb366 !important;
    color: #ffffff;
    opacity: 0.65;
    cursor: not-allowed;
    pointer-events: none;
}


.btn-transparent {
    background-color: transparent !important;
    border: 1px solid #FFF !important;
    color: #ffb366;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    border-radius: 0.375rem;
    transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    display: inline-block;
    cursor: pointer;
    text-decoration: none;
    user-select: none;
}

/* Hover state */
.btn-transparent:hover {
    background-color: #c1c1c119 !important;
    border-color: #db7500 !important;
    color: #FFF;
    text-decoration: none;
}

/* Focus state (keyboard tab highlight) */
.btn-transparent:focus {
    background-color: #ffffff10 !important;
    border-color: #FFF !important;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5);
}

/* Active state (jab click karte hain) */
.btn-transparent:active {
    background-color: #ffffff81 !important;
    border-color: #FFFF !important;
    box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5);
}

/* Disabled state */
.btn-transparent:disabled,
.btn-transparent.disabled {
    background-color: #ffffff61 !important;
    border-color: #ffffff61 !important;
    color: #ffffff;
    opacity: 0.65;
    cursor: not-allowed;
    pointer-events: none;
}

.btn-menu {
    background-color: transparent;
    color: #ffffff !important;
    border: none !important;
    padding: 0.5rem;
    font-size: 2rem;
    text-align: center;
    display: inline-block;
    cursor: pointer;
    text-decoration: none;
    user-select: none;
}

/*#endregion  */

/*#region Custom Css  */

.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    top: -29rem;
    z-index: 1;
}

.video-banner {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    font-family: 'Nunito Sans', sans-serif;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / 80%);
    z-index: -1;
}

.banner-wrapper {
    position: relative;
    max-width: 1000px;
    padding: 2rem;
    z-index: 2;
}

.banner-heading {
    font-size: 2rem;
    text-transform: uppercase;
}

.banner-wrapper p {
    color: white;
}

.banner-sub-heading {
    font-size: 4rem;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 0px;
    line-height: 50px;
}

.banner-sub-heading span {
    color: #FF8600;
}

.banner-sub-text {
    font-size: 2.5rem;
    text-transform: uppercase;
    font-weight: 500;
}

.banner-description {
    font-size: 1.125rem;
    color: #B9B9B9 !important;
    margin-top: 1rem;
    line-height: 1.5;
}

.w-80 {
    width: 80% !important;
}
.w-60 {
    width: 60% !important;
}
.w-40 {
    width: 40% !important;
}

/* .banner-meta{
    width: ;
} */
/* .banner-wrapper .btn{
    width: 80%;
 } */

.search-wrapper {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: auto;
    background: #030303;
    border-radius: 50px;
    display: flex;
    align-items: center;
    padding: 5px 10px;
}

.search-wrapper input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 15px 60px 15px 40px;
    color: #fff;
    font-size: 16px;
    outline: none;
}

.search-icon {
    position: absolute;
    left: 15px;
    font-size: 20px;
    color: #FF8600;
}

.content-section {
    margin-top: -28rem;
}

/* Common Section */
p {
    color: var(--text-grey);
    font-size: 1.125rem;
}

h2 {
    color: #fff;
    font-size: 3rem;
    text-align: center;
    font-weight: 700;
}

h2 span {
    color: var(--primary-color);
}

/* Common Section End*/


/* Welcome Section */
.welcome-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 7rem 2rem
}
.left-col img {
    width: 100%;
    height: auto !important;
}

.welcome-section .right-col h5 {
    font-size: 1.5rem;
    color: #fff;
}

.welcome-section .right-col h2 {
    font-size: 5.5rem;
    color: #fff;
    text-align: left;
}

.welcome-section .right-col h2 span {
    font-weight: bold;
    color: var(--primary-color);
}

.welcome-section .right-col h2 sub {
    font-size: 1.5rem;
    color: #fff;
    bottom: 2px;
}

.welcome-section .right-col div {
    display: flex;
    flex-direction: row;

}

.welcome-section .right-col div img {
    max-width: 200px;
    height: auto;
    margin-right: 3rem;
}

/* Welcome Section  End*/

/* Business Build Section */
.business-build-section {
    margin-top: 1.5rem;
}

.business-build-section .card-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.1rem;
    gap: 1rem;
}


.business-build-section .card {
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.20);
    background-color: transparent;
    padding: 1rem;
}

/* .business-build-section .card:hover {
    border-radius: 0.75rem;
    border: 1px solid transparent;

    box-shadow: 0px 2.5px 0px 1px var(--primary-color);
} */

.business-build-section .card {
  position: relative;
  background: #0b0b0b; /* your dark background */
  border-radius: 10px;
  padding: 20px;
  color: #fff;
  overflow: hidden;
  transition: all 0.3s ease;
}

/* create the fading border */
.business-build-section .card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 10px;
  padding-left: 3px; /* border thickness */
  padding-right: 3px; /* border thickness */
  padding-bottom: 4px; /* border thickness */
  background: linear-gradient(to top, #FF8600, transparent);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
}

/* hover: fade in the border */
.business-build-section .card:hover::before {
  opacity: 1;
}

.business-build-section .card .card-body {
    display: flex;
    align-items: center;
    gap: 1.0rem;
    padding-right:1px;
}

.business-build-section .card:hover .card-body .icon {
    border: 1px solid #fff;
}


.business-build-section .card .card-body  .icon {
    border-radius: 50%;
    border: 1px solid var(--primary-color);
    padding: 0.9rem;
}

.business-build-section .card .card-body  svg {
    width: 30px;
    height: 35px;
}

.business-build-section .card .card-body svg path {
    fill: white;
    transition: fill 0.3s ease;
}

.business-build-section .card:hover .card-body svg path {
    fill: var(--primary-color);
}

.business-build-section .card .card-body h5 {
    font-size: 0.85rem;
    color: #fff;
}

.business-build-section .card .card-body p {
    font-size: 0.75rem;
    color: var(--text-grey);
}

/* Business Build Section End*/


/* Opportunities Section */
.opportunities-section {
    margin-top: 4rem;
    text-align: center;
}

.opportunities-section .card-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.0rem;

}

.opportunities-section .col-12.d-flex {
    gap: 1rem;
}


/* Opportunities Section Card Styling */
.opportunities-section .card {
    /* background-color: transparent;
    border-radius: 0.75rem;
    padding: 1rem;
    transition: all 0.3s ease;
    flex: 1;
    min-width: 0; */
    border-radius: 0.75rem;
    /* border: 1px solid rgba(255, 255, 255, 0.20); */
    background-color: transparent;
    padding: 0 1rem;
    min-width: 23%;
}

/* .opportunities-section .card:hover {
    border-radius: 0.75rem;
    border: 1px solid transparent;
    box-shadow: 0px 2.5px 0px 1px var(--primary-color);
} */

.opportunities-section .card-body {
  position: relative;
  background: transparent; /* your dark background */
  border-radius: 10px;
  padding: 20px;
  color: #fff;
  overflow: hidden;
  transition: all 0.3s ease;
}

/* create the fading border */
.opportunities-section .card-body::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 10px;
  padding-left: 3px; /* border thickness */
  padding-right: 3px; /* border thickness */
  padding-bottom: 4px; /* border thickness */
  background: linear-gradient(to top, #FF8600, transparent);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
}

/* hover: fade in the border */
.opportunities-section .card-body:hover::before {
  opacity: 1;
}

.opportunities-section .card-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

.opportunities-section .card:hover .icon {
    border: 1px solid --primary-color;
    background: var(--primary-color);

}



.opportunities-section .card .icon {
    /* width: 60px;
    height: 60px; */
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.20);
    /* display: flex;
    justify-content: center;
    align-items: center; */
    padding: 0.9rem;
}


.opportunities-section .card .icon svg {
    width: 30px;
    height: 35px;
    /* fill: white; */
    stroke: var(--primary-color);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke 0.3s ease, stroke-width 0.3s ease;
}


.opportunities-section .card .card-body svg path {
    /* fill: white; */
    transition: fill 0.3s ease;
}

.opportunities-section .card:hover .card-body svg path {
    /* fill: var(--primary-color); */
}

.opportunities-section .card .card-body h5 {
    font-size: 0.83rem;
    color: #fff;
}

.opportunities-section .card .card-body p {
    font-size: 0.75rem;
    color: var(--text-grey);
    margin-bottom: 0;
}







.opportunities-section .card:hover .icon svg {
    /* fill: #FF8600; */
    stroke: white;
    stroke-width: 2;
}

/* Opportunities Section Arrow Styling */
.opportunities-section .arrow {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: -10px;
    left: 180px;
    right: -120px;

}

.opportunities-section .arrow svg {
    width: 200px;
    height: 32px;

}
@media (max-width: 1200px) {
    .opportunities-section .arrow svg {
        width: 150px;
        margin-right:35px;
    }
}
@media (max-width: 991px) {
    .opportunities-section .arrow {
        left:90px !important;

    }
      .opportunities-section .arrow svg {
        width: 120px;

    }
    .appstore img{
        width:160px !important;
        height:50px !important;
    }
    .welcome-section .right-col div {
    display: block;

    }
    .footer-logo-contact {
    flex: 0 0 35%;
    display: block !important;
    align-items: center;
    gap: 1rem;}
    .footer-logo{
        margin-bottom:12px !important;

}
}
@media (max-width: 325px) {
    .find-job{
        font-size:0.75rem;
    }
    .post-job{
        font-size:0.75rem;
    }
}
.opportunities-section .arrow.reverse {
    right: -110px;
    top: 40px;
}

.opportunities-section .arrow.reverse svg {
    transform: rotate(180deg) scaleX(-1);
}

.opportunities-section .arrow svg g {
    stroke: #ff8600;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.5;
    opacity: 0.4;
}

.opportunities-section .arrow svg g path:first-child {
    stroke-dasharray: 12 8;
}

.opportunities-section .arrow-icon {
    width: 30px;
    height: 30px;
    border-left: 3px solid #FF8600;
    border-bottom: 3px solid #FF8600;
    transform: rotate(45deg);
    margin-top: 10px;
}
.btn-outline-light {
    width: 200px !important;
}
@media(max-width:991px) {
    .icon-box-2 {
        width: 69px !important;
    }
    .btn-outline-light{
        width:165px !important;
    }
}

/* Adjustments for responsive design */
@media (max-width: 768px) {
    .opportunities-section h2 {
        font-size: 1.5rem;
    }

    .card .card-body h5 {
        font-size: 0.75rem;
    }

    .card .card-body p {
        font-size: 0.7rem;
    }

    .arrow {
        top: -10px;
    }

    .btn-custom-4 {
        width: 100%;
    }

    .icon-box-2 {
        width: 60px !important;
    }
    .btn-outline-light{
        width:100% !important;
    }
    .arrow{
        display: none !important;
    }
    .right-col h2{
        font-size:64px !important;
    }
    .col-12 h2{
        font-size:44px !important
    }
    /* .job-head .btn{
        height:40px !important;
        position: relative;
        left:40% !important
    } */

}








/* Recent Job */
/* .recent-job .icon-box {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.recent-job .icon-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary-color);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
} */

.recent-job {
    padding: 4rem 0;
}

.recent-job .icon-box {
    width: 60px;
    height: 64px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    background-color: transparent;
    /* You can add a background color if needed */
    border-radius: 50%;
    /* Optional if you want the icon box to be round */
    bottom: 15px;
    ;
}

.recent-job .icon-box::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    width: calc(100% + 6px);
    height: calc(100% + 6px);
    background-color: var(--primary-color);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    z-index: -1;
}

.recent-job .icon-box::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    z-index: 0;
}

.recent-job .icon-box img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}



.recent-job h2 {
    font-size: 1.5rem;
    font-weight: 600;
}

.recent-job h5 span {
    color: #fff;

    font-size: 0.65rem;
    font-weight: 400;
    /* border-radius: 5%;
    border: 1px solid var(--primary-color); */
}

.hours-badge {
    border: 1px solid var(--primary-color);
    font-size: 0.75rem;

    color: var(--primary-color);
    border-radius: 5px;
    padding: 7px 0px;
    overflow: hidden;
    width: 200px;
    display: inline;
    margin-left: 15px;
    /* padding: 10px 10px; */
}

.hours-badge .icon {
    color: #fff;
    padding: 0 5px;
    text-decoration: none;
    background-color: #282828;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    padding: 7px;

}

.hours-badge .text {
    text-decoration: underline;
    padding: 0 7px;
}

/* .hours-badge span{
    border-radius: 5px 5px;
} */
/* .hours-badge .icon svg{

} */




.half-circle {
    border: 1px solid var(--primary-color);
    padding: 2px 9px;
    position: relative;
    bottom: 4px;
}


.half-circle:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background-color: inherit;
    border-radius: 50px 0 0 50px;
    /* Left rounded corner */
}

.half-circle:after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-color: inherit;
    border-radius: 0 50px 50px 0;
    /* Right rounded corner */
}

.recent-job p {
    color: white
    /* color: var(--text-grey); */
}

.recent-job a.btn {
    font-size: 0.875rem;
}

.recent-job .btn-warning {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    font-size: 1rem;
    border-radius: 0.375rem;
}

.recent-job .btn-warning:hover {
    background-color: #db7500;
    border-color: #db7500;
}

.recent-job .card {
    background-color: #030303;
    color: white;
}

.recent-job .card:hover {
    background-color: #1e1e1e;
}

.recent-job .card-body {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.recent-job .card-body .text-muted {
    font-size: 0.875rem;
}

.recent-job .card-body .btn {
    font-size: 0.75rem;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    border-color: var(--primary-color);
}

.recent-job .card-body .btn:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}


.active-hive-user img {
    width: 100%;

}


/*#endregion  */




/*#region media queries  */


@media (max-width: 1440px) {}

@media (max-width: 768px) {
    .top-bar {
        padding: 0.5rem 1rem;
        justify-content: center;
    }

    .menu {
        display: none;
    }

    .header {
        display: none !important;
    }

    .header-responsive {
        display: flex;
    }

    .banner-heading {
        font-size: 1rem !important;
    }

    .banner-sub-heading {
        font-size: 2.5rem !important;
    }

    .banner-sub-text {
        font-size: 1.5rem !important;
    }

    .banner-description {
        font-size: 1rem !important;
    }
}

@media (max-width: 320px) {
    .banner-wrapper {
        max-width: 350px !important;
    }

    .banner-sub-heading {
        font-size: 1.5rem !important;
    }

}








/*#endregion  */

/* job details */

.img-banner {
    width: 100%;
    height: 30vh;
    overflow: hidden;
}

/* Job details End */

/* Footer Start */

/* Footer Styling */
.footer {
    background-color: #030303;
    color: white;
    padding: 2rem 0;
}

/* Main Footer Layout */
.footer-main {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: nowrap;
    align-items: center;
}

/* Logo & Contact Section (35%) */
.footer-logo-contact {
    flex: 0 0 35%;
    display: flex;
    align-items: center;
    gap: 1rem;
}
@media (max-width:390px){
    .footer-logo-contact {
    flex: 0 0 35%;
    display: block;
    align-items: center;
    gap: 1rem;}
    .footer-logo{
        margin-bottom:12px;

}
}
.footer-logo {
    flex: 0 0 auto;
}

.footer-logo-img {
    max-width: 100%;
    height: auto;
}

.footer-contact {
    flex: 1;
}

.footer-call,
.footer-address {
    color: white;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.footer-call strong {
    color: #fff;
}

/* Quick Links Section (35%) */
.footer-quick-links {
    flex: 0 0 35%;
}

/* Support Section (30%) */
.footer-support {
    flex: 0 0 30%;
}

.footer h5 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.footer .footer-links {
    list-style: none;
    padding-left: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer .footer-links li {
    margin-bottom: 0;
}

.footer .footer-links li a {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
}

.footer .footer-links li a:hover {
    color: var(--primary-color);
}

/* Bottom Bar */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid #333;
}

.footer-copyright p {
    color: var(--text-grey);
    font-size: 0.9rem;
    margin: 0;
}

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

.footer-copyright a:hover {
    color: #fff;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    text-decoration: none;
    color: var(--text-grey);
    font-size: 1.2rem;
    transition: color 0.3s;
}

.social-icon:hover {
    color: #fff;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-main {
        flex-direction: column;
        gap: 1.5rem;
    }

    .footer-logo,
    .footer-contact,
    .footer-quick-links,
    .footer-support {
        flex: 1;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}


/* Footer End */
.custom-field {
    background-color: #1A1A1A;
    color: #A3A3A3 !important;
    border: 1px solid #444 !important;


}

.custom-field:focus {
    border-color: #1A1A1A;
    box-shadow: 0 0 0 0;
    background-color: #1A1A1A !important;

}

.custom-field::placeholder {
    color: #4C4C4C;
}

.mini-icon {
    color: white;
    margin-left: 6px;
    font-size: 0.70rem
}



.job-description {
    font-size: 15px;
    font-weight: 500;
    color: #FFF !important;
    margin-bottom: 0px;
}

.job-text {
    font-size: 12px;
    font-weight: 400;
    color: #ffffff;
    /* color: #4c4c4c; */
    width: 75%;

}

/*profile*/
.banner-bg {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 240px;
}

.profile .profile-icon {
    width: 170px;
    height: 174px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    background-color: transparent;
    /* You can add a background color if needed */
    border-radius: 50%;
    /* Optional if you want the icon box to be round */
    bottom: 8rem;
    ;
}


.profile .profile-icon::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    width: calc(100% + 6px);
    height: calc(100% + 6px);
    background-color: var(--primary-color);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    z-index: 1;
}

.profile .profile-icon::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    z-index: 0;
}

.profile .profile-icon img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}


.profile .edit-icon {
    width: 30px;
    height: 34px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    background-color: transparent;
    /* You can add a background color if needed */
    border-radius: 50%;
    /* Optional if you want the icon box to be round */
    bottom: 2px;
    right: 3rem;
    ;
}


.profile .edit-icon::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    width: calc(100% + 6px);
    height: calc(100% + 6px);
    background-color: var(--primary-color);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    z-index: 1;
}

.profile .edit-icon::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    z-index: 0;
}

.profile .edit-icon img {
    position: relative;
    z-index: 1;
    padding: 7px;
    object-fit: cover;
    background-color: #000000;
    object-fit: cover;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.positions-div {
    position: relative;
    bottom: 11.9rem;
    flex-direction: column;
}

.profile-name {
    font-size: 34px;
    color: #fff;
}

.profile-designation {
    font-size: 24px;
    color: #FF8600;

}

.inner-container {
    padding: 20px;
    background-color: #171717;
    border-radius: 20px;
    border: 0.5px solid #656464;

}
  .social-login-btn:hover{
    background-color: #444 !important;
}
.container-shadow {
        box-shadow:
            0 12px 50px 7px #120b02,
            0 4px 26px 9px #FF8600;

    }
.form-container {
    background-color: #111;
    padding: 30px;
    border-radius: 10px;
    width: 100%;
    /* max-width: 50%; */
    z-index: 100;
}

.form-container h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 32px;
    font-weight: 500;
}

.form-container p {
    text-align: center;
    margin-bottom: 20px;
    font-size: 0.85rem;
}


.input-group-text,
.input-group {
    background-color: #1A1A1A;
    border-left: 1px solid #444 !important;
    border-top: 1px solid #444 !important;
    border-bottom: 1px solid #444 !important;
    border-right: 0px solid #444 !important;
    border-radius: 10px;
}

#agree {
    background-color: #111;
    border: 1px solid #656464;
    border-radius: 10px;
}

#agree:focus {

    border: 1px solid #FF8600;
    border-radius: 10px;
}

.file-upload-container {
    position: relative;
    display: flex;
    justify-content: center;
    border: 1px dashed #727272;
    padding: 15px;
    border-radius: 5px;
    background-color: #1A1A1A;
    width: 100%;
    color: #fff;
}

.file-upload-label {
    font-size: 14px;
    color: #ddd;
}

.file-upload-icon {
    font-size: 18px;
    color: #f39c12;
    margin-left: 8px;
}

.file-upload-input {
    display: none;
}

.btn-custom-2 {
    background-color: transparent;
    color: #fff;
    border-radius: 5px;
    width: 100%;
    padding: 10px;
    border: 0.7px solid #FF8600;
}

.btn-custom-2:hover {
    background-color: #FF8600;
    color: #fff;
}



.btn-custom {
    background-color: #FF8600;
    color: white;
    border-radius: 5px;
    width: 100%;
    padding: 10px;
}

.btn-custom-4 {
    background-color: transparent;
    color: #fff;
    border-radius: 5px;
    padding: 10px;
    border: 0.7px solid #FF8600;
}

.btn-custom-4:hover {
    background-color: #FF8600;
    color: #fff;
}


.btn-custom:hover {
    background-color: #e77e00;
    color: #FFF;
}

#agree {
    background-color: #111;
    border: 1px solid #656464;
    border-radius: 10px;
}

.parent-container {
    width: 100%;
    /* Ensure the parent has a defined width */
    position: relative;
    /* For proper positioning */
}

#agree:focus {

    border: 1px solid #FF8600;
    border-radius: 10px;
}

.details {
    position: relative;
    bottom: 150px;
}

.profile-value {
    font-size: 18px !important;
    font-weight: 400 !important;

}

/*profile end*/



/* Job Detail start */

.job-details h2 {
    color: #fff;
    text-align: left;
    font-size: 2.2rem;
    font-weight: 500;
}


.job-details .icon-box {
    width: 60px;
    height: 64px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    background-color: transparent;
    /* You can add a background color if needed */
    border-radius: 50%;
    /* Optional if you want the icon box to be round */
    /* bottom: 15px; */
    /* ; */
}

.job-details .icon-box::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    width: calc(100% + 6px);
    height: calc(100% + 6px);
    background-color: var(--primary-color);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    z-index: -1;
}

.job-details .icon-box::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    z-index: 0;
}

.job-details .icon-box img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.icon-container span {
    color: var(--primary-color);
    font-size: 0.8rem;
    text-align: right;
    display: block;
}

.icon-container p {

    color: #fff;
    font-size: 1.2rem;
    max-width: 120px;
    text-align: right;
}

.job-details .description h3 {
    color: #fff;
    text-align: left;
    font-size: 1.2rem;
    margin-top: 2rem;
}

.job-details .description p {
    color: #ffffff;
    /* color: var(--text-grey); */
    font-size: 1rem;

}

.job-meta span {
    color: #fff;
    font-size: 1.2rem;
}

.job-meta p {
    color: var(--primary-color);
    font-size: 1.25rem;
}

.btn-custom-3 {
    color: #fff;
    background-color: #101010;
    border: 0.5px solid #2A2424;
    position: relative;
    top: 11.5rem;
}

.btn-custom-3:hover {
    background-color: #101010;
    color: #FF8600;
}

@media (max-width: 542px) {
    .btn-custom-3 {
        margin-right: 0;
        position: relative;
        left: 6rem;
        z-index: 100;
    }

    .btn-custom-3 span {
        display: none;
    }
    .job-head{
        display: block !important;
        align-items: center !important;
    }
    .jopb-head .btn{
        height:40px !important;
    }
    .job-text{
        width:100%;
    }
    .pagination-btn{
        margin-left: 0px !important;
    }
    .job-sub-detail{
        gap:0px !important;
    }
    .job-application{
        flex-direction: column !important;
    }
}

.form-switch .form-check-input:checked {
    background-color: #FF8600;
}

.form-switch .form-check-input:focus {
    border-color: #FF8600;
}

.setting {
    font-size: 16px;
    color: #fff;
    font-family: 'Manrope', sans-serif;
}

.text-red {
    color: red;
}

.text-orange {
    color: #FF8600;
}

.a-text {
    text-decoration: none;
}

#applicationModal .modal-body {
    background-color: #121212 !important;
    color: #fff;
}

.input-group-text,
.input-group {
    background-color: #1A1A1A;
    border-left: 1px solid #444 !important;
    border-top: 1px solid #444 !important;
    border-bottom: 1px solid #444 !important;
    border-right: 0px solid #444 !important;
    border-radius: 10px;
}

.form-control {
    background-color: #1A1A1A;
    color: #fff;
    border: 1px solid #444 !important;
    border-left: 0px solid #444 !important;

}

.form-control:focus {
    border-color: #1A1A1A;
    box-shadow: 0 0 0 0;
    color: #4c4c4c;
    background-color: #1A1A1A !important;

}

.form-control::placeholder {
    color: #4C4C4C;
}

.apply {
    background-color: #121212 !important;
    color: White;

}

#applicationModalLabel {
    font-size: 32px;
}

.job-modal {
    color: #FF8600;
    font-weight: 500;
    position: relative;
    bottom: 18px;
    left: 18px;
}

.payment-div {
    border-radius: 10px;
    height: 60px;
    width: 55px;
}

.text-grey {
    color: #4c4c4c;
}

.hr-line {
    background-color: #444;
    height: 1px;
    width: 80%;
    position: relative;
    left: 65px;
}

/* .btn-custom{
    background-color: #FF8600;
    color: white;
    border-radius: 5px;
    width: 100%;
    padding: 10px;
} */

/* Job Detail End */


.fluid-banner {
    /* background: linear-gradient(0deg, rgba(0, 0, 0, 0.71) 0%,
     rgba(255, 134, 0, 0.05) 100%),
      linear-gradient(270deg, #050505 -21.3%, rgba(255, 134, 0, 0) 122.08%); */
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.71) 0%, rgba(255, 134, 0, 0.05) 170%), linear-gradient(270deg, #050505 -11.3%, rgba(255, 134, 0, 0.11) -162.08%);

    min-height: 25rem;
    width: 100%;
    padding: 75px 0;
}

.job-keeps {
    text-align: center;
    color: #fff;
    text-transform: uppercase;
}

.job-keeps div {
    font-size: 1.6rem;
}

.job-keeps h2 {
    font-size: 5.5rem;
}

.job-keeps h2 span {
    color: var(--primary-color);
}

.job-keeps h3 {
    font-size: 3.3rem;
}

.job-keeps p {
    font-size: 1rem;
    text-transform: none;
    max-width: 55%;
    color: var(--text-grey);
    margin: 20px auto;
}

.job-keeps .btn {
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 60px;
    padding: 10px 30px;
}

.application {
    padding: 20px 10px;
    /* background-color: #10101030; */
    background-color: #18181880;
    border-radius: 10px;
    z-index: 1;
    position: relative;
}

.badge-loc {
    border-radius: 10px !important;
    border: 1px solid #fff;
    color: #fff;
    padding: 4px 9px;
}

.badge-loc svg {
    top: -2px;
    position: relative;
}

.application .meta {
    min-width: 120px;
    font-size: 0.8rem;
    color: #fff;
    border-right: 1px solid #ffffff20;
    padding-right: 30px;
}

.application .meta p {
    font-size: 0.8rem;
}

.application .meta:last-child {
    color: #fff;
    border-right: none;
}

.application .meta p {
    color: var(--primary-color);
}





.recent-job .application .icon-box::before {

    top: 6px;
}

.recent-job .application .icon-box::after {

    top: 9px;

}

.recent-job .application .icon-box img {
    top: 9px;
}

.application a.btn {
    border: 1px solid var(--primary-color);
    width: 100% !important;
    padding: 8px;
}

.application a.btn:hover {
    background-color: var(--primary-color);
    color: #fff;
    /* width: 100% !important;
    padding: 8px; */
}

.chip {
    color: #fff;
    border: 1px solid #444;
    font-size: 11px;
}

.chip:hover {
    border: 1px solid #FF8600;
    color: #fff;
}

.pagination-btn {
    border: 1px solid #4c4c4c;

}

.bg-grey {
    background-color: #1A1A1A;
    border-radius: 10px;
    z-index: 100;
}

.bg-active {
    background-color: #FF8600;
}

.bg-active:hover {
    background-color: transparent;
    border: 1px solid #FF8600;
}


.icon-box-2 {
    width: 60px;
    height: 64px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    background-color: transparent;
    border-radius: 50%;
    bottom: 0px;
    margin-right:10px;
}

.icon-box-2 img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.icon-box-2::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    width: calc(100% + 6px);
    height: calc(100% + 6px);
    background-color: var(--primary-color);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    z-index: -1;
}

.icon-box-2::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    z-index: 0;
}

.tag {
    border: 1px solid #FF8600;
    border-radius: 5px;
    margin-left:5px;
    width:188px;


}

.tag-span {
    background-color: #282828;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    padding: 4px 5px;
    color: #fff;
    font-size: 10px;
    position: relative;
    /* bottom: 2px; */

}

.tag-text {
    color: #FF8600;
    text-decoration: underline;
    font-size: 11px;
    padding: 4px 4px !important;
}
.contract{
    border: 1px solid var(--primary-color);
    font-size: 10px;
    font-weight: 400;
    padding:3px 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
