:root{
    --primary-color1:#041444;
    --primary-color2:#2483EC;
    --aaccent-color:#0A32AA;
    --text-color:#7D7C7A;
    --dark-text:#394032;
    --font-primary:"Public Sans", sans-serif;
    --font-secondary:"Lato", sans-serif;
}
.public-sans{
    font-family: var(--font-primary);
}
.lato{
    font-family: var(--font-secondary);
}
body{
    overflow-x: hidden;
    box-sizing: border-box;
}
.icon {
    fill: currentColor;
}
.padding-x{
    padding-left: 6em;
    padding-right: 6em;
}
.banner-headline{
    font-size: 66px;
    line-height: 67px;
    font-weight: 800;
}
.banner-text{
    font-size: 18px;
}
.cta-btn{
    background: linear-gradient(#041444,#0A32AA);
    padding: 10px 40px;
    color: white;
    border-radius: 6px;
    cursor: pointer;
    transition: ease-in-out 0.3s;
}
.cta-btn:hover{
    background: linear-gradient(#0A32AA,#041444);
    box-shadow: 0px 0px 10px #0a97f5b9;
}
.download-btn{
    transition: 0.3s ease-in-out;
    background-color: #041444;
}
.download-btn:hover{
    background-color: #0A32AA;
}
.app-btn{
    color: white;
    transition: ease-in-out 0.3s;
    border: 1px solid white;
}
.app-btn:hover{
    background: #0A32AA;
    background-color: white;
    color: #041444;
    
}
.banner-section{
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    flex-direction: column;
    height: 100vh;
    min-height: fit-content;
    padding-bottom: 200px;
    padding-top: 100px;
}
.left_bottom_circles{
    position: absolute;
    width: 500px;
    bottom: -10%;
    left: -14%;
    z-index: -3;
    filter: blur(5px);
}
.top_circles{
    position: absolute;
    width: 585px;
    z-index: -1;
    left: 20%;
    top: -40%;
    filter: blur(5px);
}
.right_bottom_circles{
    position: absolute;
    width: 475px;
    z-index: -1;
    right: -22%;
    bottom: 10%;
    filter: blur(5px);
}

.mockup-container{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.app-mockup-img{
    width: 450px;
}
.mockup-container img{
    transition: ease-in-out 0.5s;
}
.mockup-container img:hover{
    transform: scale(1.1);
}
.mockup-circle-1,.mockup-circle-2,.mockup-circle-3{
    border: 1px solid #D9D9D9;
    border-radius: 100%;
    position: absolute;
}
.mockup-circle-1{
    width: 550px;
    height: 550px;
}
.mockup-circle-2{
    width: 480px;
    height: 480px;
}
.mockup-circle-3{
    width: 420px;
    height: 420px;
}
.circles-animation{
    position: relative;
    z-index: -1;
    width: 550px;
    height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.rotating-icon{
    position: absolute;
    top: 50%;
    left: 50%; 
    filter: drop-shadow(0px 0px 6px #2481eca1);
    width: 64px;
    height: 64px;
}
.rotating-icon-1{
animation: rotate1 10s linear infinite;
}
.rotating-icon-2{
animation: rotate2 10s linear infinite;
}
.rotating-icon-3{
animation: rotate3 10s linear infinite;
}
.rotating-icon-4{
animation: rotate4 10s linear infinite;
}
.rotating-icon-5{
animation: rotate5 10s linear infinite;
}
.rotating-icon-6{
animation: rotate6 10s linear infinite;
}

@keyframes rotate1 {
    0% {
        transform: translate(-50%, -50%) rotate(0deg) translateY(-210px) rotate(0deg) ;
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg) translateY(-210px) rotate(-360deg);
    }
}
@keyframes rotate2 {
    0% {
        transform: translate(-50%, -50%) rotate(180deg) translateY(-240px) rotate(-180deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(540deg) translateY(-240px) rotate(-540deg);
    }
}
@keyframes rotate3 {
    0% {
        transform: translate(-50%, -50%) rotate(60deg) translateY(-240px) rotate(-60deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(420deg) translateY(-240px) rotate(-420deg);
    }
}
@keyframes rotate4 {
    0% {
        transform: translate(-50%, -50%) rotate(300deg) translateY(-240px) rotate(-300deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(660deg) translateY(-240px) rotate(-660deg);
    }
}
@keyframes rotate5 {
    0% {
        transform: translate(-50%, -50%) rotate(120deg) translateY(-275px) rotate(-120deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(480deg) translateY(-275px) rotate(-480deg);
    }
}
@keyframes rotate6 {
    0% {
        transform: translate(-50%, -50%) rotate(240deg) translateY(-275px) rotate(-240deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(600deg) translateY(-275px) rotate(-600deg);
    }
}

.section-headline{
    font-size: 36px;
    font-weight: 900;
}
.service-card{
    background-color: white;
    padding: 22px 10px;
    min-height: 250px;
    transition: ease-in-out 0.5s;
}
.service-card:hover{
    transform: translateY(-15px);
    filter: drop-shadow(0px 50px 20px #ffffff2f);
}
.app-card{
    background: linear-gradient(#041444,#0A32AA);
    transition: 0.3s ease-out;
}
.app-card:hover{
    transform: translateY(-10px);
}
.swiper {
    width: 100%;
    height: 100%;
}
.swiper-slide{
    display: flex;
    width: 100%;
    height: 100%;
}

.feature-card{
    background-color: var(--primary-color2);
    color: white;
    height: 300px;
    transition: 0.5s ease;
}
.feature-card:hover{
    background:  var(--aaccent-color);
}
.dev-com{
    transition: ease-in-out 0.3s;
}
.dev-com:hover{
    color: var(--primary-color2);
}
.banner-header{
    transition: ease-in-out 0.3s;
}
.banner-header.active{
    background-color: white;
    box-shadow: 0px 4px 4px #3940321f;
}

.moving-truck{
    position: absolute;
    bottom: 0;
    left: -300px;
    animation:truckmove 10s linear infinite;
}
@keyframes truckmove{
    0%{
        left: -300px;
    }
    100%{
        left: 100%;
        right: -300px;
    }
}
/* Truck ANIMATION */

.wave-container {
  position: absolute;
  z-index: -2;
  bottom: -60px;
  width: 100%;
  height: 0;
  padding-bottom: 30.73%;
  overflow: hidden;
}

.wave-fill {
  fill: #0A96F5;
}

.truck {
  transform: translateY(-75px);
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.2));
  width: 250px;
  height: 130px;
}


/* Responsive adjustments */
@media (max-width: 1200px) {
    .wave-container {
        bottom: -60px;
        padding-bottom: 35%; 
    }
.left_bottom_circles{
    bottom: -10%;
    left: -14%;
}
.top_circles{
    left: 20%;
    top: -35%;
}
.right_bottom_circles{
    right: -30%;
    bottom: 0%;
}
}

@media (max-width: 920px) {
.left_bottom_circles{
    bottom: -25%;
    left: -14%;
}
.top_circles{
    left: 20%;
    top: -40%;
}
.right_bottom_circles{
    right: -50%;
    bottom: 40%;
}
}

@media (max-width: 768px) {
  .wave-container {
    padding-bottom: 40%; /* Taller on mobile */
    bottom: -60px;
  }
  .banner-section{
    padding-bottom: 150px;
}
.right_bottom_circles{
    right: -70%;
    bottom: 40%;
}
}

@media (max-width: 480px) {
  .wave-container {
    padding-bottom: 45%;
  }
.banner-section{
    padding-bottom: 80px;
}
}
@media (max-width: 330px) {
  .wave-container {
    padding-bottom: 50%;
  }
}

/* SCROLL ELEMENT */

.hidden-1{
    transform: translateY(20%);
    opacity: 0;
    filter: blur(6px);
    transition:opacity ease-in-out 1s, transform ease-in-out 1s, filter ease 1s;
}
.show-1{
    transform: translateY(0);
    opacity: 1;
    filter: blur(0);
    transition:opacity ease-in-out 1s, transform ease-in-out 1s, filter ease 1s;
}
.hidden-2{
    transform: translateX(-30%);
    opacity: 0;
    filter: blur(6px);
    transition:opacity ease-in-out 1.3s, transform ease-in-out 1s, filter ease 1s;
}
.show-2{
    transform: translateX(0);
    opacity: 1;
    filter: blur(0);
    transition:opacity ease-in-out 1s, transform ease-in-out 1s, filter ease 1s;
}

/* ----------------------------------- */


/* RESPONSIVE */

/* `sm` applies to x-small devices (portrait phones, less than 576px)  */
@media (max-width: 35.99875em) {
.padding-x{
    padding-left: 1em;
    padding-right: 1em;
}
.banner-headline{
    font-size: 32px;
    line-height: 32px;
}
.banner-text{
    font-size: 16px;
}
.section-headline{
    font-size: 20px;
    line-height: 22px;
}
.paragraph-size{
    font-size: 13px;
}

}
/*  400px to 576px  */
@media (min-width: 25em) and (max-width: 35.99875em) {
 .mockup-circle-1{
    width: 400px;
    height: 400px;
}
.mockup-circle-2{
    width: 330px;
    height: 330px;
}
.mockup-circle-3{
    width: 270px;
    height: 270px;
}
.circles-animation{
    width: 400px;
    height: 400px;
}
.app-mockup-img{
    width: 320px;
}
.rotating-icon{
    width: 46px;
    height: 46px;
}
@keyframes rotate1 {
    0% {
        transform: translate(-50%, -50%) rotate(0deg) translateY(-135px) rotate(0deg) ;
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg) translateY(-135px) rotate(-360deg);
    }
}
@keyframes rotate2 {
    0% {
        transform: translate(-50%, -50%) rotate(180deg) translateY(-165px) rotate(-180deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(540deg) translateY(-165px) rotate(-540deg);
    }
}
@keyframes rotate3 {
    0% {
        transform: translate(-50%, -50%) rotate(60deg) translateY(-165px) rotate(-60deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(420deg) translateY(-165px) rotate(-420deg);
    }
}
@keyframes rotate4 {
    0% {
        transform: translate(-50%, -50%) rotate(300deg) translateY(-165px) rotate(-300deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(660deg) translateY(-165px) rotate(-660deg);
    }
}
@keyframes rotate5 {
    0% {
        transform: translate(-50%, -50%) rotate(120deg) translateY(-200px) rotate(-120deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(480deg) translateY(-200px) rotate(-480deg);
    }
}
@keyframes rotate6 {
    0% {
        transform: translate(-50%, -50%) rotate(240deg) translateY(-200px) rotate(-240deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(600deg) translateY(-200px) rotate(-600deg);
    }
}
}

/*  330px to 400px  */
@media (min-width: 20.625em) and (max-width: 25em) {
  .mockup-circle-1{
    width: 330px;
    height: 330px;
}
.mockup-circle-2{
    width: 260px;
    height: 260px;
}
.mockup-circle-3{
    width: 200px;
    height: 200px;
}
.circles-animation{
    width: 330px;
    height: 330px;
}
.app-mockup-img{
    width: 220px;
}
.rotating-icon{
    width: 32px;
    height: 32px;
}
@keyframes rotate1 {
    0% {
        transform: translate(-50%, -50%) rotate(0deg) translateY(-100px) rotate(0deg) ;
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg) translateY(-100px) rotate(-360deg);
    }
}
@keyframes rotate2 {
    0% {
        transform: translate(-50%, -50%) rotate(180deg) translateY(-130px) rotate(-180deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(540deg) translateY(-130px) rotate(-540deg);
    }
}
@keyframes rotate3 {
    0% {
        transform: translate(-50%, -50%) rotate(60deg) translateY(-130px) rotate(-60deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(420deg) translateY(-130px) rotate(-420deg);
    }
}
@keyframes rotate4 {
    0% {
        transform: translate(-50%, -50%) rotate(300deg) translateY(-130px) rotate(-300deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(660deg) translateY(-130px) rotate(-660deg);
    }
}
@keyframes rotate5 {
    0% {
        transform: translate(-50%, -50%) rotate(120deg) translateY(-165px) rotate(-120deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(480deg) translateY(-165px) rotate(-480deg);
    }
}
@keyframes rotate6 {
    0% {
        transform: translate(-50%, -50%) rotate(240deg) translateY(-165px) rotate(-240deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(600deg) translateY(-165px) rotate(-600deg);
    }
}
}

/* less than 330px */
@media (max-width: 20.62375em) {
.mockup-circle-1{
    width: 250px;
    height: 250px;
}
.mockup-circle-2{
    width: 180px;
    height: 180px;
}
.mockup-circle-3{
    width: 120px;
    height: 120px;
}
.circles-animation{
    width: 250px;
    height: 250px;
}
.app-mockup-img{
    width: 150px;
}
.rotating-icon{
    width: 26px;
    height: 26px;
}
@keyframes rotate1 {
    0% {
        transform: translate(-50%, -50%) rotate(0deg) translateY(-60px) rotate(0deg) ;
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg) translateY(-60px) rotate(-360deg);
    }
}
@keyframes rotate2 {
    0% {
        transform: translate(-50%, -50%) rotate(180deg) translateY(-90px) rotate(-180deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(540deg) translateY(-90px) rotate(-540deg);
    }
}
@keyframes rotate3 {
    0% {
        transform: translate(-50%, -50%) rotate(60deg) translateY(-90px) rotate(-60deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(420deg) translateY(-90px) rotate(-420deg);
    }
}
@keyframes rotate4 {
    0% {
        transform: translate(-50%, -50%) rotate(300deg) translateY(-90px) rotate(-300deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(660deg) translateY(-90px) rotate(-660deg);
    }
}
@keyframes rotate5 {
    0% {
        transform: translate(-50%, -50%) rotate(120deg) translateY(-125px) rotate(-120deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(480deg) translateY(-125px) rotate(-480deg);
    }
}
@keyframes rotate6 {
    0% {
        transform: translate(-50%, -50%) rotate(240deg) translateY(-125px) rotate(-240deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(600deg) translateY(-125px) rotate(-600deg);
    }
}
}

/* `md` applies to small devices (landscape phones, less than 768px)  sm - md   576px - 36em    768px - 48em*/
@media (min-width: 36em) and (max-width: 47.99875em) {
.padding-x{
    padding-left: 2em;
    padding-right: 2em;
}
.banner-headline{
    font-size: 36px;
    line-height: 37px;
}
.section-headline{
    font-size: 22px;
    line-height: 24px;
}
.paragraph-size{
    font-size: 14.8px;
}
}


/* `md` applies to medium devices (tablets, less than 768px)   768px - 48em */
@media (max-width: 47.99875em) {

}

/* `lg` applies to medium devices (tablets, less than 992px)   922px - 62em */
@media (max-width: 64rem) {
    .navigation-menu{
        position: absolute;
        top: 0;
        width: 100vw;
        height: 100vh;
        background-color: #ffffff;
        opacity: 0;
        transform: translateX(200%);
        transition: 0.5s ease;
    }
    .navigation-menu nav ul{
        order: 2;
        margin-top: 24px;
    }
    .navigation-menu nav ul .link-text{
        font-size: 24px;
        font-weight: 300;
        text-align: end;
    }
    .menu-view{
        opacity: 1;
        top: 0;
        right: -50%;
        transform: translate(-40%, -36px);
    }
    .banner_truck{
        width: 200px;
        position: static;
        order: 3;
    }   
    .location-search-box{
        position: static;
        padding: 32px 24px;
        transform: translate(0,0);
        width: 100%;
        margin-bottom: 32px;
    }
    .location-input{
        width: 100%;
        padding: 8px;
        border-radius: 12px;
    }
}


/* md - lg    768px - 48em  992px - 62em */
@media (min-width: 48em) and (max-width: 61.99875em) {
.padding-x{
    padding-left: 3em;
    padding-right: 3em;
}
.banner-headline{
    font-size: 38px;
    line-height: 39px;
}
}


/* `xl` applies to large devices (desktops, less than 1200px)  75em - 1200px  */
@media (min-width: 62em) and (max-width: 74.99875em) {
.padding-x{
    padding-left: 4em;
    padding-right: 4em;
}
.banner-headline{
    font-size: 40px;
    line-height: 42px;
}
.banner-text{
    font-family: var(--font-secondary);
    font-size: 18px;
}

}

@media (max-width: 74.99875em) {

}



/* `xxl` applies to x-large devices (large desktops, less than 1400px)  1400px - 87.5em */
@media (min-width: 75em) and (max-width: 87.49875em) {
.padding-x{
    padding-left: 5em;
    padding-right: 5em;
}
}


/* 1200px max */
@media (min-width: 75em) {}
