/*loader style*/
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100%;
    z-index: 9999;
}

.revealer,
.loader-text-wrapper,
.progress-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--black-color);
}

.progress-wrapper,
.revealer {
    background: var(--white-color);
}

.progress-line-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    width: 150px;
    height: 8px;
    border-radius: 50px;
    background: #e5e5e5;
    overflow: hidden;
}

.progress-line {
    background: #000;
    width: 0%;
    height: 100%;
    display: block;
}

.loader-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.loader-text h3 {
    color: var(--white-color);
    text-transform: uppercase;
    font-size: 60px;
    line-height: 1.4;
    letter-spacing: 1.6px;
}

.revealer {
    z-index: 1;
    top: 100%;
}

.dark-theme .dark-arrow,
.dark-theme.light-theme .light-arrow {
    display: none;
}

.dark-theme.light-theme .dark-arrow {
    display: block;
}

.logo img {
    max-width: 300px;
}

a.active {
    color: var(--primary);
    font-weight: bold;
    border-bottom: solid 2px var(--secondary);
}

:root {
    --bodyFont: "Poppins", sans-serif;
    --headingFont: "Bebas Neue", sans-serif;
    --primary: #16a34a;
    --secondary: #000;
    --font-size: 14px;
    --line-height: 26px;
    --color: #212529;
    --light-white: #eee;
    --white-color: #fff;
    --black-color: #171010;
}

body {
    font-family: var(--bodyFont);
    font-size: var(--font-size);
    line-height: var(--line-height);
    color: var(--color);
    letter-spacing: 0.5px;
}

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

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

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

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

.secondary-bgcolor {
    background-color: var(--secondary);
}

.container {
    max-width: 90%;
    width: 90%;
    margin: auto;
}

.web-container {
    max-width: 70%;
    width: 70%;
    margin: auto;
}

img {
    max-width: 100%;
}

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

.list-none {
    list-style: none;
}

.letter-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    font-family: 'Poppins', sans-serif;
}

.loader-text {
    color: #fff;
    font-size: 5rem;
    font-weight: 700;
    display: flex;
}

.letter {
    opacity: 0;
    transform: translateY(20px);
    display: inline-block;
}

.space {
    width: 20px;
    display: inline-block;
}
.whatappgif {
    position: fixed;
    right: 10px;
    bottom: 10px;
    width: 60px;
}
@keyframes blink {

    0%,
    100% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }
}

/* Swiper */
.swiper {
    width: 100%;
    height: 82.6dvh;
}

/* Slide Background Image with Parallax */
.slide-bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    will-change: transform;
}

/* Slide Content */
.slide-content {
    position: relative;
    z-index: 2;
    color: white;
    padding: 20px;
    max-width: 700px;
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
}

.slide-content h2, .slide-content h1 {
    font-family: var(--headingFont);
    font-size: 76px;
    line-height: 70px;
    font-weight: normal;
    letter-spacing: 1px;
}

.slide-content p {
    font-size: small;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    line-height: 1.5;
    font-weight: 200;

}

/* Slide Styling */
.swiper-slide {
    overflow: hidden;
    position: relative;
}

/* Custom Navigation Buttons - Right Side */
.swiper-nav-right {
    position: absolute;
    left: 6%;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    gap: 20px;
    bottom: 10%;
}

.custom-swiper-button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    transform: rotate(270deg);
}

.custom-swiper-button:hover {
    background: rgba(255, 255, 255, 0.5);
}

.custom-swiper-button::after {
    content: '';
    width: 12px;
    height: 12px;
    border-top: 1px solid white;
    border-right: 1px solid white;
}

.custom-swiper-button-next::after {
    transform: rotate(135deg);
    margin-top: -5px;
}

.custom-swiper-button-prev::after {
    transform: rotate(-45deg);
    margin-bottom: -5px;
}

/* Pagination */
.swiper-pagination-bullet {
    background: white;
}

/* Custom Css */
.iconImage {
    display: flex;
    align-items: center;
    justify-content: center;
}

.iconImage img {
    width: 40px;
    border-radius: 50px;
    transform: rotate(90deg);
}

.headerStrip span,
.contactNumber span {
    font-size: smaller;
    color: var(--color);
    font-weight: 500;
    line-height: 1.2;
}

.contactNumber span:last-child {
    color: var(--secondary);
    font-size: 16px;

}

.navbar li {
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    line-height: 16px;
    font-weight: 500;
}

main {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    width: 100%;
    float: left;
}

.title {
    margin-bottom: 50px;
}

.title span {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgb(0 0 0 / 70%);
    line-height: 20px;
    padding-bottom: 10px;
}

.title h3 {
    font-size: 40px;
    font-weight: 400;
    letter-spacing: 1px;
    line-height: 42px;
    margin: 0;
    position: relative;
    font-family: var(--headingFont);
    color: var(--primary);
}

.title h3:before {
    content: '';
    width: 3px;
    height: 100%;
    position: absolute;
    left: -15px;
    background: var(--secondary);
}

.title h3.nobefore:before {
    opacity: 0;
}

/* Service */
.main-card::before {
    content: "";
    position: absolute;
    width: 0px;
    height: 0px;
    left: 0px;
    top: 0px;
    opacity: 0;
    border-top: 5px solid var(--secondary);
    border-left: 5px solid var(--secondary);
    transition: all .5s ease-in-out;
}

.service-item,
.price-item,
.team-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.service-item .overflow-hidden img {
    transition: ease all 0.5s;
    transform: scale(1);
}

.service-item:hover .overflow-hidden img {
    transform: scale(1.2);
}

.main-card {
    position: relative;
    background: #fff;
    transition: all .5s ease-in-out;
}

.main-card.active::before,
.main-card:hover::before {
    width: 80px;
    height: 80px;
    opacity: 1;
}

.category {
    background: #090f30;
    padding: 50px 0 120px 0;
}

.service-item h4 {
    font-family: var(--headingFont);
    font-size: 30px;
    line-height: 40px;
    border-left: solid 5px var(--secondary);
    padding-left: 10px;
    letter-spacing: 1px;
}

.category .swiper-nav-right {
    right: 5%;
    width: 120px;
    left: 50%;
    top: inherit;
    bottom: 8%;
}

.service-item p {
    line-height: normal;
}

/* Process */
.process-desc {
    padding: 60px 20px 20px 20px;
    box-shadow: 10px 10px 20px #97939361;
    margin-top: -40px;
    position: relative;
}

.process-desc h3 {
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    font-weight: 600;
    color: #000;
}

/* Footer */

footer {
    background: #0b0c0c;
}

footer h4 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.footerCard img {
    width: 32px;
}

.footerCard {
    margin-bottom: 10px;
}

footer ul li,
footer p {
    font-weight: 300;
    font-size: small;
    line-height: 24px;
}

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

.supportRow {
    margin-top: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.supportRow span {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 13px;
    color: var(--secondary);
    line-height: 16px;
}

.highlightFooter img {
    width: 50px;
}

a.btn-slide:hover {
    color: #fff;
}

.service-item a.btn-slide:hover {
    color: var(--primary);
}

.copyrights {
    border-top: solid 1px #2e3636;
    color: #625e5e;
}

.copyrights p {
    opacity: 0.5;
    font-weight: 200;
    letter-spacing: 1px;
    font-size: 12px;
    line-height: 16px;
}

/* Buttons */

.btn-9 {
    --tilt: 40px;
    box-sizing: border-box;
    padding: 10px 35px;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    background: none;
    text-transform: uppercase;
    border: 1px solid rgb(101 98 98);
    margin-top: 30px;
    display: inline-block;
}

.btn-9 span {
    font-weight: 400;
    letter-spacing: 2px;
    transition: ease all 0.5s;
    font-size: 12px;
}

.btn-9:before,
.btn-9:after {
    content: "";
    z-index: -1;
    width: calc(100% + var(--tilt));
    height: 100%;
    position: absolute;
    top: 0;
    left: calc(-100% - var(--tilt));
    background: var(--primary);
    clip-path: polygon(0 0, calc(100% - var(--tilt)) 0, 100% 50%, calc(100% - var(--tilt)) 100%, 0 100%);
    transition: transform 0.6s;
}

.btn-9:before {
    left: calc(-100% - var(--tilt));
}

.btn-9:after {
    left: 100%;
    transform: rotate(180deg);
}

.btn-9:hover:before {
    transform: translateX(100%);
}

.btn-9:hover:after {
    transform: rotate(180deg) translateX(100%);
}

.btn-9:hover span {
    color: #fff;
}

/* Gsap Animation */
.gsap-fade-in {
    opacity: 0;
    transform: translateY(20px);
}

.gsap-scale-in {
    opacity: 0;
    transform: scale(0.9);
}

.gsap-slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
}

.gsap-slide-in-right {
    opacity: 0;
    transform: translateX(50px);
}

.process-div {
    opacity: 0;
}

.highlightFooter {
    opacity: 0;
    transform: translateY(50px);
}


@keyframes smoothScroll {
    0% {
        transform: translateY(-40px);
    }

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

.scrolled {
    top: 0;
    background: #fff;
    z-index: 9;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    animation: 1s forwards smoothScroll;
}

header {
    height: 120px;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 9;
}

/* Video */
.videotag {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.vrsNumbers {
    position: absolute;
    top: 0;
    bottom: 0;
    background: rgb(0 0 0 / 85%);
    padding: 50px 0;
}

.odometer-inside {
    font-size: 60px;
    line-height: 70px;
    font-family: var(--headingFont);
    font-weight: normal;
}

/* vision & Mission */
.vision-mission-section {
    background-color: #f8f9fa;
}

.section-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 2.5rem;
    color: #343a40;
    margin-bottom: 1rem;
}

.section-text {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    color: #6c757d;
}

.content-box {
    padding: 1rem;
}

/* Contact */
.form-control {
    border-radius: 25px;
}

label {
    text-transform: uppercase;
    margin-left: 10px;
    margin-bottom: 5px;
    letter-spacing: 2px;
    font-size: smaller;
}

/* Sourcing Agent */

.feature-card {
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 25px;
    text-align: center;
    transition: 0.3s;
    height: 100%;
}

.feature-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.feature-icon {
    font-size: 40px;
    color: var(--secondary);
    margin-bottom: 15px;
}

.benefit-section {
    background-color: #f9f9f9;
    padding: 60px 0;
}

.benefit-card {
    text-align: center;
    padding: 25px;
    background: #fff;
    border-radius: 8px;
    height: 100%;
}

.benefit-icon {
    font-size: 30px;
    color: #ffc107;
    margin-bottom: 10px;
}

.feature-card h5 {
    font-family: var(--headingFont);
}

p.line-height {
    margin: 0;
    font-size: small;
    line-height: 20px;
}

/* Detailpage */

.gallery-container {
    width: 100%;
    padding: 10px;
    position: relative;
}

.main-slider {
    display: flex;
    margin-bottom: 10px;
    max-width: 75%;
    margin: auto;
}

.slider-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    transition: all 0.5s ease;
    height: 65vh;
    background-repeat: no-repeat;
    background-position: right;
}

.slider-content {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.slider-content h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #333;
}

.slider-content p {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}

.thumbnails {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 10px 0;
    justify-content: center;
}

.thumbnail {
    min-width: 150px;
    height: 80px;
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
    background-size: cover;
    background-position: center;
}

.thumbnail:hover {
    transform: scale(1.05);
}

.thumbnail.active .thumbnail-text {
    background-color: var(--secondary);
}

.thumbnail-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px;
    font-size: 10px;
    text-align: center;
    line-height: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.slider-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    position: absolute;
    bottom: 8%;
    right: 0;
}

.slider-nav button {
    background: var(--primary);
    color: white;
    border: none;
    padding: 5px 20px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
}

.slider-nav button:hover {
    background: var(--primary);
}

iframe {
    width: 100% !important;
    height: 350px !important;
    margin-top: 15px;
}

.sidebar {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100vh;
    background-color: #222;
    padding: 2rem;
    z-index: 1050;
    color: #fff;
}

.hamburger {
    cursor: pointer;
    z-index: 1100;
    display: none;
}

.bar {
    width: 40px;
    height: 2px;
    background-color: #000;
    margin: 8px 0;
    transition: 0.4s;
}

.menu-open .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-6px, 6px);
}

.menu-open .bar:nth-child(2) {
    opacity: 0;
}

.menu-open .bar:nth-child(3) {
    transform: rotate(45deg) translate(-6px, -6px);
}
.sidebar ul li {
    border-bottom: solid 1px #4b4848;
    padding: 15px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
}

.sidebar ul li:last-child {
    padding-bottom: 0;
    border: none;
}

.sidebar ul {
    border-top: solid 1px var(--secondary);
    margin-top: 15px;
}
.flaot-start{
    float: left;
}
@media (max-width: 1280px) {
    .logo img {
        max-width: 250px;
    }

    .slide-content {
        max-width: inherit;
        left: 0;
        right: 0;
        text-align: center;
    }

    .slide-content h2, .slide-content h1 {
        font-size: 50px;
        line-height: 60px;
    }

}

@media (max-width: 992px) {
    .hamburger {
        display: block;
    }
    .swiper-container.swiper-initialize.col-12.float-start.sliderProducts.swiper-initialized.swiper-horizontal.swiper-backface-hidden.swiper-grid .swiper-wrapper{
        width: 100% !important;
    }
    .swiper-container.swiper-initialize.col-12.float-start.sliderProducts.swiper-initialized.swiper-horizontal.swiper-backface-hidden.swiper-grid .swiper-wrapper .swiper-slide.gsapSlide {
    width: 100% !important;
    float: left;
    margin: 0 0px 20px 0 !important;
}
a.active {
    color: var(--secondary);
    border: none;
}
    .vrsNumbers {
        position: static;
        background: #fff;
        padding: 25px 0;
    }

    .slider-nav {
        position: static;
        margin-top: 25px;
    }

    .slider-content {
        padding: 15px;
    }

    .main-slider {
        max-width: 100%;
        margin-bottom: 20px;
    }

    .vrsNumbers .text-white {
        color: #000 !important;
    }

    .ftrsitemap {
        flex-wrap: wrap;
    }

    .aboutUs.mobileAbous .row{
        flex-wrap: wrap-reverse;
        gap: 35px;
    }

    .footerboxcolumn {
        width: 50%;
        margin-bottom: 20px;
    }

    footer h4 {
        margin-bottom: 10px;
    }

    .main-slider {
        flex-direction: column;
    }

    .slider-image {
        min-height: 450px;
    }
}

@media (max-width: 600px) {
    .logo {
        padding: 0 !important;
    }
.logo img {
        max-width: 80px;
    }
    .banners img {
        height: 250px;
        object-fit: cover;
    }

    .headerStrip {
        display: none;
    }

    header {
        box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
        padding: 10px 0;
        height: auto;
    }

    .logo img {
        /* max-width: 100%; */
    }

    .title {
        margin-bottom: 25px;
    }

    .footerboxcolumn {
        width: 100%;
    }

    .row .row {
        margin: 0 !important;
    }

    .swiper {
        height: 60dvh;
    }

    .scrolled {
        padding: 5px 0;
    }


}

@media (max-width: 500px) {
    .title h3 {
        font-size: 32px;
        line-height: 34px;
    }


    .slide-content h2, .slide-content h1 {
        font-size: 40px;
        line-height: 50px;
    }

    .swiper-nav-right {
        left: inherit;
        right: 5%;
        display: none;
    }

    .highlightFooter .flex-center {
        flex-wrap: wrap;
    }
.loader-text h3{
    font-size: 36px;
}
   .loader-text {
    white-space: nowrap;
} 
header .container {
    padding: 0;
}
}
@media (max-width: 375px) {
    
.bar{
    width: 32px;
    height: 1px;
}
.iconImage img{
    width: 30px;
}
header{
}
}