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

* {
    font-family: "Archivo", sans-serif;
}

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --blackColor: #000000;
    --whiteColor: #FFFFFF;
    --lightOrangeColor: #cd202714;
    --orangeColor: #cd2027;
    --blueColor: var(--blackColor);
    --transition-4: .4s all;
}

main {
    max-width: 1600px;
    margin: auto;
}

a {
    text-decoration: none;
    color: var(--blackColor);
}

a:hover {
    color: var(--blackColor);
}

.text-orange {
    color: var(--orangeColor);
}

.text-blue {
    color: var(--blackColor);
}

.text-blue1 {
    color: #374151;
}

section {
    position: relative;
    margin-bottom: 100px;
    overflow: hidden;
}

header {
    position: sticky;
    top: 0;
    z-index: 10;
    padding: 5px;
    border-bottom: 1px solid #FFFFFF33;
}

header nav .navbar {
    display: flex;
    align-items: center;
    padding: 5px 0;
}

header nav .navbar .header-logo {
    max-width: max-content;
    padding: 0;
}

header nav .navbar .header-logo img {
    max-width: 100%;
    width: 160px;
}

header nav .navbar .header-logo img:nth-child(2) {
    display: none;
}

header nav .navbar ul {
    padding: 0;
    margin: 0px 0px 0px auto;
    list-style-type: none;
    display: flex;
    align-items: center;
    max-width: max-content;
}

header nav .navbar ul li a {
    text-decoration: none;
    padding: 10px 20px;
    display: block;
    color: var(--whiteColor);
    font-weight: 600;
    transition: var(--transition-4);
}

header nav .navbar ul#navbar-ul li.drop-down .drop-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 30px 0;
    background-color: #fff0f0;
}

header nav .navbar ul#navbar-ul li.drop-down>a img {
    margin-left: 4px;
    transform: rotate(180deg);
    filter: invert(1);
}

header nav .navbar ul#navbar-ul li.drop-down .drop-menu {
    display: none;
}

header nav .navbar ul#navbar-ul li.drop-down:hover>a {
    position: relative;
}

header nav .navbar ul#navbar-ul li.drop-down:hover>a img {
    transform: rotate(0);
}

header nav .navbar ul#navbar-ul li.drop-down:hover>a::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100px;
}

header nav .navbar ul#navbar-ul li.drop-down:hover .drop-menu {
    display: block;
}

header nav .navbar ul#navbar-ul li.drop-down .drop-menu .drop-menu-title {
    font-size: 22px;
    color: var(--blackColor);
    font-weight: 600;
    margin-bottom: 10px;
}

header nav .navbar ul#navbar-ul li.drop-down .drop-menu .drop-menu-desc {
    max-width: 375px;
    font-size: 14px;
    color: #374151;
    font-weight: 500;
    text-transform: capitalize;
}

header nav .navbar ul#navbar-ul li.drop-down .drop-menu a {
    color: #1F2937;
    display: flex;
    gap: 10px;
    align-items: center;
}

header nav .navbar ul#navbar-ul li.drop-down .drop-menu a img {
    margin-top: 3px;
}

header nav .navbar ul#navbar-ul li a.animate-btn {
    margin-left: 20px;
}

.header-sticky-fix header,
.header-sticky header {
    background-color: #fff;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    z-index: 100;
}

.header-sticky-fix header .header-logo img:nth-child(1),
.header-sticky header .header-logo img:nth-child(1) {
    display: none !important;
}

.header-sticky-fix header .header-logo img:nth-child(2),
.header-sticky header .header-logo img:nth-child(2) {
    display: block !important;
}

.header-sticky-fix header nav .navbar ul li a,
.header-sticky header nav .navbar ul li a {
    color: #111827;
}

.header-sticky-fix header nav .navbar ul li a.animate-btn,
.header-sticky header nav .navbar ul li a.animate-btn {
    background-color: var(--blackColor);
    color: #fff !important;
}

.header-sticky-fix header nav .navbar ul li a.animate-btn:hover,
.header-sticky header nav .navbar ul li a.animate-btn:hover {
    background-color: var(--orangeColor);
}

.header-sticky-fix header nav .navbar ul li.drop-down>a img,
.header-sticky header nav .navbar ul li.drop-down>a img {
    filter: unset !important;
}

.header-sticky-fix header .nav-toggler svg,
.header-sticky header .nav-toggler svg {
    fill: var(--blackColor);
}

.header-sticky-fix header .offcanvas .header-logo,
.header-sticky header .offcanvas .header-logo {
    display: block !important;
}

/* Circle Animation */
.animate-btn {
    position: relative;
    z-index: 10;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
    padding: 0 !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--whiteColor);
    background-color: transparent;
}

.animate-btn::before {
    content: "";
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--orangeColor);
    transition: var(--transition-4);
}

/* For White Start */
.animate-white {
    background-color: var(--whiteColor);
    color: var(--blackColor) !important;
}

.animate-white:hover {
    color: var(--whiteColor) !important;
    border-color: var(--orangeColor);
    background-color: var(--orangeColor);
}

.animate-white:hover::before {
    background-color: var(--orangeColor);
    top: 50%;
    width: 100%;
    height: 100%;
    z-index: -1;
}

/* For White End */

/* For Orange Start */
.animate-orange {
    background-color: var(--orangeColor);
    color: var(--whiteColor) !important;
}

.animate-orange:hover {
    color: var(--blackColor) !important;
    border-color: var(--orangeColor);
}

.animate-orange::before {
    background-color: var(--whiteColor);
}

.animate-orange:hover::before {
    background-color: var(--whiteColor);
    top: 50%;
    width: 100%;
    height: 100%;
    z-index: -1;
}

/* For Orange End */

/* Circle Animation */

/* Header Slider */
.home-slider {
    position: relative;
    margin-top: -118px;
}

.home-slider::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.home-slider .home-img-slider {
    position: relative;
    z-index: 0;
}

.home-slider .home-img-slider .home-img-slide img {
    width: 100%;
    min-height: 545px;
    object-fit: cover;
}

.home-slider .home-slider-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.home-slider .home-slider-content .home-slider-title {
    margin-bottom: 30px;
}

.home-slider .home-slider-content .home-slider-title.slide-0 h2:nth-child(1),
.home-slider .home-slider-content .home-slider-title.slide-1 h2:nth-child(2),
.home-slider .home-slider-content .home-slider-title.slide-2 h2:nth-child(3) {
    color: var(--orangeColor);
}

.home-slider .home-slider-content .home-slider-title h2 {
    font-size: clamp(42px, 6vw, 85px);
    color: var(--whiteColor);
    text-transform: uppercase;
    font-weight: 200;
    margin-bottom: 0;
    line-height: 95%;
    transition: color 0.3s;
}

.home-slider .home-slider-content .home-slider-title h2.active {
    color: var(--orangeColor);
}

.home-slider .home-slider-content .home-slider-desc {
    position: relative;
}

.home-slider .home-slider-content .home-slider-desc p::before,
.home-slider .home-slider-content .home-slider-desc p::after {
    content: '';
    position: absolute;
}

.home-slider .home-slider-content .home-slider-desc p::before {
    top: -50px;
    left: -110px;
    width: 95px;
    height: 95px;
    min-width: 95px;
    min-height: 95px;
    border-radius: 95px;
    border: 2px solid rgba(255, 255, 255, 0.20);
}

.home-slider .home-slider-content .home-slider-desc p::after {
    top: -30px;
    left: -80px;
    width: 160px;
    height: 160px;
    min-width: 160px;
    min-height: 160px;
    border-radius: 160px;
    border: 2px solid rgba(255, 255, 255, 0.20);
}

.home-slider .home-slider-content .home-slider-desc p {
    position: relative;
    width: 100%;
    max-width: 560px;
    font-size: 16px;
    color: #FFFFFFBF;
    line-height: 22px;
    margin: 0;
    text-transform: capitalize;
}

.home-slider .home-slider-content .header-slide-left,
.home-slider .home-slider-content .header-slide-right {
    position: absolute;
}

.home-slider .home-slider-content .header-slide-left {
    bottom: 0;
    left: 0;
    /* height: 100%; */
}

.home-slider .home-slider-content .header-slide-right {
    top: 13%;
    right: 0;
}

.home-slider .home-slider-dots {
    all: unset;
    position: relative;
    height: 60px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: -60px;
    justify-content: flex-end;
}

.home-slider .home-slider-dots .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    min-width: 10px;
    min-height: 10px;
    border-radius: 10px;
    opacity: 1;
    background-color: rgba(255, 255, 255, 0.3);
    transition: all 0.3s;
}

.home-slider .home-slider-dots .swiper-pagination-bullet.swiper-pagination-bullet-active {
    transform: scale(1.3);
    background-color: var(--orangeColor);
}

/* Header Slider End */

/* Our Conpany Section */
.our-conpany-section.bg {
    padding: 60px 0;
    background-color: #cd20270F;
}

.our-conpany-section .our-conpany-title {
    position: relative;
    font-size: 50px;
    line-height: 55px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    max-width: 500px;
    margin-right: auto;
}

.our-conpany-section .our-conpany-title.max {
    max-width: unset;
}

.our-conpany-section .our-conpany-title span {
    display: block;
}

.our-conpany-section .our-conpany-title span:nth-child(1) {
    color: var(--blackColor);
}

.our-conpany-section .our-conpany-title span:nth-child(2) {
    color: var(--orangeColor);
}

.our-conpany-section .our-conpany-title::before,
.our-conpany-section .our-conpany-title::after {
    position: absolute;
}

.our-conpany-section .our-conpany-title::before {
    content: attr(data-count);
    top: 0px;
    left: -10px;
    width: 56.62px;
    height: 56.62px;
    min-width: 56.62px;
    min-height: 56.62px;
    border-radius: 78px;
    border: 1px solid rgba(17, 24, 39, 0.20);
    font-size: 28px;
    color: #9CA3AF;
    font-weight: 700;
    text-align: center;
    line-height: 78px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.our-conpany-section .our-conpany-title::after {
    content: '';
    top: 0;
    left: 20px;
    width: 91.18px;
    height: 91.18px;
    min-width: 91.18px;
    min-height: 91.18px;
    border-radius: 120px;
    border: 1px solid rgb(255 0 0 / 23%) ;
}

.our-conpany-section .our-conpany .our-conpany-desc {
    color: var(--blackColor);
    font-size: 16px;
}

.our-conpany-section .our-conpany-content {
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
    padding-top: 20%;
    padding-bottom: 40px;
}

.our-conpany-section .our-conpany-content .our-conpany-desc {
    font-size: 16px;
    color: #fff;
    text-transform: capitalize;
}

.our-conpany-desc {
    text-transform: capitalize;
    color: #374151;
}

.our-conpany-section .our-conpany-content .our-conpany-link {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: flex-end;
    width: 88px;
    height: 88px;
    border-radius: 88px;
    border: 1px solid #fff;
    font-size: 14px;
    color: #fff;
    padding: 10px;
    text-align: center;
    text-decoration: none;
    line-height: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    overflow: hidden;
}

.our-conpany-section .our-conpany-content .our-conpany-link::before {
    content: '';
    position: absolute;
    top: 22px;
    width: 6px;
    height: 6px;
    border-radius: 6px;
    background-color: #fff;
    border-radius: 88px;
    transition: 0.3s;
}

.our-conpany-section .our-conpany-content .our-conpany-link span {
    position: relative;
    z-index: 1;
}

.our-conpany-section .our-conpany-content-title {
    position: relative;
    font-size: 50px;
    line-height: 55px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: right;
    max-width: 435px;
    margin-left: auto;
    color: #fff;
}

.our-conpany-section .our-conpany-content-title span {
    display: block;
}

.our-conpany-section .our-conpany-content-title::before,
.our-conpany-section .our-conpany-content-title::after {
    content: '';
    position: absolute;
}

.our-conpany-section .our-conpany-content-title::before {
    bottom: 30px;
    left: -20px;
    width: 100px;
    height: 100px;
    min-width: 100px;
    min-height: 100px;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.our-conpany-section .our-conpany-content-title::after {
    bottom: -40px;
    left: 20px;
    width: 170px;
    height: 170px;
    min-width: 170px;
    min-height: 170px;
    border-radius: 170px;
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.our-conpany-section .list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.our-conpany-section .list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 30px;
    font-size: 16px;
    color: #374151;
    text-transform: capitalize;
}

.our-conpany-section .list li img {
    margin-top: 5px;
}

.our-conpany-circle-cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.our-conpany-circle-cards .our-conpany-circle-card {
    position: relative;
    width: 265px;
    height: 265px;
    min-width: 265px;
    min-height: 265px;
    border-radius: 265px;
    color: #fff;
    border: 1px solid #FFFFFF80;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-left: -20px;
}

.our-conpany-circle-cards .our-conpany-circle-card::before {
    content: '';
    position: absolute;
    top: -22px;
    left: 50%;
    transform: translateX(-50%);
    width: 45px;
    height: 45px;
    min-width: 45px;
    min-height: 45px;
    border-radius: 45px;
    background-color: var(--orangeColor);
    z-index: 1;
}

.our-conpany-circle-cards .our-conpany-circle-card::after {
    content: '';
    position: absolute;
    top: -22px;
    left: 60%;
    transform: translateX(-50%);
    width: 73px;
    height: 73px;
    min-width: 73px;
    min-height: 73px;
    border-radius: 73px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    z-index: 0;
}

.our-conpany-circle-cards .our-conpany-circle-card h5 {
    font-size: 50px;
    line-height: 58px;
    font-weight: 700;
    margin-bottom: 0;
}

.our-conpany-circle-cards .our-conpany-circle-card p {
    font-size: 22px;
    line-height: 23px;
    max-width: 177px;
}

@media screen and (max-width: 992px) {
    .our-conpany-circle-cards {
        margin-top: 60px;
    }

    .our-conpany-circle-cards .our-conpany-circle-card {
        width: 220px;
        height: 220px;
        min-width: 220px;
        min-height: 220px;
    }
}

@media screen and (max-width: 768px) {
    .featured-news-section .featured-title{
        display: flex;
        gap: 5px;
    }
    .our-conpany-circle-cards .our-conpany-circle-card {
        width: 170px;
        height: 170px;
        min-width: 170px;
        min-height: 170px;
    }

    .our-conpany-circle-cards .our-conpany-circle-card::after {
        width: 53px;
        height: 53px;
        min-width: 53px;
        min-height: 53px;
    }

    .our-conpany-circle-cards .our-conpany-circle-card::before {
        width: 35px;
        height: 35px;
        min-width: 35px;
        min-height: 35px;
    }

    .our-conpany-section .our-conpany-content {
        background-position: right;
        padding-bottom: 55px;
    }

    .supply-chain-img {
        margin-left: -60px;
        width: 91px;
    }

    .commercial-img {
        margin-left: -60px;
        width: 91px;
    }

    .custom-img {
        margin-left: -60px;
        width: 91px;
    }

    .forword-img {
        margin-left: -60px;
        width: 91px;
    }

    .realtime-img {
        margin-left: -60px;
        width: 91px;
    }

    .our-conpany-circle-cards {
        margin-top: 100px;
    }

    .our-conpany-circle-cards .our-conpany-circle-card h5 {
        font-size: 30px !important;
        line-height: 35px;
    }



    .services-section .services-section-title {
        font-size: 30px !important;
        line-height: normal !important;
    }

    .why-choose-section {
        background-position: center !important;
    }

    .our-conpany-circle-cards .our-conpany-circle-card p {
        max-width: 100px;
        font-size: 16px;
        line-height: 20px;
    }

    .why-choose-section .why-choose-title {
        font-size: 30px !important;
        line-height: normal !important;
    }

    .our-clients-section .our-clients-title {
        font-size: 30px !important;
        line-height: normal !important;
    }

    .our-partner-section .our-partner-title {
        font-size: 30px !important;
        line-height: normal !important;
    }

    .heading-quote {
        font-size: 30px !important;
        line-height: normal !important;
    }

    .innovation-section .innovation-section-title {
        font-size: 30px !important;
        line-height: normal !important;
    }

    .news-section .news-section-title {
        font-size: 30px !important;
        line-height: normal !important;
    }

    .explore-news-section .explore-news-title {
        font-size: 30px !important;
        line-height: normal !important;
    }

    .banner .banner-content h1 {
        font-size: 30px !important;
        line-height: normal !important;
    }

    .about-us-vision-mission .vision-mission-title {
        font-size: 30px !important;
        line-height: normal !important;
    }

    .our-services-section .our-services-title {
        font-size: 30px !important;
        line-height: normal !important;
    }

    .contact-form-title {
        font-size: 30px !important;
        line-height: normal !important;

    }
}

/* Our Conpany Section End */

/* Services Section */
.services-section .services-section-title {
    font-size: 50px;
    font-weight: 700;
    color: var(--blackColor);
    text-transform: uppercase;
    line-height: 58px;
    text-align: center;
    max-width: 885px;
    margin: auto;
    margin-bottom: 20px;
}

.services-section .services-section-title span {
    color: var(--orangeColor);
}

.services-section .services-section-title span.title-circles {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    text-align: right;
}

.services-section .services-section-desc {
    font-size: 16px;
    color: #6B7280;
    text-align: center;
    font-weight: 500;
    margin-bottom: 50px;
    text-transform: capitalize;
}

.services-section-card {
    position: relative;
    margin-bottom: 20px;
}

.services-section-card .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #F3F4F6;
    transition: all 0.4s;
    z-index: 1;
}

.services-section-card>img {
    width: 100%;
}

.services-section-card .card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    z-index: 2;
}

.services-section-card .card-content .card-circle-icon {
    position: relative;
    display: block;
    width: 73px;
    height: 73px;
    min-width: 73px;
    min-height: 73px;
    border-radius: 73px;
    border: 1px solid rgb(255 0 0 / 54%);
    margin-bottom: 15px;
    transition: all 0.4s;
    margin-left: 10px;
}

.services-section-card .card-content .card-circle-icon::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    width: 47px;
    height: 47px;
    min-width: 47px;
    min-height: 47px;
    border-radius: 47px;
    background-color: #D1D5DB;
    transition: all 0.4s;
}

.services-section-card .card-content h4 {
    font-size: 24px;
    font-weight: 700;
    text-transform: capitalize;
    color: var(--blackColor);
    margin-bottom: 15px;
    transition: all 0.4s;
}

.services-section-card .card-content p {
    font-size: 16px;
    color: #6B7280;
    font-weight: 500;
    text-transform: capitalize;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 15px;
    transition: all 0.4s;
}

.services-section-card .card-content .action {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.services-section-card .card-content .action .icons {
    display: flex;
    gap: 18px;
}

.services-section-card .card-content .action .icons svg path {
    transition: all 0.4s;
}

.services-section-card .card-content .action .arrow-right {
    opacity: 0;
    padding-left: 20px;
    transition: all 0.4s;
}

.services-section-card:hover .overlay {
    background-color: transparent;
}

.services-section-card:hover .card-content .card-circle-icon {
    border-color: rgba(255, 255, 255, 0.65);
}

.services-section-card:hover .card-content .card-circle-icon::before {
    background-color: rgba(255, 255, 255, 0.5);
}

.services-section-card:hover .card-content h4,
.services-section-card:hover .card-content p {
    color: #fff;
}

.services-section-card:hover .card-content .action .arrow-right {
    opacity: 1;
}

.services-section-card:hover .card-content .action .icons svg path {
    fill: #fff;
}

.services-section-slider-nav {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    align-items: center;
}

.services-section-slider-nav .services-section-slider-progress {
    width: 85%;
    background-color: #D1D5DB;
}

.services-section-slider-nav .services-section-slider-progress .swiper-scrollbar-drag {
    height: 4px;
    background-color: var(--orangeColor);
}

.services-section-slider-nav .services-section-slider-arrows {
    display: flex;
    align-items: center;
    gap: 15px;
}

.services-section-slider-nav .services-section-slider-arrows a.swiper-button-disabled {
    opacity: 0.5;
}

/* Services Section End */

.desc {
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    color: #374151;
    text-transform: capitalize;
}

.footer-row {
    padding: 50px 0;
}

footer .footer-social-links {
    padding: 0;
    margin: 0;
    list-style-type: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

footer .footer-social-links li a {
    background-color: var(--lightOrangeColor);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    transition: var(--transition-4);
}

footer .footer-social-links li a:hover {
    background-color: var(--orangeColor);
}

footer .footer-social-links li a:hover svg path {
    fill: white;
}

footer h6 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #111827;
}

.footer-links {
    padding: 0;
    margin: 0;
    /* margin-top: 20px; */
    list-style-type: none;
}

.footer-links li a {
    text-decoration: none;
    color: #1F2937;
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 10px;
    display: block;
    transition: var(--transition-4);
}

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

.footer-social2 li a {
    display: flex;
    align-items: center;
    gap: 5px;
}

.footer-social2 li a span {
    background-color: var(--lightOrangeColor);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    min-width: 35px;
    min-height: 35px;
    border-radius: 50%;
    transition: var(--transition-4);
}

.copyright {
    padding: 20px 0;
    background-color: #cd20270F;
}

.copyright .copyright-a div {
    max-width: max-content;
    font-size: 14px;
    text-transform: capitalize;
    color: #1F2937;
}

.copyright .copyright-a a {
    text-decoration: none;
    color: #1F2937;
    font-weight: 500;
}

.nav-toggler {
    width: max-content;
    padding: 0 5px;
    background-color: transparent;
    border: none;
}

.nav-toggler svg {
    width: 35px;
    height: 35px;
    fill: var(--whiteColor);
}
.text-1color{
    color: #374151;
}
header nav .navbar {
    padding: 0 12px;
}

header nav .navbar {
    position: unset;
}

.focus-none:focus {
    box-shadow: none;
    outline: none;
}

.why-choose-section {
    background-color: var(--lightOrangeColor);
    padding: 60px 0;
    background-image: url('../images/why-choose-us-top-right.webp');
    background-position: top right;
    background-repeat: no-repeat;
}

.why-choose-section .why-choose-title {
    position: relative;
    font-size: 50px;
    line-height: 55px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: left;
    max-width: 400px;
    margin-right: auto;
}

.why-choose-section .why-choose-title span:nth-child(1) {
    color: var(--orangeColor);
}

.why-choose-section .why-choose-title span:nth-child(2) {
    color: var(--blackColor);
    transform: translateX(30px);
    display: block;
}

.service-line {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.why-service-ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.why-service-ul li {
    border-bottom: 1px solid #D1D5DB;
    padding: 25px 0;
}

.why-service-ul li:last-child {
    border-bottom: none;
}

.why-service-ul li img {
    width: 30px;
    margin-bottom: 10px;
}

.why-service-ul li h6 {
    font-size: 22px;
    color: #111827;
    font-weight: 700;
}

.why-service-ul li p {
    color: #6B7280;
    margin-bottom: 0;
    text-transform: capitalize;
    font-size: 16px;
    font-weight: 500;
}

.our-clients-section {
    padding-top: 50px;
}

.our-clients-section .our-clients-title {
    position: relative;
    font-size: 50px;
    line-height: 55px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    max-width: 400px;
    margin: auto;
}

.our-clients-section .our-clients-title span:nth-child(1) {
    color: var(--blackColor);
}

.our-clients-section .our-clients-title span:nth-child(2) {
    color: var(--orangeColor);
}

.our-clients-section .cirlce-img {
    position: absolute;
    top: 29px;
    left: -12%;
    width: 28%;
}


.our-partner-section {
    padding: 50px 0;
}

.our-partner-section .our-partner-title {
    position: relative;
    font-size: 50px;
    line-height: 55px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    max-width: 900px;
    margin: auto;
}

.our-partner-section .our-partner-title span:nth-child(1) {
    color: var(--blackColor);
}

.our-partner-section .our-partner-title span:nth-child(2) {
    color: var(--orangeColor);
}

.our-partner-section .cirlce-img {
    position: absolute;
    top: 0;
    left: -12%;
    width: 20%;
}

.our-partner-slider {
    overflow: visible;
}

.custom-swiper-pagination {
    top: revert !important;
    /* bottom: -30%; */
    position: relative !important;
}

.custom-swiper-pagination .swiper-pagination-progressbar-fill {
    background-color: var(--orangeColor);
}

.slider-arrows {
    background-color: transparent;
    border: none;
}

.slider-arrows.swiper-button-disabled {
    opacity: .4;
}

.our-partner-img {
    object-fit: contain;
    aspect-ratio: 2 / 1;
    object-position: center;
}

/* News */
.news-mian-sec {
    position: relative;
    padding-top: 100px;
}

.news-mian-sec::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 600px;
    background-color: var(--lightOrangeColor);
    pointer-events: none;
}

.bread-color {
    color: #6B7280;
    font-weight: 400;
}

.bread-color.active {
    color: #111827;
    font-weight: 400;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: url('../images/arrow-right-breadcrumb.svg') !important;
}

.breadcrumb a {
    color: #6B7280;
    text-decoration: none;
}

.breadcrumb-item+.breadcrumb-item::before {
    float: left;
    padding-right: 0.5rem;
    color: #6c757d;
    content: var(--bs-breadcrumb-divider, "/");
}

.news-text-main {
    padding: 15px 0px;
    max-width: 1200px;
}

.news-first-heading {
    font-size: 42px;
    color: #111827;
    font-weight: 600;
    padding: 0 0 10px 0;
}

.calender-text {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #111827;
    font-weight: 400;
}

.calender-img {
    width: 16px;
    height: 16px;
}

.news-img-main {
    padding: 40px 0;
}

.news-truck-image {
    width: 100%;
}

.news-text-letter {
    font-size: 16px;
    font-weight: 400;
    color: #374151;
    text-transform: capitalize;
}

.supply-chain-main {
    margin: 20px 0;
}


.news-letter-main {
    padding: 30px 0;
}

.supply-news-heading {
    font-size: 26px;
    color: var(--blackColor);
    font-weight: 600;

}

.quote-main {
    text-align: center;
}

.animate-btn {
    text-transform: capitalize;
}

.quote-main .animate-btn {
    margin: auto;
    color: #111827 !important;
    text-decoration: none;
    font-weight: 600;
    width: 100px;
    height: 100px;
    transition: var(--transition-4);
}

.quote-main .animate-btn::before {
    background-color: var(--blackColor);
}

.quote-main .animate-white:hover {
    color: white !important;
}

.news-tailored-main {
    background-image: url("../images/news-main-tailored.webp");
    width: 100%;
    padding: 60px 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.unlock-text {
    color: var(--whiteColor);
    font-size: 18px;
    font-weight: 400;
}

.heading-quote {
    font-weight: 700;
    color: var(--whiteColor);
    font-size: 50px;
    line-height: 58px;
    text-transform: uppercase;
}

/* News End */

/* Innovation Section */
.innovation-section {
    padding: 60px 0;
    background-color: #cd20270F;
}

.innovation-section.bg-transparent {
    padding: 0;
    background-color: transparent;
}

.innovation-section .innovation-section-subtitle {
    font-size: 20px;
    color: #111827;
    display: flex;
    gap: 10px;
    align-items: center;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 10px;
}

.innovation-section .innovation-section-subtitle::before {
    content: '';
    display: block;
    width: 14px;
    height: 14px;
    min-width: 14px;
    min-height: 14px;
    border-radius: 14px;
    background-color: var(--orangeColor);
}

.innovation-section .innovation-section-title {
    font-size: 50px;
    line-height: 58px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--blackColor);
}

.innovation-section .innovation-section-title span {
    color: var(--orangeColor);
}

.innovation-section .innovation-section-desc {
    font-size: 16px;
    color: #374151;
    margin: 0;
    text-transform: capitalize;
}

.innovation-section .innovation-txt-card {
    text-transform: capitalize;
}

.innovation-section .innovation-txt-card .icon {
    display: inline-block;
    margin-bottom: 16px;
}

.innovation-section .innovation-txt-card h4 {
    font-size: 22px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 16px;
}

.innovation-section .innovation-txt-card p {
    font-size: 16px;
    color: #6B7280;
    margin-bottom: 0;
    font-weight: 500;
}

/* Innovation Section End */

.news-section .news-section-title {
    position: relative;
    font-size: 50px;
    line-height: 55px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    max-width: 400px;
    margin: auto;
}

.news-section .news-section-title span:nth-child(1) {
    color: var(--blackColor);
}

.news-section .news-section-title span:nth-child(2) {
    color: var(--orangeColor);
}

.news-section .cirlce-img {
    position: absolute;
    top: 11px;
    left: 0%;
    width: 28%;
}

.news-card .news-card-img img {
    width: 100%;
}

.news-card-detail {
    margin: 20px 0;
}

.news-card-detail span {
    color: #6B7280;
    font-weight: 500;
    font-size: 16px;
}

.news-card-detail h5 {
    font-size: 22px;
    font-weight: 600;
}

.news-card-detail img {
    margin-top: 8px;
}

.news-list .news-card-img {
    width: 170px;
    display: flex;
    min-width: 170px;
}

.news-list .news-card-detail h5 {
    font-size: 18px;
}

.news-list .news-card-img img {
    height: 100%;
}

@media(min-width:991px) {
    .news-list .news-card-detail {
        margin: 0;
    }
}

.news-list .news-card {
    margin-bottom: 10px;
}

.featured-news-section .featured-title {
    font-size: 28px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 50px;
    position: relative;
    color: #111827;
}

.featured-news-section .featured-title::before {
    content: "●";
    color: var(--orangeColor);
}

.explore-news-section .explore-news-title {
    position: relative;
    font-size: 50px;
    line-height: 55px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    max-width: 430px;
    margin: auto;
}

.explore-news-section .explore-news-title span:nth-child(1) {
    color: var(--blackColor);
}

.explore-news-section .explore-news-title span:nth-child(2) {
    color: var(--orangeColor);
}

.explore-news-section .cirlce-img {
    position: absolute;
    top: 11px;
    left: 0%;
    width: 28%;
}

.explore-news-cards {
    gap: 20px 0;
}

/* Banner */
.banner {
    position: relative;
}

.banner .banner-img {
    width: 100%;
    min-height: 300px;
    object-fit: cover;
}

.banner .banner-content {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    color: #fff;
}

.banner .banner-content h1 {
    font-size: 50px;
    text-align: center;
    font-size: 75px;
    text-transform: uppercase;
    font-weight: 200;
}

@media screen and (max-width: 768px) {
    .banner .banner-content h1 {
        font-size: 42px;
    }
}

/* Banner End */

/* About Us */
.about-us-vision-mission .vision-mission-title {
    font-size: 50px;
    line-height: 58px;
    margin-bottom: 20px;
    text-transform: uppercase;
    color: var(--blackColor);
    font-weight: 700;
    display: flex;
    justify-content: space-between;
}

.about-us-vision-mission .vision-mission-title>div {
    max-width: 200px;
    text-align: right;
}

.about-us-vision-mission .vision-mission-title>div>div {
    padding-right: 25px;
}

.about-us-vision-mission .vision-mission-title span {
    color: var(--orangeColor);
}

.about-us-vision-mission .vision-mission-desc {
    font-size: 16px;
    color: #374151;
    margin-bottom: 15px;
    text-transform: capitalize;
}

.about-us-vision-mission.bg {
    padding: 60px 0;
    background-color: #cd20270F;
}

/* About Us End */

/* Our Services Section */
.our-services-section .our-services-title {
    font-size: 50px;
    line-height: 58px;
    margin-bottom: 20px;
    text-transform: uppercase;
    color: var(--blackColor);
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.our-services-section .our-services-title>div {
    text-align: right;
    width: calc(100% - 100px);
}

/* .our-services-section .our-services-title>div>div {
    padding-right: 50px;
} */

.our-services-section .our-services-title span {
    color: var(--orangeColor);
}

.our-services-section .our-services-desc {
    font-size: 16px;
    color: #374151;
    margin-bottom: 15px;
    text-transform: capitalize;
}

.our-services-section.bg {
    padding: 60px 0;
    background-color: #cd20270F;
}

/* Our Services Section End */
/* Contact Us Start */

.contact-form-title {
    position: relative;
    font-size: 50px;
    line-height: 55px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: end;
    max-width: 300px;
    margin: auto;
}

.contact-form-title span:nth-child(1) {
    color: var(--blackColor);
}

.contact-form-title span:nth-child(2) {
    color: var(--orangeColor);
}

.contact-form-title .cirlce-img {
    position: absolute;
    top: 35px;
    left: -10%;
    width: 38%;
}

.contact-ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

.contact-ul li a {
    display: flex;
    gap: 15px;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #E5E7EB;
}

.contact-ul li a>div {
    color: #374151;
}

.contact-ul li:last-child a {
    border-bottom: none;
}

.contact-ul li a h6 {
    margin-bottom: 3px;
    font-weight: 600;
    font-size: 16px;
}

.contact-ul li a span {
    background-color: var(--lightOrangeColor);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    min-width: 45px;
    min-height: 45px;
    border-radius: 50%;
    transition: var(--transition-4);
}

.contact-form .form-group {
    margin-bottom: 12px;
}

.contact-form label {
    font-weight: 500;
    font-size: 16px;
    display: block;
    margin-bottom: 5px;
    color: #111827;
}

.contact-form input {
    width: 100%;
    border: 1px solid #F3F4F6;
    background: #F3F4F6;
    padding: 13px 15px;
}

.contact-form input:focus {
    box-shadow: none;
    outline: none;
    border-color: var(--orangeColor);
}

.contact-form input::placeholder {
    color: #9CA3AF;
}

.contact-form textarea {
    width: 100%;
    border: 1px solid #F3F4F6;
    background: #F3F4F6;
    padding: 13px 15px;
    resize: none;
}

.contact-form textarea:focus {
    box-shadow: none;
    outline: none;
    border-color: var(--orangeColor);
}

.contact-form textarea::placeholder {
    color: #9CA3AF;
}
/* span.error-txt {
    color: red;
    font-size: 14px;
    margin-top: 5px;
    display: block;
} */
/* Contact Us End */

/* Media Query */
@media(max-width:1150px) {
    .our-conpany-circle-cards {
        padding: 10% 0;
    }
}

@media(max-width:991px) {

    .our-partner-img {
        width: 100px;
        object-fit: contain;
        aspect-ratio: 1/1;
    }

    .home-slider .home-slider-content .home-slider-desc p {
        font-size: 14px;
        line-height: 20px;
    }

    .footer-row {
        gap: 30px 0;

    }

    header nav .navbar .header-logo img {
        width: 130px;
    }

    .footer-logo img {
        width: 130px;
    }

    .our-service-links {
        flex-wrap: wrap;
    }

    .footer-links {
        margin-top: 0;
    }

    header nav {
        padding: 20px 0;
    }

    header nav .navbar #navbar-ul {
        display: none;
    }

    #mobile-menu ul {
        margin: 0;
        display: block;
        width: 100%;
        max-width: 100%;
    }

    #mobile-menu ul li a {
        padding-left: 0;
        padding-right: 0;
    }

    #mobileMenu .offcanvas-header {
        border-bottom: 1px solid lightgrey;
    }

    #mobile-menu ul li a {
        color: var(--blackColor);
    }

    #mobile-menu ul li.drop-down>a {
        display: flex;
        justify-content: space-between;
    }

    #mobile-menu ul li.drop-down>a img {
        transform: rotate(180deg);
    }

    #mobile-menu ul li.drop-down .drop-menu {
        padding: 10px;
        display: none;
    }

    #mobile-menu ul li.drop-down.active .drop-menu {
        display: block;
    }

    #mobile-menu ul li.drop-down .drop-menu a {
        display: flex;
        gap: 10px;
    }

    .news-card {
        gap: 30px;
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 768px) {
    .services-section .services-section-title span.title-circles{
        margin-right: 35px;
    }
    .our-partner-section .cirlce-img {
        left: -1%;
    }
    .our-conpany-section .our-conpany-title::before{
        margin-left: 10px;
    }
    .our-conpany-section .our-conpany-content-title::before{
        margin-left: 15px;
    }
    .our-conpany-section .our-conpany-title::after {
        left: 20px;
        width: 80px;
        height: 80px;
        min-width: 80px;
        min-height: 80px;
    }

    .our-conpany-section .our-conpany-title::before {
        width: 46.62px;
        height: 46.62px;
        min-width: 46.62px;
        min-height: 46.62px;
        font-size: 22px;
    }

    .heading-quote,
    .innovation-section .innovation-section-title,
    .our-partner-section .our-partner-title,
    .our-services-section .our-services-title,
    .our-conpany-section .our-conpany-title {
        font-size: 30px !important;
        line-height: 38px;
    }

    .home-slider .home-slider-content {
        margin-top: 20px;
    }

    .home-slider .home-slider-content .header-slide-left {
        display: none;
    }

    .services-section .services-section-title {
        font-size: 30px;
        line-height: 38px;
    }

    .services-section .services-section-title span.title-circles {
        margin-top: 0;
    }

    .home-slider .home-slider-content .header-slide-right {
        height: 200px;
    }

    .home-slider .home-slider-content .home-slider-desc p::before {
        left: -70px;
        width: 80px;
        height: 80px;
        min-width: 80px;
        min-height: 80px;
        left: -50px;
    }

    .home-slider .home-slider-content .home-slider-desc p::after {
        left: -50px;
        width: 130px;
        height: 130px;
        min-width: 130px;
        min-height: 130px;
        border-radius: 130px;
        left: -10px;
    }
    .our-conpany-section{
        padding-top: 20px;
    }

    .news-list .news-card-img {
        width: 100%;
        min-width: 100%;
    }

    .news-card {
        flex-wrap: wrap;
        gap: 0;
    }

    .banner .banner-content h1 {
        font-size: 42px;
    }

}

/* Media Query */


/* noman css */

.know-more {
    padding: 18px 35px;
    background-color: #fff;
    border: solid 3px #fff;
    color: rgba(255,130,18,1);
    border-radius: 50px;
    transition: all .2s linear;
}

.know-more:hover {
    border: solid 3px rgba(255,130,18,1);
    color: rgba(255,130,18,1);
}


/* Product Gallery Start */

.flex-div {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.col-size {
    width: 25%;
}

.product-img-main img {
    width: 380px;
    height: 380px;
    object-fit: cover;
}

/* .img-wrapper {  
    width: 400px;
    height: 400px;
    overflow: hidden; 
  }
   */
  .inner-img {
    transition: 0.3s;
  }
  
  .inner-img:hover {
    transform: scale(1.1);
    background-color: #cd2027;
    opacity: 0.5;
    width: 380px;
    height: 380px;
  }

  .product-img-main {
    position: relative;
    overflow: hidden;
  } 

  .plus-svg-main {
    position: absolute;
    top: 50%;
    left: 50%;
    background: var(--blackColor);
    padding: 20px;
    border-radius: 40px;
    display: none;
    z-index: 1;
    
  }

  .product-img-main:hover .plus-svg-main {
    display: block;
    transition: 0.3s;
    -webkit-transition: all 0.3s linear;
    -webkit-transform: rotate(90deg);
    transform: translateY(-50%) translateX(-50%);
  }

  .plus-img {
    width: 22px !important; 
    height: 22px !important;
  }
@media(min-width:320px) {
    .flex-div {
        display: block;
        width: 100%;
    }

    .col-size {
        width: 100%;
    }

    .product-img-main img {
        width: 100%;
    }
    
}

@media(min-width: 601px) {
    .flex-div {
        display: flex;
        width: 100%;
    }

    .col-size {
        width: 50%;
    }

    .product-img-main img {
        width: 100%;
    }
}

@media(min-width: 993px) {
    .flex-div {
        display: flex;
        width: 100%;
    }

    .col-size {
        width: 33.33%;
    }

    .product-img-main img {
        width: 100%;
    }
    
}

@media(max-width: 992px) {
    .idea-main-sec {
        background-image: none !important;
        width: 100%;
        background: #fef2f2 !important;
        padding: 80px 20px !important;
    }

    .idea-parent {
        padding-bottom: 10px;

    }
}

@media(min-width: 1199px) {
    .flex-div {
        display: flex;
        width: 100%;
    }

    .col-size {
        width: 25%;
    }
}
  

.head-our-gallery {
    color: #9C845E;
    font-weight: 500;
    font-size: 25px;
    margin: 30px auto;
    display: flex;
    justify-content: center;
}

.head-our-gallery h2 {
    color: #9C845E;
    font-weight: 700;
    font-size: 38px;
}
/* gallery end */
.idea-main-sec {
    background: #fbeeee;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 150px 70px;
}

.idea-parent {
    max-width: 380px;
}

.idea-parent h6 {
    font-size: 22px;
    font-weight: 700;
    padding: 15px 0 0 0;
}
.idea-parent p {
    color: #6B7280;
    text-transform: capitalize;
    font-size: 16px;
    font-weight: 500;
}

.eventor-text-main {
    display: flex;
    gap: 30px;
}

.enventor-text {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    padding: 15px 0;
    text-transform: capitalize;
}

.eventor-img {
    width: 100%;
}

.eventor-main {
    padding-top: 40px;
}

img.menu-icon {
    width: 25px;
}


@media(max-width:767px) {
    .why-choose-section {
        background-image: none;
    }
    
    .service-line {
        display: none;
    }
    
    .eventor-text-main {
        display: block;
    }

    .copyright .copyright-a div {
        text-align: center;
    }
}

.simple-pdf {
    background-color: var(--orangeColor);
    color: var(--whiteColor);
    transition: var(--transition-4);
    padding: 15px 25px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.simple-pdf:hover {
    background-color: var(--blackColor);
    color: var(--whiteColor);
}

.company-profile {
    display: flex;
    align-items: center;
}

span.error-txt {
    color: red;
    font-size: 12px;
    /* margin-top: 5px; */
    display: block;
}