/* Variable */
@import './variable.css';

/* Main Style */

*,
html,
body {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    font-size: var(--font-size-sm) !important;
    line-height: 100% !important;
    color: var(--color-white) !important;
    background-color: var(--color-black) !important;
}

.container,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
    max-width: calc(100vw - 120px) !important;
}

a {
    text-decoration: none !important;
}

ul,
ul li {
    list-style: none !important;
}

hr {
    border: 1px solid var(--color-white) !important;
}

.z-10 {
    z-index: 10 !important;
}

.z-999 {
    z-index: 999 !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-primary) !important;
    font-weight: var(--fw-bolder) !important;
}

body::-webkit-scrollbar,
div::-webkit-scrollbar,
ul::-webkit-scrollbar,
main::-webkit-scrollbar {
    width: 3px !important;
    height: 3px !important;
    border-radius: 20px !important;
}

body::-webkit-scrollbar-thumb,
div::-webkit-scrollbar-thumb,
ul::-webkit-scrollbar-thumb,
main::-webkit-scrollbar-thumb {
    background-color: var(--color-primary) !important;
}

body::-webkit-scrollbar-track,
div::-webkit-scrollbar-track,
ul::-webkit-scrollbar-track,
main::-webkit-scrollbar-track {
    background-color: var(--color-secondary) !important;
}

.row>* {
    padding-right: 0px !important;
    padding-left: 0px !important;
}

.pointer {
    cursor: pointer !important;
}



.btn {
    box-shadow: none !important;
    outline: none !important;
    padding: 10px 24px !important;
    font-family: var(--font-primary) !important;
    font-size: var(--font-size-xsm) !important;
    line-height: 100% !important;
    font-weight: var(--fw-normal) !important;
    border-radius: 10px !important;
}

.btn-primary {
    color: var(--color-primary) !important;
    background-color: var(--color-white) !important;
    border: 1px solid var(--color-white) !important;
}

.btn-primary:hover {
    background-color: rgba(255, 168, 2, 0.6) !important;
    color: rgba(255, 255, 255, .7) !important;
    border: 1px solid rgba(255, 168, 2, 0.6) !important;
}

.btn-primary:focus,
.btn-primary:visited,
.btn-primary:active {
    background-color: var(--color-secondary) !important;
    color: var(--color-white) !important;
    border: 1px solid var(--color-white) !important;
}


/* Font title */
.gradient-text {
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-secondary) 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    color: transparent !important;
    max-width: fit-content !important;
}

.breadcrumb__text,
.hero__section-desc,
.lorem__numeric span {
    font-family: var(--font-primary) !important;
    font-size: var(--font-size-base) !important;
    line-height: 120% !important;
    margin: 0px !important;
}

.h1__title {
    font-size: var(--font-size-xxl) !important;
    line-height: 120% !important;
    padding: 4rem 0px 2rem !important;
}

.h2__title {
    font-size: var(--font-size-xl) !important;
    line-height: 120% !important;
}

.section__desc,
.list__dot-section .list-dot {
    font-family: var(--font-primary) !important;
    font-size: 22px !important;
    line-height: 120% !important;
    font-weight: var(--fw-light) !important;
}

.section__desc.fw-semibold {
    font-weight: var(--fw-semibold) !important;
}

.section_sub_desc,
.small_sub_desc {
    font-family: var(--font-primary) !important;
    font-size: 22px !important;
    line-height: 120% !important;
}

.small_sub_desc {
    font-size: 22px !important;
}

.small_sub_desc>.text-gray {
    color: #7D7D7D !important;
    font-weight: var(--fw-light) !important;
}

.text-secondary {
    color: var(--color-secondary) !important;
}

/* Section style */

.section {
    padding: 80px 0px !important;
}

.sub__section {
    padding: 60px 0px 0px !important;
}

footer.sub__section.pb-0 {
    padding: 60px 0px 0px !important;
}

main {
    margin-top: 80px !important;
    overflow-x: hidden !important;
}

/* Hero section css*/
.hero__section {
    position: relative !important;
    z-index: 99 !important;
    padding: 0px !important;
}

.hero__bg {
    position: absolute !important;
    top: 0px !important;
    left: 0px !important;
    width: 100vw !important;
    height: 300px !important;
    z-index: 10 !important;
    opacity: 0.2 !important;
}

.why__choose-section {
    background: url('../Images/why-main-bg.png') !important;
    background-position: center !important;
    background-size: 100% 100% !important;
    padding-top: 0px !important;
    padding-bottom: 50px !important;
}

.bg-circle {
    position: absolute !important;
    top: 18% !important;
    left: 22% !important;
    z-index: 1 !important;
    width: 573px !important;
    height: 573px !important;
    border-radius: 50% !important;
    background: linear-gradient(225deg, var(--color-primary) 0%, rgba(255, 168, 2, 0) 70%) !important;
}

.lorem__numeric strong {
    font-size: 32px !important;
    line-height: 120% !important;
    color: var(--color-secondary) !important;
}

/* Work section css*/
.work__section {
    background: url('../Images/work_bg.png') !important;
    background-position: center !important;
    background-size: 100% 100% !important;
}

.work__section .work__card-section,
.perks__section .grid-3 {
    display: inline-grid !important;
    grid-template-columns: 30% 30% 30% !important;
    gap: 3% !important;
}

.work__section .work__card-section .img__bg-section {
    position: relative !important;
    width: 100px !important;
    height: 100px !important;
    z-index: 6 !important;
}

.work__section .work__card-section .img-bg {
    position: relative !important;
    background-color: rgba(255, 168, 2, 0.6) !important;
    border-radius: 12px !important;
    width: 60px !important;
    height: 60px !important;
    z-index: 10 !important;
}

.work__section .work__card-section img {
    position: absolute !important;
    left: 0px !important;
    top: 0px !important;
    width: 60px !important;
    height: 60px !important;
    z-index: 99 !important;
}

/* Value section css */
.value__section {
    position: relative;
    /* Needed for absolute positioning of pseudo-element */
    background: url('../Images/wmremove-transformed.jpeg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 1;
    /* Keep content on top */
}

.value__section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.4);
    /* Black overlay with 50% opacity */
    z-index: 0;
    /* Behind content */
}

.value__section * {
    position: relative;
    z-index: 2;
    /* Bring child content above the overlay */
}

.value__section .value__card-section {
    display: inline-grid !important;
    grid-template-columns: 33.33% 50.33% 29.33% !important;
    gap: 0 !important;
    margin-top: 50px;
    min-height: calc(100vh - 240px) !important;
    justify-items: center !important;
}

.value__section .value__card-section>div {
    width: 75% !important;
}

.value__section .value__card-section>div:nth-child(2) small {
    width: 100% !important;
}

/* Working here section css */
.list__dot-section .list-dot {
    list-style: disc !important;
}

/* Perks section css */
.perks__section .grid-3>div:nth-child(2) img {
    width: 100% !important;
    height: 100% !important;
}

.perks__section .grid-3>div {
    height: 80vh !important;
}

/* Jobs section css */
.job__section {
    background-color: #141414 !important;
}

.job__section .job-card {
    padding: 20px 30px !important;
    border: 0.88px solid transparent !important;
    border-image: linear-gradient(90deg, #FF5F15, #FF9A00) !important;
    border-image-slice: 1 !important;
    border-radius: 10px !important;
}

.job__section .job-card .card-header {
    border: none !important;
}

/* Generic fade-in elements */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.show {
    opacity: 1;
    transform: translateY(0);
}

/* Slide-in from left for .slide-in-left elements only */
.slide-in-left {
    opacity: 0;
    transform: translateX(-100px);
    transition: opacity 0.1s ease, transform 0.8s ease;
}

.slide-in-left.show {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(100px);
    /* starts from right */
    transition: opacity 0.1s ease, transform 0.8s ease;
}

.slide-in-right.show {
    opacity: 1;
    transform: translateX(0);
    /* ends in original position */
}

.valueGap {
    gap: 160px !important;
}


.career-image-hover {
    border-radius: 50px;
    overflow: hidden;
    position: relative;
    max-width: 56%;
    transition: transform 0.4s ease-in-out, box-shadow 0.4s ease-in-out;
}

.career-image-anime {
    position: relative;
    overflow: hidden;
    border-radius: 50px;
}

.career-image-anime img {
    width: 100%;
    display: block;
    border-radius: 50px;
    transition: transform 0.4s ease-in-out;
}

.career-image-anime::after {
    content: "";
    position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255, 255, 255, .3);
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 1;
    transition: all 600ms linear;
}

.career-image-hover:hover {
    transform: scale(1.05);
}

.career-image-hover:hover img {
    transform: scale(1.05);
}

.career-image-hover:hover .career-image-anime::after {
    height: 250%;
    background-color: transparent;
}