@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.ttf') format('truetype');
    font-weight: 100 900;
    font-stretch: 75% 125%;
    font-style: normal;
}

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



/* Custom CSS Variables */
:root {
    --background-color: #FFFBF5;
    --background-color-white: #FFFFFF;

    --primary-color: #FFA322;
    --primary-dark-color: #F39B21;
    --primary-border-color: rgba(255, 163, 34, 0.4);
    --secondary-border-color: rgba(255, 255, 255, 0.4);
    --pure-white: #FFFFFF;
    --pure-black: #000000;
    --lite-black: #1B1B1B;

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

    /* 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: none !important;
}

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

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

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

p {
    font-weight: 200;
}

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

@media screen and (max-width: 1355px) {
    .custom-container {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

@media screen and (max-width: 768px) {
    .custom-container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

/* 
@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;
    }
} */


.primary-button {
    display: inline-block;
    position: relative;
    overflow: hidden !important;
    text-decoration: none;
    width: fit-content;
    padding: 22px 24px 22px 45px;
    font-size: 16px;
    line-height: 1;
    color: var(--pure-white);
    background: var(--primary-color);
    border: 1px solid var(--primary-color);
    font-weight: 400;
    text-transform: uppercase;
    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;
    text-decoration: none;
}

.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);
    transition: all 0.4s ease-out;
    z-index: -1;
}

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

.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);
    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 {
        font-size: 14px;
        width: 100%;
        padding: 18px 20px 18px 38px;
    }

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


/* secondary button */
.secondary-button {
    display: inline-block;
    position: relative;
    overflow: hidden !important;
    text-decoration: none;
    width: fit-content;
    padding: 22px 24px 22px 45px;
    font-size: 16px;
    line-height: 1;
    color: var(--primary-color);
    background: var(--pure-white);
    font-weight: 400;
    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 #ffffff;
    background: var(--primary-color);
    text-decoration: none;
}

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

.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);
    transition: all 0.4s ease-out;
    z-index: -1;
}

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

.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);
    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 {
        font-size: 14px;
        width: 100%;
        padding: 18px 20px 18px 38px;
    }

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

/* secondary button end */

.cookie-consent-bar-wrapper .secondary-button {
    padding: 12px 14px 12px 30px;
    font-size: 14px;
}

.border-color-primary {
    border-color: var(--primary-border-color);
}

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

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

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

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

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

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

.bolt-icon {
    border-radius: 50%;
    /* background-color: orange; */
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    animation: spin linear infinite;
    /* ← Removed fixed duration */
}

.bolt-icon::before {
    content: '';
    position: absolute;
    /* background-color: white; */
    transform: rotate(45deg);
    border-radius: 1px;
}

.bolt-icon-orange {
    background-color: var(--primary-color);
}

.bolt-icon-orange::before {
    background-color: var(--pure-white);
}

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

.bolt-icon-white::before {
    background-color: var(--primary-color);
}

/* Sizes */
.bolt-sm {
    width: 12px;
    height: 12px;
}

.bolt-sm::before {
    width: 1.5px;
    height: 20px;
}

.bolt-md {
    width: 18px;
    height: 18px;
}

.bolt-md::before {
    width: 2px;
    height: 28px;
}

.bolt-lg {
    width: 22px;
    height: 22px;
}

.bolt-lg::before {
    width: 3.5px;
    height: 34px;
}

.bolt-xl {
    width: 275px;
    height: 275px;
}

.bolt-xl::before {
    width: 40px;
    height: 280px;
}

@media (max-width:1023px) {
    .bolt-xl {
        width: 75px;
        height: 75px;
    }

    .bolt-xl::before {
        width: 12px;
        height: 76px;
    }

    .bolt-lg {
        width: 16px;
        height: 16px;
    }

    .bolt-lg::before {
        width: 2.5px;
        height: 18px;
    }

}

/* Spin Speed Utilities */
.spin-fast {
    animation-duration: 1.5s;
}

.spin-medium {
    animation-duration: 3s;
}

.spin-slow {
    animation-duration: 5s;
}

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

/* fullscreen loader start */
@media (min-width: 992px) {
    .loader-screen-mobile {
        display: none !important;
    }

    /* Loader Screen */
    .loader-screen {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #396d9b;
        color: white;
        display: flex;
        justify-content: center;
        z-index: 1000;
        transition: opacity 0.8s ease;
    }

    .loader-screen.fade-out {
        opacity: 0;
        pointer-events: none;
    }

    .left,
    .right {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .left {
        /* min-width: 700px !important; */

    }

    .slot-machine {
        position: relative;
        width: 400px;
        height: 550px;
        overflow: hidden;
        margin-left: 50px;
    }

    .slot-window {
        position: relative;
        height: 100%;
        overflow: hidden;
    }

    .slot-reel {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        display: flex;
        flex-direction: column;
        transform: translateY(0px);
    }

    .slot-reel.spinning {
        animation: continuousSpin 2s linear infinite;
    }

    .slot-item {
        height: 80px;
        display: flex;
        align-items: center;
        justify-content: start;
        font-size: 62px;
        font-weight: 400;
        font-style: italic;
        opacity: 0.7;
        transition: all 0.3s ease;
    }

    .slot-item.winner {
        color: #f5a623;
        font-weight: bold;
        opacity: 1;
        font-weight: 400;
        font-size: 62px;
    }

    .center-line {
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        height: 60px;
        border-left: none;
        border-right: none;
        z-index: 10;
        pointer-events: none;
    }

    .slot-machine::before,
    .slot-machine::after {
        content: '';
        position: absolute;
        left: 0;
        width: 100%;
        height: 200px;
        z-index: 5;
        pointer-events: none;
    }

    .slot-machine::before {
        top: 0;
        background: linear-gradient(to bottom, #396d9b 0%, rgba(57, 109, 155, 0.8) 50%, transparent 100%);
    }

    .slot-machine::after {
        bottom: 0;
        background: linear-gradient(to top, #396d9b 0%, rgba(57, 109, 155, 0.8) 50%, transparent 100%);
    }

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

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

    /* Rectangle blocks animation */
    .rectangles-container {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        /* always full height to prevent jump */
        z-index: 1001;
        display: flex;
        pointer-events: none;
    }

    .rectangle {
        flex: 1;
        background: #ffffff;
        border-right: 1px solid #f5a623;
        transform: translateY(100%);
        /* move completely off screen */
        transition: transform 1s cubic-bezier(0.33, 1, 0.68, 1);

    }

    .rectangle:nth-child(1) {
        transition-delay: 0s;
    }

    .rectangle:nth-child(2) {
        transition-delay: 0.2s;
    }

    .rectangle:nth-child(3) {
        transition-delay: 0.3s;
    }

    .rectangle:nth-child(4) {
        transition-delay: 0.4s;
    }

    .rectangle:nth-child(5) {
        transition-delay: 0.5s;
    }

    .rectangles-container.animate {
        height: 100vh;
    }

    .rectangles-container.animate .rectangle {
        transform: translateY(0);
        /* slide up into view smoothly */
    }

    .left-text {
        width: 250px;
        height: 500px;
        display: flex;
        align-items: center;
        position: relative;
    }

    .vertical-line {
        position: absolute;
        top: 0;
        right: 0;
        width: 1px;
        height: 100%;
        background: linear-gradient(to bottom, transparent, #ffffff, transparent);
        opacity: 0.7;
        z-index: 9;
        pointer-events: none;
    }

}

@media (max-width: 991px) {
    .loader-screen {
        display: none !important;
    }

    .loader-screen-mobile {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: var(--background-color);
        color: var(--primary-color);
        display: flex;
        justify-content: center;
        z-index: 1000;
        transition: opacity 0.8s ease;
        pointer-events: none;
    }

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

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

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

    .loader-mobile-img-left svg {
        animation: spinOnceWithPause 2s ease-in-out infinite;
    }

    .loader-mobile-img-left.spin-stop svg {
        animation: none !important;
    }

    /* Rectangle blocks animation */
    .rectangles-container {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        /* always full height to prevent jump */
        z-index: 1001;
        display: flex;
        pointer-events: none;
    }

    .rectangle {
        flex: 1;
        background: #ffffff;
        border-right: 1px solid #f5a623;
        transform: translateY(100%);
        /* move completely off screen */
        transition: transform 1s cubic-bezier(0.33, 1, 0.68, 1);

    }

    .rectangle:nth-child(1) {
        transition-delay: 0s;
    }

    .rectangle:nth-child(2) {
        transition-delay: 0.2s;
    }

    .rectangles-container.animate {
        height: 100vh;
    }

    .rectangles-container.animate .rectangle {
        transform: translateY(0);
        /* slide up into view smoothly */
    }
}


/* fullscreen loader end */

/* cta banner start */
.cta-banner-wrapper {
    background: var(--primary-color);
    color: var(--pure-white);
    border-color: var(--primary-border-color);
}

/* cta banner end */

/* header css start */
.header-wrapper {
    background-color: var(--background-color);
    border-bottom: 1px solid var(--primary-border-color);
}

.desktop-nav-items-wrapper .nav-items {
    padding-left: 15px;
    position: relative;
    transition: var(--transition-normal);
}

.desktop-nav-items-wrapper .nav-items.active::before {
    opacity: 1;
}

.desktop-nav-items-wrapper .nav-items::before {
    content: "";
    width: 5px;
    height: 5px;
    background-color: var(--primary-color);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto 0;
    opacity: 0;
    transition: var(--transition-normal);
}

.desktop-nav-items-wrapper .nav-items:hover::before {
    opacity: 1;
}

/* hamburger menu mobile */
.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%;
}

/* mega menu start*/

.mega-menu-button.menu-show svg {
    transition: var(--transition-normal);
    transform: rotate(180deg);
}

.mega-menu-item {
    transition: var(--transition-normal);
}

.mega-menu-item:hover {
    background-color: var(--primary-color);
    color: var(--pure-white);
    text-decoration: none;
}

.mega-menu-product-img {
    max-width: 175px;
    transform: rotate(2deg);
    border: 2px solid var(--pure-white);
    box-shadow: 0px 4.67px 11.67px 0px #00000026;
}

.mega-menu-nav-link-item-right-wrapper {
    position: relative;
    padding: 54px 38px;
    border-bottom: 1px solid var(--primary-border-color);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.mega-menu-nav-link-item-right-wrapper:hover {
    text-decoration: none;
}

/* Center text moves up on hover */
.mega-menu-nav-link-item-right-wrapper .link-center-text {
    font-size: 24px;
    letter-spacing: -1px;
    line-height: 28px;
    font-style: italic;
    transition: var(--transition-normal);
    text-align: center;
}

.mega-menu-nav-link-item-right-wrapper:hover .link-center-text {
    transform: translateY(-8px);
}


/* Bottom text slides up on hover */
.mega-menu-link-right-text {
    background: var(--primary-color);
    height: 30px;
    color: var(--pure-white);
    justify-content: center;
    align-items: center;
    transition: bottom .3s;
    display: flex;
    position: absolute;
    bottom: -30px;
    left: 0;
    right: 0;
}

.mega-menu-nav-link-item-right-wrapper:hover .mega-menu-link-right-text {
    bottom: 0;
}

/* Arrow rotation on hover */
.mega-menu-arrow-img-right {
    position: absolute;
    top: 10px;
    right: 10px;
    transition: var(--transition-normal);
    padding: 10px 9px;
}

.mega-menu-arrow-img-right img {
    width: 10px;
    height: 10px;
    transform: rotate(-35deg);
    transition: var(--transition-normal);
}

.mega-menu-nav-link-item-right-wrapper:hover .mega-menu-arrow-img-right img {
    transform: rotate(0deg);
}


/* certifcate-items start */
.certificate-image {
    transition: transform 0.3s ease-in-out;
}

.certificateleft-wrapper:hover .certificate-image {
    transform: rotate(-3deg) scale(1.1);
}

.certificateright-wrapper:hover .certificate-image {
    transform: rotate(3deg) scale(1.1);
}

.certificate2-wrapper:hover .mega-menu-link-right-text {
    height: 40px;
    bottom: 0;
}

.certificateleft-wrapper,
.certificateright-wrapper {
    position: relative;
}

.certificateleft-wrapper:hover .mega-menu-link-right-text,
.certificateright-wrapper:hover .mega-menu-link-right-text {
    bottom: 0;
}

.certificateleft-wrapper:hover .link-left-text {
    transform: translateY(-12px);

}

.certificateright-wrapper:hover .link-left-text {
    transform: translateY(-12px);

}


@media (max-width:991px) {
    .certificateleft-wrapper .link-left-text {
        transform: translateY(-12px);

    }

    .certificateright-wrapper .link-left-text {
        transform: translateY(-12px);

    }

    .certificateleft-wrapper .mega-menu-link-right-text,
    .certificateright-wrapper .mega-menu-link-right-text {
        bottom: 0;
    }

    .certificateleft-wrapper:hover .certificate-image {
        transform: rotate(0deg);
    }

    .certificateright-wrapper:hover .certificate-image {
        transform: rotate(0deg);
    }


}

.certificate-item-wrapper {
    position: relative;
    padding: 54px 38px;
    border-bottom: 1px solid var(--primary-border-color);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.certificate-item-wrapper:hover {
    text-decoration: none;
}

.certificate-item-wrapper .link-left-text {
    font-size: 24px;
    letter-spacing: -1px;
    line-height: 28px;
    font-style: italic;
    transition: var(--transition-normal);
    text-align: left;
}



/* certificate item end */


/* mega menu end */

/* header css end */

/* homepage CSS start */

.square-block-orange {
    width: 6px;
    height: 6px;
    background-color: var(--primary-color);
    transition: var(--transition-normal);

}

.products-item-wrapper {
    background-color: var(--background-color);
    transition: var(--transition-normal);
}

.products-item-wrapper:hover {
    background-color: var(--primary-color);
    color: var(--pure-white);
    text-decoration: none !important;
}

.products-item-wrapper:hover .square-block-orange {
    background-color: var(--pure-white);
}

.products-item-wrapper:hover .primary-button {
    color: var(--primary-color);
    border: 1px solid var(--pure-white);
    text-decoration: none;

}

.products-item-wrapper:hover .primary-button .animationssquare::before {
    scale: 44;
    opacity: 1;
    transform: translate(35%, 0%) rotate(-70deg);
}

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

.product-img-warpper {
    position: absolute;

    top: -52%;
}

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

    25% {
        transform: translateY(-15px) rotate(4deg);
    }

    50% {
        transform: translateY(-30px) rotate(-4deg);
    }

    75% {
        transform: translateY(-15px) rotate(4deg);
    }

    100% {
        transform: translateY(0) rotate(0deg);
    }
}

.product-img-warpper img {
    width: 300px;
    height: 350px;
    margin: 0 auto;
    border: 5px solid #FFFFFF;
    box-shadow: 0px 10px 25px 0px #00000026;


}

.product-img-wrapper{
    background: var(--pure-white);
}

.product-img-wrapper img {
    width: 270px;
    height: 310px;
    margin: 0 auto;
    border: 5px solid #FFFFFF;
    box-shadow: 0px 10px 25px 0px #00000026;
}


.homepage-parallax-content-img {
    background: url('../img/warehouse-img.webp') no-repeat;
    height: 1200px;
    width: 100%;
    background-position: center;
    background-size: cover;
    position: absolute;
    top: 0;
}


.homepage-parallax-content-img::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #00000066;
}

.about-parallax-content-img {
    background: url('../img/about-parallax-img.webp') no-repeat;
    height: 1600px;
    width: 100%;
    background-position: center;
    background-size: cover;
    position: absolute;
    top: 0;
}

.about-parallax-content-img::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #00000066;
}

.about-content-person-img {
    border: 4px solid var(--pure-white);
    background: var(--pure-white);
    box-shadow: 0px 8px 20px 0px #00000026;
    width: fit-content;
    transform: rotate(-2deg);
    margin: 0 auto;
}

.industries-applications-list-item {
    display: flex;
    align-items: center;
    background-color: var(--pure-white);
    transition: var(--transition-normal);
}

.industries-applications-list-item:hover {
    background-color: var(--primary-color);
    color: var(--pure-white);
    text-decoration: none !important;
}

.industries-applications-list-item:hover .industries-applications-list-item-img,
.industries-applications-list-item:hover .industries-applications-list-item-text-block .arrow-right-img {
    opacity: 1;
    right: 30px;
}

.industries-applications-list-item-img {
    opacity: 0;
    position: absolute;
    right: 0;
    transition: var(--transition-slow);
    z-index: 1;
}

.industries-applications-list-item-img img {
    width: 150px;
    height: 200px;
    border: 2px solid #FFFFFF;
    box-shadow: 0px 3.33px 8.33px 0px #00000026;
    transform: rotate(2deg);
}

.industries-applications-list-item-text-block .arrow-right-img {
    width: 20px;
    opacity: 0;
}


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

    .about-parallax-content-img,
    .homepage-parallax-content-img {
        height: 90%;
        top: 61px;
        bottom: 0;
    }


    .products-item-wrapper {
        background-color: var(--primary-color);
        color: var(--pure-white);
        text-decoration: none !important;
        /* pointer-events: none; */
    }

    .products-item-wrapper .square-block-orange {
        background-color: var(--pure-white);
    }

    .products-item-wrapper .primary-button {
        color: var(--primary-color);
        border: 1px solid var(--pure-white);
        text-decoration: none;

    }

    .products-item-wrapper .primary-button .animationssquare::before {
        scale: 44;
        opacity: 1;
        transform: translate(35%, 0%) rotate(-70deg);
    }

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

    .product-img-warpper {
        top: -34%;
    }

    .products-item-wrapper:hover .product-img-warpper img {
        animation: none !important;
    }

    .product-img-warpper {
        top: -62%;
    }


    .product-img-warpper img {
        width: 180px;
        height: 230px;


    }

    .industries-applications-list-item .industries-applications-list-item-text-block .arrow-right-img{
        opacity: 1;    
    }

    /* .product-img-wrapper img{
 width:270px;
    height: 310px;
    margin: 0 auto;
    border: 5px solid #FFFFFF;
    box-shadow: 0px 10px 25px 0px #00000026;
}
 */



    .industries-applications-list-item {
        background-color: var(--primary-color);
        color: var(--pure-white);
    }

    .industries-applications-list-item-img {
        display: none;
        pointer-events: none;
    }

    .industries-applications-list-item-text-block .arrow-right-img {
        width: 15px;
    }

}

/* horizontal scroll css start*/
/* Horizontal Scroll Section */
.horizontal-scroll-section-wrapper {
    overflow-y: visible;
    position: relative;
    margin: 0;
    overflow-x: hidden;
}

/* Card Wrapper */
.horizontal-scroll-card-wrapper {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    gap: 62px;
    width: max-content;
}



/* Individual Card */
.horizontal-card-item-wrapper {
    width: 660px;
    height: 500px;
    flex-shrink: 0;
}

/* Card Content */
.horizontal-card-item-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 48px;
}

/* Mobile fallback: stack vertically */
@media (max-width: 767px) {
    .horizontal-scroll-card-wrapper {
        flex-direction: column;
        width: 100% !important;
        gap: 42px !important;
    }

    .horizontal-card-item-wrapper {
        width: 100%;
        min-height: 430px;
        max-height: 455px;
        margin-right: 0;
    }

    .horizontal-card-item-bottom .bottom-right-img {
        border: 2px solid var(--pure-white);
    }
}

@media (max-width: 580px) {
    .horizontal-card-item-content {
        padding: 32px;
    }
}


/* horizontal scroll css end*/

/* countery marquee start */


.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);
    color: var(--color-blue);
    padding: 5px 10px;
    border-radius: 50px;
    margin-bottom: -15px;
    z-index: 1;
    box-shadow: 0px 6px 7.5px 0px #00000026;

}

/* countery marquee end */

.horizontal-card-item-bottom .bottom-right-img {
    border: 5px solid var(--pure-white);
    box-shadow: 0px 10.34px 25.86px 0px #00000026;
}

.horizontal-card-item-top .top-right-img-wrapper img {
    transform: rotate(2deg);
    border: 4px solid var(--pure-white);
    box-shadow: 0px 8px 20px 0px #00000026;

}


/* homepage CSS end */

/* product details css start */

.product-block-title {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: var(--pure-white);
    padding: 24px;
    line-height: 1;
}

.product-block-title .square-block {
    background: var(--pure-white);
    width: 8px;
    height: 8px;
    margin-right: 12px;
}

.products-content-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--background-color-white);
    transition: all 0.3s ease-in-out;
    padding: 8px;
}

.products-content-block:hover {
    background-color: var(--background-color);
}

/* .products-details-gif-img-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 48px;
    justify-content: center;
} */

.products-details-gif-img-wrapper img,
.products-details-sticky-img-wrapper img {
    border: 4px solid var(--pure-white);
}

.products-details-gif-img-top {
    position: absolute;
    top: 0;
    left: 10px;
    z-index: 0;
    transform: rotate(-2deg);
    box-shadow: 0px 8px 20px 0px #00000026;
}

.products-details-gif-img-bottom {
    position: absolute;
    top: 25%;
    z-index: -1;
    right: 10px;
    transform: rotate(2deg);
    box-shadow: 0px 8px 20px 0px #00000026;
}

.products-details-sticky-img-top {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    transform: rotate(-2deg);
    box-shadow: 0px 8px 20px 0px #00000026;
}

.products-details-sticky-img-bottom {
    position: absolute;
    top: 15%;
    right: 0;
    z-index: -1;
    transform: rotate(2deg);
    box-shadow: 0px 8px 20px 0px #00000026;
}


/* Product details css end*/

/* application css start */

.industries-accordion-img-wrapper img {
    width: 420px;
    height: 305px;
    border: 4px solid white;
    box-shadow: 0px 5.54px 13.85px 0px #00000026;
    transform: rotate(-2deg);
    object-fit: cover;
    transition: opacity 0.5s ease-in-out;
    margin: 0 auto;
}
.industries-accordion-img-wrapper.industries-accordion-bottom-img-wrapper img{
    transform: rotate(2deg);
}

.accordion-view-more-btn {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-color);
    color: var(--pure-white);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    gap: 4px;
}

.accordion-content-wrapper {
    transition: max-height 0.6s ease;
    overflow: hidden;
    max-height: 200px;
}

@media (max-width: 768px) {
    .accordion-content-wrapper {
        max-height: 170px;
    }
}

.accordion-view-more-btn img {
    transition: transform 0.3s ease;
}

/* application css end */

/* terms and condition and contact us page CSS aditya's */
.terms-condition-list {
    list-style: disc;
    margin-left: 20px;
    padding-left: 20px;
}

.formimpinput::after {
    content: "*";
    position: absolute;
    right: -20px;
    top: 0;
    width: 16px;
    height: 16px;
    font-size: 12px;
    color: #FFA322BF;
}

.contact-form-input input::placeholder,
.contact-form-input textarea::placeholder {
    font-weight: 400;
    font-style: italic;
    font-size: 16px;
    color: #FFA322;
    line-height: 24px;
    letter-spacing: 0%;
    text-transform: capitalize;

}

.contact-form-input textarea::placeholder {
    font-weight: 400;
    font-style: italic;
    font-size: 16px;
    color: #FFA322;
    line-height: 24px;
    letter-spacing: 0%;
    text-transform: capitalize;

}


.contact-form-input input {
    border: 1px solid #FFFFFF33;
    box-shadow: 0px 1px 4px 0px #1018280D;

}

.contact-form-input label {
    font-weight: 700;
    font-size: 12px;
    line-height: 20px;
    letter-spacing: 0%;
    color: #FFA322BF;
    text-transform: uppercase;

}

/* terms and condition and contact us page CSS end, aditya's  */

/* about us page */
.parallax-block-img-wrapper img {
    width: 300px;
    height: 350px;
    margin: 0 auto;
    border: 5px solid #FFFFFF;
    box-shadow: 0px 10px 25px 0px #00000026;
    transform: rotate(-2deg);
}

.parallax-block-img-wrapper {
    position: absolute;
    bottom: 70%;
    left: 0;
    right: 0;
}

.parallax-block-img-wrapper.block-two-img img {
    transform: rotate(2deg);
}

@media (max-width: 1440px) {
    .parallax-block-img-wrapper img {
        width: 250px;
        height: 300px;
    }
}

@media (max-width: 1280px) {
    .parallax-block-img-wrapper img {
        width: 220px;
        height: 260px;
    }
}

@media (max-width: 1024px) {
    .parallax-block-img-wrapper img {
        width: 200px;
        height: 240px;
    }
}

/* about- divisions blocks */

/* 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);
}

.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
    }

}

/* about division block end */

/* about us page end */

/* Download catalogue popup */

.form-input-box {
    background-color: var(--background-color-white);
    padding: 16px;
    margin-top: 8px;
    font-size: 16px;
    font-style: italic;
    border: 1px solid #FFFFFF33;
    box-shadow: 0px 1px 4px 0px #1018280D;
    width: 100%;
}

.form-input-box:focus {
    border: 1px solid var(--primary-border-color);
    outline: none;
}

@media (max-width: 1024px) {
    .form-input-box {
        padding: 14px;
        margin-top: 6px;
        font-size: 14px;
    }
}

/* Footer CSS Start */

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

.footer-bottom-wrapper {
    background: var(--primary-dark-color);
    color: var(--pure-white);
}


@media (max-width: 400px) {
    .contact-details-wrapper a {
        font-size: 14px;
    }

    .contact-details-wrapper a:nth-child(1) {
        font-size: 12px;
    }

    .contact-details-wrapper a img {
        width: 24px;
        height: 24px;
    }

    .contact-details-wrapper a .move-on-hover {
        width: 15px;
        height: 15px;
    }

}


/* contact form number */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

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


/* footer css end */