@import "tailwindcss";
/* @import url('https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,100..900;1,100..900&display=swap'); */

/* @font-face {
    font-family: 'Archivo';
    src: url('../fonts/Archivo-VariableFont_wdth,wght.woff2') format('woff2');
    font-weight: 100 900;
    font-stretch: 75% 125%;
    font-style: normal;
}

@font-face {
    font-family: 'Archivo';
    src: url('../fonts/Archivo-Italic-VariableFont_wdth,wght.woff2') format('woff2');
    font-weight: 100 900;
    font-stretch: 75% 125%;
    font-style: italic;
} */

@font-face {
    font-family: 'Archivo';
    src: url('path/to/Archivo-VariableFont_wdth,wght.woff2') format('woff2');
    font-weight: 100 900; /* Adjust based on your font's weight range */
    font-stretch: 75% 200%; /* Adjust based on the font's width range */
    font-display: swap; /* Prevent FOUT by showing fallback font until loaded */
}

@font-face {
    font-family: 'Archivo Italic';
    src: url('path/to/Archivo-Italic-VariableFont_wdth,wght.woff2') format('woff2');
    font-weight: 100 900; /* Adjust based on your font's weight range */
    font-stretch: 75% 200%; /* Adjust based on the font's width range */
    font-style: italic;
    font-display: swap; /* Same for italic */
}




/* Custom CSS Variables */
:root {
    --background-color: #F9FBFD;
    --background-color-white: #FFFFFF;
    --primary-color: #336699;
    --primary-dark-color: #264C73;
    --primary-opacity-40: hsla(210, 50%, 40%, 0.4);
    --primary-border-color: #33669933;
    --secondary-border-color: #33669966;
    --border-white: #FFFFFF;
    --pure-white: #FFFFFF;
    --pure-black: #000000;
    --lite-black: #1B1B1B;

    --green-color: #00951E;
    --red-color: #DE1A1A;
    --yellow-color: #FFA322;
    --copper-color: #C76A4D;

    /* Gradients */


    /* Shadows */
    --shadow-card: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-elevated: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-hero: 0 25px 50px -12px rgba(0, 0, 0, 0.25);

    /* Transitions */
    --transition-fast: all 0.2s ease-in-out;
    --transition-normal: all 0.3s ease-in-out;
    --transition-slow: all 0.5s ease-in-out;
}

/* Base CSS */
html,
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Archivo', sans-serif;
    color: var(--primary-color);
    scroll-behavior: smooth;
}

*,
*::before,
*::after {
    box-sizing: inherit;
}

a {
    text-decoration: none;
    color: inherit;
}

a:hover {
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    cursor: pointer;
    border: none;
    background: none;
}

ul,
ol {
    list-style: none;
    margin: 0;
    padding: 0;
}

.custom-container {
    width: 100%;
    max-width: 1320px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (min-width: 640px) {
    .custom-container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (min-width: 768px) {
    .custom-container {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

@media (min-width: 1024px) {
    .custom-container {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

@media (min-width: 1280px) {
    .custom-container {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

/* For Chrome, Safari, Edge, Opera */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* For Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}



.primary-button {
    width: fit-content;
    padding: 22px 24px 22px 45px;
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
    color: var(--pure-white);
    background: var(--primary-color);
    font-weight: 400;
    overflow: hidden;
    text-transform: uppercase;
    border: 1px solid #ffffff;
    cursor: pointer;
    transition: all 0.35s ease-in-out;

}

.primary-button:hover {
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    text-decoration: none;
}

.primary-button .button-text {
    line-height: 1;
    position: relative;
    white-space: nowrap;
    z-index: 2;
}

.primary-button .animationssquare::before {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    top: calc(50% - 2px);
    left: -16px;
    transform: translateY(-25%) rotate(0deg);
    background: var(--pure-white);
    border-radius: 0;
    transition: all 0.4s ease-out;
    z-index: -1;
}

.primary-button:hover .animationssquare::before {
    scale: 33.5;
    opacity: 1;
    transform: translate(35%, 0%) rotate(-70deg);
    z-index: -1;
}

.primary-button .animationssquare::after {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    top: calc(50% - 2px);
    left: -16px;
    scale: 0;
    transform: translate(35%, 0%) rotate(15deg);
    background: var(--primary-color);
    border-radius: 0;
    transition: all 0.25s ease-out;
    z-index: 0;
    opacity: 0;
}

.primary-button:hover .animationssquare::after {
    scale: 1;
    opacity: 1;
    transform: translateY(-25%) translateX(0px) rotate(-90deg);
}

@media (max-width: 768px) {
    .primary-button {
        width: 100%;
    }

    .primary-button:hover .animationssquare::before {
        scale: 75.5;
        opacity: 1;
        transform: translate(10%, 0%) rotate(-70deg);
        z-index: -1;
    }
}

.primary-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}



.secondary-button {
    width: fit-content;
    padding: 12px 14px 12px 30px;
    font-weight: 400;
    font-size: 14px;
    line-height: 1;
    color: var(--primary-color);
    background: var(--pure-white);
    font-weight: 400;
    overflow: hidden;
    text-transform: uppercase;
    border: 1px solid var(--primary-color);
    cursor: pointer;
    transition: all 0.35s ease-in-out;

}

.secondary-button:hover {
    color: var(--pure-white);
    border: 1px solid var(--pure-white);
    text-decoration: none;
}

.secondary-button .button-text {
    line-height: 1;
    position: relative;
    white-space: nowrap;
    z-index: 2;
}

.secondary-button .animationssquare::before {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    top: calc(50% - 2px);
    left: -16px;
    transform: translateY(-25%) rotate(0deg);
    background: var(--primary-color);
    border-radius: 0;
    transition: all 0.4s ease-out;
    z-index: -1;
}

.secondary-button:hover .animationssquare::before {
    scale: 33.5;
    opacity: 1;
    transform: translate(35%, 0%) rotate(-70deg);
    z-index: -1;
}

.secondary-button .animationssquare::after {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    top: calc(50% - 2px);
    left: -16px;
    scale: 0;
    transform: translate(35%, 0%) rotate(15deg);
    background: var(--pure-white);
    border-radius: 0;
    transition: all 0.25s ease-out;
    z-index: 0;
    opacity: 0;
}

.secondary-button:hover .animationssquare::after {
    scale: 1;
    opacity: 1;
    transform: translateY(-25%) translateX(0px) rotate(-90deg);
}

@media (max-width: 768px) {
    .secondary-button {
        width: 100%;
    }

    .secondary-button:hover .animationssquare::before {
        scale: 75.5;
        opacity: 1;
        transform: translate(10%, 0%) rotate(-70deg);
        z-index: -1;
    }
}

.secondary-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}




.link-button {
    width: 100%;
    padding: 16px;
    font-weight: 400;
    font-size: 18px;
    line-height: 1;
    color: var(--pure-white);
    background: var(--primary-color);
    font-weight: 400;
    overflow: hidden;
    border: 1px solid var(--primary-color);
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.link-button:hover {
    color: var(--pure-white);
    border: 1px solid var(--primary-dark-color);
    background-color: var(--primary-dark-color);
}

.primary-background {
    background-color: var(--primary-color);
    color: var(--pure-white);
}

.lite-black {
    color: var(--lite-black);
}

.small-border-color {
    border-color: var(--secondary-border-color);
}


.color-transition-text {
    color: var(--primary-opacity-40);
    transition: color 0.3s ease;

}

/* Each word wrapper starts faded */
.color-transition-text .word {
    color: var(--primary-opacity-40);
    display: inline-block;
    transition: color 0.3s ease;
    white-space: nowrap;
}

/* When the container gets .in-view, color of each word will animate */
.color-transition-text.in-view .word {
    color: var(--primary-color);
}

/* group of companies mobile slider  */
.group-companies-mobile-slider .splide__pagination {
    bottom: -2rem;

}

.group-companies-mobile-slider .splide__pagination__page {
    width: 10px;
    height: 10px;
    border-radius: 0;
    background-color: var(--primary-color);
    opacity: 0.4;
    transition: opacity 0.3s ease;
}

.group-companies-mobile-slider .splide__pagination__page.is-active {
    opacity: 1;
    background-color: var(--primary-color);

}

/* Header Styles */
.header-content-wrapper {
    background-color: var(--background-color);
    border: 1px solid var(--primary-border-color);
    border-top: 0;
    padding: 1rem 2rem;
}

.nav-items {
    padding: 0 0.8rem;
    margin: 0 0.5rem;
    line-height: 1;
    transition: var(--transition-normal);
    position: relative;
    /* Needed for ::before to align properly */
}

.nav-items:hover {
    color: var(--primary-color);
    /* font-weight: 600; */
    text-decoration:none;
}
.nav-items:hover::before {
    content: "";
    width: 5px;
    height: 5px;
    background: var(--primary-color);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
}


.nav-items.active {
    color: var(--primary-color);
    /* font-weight: 600; */
}

.nav-items.active::before {
    content: "";
    width: 5px;
    height: 5px;
    background: var(--primary-color);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.hamburger-btn.active span:nth-child(1) {
    transform: rotate(45deg);
    translate: 0 -50%;
}
.hamburger-btn.active span:nth-child(2) {
    opacity: 0;
}
.hamburger-btn.active span:nth-child(3) {
    transform: rotate(-45deg);
    translate: 0 -50%;
}

/* header style end */

/* hero section style */

.around-border {
    border: 1px solid var(--primary-border-color);
    background-color: var(--background-color);
}

.around-border-white-bg {
    border: 1px solid var(--primary-border-color);
    background-color: var(--background-color-white);
}

.global-floating-icons-wrapper {
    width: 72px;
    height: 72px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

}

.global-icons-img {
    width: 45px;
    height: 45px;
}

/* buissness divisions */
.section-title p {
    padding-left: 1.4rem;
}

.section-title p::before {
    content: "";
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    position: absolute;
    left: 0.4rem;
    top: 22%;
}

.link-icon-wrapper {
    width: 62px;
    height: 62px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: transparent;
}

.link-icons-img {
    width: 24px;
    height: 24px;
    transition: var(--transition-normal);
}



/* Custom float animation */
@keyframes float {

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

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

.business-divisions-block {
    transition: all 0.3s ease-in-out;
}

.business-divisions-block:hover {
    text-decoration: none;
    color: var(--pure-white);
}

.business-divisions-block:hover .link-icon-wrapper img {
    transform: rotate(-45deg);
}

.business-divisions-block:hover .division-card-image-wrapper {
    margin: 35px;
}

.business-divisions-block:hover .small-border-color,
.business-divisions-block:hover .around-border {
    border-color: var(--pure-white);
}

.business-divisions-block:hover .around-border img {
    filter: brightness(100);
}

.business-divisions-block:hover .division-card-image {
    animation: float 3s ease-in-out infinite;
    /* animation-delay: 0.3s; */

}

.business-divisions-block:hover .division-card-image-rotate {
    transform: scale(1.1) rotate(-8deg);
    transition: all 0.3s linear;
}

.division-card-image-wrapper {
    transition: all 0.3s linear;

}

.division-card-image-wrapper>* {
    transition: all 0.3s linear;
}

.fasteners-division-block:hover {
    background-color: var(--yellow-color);
}

.tubes-division-block:hover {
    background-color: var(--red-color);
}

.solar-division-block:hover {
    background-color: var(--green-color);
}

.crepepaper-division-block:hover {
    background-color: var(--copper-color);
}

.tubes-division-block,
.solar-division-block,
.crepepaper-division-block {
    margin-top: -150px;
}

@media (max-width: 1023px) {
    .business-divisions-block {
        text-decoration: none;
        color: var(--pure-white);
        margin-bottom: 25px;
    }

    .division-card-image-wrapper {
        margin: 30px;
    }

    .business-divisions-block .small-border-color,
    .business-divisions-block .around-border {
        border-color: var(--pure-white);
    }

    .business-divisions-block .around-border img {
        filter: brightness(100);
    }

    /* .business-divisions-block .division-card-image {
        animation: float 3s ease-in-out infinite;
        animation-delay: 0.3s;
    } */

    .business-divisions-block .link-icon-wrapper img {
        transform: rotate(-45deg);
    }

    .business-divisions-block .division-card-image {
        animation: float 3s ease-in-out infinite;
        /* animation-delay: 0.3s; */
    }

    .business-divisions-block .division-card-image-rotate {
        transform: rotate(-8deg);
        transition: all 0.3s linear;
    }

    .fasteners-division-block {
        background-color: var(--yellow-color);
    }

    .tubes-division-block {
        background-color: var(--red-color);
    }

    .solar-division-block {
        background-color: var(--green-color);
    }

    .crepepaper-division-block {
        background-color: var(--copper-color);
    }

    .tubes-division-block,
    .solar-division-block,
    .crepepaper-division-block {
        margin-top: 0
    }

}


/* cta banner */

.cta-banner-wrapper {
    background-color: var(--background-color-white);
    border: 1px solid var(--primary-border-color);
}

/* about us marque */
.marquee-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
    background-color: transparent;
}

.marquee-track {
    display: flex;
    animation: marquee 30s linear infinite;
    width: max-content;
}

.about-us-image-wrapepr img {
    width: 100%;
    height: 750px;
    object-fit: cover;
}

.about-us-marque-img {
    max-width: 500px;
    height: 380px;
    aspect-ratio: auto;
    border: 2px solid var(--border-white);
    object-fit: cover;
}

@media (max-width: 1024px) {
    .about-us-marque-img {
        max-width: 400px;
        height: 304px;
    }

    .about-us-image-wrapepr img {
        width: 100%;
        height: 500px;
        object-fit: cover;
    }
}


@media (max-width: 640px) {
    .about-us-marque-img {
        max-width: 300px;
        height: 228px;
    }
}

@keyframes marquee {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-50%);
    }
}


/* global partners */
/* .global-partners-background-img {
    background-image: url("../images/Globe-bg-img.web");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
} */

/* country-flags marque */


.global-country-flags-marquee-wrapper {
    overflow: hidden;
}

.global-country-flags-marquee-track-left {
    animation: marquee-top 30s linear infinite;
    will-change: transform;
}

.global-country-flags-marquee-track-left>div {
    flex-shrink: 0;
}

.global-country-flags-marquee-track-right {
    animation: marquee-bottom 30s linear infinite;
    /* transform: translateX(0); */
    will-change: transform;
}

.global-country-flags-marquee-track-right>div {
    flex-shrink: 0;
}


@keyframes marquee-top {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes marquee-bottom {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

.country-name-text {
    background: var(--background-color-white);
    padding: 5px 10px;
    border-radius: 50px;
    margin-bottom: -15px;
    z-index: 1;
    box-shadow: 0px 6px 7.5px 0px #00000026;

}

/* timeline slider */

.timeline-slider-nav-wrapper::after {
    content: "";
    position: absolute;
    top: 10px;
    left: 0;
    right: 0;
    background: var(--primary-border-color);
    height: 1px;
    width: 100%;
    z-index: 0;
}

.timeline-nav-track {
    z-index: 1 !important;
}

.timeline-slider-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s linear;
}

.timeline-slider-nav .blue-box {
    width: 20px;
    height: 20px;
    background: #fff;
    border: 1px solid #336699;
}

.timeline-slider-nav .year-box {
    font-size: 20px;
    font-style: italic;
    font-weight: 400;
    line-height: 1;
    padding-top: 12px;
    color: #336699;
}

.timeline-slider-nav.is-active .year-box {
    font-size: 32px;
    font-weight: 900;
}

.timeline-slider-nav.is-active .blue-box {
    background: #336699;
}

.splide__track--nav>.splide__list>.splide__slide,
.splide__track--nav>.splide__list>.splide__slide.is-active {
    border: none !important;
    background: none !important;
}

.timeline-left-side-slider-content {
    position: relative;
    height: 450px;
    display: flex;
    flex-direction: column;
    justify-content: end;
}

/* Applies to even-numbered slides */
.timeline-slider-content-slide:nth-child(even) .timeline-left-side-slider-content {
    transform: scale(0.9) rotate(-2deg);
}

/* Applies to odd-numbered slides */
.timeline-slider-content-slide:nth-child(odd) .timeline-left-side-slider-content {
    transform: scale(0.9) rotate(2deg);
}


.timeline-right-side-slider-content {
    position: relative;
    height: 450px;
    padding: 100px 0 20px 0;
    margin-top: 15px;
}

.timeline-custom-arrow {
    position: absolute;
    top: 30px;
    right: 45%;
    transform: translateX(50%);
    z-index: 10;
    width: 130px;
}


.timeline-custom-arrow .splide__arrow {
    background: none;
    border: 1px solid var(--primary-border-color);
    padding: 10px;
    width: 42px;
    height: 42px;
    border-radius: 0;
    background: var(--background-color);
    opacity: 1;
}

.timeline-left-side-slider-content img {
    object-fit: cover;
    max-width: 500px;
    width: 100%;
    border: 5px solid var(--pure-white);
    box-shadow: 0px 0px 30px 0px #00000026;

}

.timeline-slide-content-bottom {
    border-top: 1px solid var(--primary-border-color);
}

.timeline-slide-content-bottom>p {
    height: 60px;
}

.timeline-slide-content-top {
    width: 90%;
}

/* Center active year */
.timeline-nav-track .splide__slide {
    width: 150px !important;
}

.timeline-nav-track .splide__slide.is-active {
    transform: translateX(0) !important;
    width: 150px !important;
}

/* Mobile responsive order changes */
@media (max-width: 1024px) {
    .timeline-slide-content-bottom>p {
        height: fit-content;
    }

    .timeline-left-side-slider-content {
        height: 400px;
        order: 2;
        align-items: center;
    }

    .timeline-right-side-slider-content {
        height: 100%;
        padding-top: 80px;
        order: 1;
    }

    .timeline-custom-arrow {
        left: -55px;
    }
}

@media screen and (max-width: 768px) {
    .timeline-left-side-slider-content {
        height: 100%;
    }



}

/* timeline slider end */
/* foundation marquee */
.foundation-marquee {
    animation: marquee 60s linear infinite;
}

.foundation-hover-bg-lite {
    transition: all 0.3s ease-in-out;
}

.foundation-hover-bg-lite:hover {
    background-color: var(--background-color);
}

/* group of companies */

.group-companies-card {
    height: 350px;
    overflow: hidden;
    position: relative;
    justify-content: flex-start;
    transition: all 0.3s ease-in-out;
    text-decoration: none !important;
}

/* Ensure image & text sections don't overflow */
.group-companies-card-img {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 140px;
    transition: transform 0.3s ease;
}

.group-companies-card-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: 120px;
    transition: transform 0.3s ease;
    padding-top: 24px;
    position: relative;
}

.group-companies-card-info::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: var(--primary-border-color);
    top: 0;
    left: 0;
    right: 0;
}

/* Slide up the website button */
.wesite-link-wrapper {
    position: absolute;
    bottom: -40px;
    left: 0;
    right: 0;
    height: 40px;
    background: var(--primary-color);
    color: var(--pure-white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: bottom 0.3s ease;
}

/* Hover effects */
.group-companies-card:hover .wesite-link-wrapper {
    bottom: 0;
}

.group-companies-card:hover .group-companies-card-img,
.group-companies-card:hover .group-companies-card-info {
    transform: translateY(-10px);
}

.top-right-arrow {
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 10;
    opacity: 0;
}

.group-companies-card .top-right-arrow-img {
    opacity: 0;
    transform: translateY(-5px);
    transition: all 0.3s ease;
    width: 16px;
    height: 16px;
    /* pointer-events: none; */
}

/* Show arrow on hover */
.group-companies-card:hover .top-right-arrow {
    opacity: 1;
}

.group-companies-card:hover .top-right-arrow-img {
    opacity: 1;
    transform: rotate(-45deg) translateY(0);
}

@media screen and (max-width:768px) {

    .group-companies-card {
        height: 360px;
    }

    .group-companies-card .group-companies-card-img {
        min-width: 320px;
        max-width: 350px;
        width: 100%;
        height: 160px;
    }
}

@media screen and (max-width: 1024px) {

    /* Always show the bottom link on small screens */
    .wesite-link-wrapper {
        bottom: 0 !important;
    }

    /* Always move the content up slightly */
    .group-companies-card-img,
    .group-companies-card-info {
        transform: translateY(-10px) !important;
    }

    /* Always show the arrow */
    .top-right-arrow {
        opacity: 1 !important;
    }

    .top-right-arrow-img {
        opacity: 1 !important;
        transform: rotate(-45deg) translateY(0) !important;
    }
}


/* career marquee */

.career-marquee {
    animation: marquee 60s linear infinite;
}

.career-marquee .career-img-wrapper {
    max-height: 350px;
}

.career-marquee .career-img-wrapper img,
.career-marquee .career-img-wrapper video {
    max-height: 308px;
}


@media screen and (max-width:1024px) {
    .career-marquee .career-img-wrapper img,
    .career-marquee .career-img-wrapper video {
        max-height: 252px;
    }
}

/* career modals */

.custom-dropdown-career {
    border: 1px solid #33669933;
    border-left: 0;
    border-right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;

}

.custom-dropdown-career-items-wrapper {
    border: 1px solid #33669933;
}

.custom-dropdown-career-items {
    border: 1px solid #33669933;
    border-top: 0;
    border-left: 0;
    border-right: 0;
}

.custom-dropdown-career-items:last-child {
    border-bottom: 0;
}

.custom-dropdown-career-items:hover {
    font-weight: 700;
}

.custom-dropdown-career-items:nth-child(1):hover {
    background-color: var(--primary-color);
    color: var(--pure-white);
}

.custom-dropdown-career-items:nth-child(2):hover {
    background-color: var(--yellow-color);
    color: var(--pure-white);
}

.custom-dropdown-career-items:nth-child(3):hover {
    background-color: var(--red-color);
    color: var(--pure-white);
}

.custom-dropdown-career-items:nth-child(4):hover {
    background-color: var(--green-color);
    color: var(--pure-white);
}

.custom-dropdown-career-items:nth-child(5):hover {
    background-color: var(--copper-color);
    color: var(--pure-white);
}

.fade-in {
    animation: fadeIn 0.3s ease-in;
}

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

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

.modal-hidden {
    opacity: 0;
    pointer-events: none;
}

.modal-visible {
    opacity: 1;
    pointer-events: all;
}

.modal-content-hidden {
    transform: scale(0.9);
    opacity: 0;
}

.modal-content-visible {
    transform: scale(1);
    opacity: 1;
}

.success-border p {
    padding: 4px 34px 4px 4px;
    margin: 0;
    border: 1px solid;
}

.success-border button {
    border-left: 1px solid transparent;
    border: 1px solid var(--primary-color);
    padding: 5px;
    background-color: var(--primary-color);
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.success-border button img {
    filter: brightness(100);
}

.modal-content-wrapper {
    max-height: 93vh;
    overflow-y: auto;
    overflow-x: hidden;
}

@media screen and (max-width: 1279px) {
    .modal-content-wrapper {
        max-height: 90%;
        overflow-y: auto;
    }
}

@media screen and (max-width: 1024px) {
    .modal-content-wrapper {
        max-height: 85%;
        overflow-y: auto;
    }
}

/* career modals Validation styles */
.error-input {
    /* border-bottom-color: #ef4444 !important; */
    /* background-color: #fef2f2; */
}

.error-message {
    color: #ef4444;
    font-size: 12px;
    margin-top: 4px;
    display: block;
}

/* career modals Thank you popup styles */
.thank-you-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 43px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    z-index: 1000;
    text-align: center;
    max-width: 650px;
    width: 90%;
}

.thank-you-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.contact-companies-card-img img {
    max-width: 350px;
}

.contact-companies-card-info {
    width: 100%;
}

/* contact us */
.contatc-companies-card-description {
    height: 85px;
    border-bottom: 1px solid var(--primary-border-color);
}

@media screen and (max-width: 1023px) {
    .contatc-companies-card-description {
        height: 75px;
    }
}

/* WebKit (Chrome, Safari, Edge) */
.modal-content-wrapper::-webkit-scrollbar {
  width: 3px;
}

.modal-content-wrapper::-webkit-scrollbar-track {
  background: transparent;
}

.modal-content-wrapper::-webkit-scrollbar-thumb {
  background-color: #999; /* gray */
  border-radius: 4px;
}

/* Firefox */
.modal-content-wrapper {
  scrollbar-width: thin;
  scrollbar-color: #999 transparent;
}

/* footer */
.footer-wrapper {
    background-color: var(--primary-color);
    color: var(--pure-white);
    position: relative;
}

.footer-wrapper::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("../images/noisy-background-footer.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 20%;
}

.footer-socialmedia-links li {
    transition: all 0.3s ease-in-out;

}

.footer-socialmedia-links li:hover {
    transform: translateY(-5px);
}

.copyright-info-footer-wrapper {
    background-color: var(--primary-dark-color);
}

@media screen and (max-width:1023px) {

    .footer-logo-wrap,
    .footer-contact-details {
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        padding-bottom: 32px;
        margin-bottom: 32px;
    }


}