:root {
    --main-color: #d31b83;
    --second-color: #372772;
    --light-pink: #e40589;
    --light-bg: #efeff1
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Rubik', sans-serif !important;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

.hero-section {
    width: 100%;
    height: 100vh;
    position: relative;
}

.hero-section .main-bg {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

.header {
    transition: all 0.3s ease;
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    padding: 20px 60px !important;
    position: relative;
    z-index: 99;
}

.header img {
    width: 120px;
    height: 42px;
}

.header .language-switcher {
    display: flex;
    align-items: center;
    gap: 0px;
}

.header .language-switcher #language-button,
.header .language-switcher i {
    color: white;
}

.header .language-switcher .dropdown-menu img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
}

.header .language-switcher .dropdown-menu button {
    display: flex;
    align-items: center;
}

.header .language-switcher .language_bar_list{
    list-style-type: none;
    padding: unset !important;
}
.header .language-switcher .language_bar_list a{
    display: block;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--main-color);
}

.header .navbar-collapse .navbar-nav {
    margin: auto;
    gap: 15px;
    padding: 0px;
}
.navbar-nav .active > .nav-link {
    color: var(--main-color) !important;
}
.header .navbar-collapse .navbar-nav .nav-link {
    color: var(--second-color);
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease !important;
}

.header .navbar-collapse .nav-link:hover {
    color: var(--main-color) !important;
}

main {
    height: 90%;
    display: flex !important;
    flex-direction: column;
    justify-content: space-evenly;
    width: 80%;
    margin: 0px auto;
}

main input {
    border: 1px solid var(--main-color) !important;
}

.main-btn {
    position: relative;
    overflow: hidden;
    background: white !important;
    color: white !important;
    width: 15%;
    min-width: fit-content;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    z-index: 1;
}
.main-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient( 90deg, #66053c 0%, #d31b83 25%, #d31b83 44.71%, #d31b83 75%, #66053c 100%);    
    opacity: 1;
    transition: opacity 0.3s ease;
    z-index: -1;
}
.main-btn:hover {
    border: 1px solid var(--light-pink) !important;
    color: var(--light-pink) !important;
}
.main-btn:hover::before {
    opacity: 0;
}

.track-wrapper {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 3rem;
}

.track-wrapper .input-wrapper{
    border: 5px solid #baa3ff3d !important;
    width: 70%;
    border-radius: 5px;
}

.fixed-header {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1) !important;
    background-color: rgba(255, 255, 255, 0.8509803922) !important;
    -webkit-backdrop-filter: brightness(100%) contrast(100%) saturate(100%)
        blur(10px) hue-rotate(0deg) !important;
    backdrop-filter: brightness(100%) contrast(100%) saturate(100%) blur(10px)
        hue-rotate(0deg) !important;
}

.fixed-header .language-switcher #language-button,
.fixed-header .language-switcher i {
    color: black !important;
}

.scroll-to-top {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient( 90deg, #66053c 0%, #d31b83 25%, #d31b83 44.71%, #d31b83 75%, #66053c 100%); 
    color: white;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
    z-index: 1000;
    border: 1px solid #877daa;
    text-decoration: none;
}

.scroll-to-top:hover {
    color: var(--main-color);
    background-color: white;
    border: 1px solid var(--main-color);
    text-decoration: none;
}

.delivering-excellence {
    text-align: center;
    margin: 40px;
}

.delivering-excellence h1 {
    font-size: 42px;
    font-weight: 900;
    color: var(--main-color);
}

.delivering-excellence p {
    font-size: 16px;
    color: #828282;
    margin: 20px auto;
}

.freights-types {
    width: 90%;
    margin: 100px auto !important;
    text-align: center;
}

.freights-types .col-12:nth-child(1) .freight-background {
    background-image: url("/themes/new/img/plane.webp");
}

.freights-types .col-12:nth-child(2) .freight-background {
    background-image: url("/themes/new/img/ocean.webp");
}

.freights-types .col-12:nth-child(3) .freight-background {
    background-image: url("/themes/new/img/truck.webp");
}

.freights-types .freight-card {
    position: relative;
    width: 100%;
    height: 500px;
    cursor: pointer;
    overflow: hidden;
    border-radius: 15px;
}

.freights-types .freight-card .freight-background {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    transition: transform 1s ease;
}

.freights-types .freight-card:hover .freight-background {
    transform: scale(1.1);
}

.freights-types .freight-card .freight-title {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 30px;
    font-weight: 900;
    z-index: 2;
}

.freights-types .freight-card .freight-footer {
    position: absolute;
    bottom: 20px;
    left: 0px;
    color: white;
    z-index: 2;
}

.freights-types .freight-card .freight-footer .freight-icon {
    font-size: 32px;
    margin: 10px 30px;
}

.freights-types .freight-card .freight-footer .freight-description {
    display: none;
    transition: opacity 0.3s ease;
    font-size: 20px;
    font-weight: 500;
    width: 85%;
    margin: 0px auto 70px;
}

.freights-types .freight-card:hover .freight-icon {
    opacity: 0;
}

.freights-types .freight-card:hover .freight-description {
    display: inline-block;
    opacity: 1;
}

.freights-types .freight-card::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    transition: background-color 1s ease;
    z-index: 1;
}

.freights-types .freight-card:hover::before {
    background-color: rgba(0, 0, 0, 0.8);
}

.shipment-tracking {
    text-align: center;
    background: white;
    padding-bottom: 200px;
    border-radius: 0px 0px 130px 130px;
    position: relative;
    z-index: 10;
}

.shipment-tracking .d-flex {
    gap: 10px;
}

.shipment-tracking h1 {
    font-size: 42px;
    font-weight: 900;
    margin: unset !important;
    color: var(--main-color);
}

.shipment-tracking p {
    font-size: 16px;
    width: 70%;
    margin: 35px auto;
    color: #828282;
}

.shipment-tracking .row {
    width: 85%;
    margin: auto;
}

.shipment-tracking .row .card {
    margin-top: 20px;
    height: 300px;
    border: unset !important;
    border-radius: 15px;
    box-shadow:
        0 0 rgba(0, 0, 0, 0),
        0 0 rgba(0, 0, 0, 0),
        0 10px 15px -3px rgba(0, 0, 0, 0.1),
        0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

.shipment-tracking .row .card i {
    margin: 20px auto;
    color: white;
    background-color: var(--main-color);
    padding: 15px;
    border-radius: 50%;
    font-size: 20px;
    width: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.shipment-tracking .row .card .card-title {
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 20px;
}

.shipment-tracking .row .card .card-text {
    font-size: 18px;
}

.shipment-tracking .row .card:hover {
    transition: all 0.5s ease;
    box-shadow:
        0 0 rgba(0, 0, 0, 0),
        0 0 rgba(0, 0, 0, 0),
        0 0px 50px 10px rgba(0, 0, 0, 0.1),
        0 0px 10px 5px rgba(0, 0, 0, 0.1);
}

.ribbon {
    display: flex;
    width: -moz-fit-content;
    width: fit-content;
    align-items: center;
    justify-content: center;
    background-color: var(--main-color);
    color: white;
    padding: 10px 35px 10px 20px;
    font-weight: bold;
    position: relative;
    height: 60px;
    border-radius: 10px 0px 0px 10px;
}

.ribbon::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    z-index: 10000;
    height: 30%;
    border-top: 30px solid transparent;
    border-bottom: 30px solid transparent;
    border-right: 20px solid white;
}

.services-section {
    background-image: url("/themes/new/img/truck-logistics.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 70px;
    border-radius: 0px 0px 130px 130px;
    margin-top: -130px;
    padding: 216px 0px;
}

.services-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 0px 0px 130px 130px;
}

.services-section > * {
    position: relative;
    z-index: 1;
}

.services-section .d-flex {
    gap: 10px;
}

.services-section h1 {
    font-size: 42px;
    font-weight: 900;
    color: white;
    margin: unset !important;
    width: 50%;
    text-align: center;
}

.services-section .ribbon::after {
    border-right: 20px solid #110b0c;
}

.services-section .row {
    width: 90%;
    margin: auto !important;
    justify-content: space-evenly;
}

.services-section .row .card {
    background-color: rgba(255, 255, 255, 0.2);
    -webkit-backdrop-filter: brightness(100%) contrast(100%) saturate(100%)
        blur(10px) hue-rotate(0deg);
    backdrop-filter: brightness(100%) contrast(100%) saturate(100%) blur(10px)
        hue-rotate(0deg);
    border: 1px solid white;
    border-radius: 15px;
    height: 250px;
}

.services-section .row .card .card-body {
    text-align: center;
    color: white;
}

.services-section .row .card .card-body h5 {
    font-weight: 900;
    font-size: 25px;
    margin: 10px auto 30px;
}

.services-section .row .card .card-body p {
    font-size: 14px;
}

.services-section .row .card:hover {
    border-color: var(--main-color);
    box-shadow: 0px 2px 14px 1px var(--main-color);
}

.locations-section {
    margin-top: 100px;
    text-align: center;
}

.locations-section h1 {
    font-size: 42px;
    font-weight: 900;
    margin: unset !important;
    color: var(--main-color);
    width: 50%;
    text-align: center;
}

.locations-section p {
    font-size: 16px;
    color: #828282;
    margin: 20px auto;
}

.locations-section .globe {
    position: relative;
    margin-top: 50px;
}

.locations-section .globe div {
    position: absolute;
    top: 6px;
    left: 6px;
    height: 96%;
    width: 25%;
    background: white;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.05);
}

.locations-section .globe div i {
    color: var(--main-color);
}

.locations-section .globe div img {
    width: 235px;
    height: 145px;
}

.scroll-animate {
    opacity: 0;
    transform: translateY(50px);
    transition:
        opacity 0.6s ease-out,
        transform 0.6s ease-out;
}

.scroll-animate.appear {
    opacity: 1;
    transform: translateY(0);
}

/*# sourceMappingURL=style.css.map */

.language_bar_list li a {
    color: var(--main-color) !important;
}

.language_bar_list li a:hover {
    color: var(--second-color) !important;
    text-decoration: none;
}


/* Home Slider */
.slider-section {
    position: relative;
    height: 800px;
    overflow: hidden;
    color: #fff;
    margin-top: 3rem;
}
.background-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: 0.5s ease;
}
.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}
.slider-section .container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    height: 100%;
    align-items: center;
}
.slider-container {
    overflow: hidden;
}
.slider-track {
    display: flex;
    gap: 20px;
    transition: 0.5s ease;
}
.slide {
    flex: 0 0 45%;
}
.slide img {
    width: 100%;
    max-width: 300px;
    height: 320px;
    object-fit: cover;
    border-radius: 1.5rem;
}

.slider-title{
    font-size: clamp(40px, 4vw, 60px);
    text-align: center;
    text-shadow: 1.5px 1.5px 1px var(--light-pink);
    font-weight: 900;
}

#sliderTitle{
    font-size: clamp(26px, 4vw, 36px);
    font-weight: 700;
}
#sliderText{
    font-size: clamp(16px, 4vw, 20px);
}
.slider-controllers{
    display: flex;
    justify-content: space-between;
    direction: ltr !important;
}

.stat-section .row , .ecosystem-section .row{
    width: 80%;
    margin: 3rem auto;
}
.ecosystem-section{
    margin: 7rem auto;
}
.vertical-row div{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.stat-section .row div:nth-child(2)::before , .stat-section .row div:nth-child(2)::after{
    content: "";
    width: 1px;
    height: 100%;
    position: absolute;
    background-image: linear-gradient(0deg, #8233FE00 0%, #8233FE 50%, #8233FE00 100%);
}
.stat-section .row div:nth-child(2)::before{
    right: 100%;
}
.stat-section .row div:nth-child(2)::after{
    left: 100%;
}
.stat-section .stat-number{
    color: var(--light-pink);
    font-size: clamp(26px, 4vw, 40px);
    font-weight: 900;
}
.stat-section .stat-title{
    font-size: 16px;
}

.ecosystem-section p{
    font-size: 18px;
    text-align: center;
    font-weight: 600;
}
.ecosystem-section img {
    width: 150px;
    height: 150px;
}
.ecosystem-section .vertical-row div{
    justify-content: flex-start !important;
}
.ecosystem-section h2{
    font-size: clamp(17px, 4vw, 22px);
    font-weight: 500;
    color: #454545;
    text-align: center;
}
.multi-colors-title{
    font-size: clamp(30px, 4vw, 40px);
    font-weight: 900;
    text-align: center;
    text-transform: uppercase;
    margin: 3rem auto 1rem;
    max-width: 70%;
}
.multi-colors-title span{
    color: var(--light-pink);
}

.itegration-section{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin: 5rem auto;
}

.itegration-section video {
   height: 600px;
   width: 100%;
}
.itegration-section img{
    width: 80%;
}

.partners-swiper{
    margin: 5rem auto;
    background: var(--light-bg);
    padding: 5rem !important;
}

.partners-swiper h1{
    margin: 0px auto 5rem !important;
}

.partners-swiper {
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
}

.partners-swiper .swiper-wrapper {
    transition-timing-function: linear !important;
}

.partners-swiper .swiper-slide {
    width: auto !important;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partners-swiper .swiper-slide img {
    height: 60px;
    width: 220px;
    display: block;
    object-fit: contain;
}


.footer{
    background-color: white;
    margin-top: 5rem;
    box-shadow: 0px -2px 20px 0px #1A1A1A0A;
    border-top: 1px solid #efeff1;
    padding: 30px 5px;
    position: relative;
    z-index: -1;
}
.footer img{
    width: 60%;
    margin: auto;
    display: block;
}

.social-media-icons{
    display: flex;
    justify-content: center;
    gap: 20px;
}
.social-media-icons a{
    background: var(--light-bg);
    color: var(--light-pink);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}
.footer-copyright{
    background-color: var(--light-bg);
    padding: 20px;
}
.footer-copyright p {
    margin-bottom: 0px !important;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color: #454545;
}

.accordion-section{
    background-color: var(--light-bg);
    padding: 20px;
    padding-bottom: 60px;
}
.accordion{
    margin: auto;
    max-width: 1020px;
}
.accordion-item{
    border: unset !important;
    border-bottom: 1px solid #dee2e6 !important;
    margin-bottom: 20px !important;
}
.accordion-button{
    background-color: var(--light-bg) !important;
    font-weight: 700;
    padding: 2rem 1.25rem !important;
}

.accordion-button:not(.collapsed) {
    background: transparent !important;
    color: inherit !important;
    box-shadow: none !important;
}

.accordion-item:has(.accordion-collapse.show) {
    background: #ffffff !important;
    border-radius: 1.5rem !important;
    padding: 0 !important;
    border: 1px solid #6d727d !important;
    box-shadow: 0px 4px 0px 0px #6d727d;
    margin-bottom: 30px;
}
.accordion-body{
    color: #454545 !important;
}

.contact-section{
    width: 80%;
    margin: 5rem auto 0px !important;
}

.contact-section h1 {
    margin: 3rem 0px !important;
    text-align: start;
}

.contact-section form label{
    display: block;
    margin-top: 10px;
}
.contact-section form label span{
    color: red;
}
.contact-section .form-section{
    border: 5px solid #baa3ff3d !important;
    border-radius: 5px;
    padding: 0px;
}
.contact-section form{
    border: 1px solid var(--light-pink);
    padding: 30px;
    border-radius: 5px;
}
.contact-section .form-section .row{
    row-gap: 30px;
}
.contact-section form input , .contact-section form select{
    background: #fafafb;
    border: 1px solid #ededed;
    font-size: 1rem;
    line-height: 1.5;
    min-height: 45px;
    padding: 4px 10px;
    width: 100%;
    border-radius: 0.75rem;
}
.phone-input {
    display: flex;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: visible;
    min-height: 45px;
}

.country-select {
    position: relative;
    width: 70px;
    border-right: 1px solid #ddd;
}


.selected-country {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    font-size: 22px;
    background: #fafafb;
}

.arrow {
    font-size: 14px;
}

.country-dropdown {
    display: none;
    position: absolute;
    top: 48px;
    left: 0;
    background: white;
    width: 260px;
    border: 1px solid #ddd;
    border-radius: 8px;
    z-index: 999;
    height: 300px;
    overflow-y: scroll;
}

.country-option:hover {
    background: #f5f5f5;
}

.phone-input input {
    flex: 1;
    border: none;
    padding: 0 15px;
    outline: none;
    border: 1px solid #fff4f400 !important;
    border-radius: unset !important;
}
.country-option {
    padding: 12px;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.country-option span {
    font-size: 22px;
}

.contact-section p{
    width: 90%;
}


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

    .shipment-tracking .card,
    .services-section .card {
        height: 450px !important;
    }
}

@media (max-width: 991px) {
    .hero-section {
        height: 580px;
    }

    .header {
        padding: 20px 70px;
    }

    .header .fa-bars {
        color: white;
    }

    .header .navbar-collapse {
        position: absolute;
        top: 96%;
        right: 18px;
        background: white;
        width: fit-content;
        padding: 15px 55px;
        height: 500px;
        border-radius: 10px;
    }

    .header .navbar-collapse a {
        color: var(--main-color) !important;
    }

    .header .navbar-collapse .language-switcher #language-button,
    .header .navbar-collapse .language-switcher i {
        color: black !important;
    }

    .navbar-toggler {
        background: var(--main-color) !important;
    }

    .hero-section .fixed-header .fa-bars {
        color: black !important;
    }

    .delivering-excellence .d-flex,
    .shipment-tracking .d-flex,
    .services-section .d-flex,
    .locations-section .d-flex {
        width: 80%;
        margin: auto;
    }

    .delivering-excellence .d-flex h1,
    .shipment-tracking .d-flex h1,
    .services-section .d-flex h1,
    .locations-section .d-flex h1 {
        font-size: 25px;
    }

    .freights-types {
        gap: 50px;
    }

    .shipment-tracking .card .card-title {
        font-size: 20px !important;
    }

    .shipment-tracking .card .card-text {
        font-size: 16px !important;
    }

    .services-section .row .col-md-6 {
        margin: 30px 0px !important;
    }

    .locations-section .globe div {
        width: 35%;
    }

    .locations-section .globe div img {
        width: 90%;
    }
}

@media (max-width: 476px) {
    .contact-section .d-flex {
        overflow-x: scroll;
        overflow-y: hidden;
    }
}

@media (max-width: 900px) {
    .itegration-section {
        gap: 0px !important;
        margin-top: 2rem !important;
    }
    .itegration-section video{
        height: 400px;
        width: 90%;
        object-fit: cover;
    }
}

@media (max-width: 576px){
    .ecosystem-section{
        margin-top: 2rem !important;
    }
    .hero-section .main-bg {
        height: 350px;
        object-fit: cover;
    }
    .header{
        padding: 20px !important;
    }
}
