html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
    margin: 0;
    padding: 0;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Mona Sans Condensed", sans-serif;
}

.navbar {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 8%;
    background: #FFFFFF;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 10;
    flex-wrap: wrap;
    min-height: 100px;
}

.navbar img {
    height: auto;
    width: auto;
    max-height: 90px;
    object-fit: contain;
    image-rendering: crisp-edges;
    image-rendering: -webkit-optimize-contrast;
}

.nav-right {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: flex-end;
    flex-shrink: 0;
}

.nav-right img {
    height: 90px;
    width: auto;
    object-fit: contain;
    padding: 2px;
}

.hero {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 60px 8%;
    background: url('./public/1920x1080\ bike\ logistics.png') center/cover no-repeat;
    height: 75vh;
    color: #fff;
    overflow: hidden;
    gap: 40px;
}

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

.hero-box1,
.hero-box2 {
    position: relative;
    z-index: 2;
    flex: 1;
}

.hero-box1 h1 {
    font-family: "Mona Sans Condensed", sans-serif;
    font-weight: 700;
    font-size: 60px;
    line-height: 70px;
    letter-spacing: 0%;
    text-transform: uppercase;
}

.hero-box1 .white {
    color: #ffffff;
}

.hero-box1 .red {
    color: #f0151b;
}

.hero-box1 .subtext {
    font-family: "Mona Sans Condensed", sans-serif;
    font-weight: 500;
    font-size: 28px;
    line-height: 27px;
    letter-spacing: 0%;
    margin-top: 20px;
}

.hero-box2 {
    background: #fefefe;
    padding: 23px 24px;
    max-width: 444px;
    position: relative;
    z-index: 2;
    color: #000;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.1);
    border-radius: 2px;
}

.hero-box2 h3 {
    font-family: "Mona Sans Condensed", sans-serif;
    font-weight: 700;
    font-size: 26px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
    letter-spacing: 1px;
    color: #000;
}

.bullet {
    display: inline-block;
    width: 10px;
    height: 30px;
    background-color: #f0151b;
    border-radius: 2px;
}

.modal-content h3 {
    font-family: "Mona Sans Condensed", sans-serif;
    font-weight: 700;
    font-size: 26px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
    letter-spacing: 1px;
    color: #000;
}

.modal-content p {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    line-height: 21px;
    letter-spacing: 0%;
    margin-bottom: 25px;
    color: #4D5B69
}

.hero-box2 form {
    display: flex;
    flex-direction: column;
    gap: 15px;

}

.hero-box2 .form-row {
    display: flex;
    gap: 15px;
    width: 100%;
}

.hero-box2 input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: #fff;
    font-size: 14px;
    color: #333;
    outline: none;
}

.hero-box2 input::placeholder {
    color: #777;
}

.hero-box2 button {
    background: #F0151B;
    color: white;
    font-weight: bold;
    border: none;
    border-radius: 6px;
    padding: 14px;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.hero-box2 button .arrow-icon {
    width: 18px;
    height: 18px;
    stroke: white;
}

.hero-box2 button:hover {
    background: #c91117;
}

.hero-box2 p {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    line-height: 21px;
    letter-spacing: 0%;
    margin-bottom: 25px;
    color: #4D5B69
}

.info-strip {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    background-color: #FBFCFD;
    padding: 40px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.info-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    max-width: 260px;
    padding: 18px;
    border-left: 1px solid #eee;
    border-right: 1px solid #eee;
    border-top: none;
    border-bottom: none;
}

.info-item svg {
    width: 60px;
    height: auto;
    flex-shrink: 0;
}

.info-item .text-content {
    margin-left: 10px;
}

.text-content h2{
    font-family: "Mona Sans Condensed", sans-serif;
    text-transform: uppercase;
    font-size: 32px !important;
    line-height: 40px !important;
    color: #0D54A1;
    margin: 0;
}

.text-content p{
    font-size: 14px !important;
    line-height: 18px !important;
}

.text-content{
    min-width: 200px !important;
}

.about {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 40px;
    padding: 60px 8%;
    margin-bottom: 60px;
}

.about>div:first-child img {
    width: 100%;
    max-width: 700px;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
}

.about-text {
    flex: 1;
    max-width: 600px;
    color: #001F39;
    background: none;
}

.about-text h2 {
    font-family: "Mona Sans Condensed", sans-serif;
    font-weight: 500;
    font-size: 40px;
    line-height: 52px;
    margin-bottom: 20px;
}

.about-text p {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0%;
    margin-bottom: 16px;
    color: #444;
}

.about button {
    background: #F0151B;
    color: white;
    font-weight: bold;
    border: none;
    border-radius: 6px;
    padding: 12px 32px;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.about button .arrow-icon {
    width: 18px;
    height: 18px;
    stroke: white;
}

.about button:hover {
    background: #c91117;
}

.innfo {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
    gap: 4rem;
    padding: 60px 8%;
    background-color: #ffffff;
    padding-bottom: 5px;
    margin-bottom: 25px;
    margin-top: 80px;
    flex-wrap: wrap;
}

.innfoz {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    width: 100%;
    justify-content: center;
}

.innfo-item {
    flex: 0 0 calc(50% - 16px);
    max-width: calc(50% - 16px);
    padding: 20px;
    border: 1px solid #F2F2F2;
    border-radius: 8px;
    display: flex;
    gap: 16px;
}

.innfo-item .text-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.innfo-item svg {
    width: 40px;
    height: auto;
    flex-shrink: 0;
}

.innfo-item h2 {
    font-family: "Mona Sans" Condensed;
    font-weight: 500;
    font-style: Medium;
    font-size: 20px;
    line-height: 34px;
    letter-spacing: 0%;

}

.innfo-item p {
    font-family: "Roboto" sans-serif;
    font-weight: 400;
    color: #4D5B69;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0%;

}

.innfoheading {
    font-family: "Mona Sans" Condensed;
font-weight: 500;
font-style: Medium;
font-size: 36px;
line-height: 46px;
letter-spacing: 0%;
color: #001F39;
}

.carousel-section {
    background-color: rgba(13, 84, 161, 0.03);
    padding: 80px 8%;
    text-align: center;
    overflow: hidden;
    margin-top: 80px;
}

.carousel-section h2 {
    font-family: "Mona Sans condensed", sans-serif;
    font-weight: 500;
    font-size: 36px;
    line-height: 50px;
    letter-spacing: 0%;
    margin-bottom: 50px;
    color: #001F39;
}

.carousel-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    gap: 20px;
    animation: scroll 20s linear infinite;
}

.carousel-card {
    width: 260px;
    height: 236px;
    background-color: #fff;
    color: #000;
    border-radius: 3px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
    padding: 25px;
    text-align: left;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    opacity: 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.carousel-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.card-icon {
    width: 31.4px;
    height: 36.64px;
    opacity: 1;
    margin-bottom: 15px;
}

.carousel-card h3 {
    font-family: "Mona Sans Condensed", sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 34px;
    margin-bottom: 8px;
}

.carousel-card p {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    color: #333;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

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

.logos-section {
    background: #fff;
    text-align: center;
    padding: 80px 8%;
    overflow: hidden;
}

.logos-section h2 {
    font-family: "Mona Sans Condensed", sans-serif;
    font-weight: 500;
    font-size: 36px;
    line-height: 50px;
    letter-spacing: 0%;
    margin-bottom: 50px;
    color: #001F39
}

.logos-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.logos-track {
    display: flex;
    gap: 30px;
    animation: logos-scroll 25s linear infinite;
}

.logo-card {
    width: 210px;
    height: 160px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    background: #fff;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.logo-card img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    opacity: 1;
}

@keyframes logos-scroll {
    0% {
        transform: translateX(0);
    }

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

.faq {
    width: 100%;
    padding: 80px 8%;
    background: #0D54A1;
}

.faq h2 {
    text-align: center;
    font-family: "Mona Sans Condensed", sans-serif;
    font-weight: 500;
    color: white;
    font-size: 36px;
    line-height: 50px;
    margin-bottom: 50px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 60px;
}

.faq-item {
    width: 100%;
    background: white;
    border-radius: 6px;
    border: 1px solid #ccc;

    padding: 20px 24px;

    --faq-btn-size: 44px;
    padding-right: calc(var(--faq-btn-size) + 28px);

    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
    display: block;
}

.faq-item button {
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
    width: var(--faq-btn-size);
    height: var(--faq-btn-size);

    display: flex;
    align-items: center;
    justify-content: center;

    background-color: white;
    border: none;

    font-size: 22px;
    font-weight: 700;
    cursor: pointer;
    z-index: 5;
}

.faq-item h4 {
    font-family: "Mona Sans Condensed", sans-serif;
    font-weight: 400;
    font-size: 22px;
    line-height: 30px;
    margin: 0 0 6px 0;
    word-break: break-word;
}

.faq-answer {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 24px;
    margin-top: 12px;
    color: #555;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-item.active .faq-answer {
    max-height: 400px;
    padding-bottom: 12px;
}

.form-section {
    background: #fefefe;
    padding: 80px 8%;
    display: flex;
    justify-content: center;
}

.form-container {
    width: 100%;
}

.form-container h3 {
    font-family: "Mona Sans Condensed", sans-serif;
    font-weight: 500;
    font-size: 36px;
    line-height: 50px;
    margin-bottom: 12px;
    color: #111;
}

.form-container p {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 32px;
    margin-bottom: 36px;
    color: #333;
}

form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.form-row:last-child {
    grid-template-columns: repeat(2, 1fr);
}

input {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 15px;
    font-family: "Roboto", sans-serif;
    outline: none;
    transition: border-color 0.3s ease;
}

input:focus {
    border-color: #0d54a1;
}

input {
    position: relative;
}

.button-form {
    margin-top: 32px;
    max-width: 360px;
    background: #f0151b;
    color: white;
    font-weight: 600;
    border: none;
    border-radius: 3px;
    padding: 12px 32px 12px 32px;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background 0.3s ease;
}

.button-form:hover {
    background: #c91117;
}

.arrow-icon {
    width: 18px;
    height: 18px;
}

input::placeholder {
    color: #888;
}

input[required] {
    position: relative;

}

input[required]::after {
    content: "*";
    color: red;
    position: absolute;
    right: 10px;
    /* adjust if needed */
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.single-input-wrapper {
    position: relative;
}

.single-input-wrapper input {
    width: 100%;
}

.single-input-wrapper:has(input:placeholder-shown)::after {
    content: "*";
    color: red;
    position: absolute;
    left: 108px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.single-input-wrapper7 {
    position: relative;
}

.single-input-wrapper7 input {
    width: 100%;
}

.single-input-wrapper7:has(input:placeholder-shown)::after {
    content: "*";
    color: red;
    position: absolute;
    left: 92px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.single-input-wrapper2 {
    position: relative;
}

.single-input-wrapper2 input {
    width: 100%;
}

.single-input-wrapper2:has(input:placeholder-shown)::after {
    content: "*";
    color: red;
    position: absolute;
    left: 80px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.single-input-wrapper3 {
    position: relative;
}

.single-input-wrapper3 input {
    width: 100%;
}

.single-input-wrapper3:has(input:placeholder-shown)::after {
    content: "*";
    color: red;
    position: absolute;
    left: 90px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.single-input-wrapper4 {
    position: relative;
}

.single-input-wrapper4 input {
    width: 100%;
}

.form-row.full-row {
  grid-template-columns: 1fr !important;
}

.form-row.full-row > div,
.form-row.full-row input {
  min-width: 0;
  width: 100%;
}

.single-input-wrapper4:has(input:placeholder-shown)::after {
    content: "*";
    color: red;
    position: absolute;
    left: 61px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.single-input-wrapper5 {
    position: relative;
}

.single-input-wrapper5 input {
    width: 100%;
}

.single-input-wrapper5:has(input:placeholder-shown)::after {
    content: "*";
    color: red;
    position: absolute;
    left: 73px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.single-input-wrapper6 {
    position: relative;
}

.single-input-wrapper6 input {
    width: 100%;
}

.single-input-wrapper6:has(input:placeholder-shown)::after {
    content: "*";
    color: red;
    position: absolute;
    left: 129px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.single-input-wrapper-pt {
    position: relative;
}

.single-input-wrapper-pt input {
    width: 100%;
}

.single-input-wrapper-pt:has(input:placeholder-shown)::after {
    content: "*";
    color: red;
    position: absolute;
    left: 102px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    background: #0D54A1;
    color: white;
    padding: 60px 8%;
}

.footer-left {
    max-width: 420px;
    padding-top: 20px;
}

.footer-logo {
    width: 310px;
    height: auto;
    margin-bottom: 10px;
    padding: 2px;
}

.footer-left h3 {
    font-family: "Mona Sans Condensed", sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 34px;
    margin-bottom: 5px;
    padding: 2px;
}

.footer-left p {
    max-width: 320px;
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    line-height: 26px;
    color: #f1f1f1;
    padding: 2px;
}

.footer-right {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-top: 30px;
}

.footer-icon img {
    width: 96px;
    height: 96px;
    background: #fff;
    border-radius: 50%;
    box-sizing: border-box;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.footer-icon img:hover {
    transform: scale(1.1);
    opacity: 0.8;
}

.footer-bottom {
    text-align: center;
    background: #093b74;
    color: #ddd;
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    padding: 15px 0;
}

.footer-graphics {
    position: relative;
    width: 100%;
    background-color: #0D54A1;
    overflow: visible;
    padding-top: 60px;
}

.city img {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 1;
    margin-bottom: -5px;
}

.road {
    position: relative;
    width: 100%;
    z-index: 2;
}

.road img {
    width: 100%;
    height: auto;
    display: block;
}

.truck {
    position: absolute;
    bottom: 10%;
    right: 5%;
    z-index: 3;
}

.truck img {
    width: 180px;
    height: auto;
    display: block;
}

.flight {
    position: absolute;
    left: 8%;
    bottom: 50%;
    z-index: 4;
    transform: rotate(-5deg);
}

.flight img {
    width: 160px;
    height: auto;
    display: block;
}

#stickyIconBtn {
    position: fixed;
    bottom: 75px;
    right: 20px;
    width: 54px;
    height: 54px;
    border: none;
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
}

#stickyIconBtn:hover {
    transform: scale(1.1);
}

.one-third {
    width: 33.33%;
}

.two-third {
    width: 66.66%;
}

.form-row {
    display: flex;
    gap: 12px;
}

.form-row > div {
    display: flex;
    flex-direction: column;
}


@media (max-width: 768px) {

    p {
        font-size: 16px !important;
        line-height: 24px !important;
    }

    .hero {
        display: flex !important;
        flex-direction: row !important;
        justify-content: center !important;
        align-items: center !important;
        height: 100vh !important;
        text-align: center !important;
    }

    .hero h1,
    .hero p {
        margin: 0 !important;
    }

    .hero h1 {
        font-size: 50px !important;
        margin-bottom: 20px !important;
    }

    .hero p {
        font-size: 16px !important;
        line-height: 24px !important;
        margin-top: 10px !important;
    }


    .info-item p {
        font-size: 16px !important;
        line-height: 24px !important;
    }

    .info-strip {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        padding: 30px 20px;
        text-align: center;
    }

    .info-item {
        display: flex;
        flex-direction: row;
        max-width: 100%;
        align-items: center;
        text-align: center;
    }

    .info-item svg {
        margin-bottom: 5px;
    }

    .info-item .text-content {
        align-items: center;
    }

    .info-item h2 {
        font-size: 36px;
        line-height: 46px;
    }

    .about {
        flex-direction: column !important;
        justify-content: flex-start !important;
        align-items: flex-start !important;
        padding: 40px 6% !important;
        height: auto !important;
        gap: 30px !important;
    }

    .about img {
        width: 100% !important;
        border-radius: 12px !important;
    }

    .about-text {
        max-width: 100% !important;
        width: 100% !important;
        text-align: left !important;
    }

    .about-text h2 {
        font-size: 36px !important;
        line-height: 42px !important;
        text-align: left !important;
    }

    .about-text p {
        font-size: 16px !important;
        line-height: 24px !important;
        width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .about button {
        margin-top: 20px !important;
        align-self: flex-start !important;
    }

    .innfo-item {
        width: 100%;
        max-width: 100%;
        padding: 20px;
        border: 1px solid #F2F2F2;
        border-radius: 8px;
        display: flex;
        gap: 16px;
        flex: 0 0 100%;
    }

    .carousel-wrapper {
    width: 100%;
    overflow: hidden;
    }

    .carousel-track {
        display: flex;
        gap: 20px;
        width: max-content;
        animation: slide 25s linear infinite;
    }

    .carousel-card {
        min-width: 300px; 
        max-width: 340px;
        background: #fff;
        border-radius: 12px;
        padding: 20px;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }

    @keyframes slide {
        0%   { transform: translateX(0); }
        100% { transform: translateX(-50%); }
    }
    .carousel-card h3 {
        font-size: 28px !important;
        font-weight: 300 !important;
    }


    .carousel-card p {
        font-size: 16px !important;
        line-height: 24px !important;
        padding-left: 4px !important;
    }

    .logos-track {
        animation: logos-scroll 2s linear infinite;
    }

    .logo-card {
        width: 160px;
        height: 100px;
    }

    .logo-card img {
        width: 80px;
        height: auto;
    }


    .faq-item h4 {
        font-size: 28px !important;
        line-height: 38px !important;
    }

    .faq-answer {
        font-size: 16px !important;
        line-height: 24px !important;
    }

    .form-container p {
        font-size: 16px !important;
        line-height: 24px !important;
    }

    .navbar {
        display: flex !important;
        flex-direction: row !important;
        justify-content: center !important;
        align-items: center !important;
        width: 100%;
        min-height: 92px;
        padding: 12px 18px;
    }

    .navbar img {
        height: 100px !important;
        width: auto;
    }

    .nav-right {
        display: none;
    }

    .footer {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 40px 5%;
        gap: 30px;
    }

    .footer-left {
        max-width: 90%;
        padding-top: 0;
    }

    .footer-logo {
        width: 230px;
    }

    .footer-left h3 {
        font-size: 18px;
        line-height: 28px;
    }

    .footer-left p {
        font-size: 15px;
        line-height: 24px;
    }

    .footer-right {
        gap: 15px;
        padding-top: 0;
        justify-content: center;
    }

    .footer-icon img {
        width: 72px;
        height: 72px;
    }

    .footer-graphics {
        padding-top: 40px;
    }

    .flight img {
        width: 130px;
    }

    .truck img {
        width: 150px;
    }

    .flight {
        left: 5%;
        bottom: 45%;
    }

    .truck {
        right: 5%;
        bottom: 8%;
    }

}

@media (max-width: 480px) {
    
 .one-third,
    .two-third {
        width: 100% !important;
        flex: 100% !important;
    }

    .form-row {
        display: grid;
        grid-template-columns: 1fr;
        gap: 16px;
        width: 95%;
        margin: 0 auto;
    }

    .form-row input {
        width: 100% !important;
    }
    p {
        font-size: 16px !important;
        line-height: 24px !important;
    }

    .hero {
        display: flex !important;
        flex-direction: row !important;
        justify-content: center !important;
        align-items: center !important;
        height: 100vh !important;
        text-align: center !important;
    }

    .hero h1,
    .hero p {
        margin: 0 !important;
    }

    .hero h1 {
        font-size: 50px !important;
        margin-bottom: 20px !important;
    }

    .hero p {
        font-size: 16px !important;
        margin-top: 24px !important;
    }

    .info-strip {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 30px;
        padding: 30px 20px;
        text-align: center;
        align-items: center;
    }

    .info-item p {
        font-size: 16px !important;
        line-height: 24px !important;
        display: flex;
        flex-direction: row;
    }

    .about {
        flex-direction: column !important;
        justify-content: flex-start !important;
        align-items: flex-start !important;
        padding: 40px 6% !important;
        height: auto !important;
        gap: 30px !important;
    }

    .about img {
        width: 100% !important;
        border-radius: 12px !important;
    }

    .about-text {
        max-width: 100% !important;
        width: 100% !important;
        text-align: left !important;
    }

    .about-text h2 {
        font-size: 36px !important;
        line-height: 42px !important;
        text-align: left !important;
    }

    .about-text p {
        font-size: 16px !important;
        line-height: 24px !important;
        width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
        text-align: left !important;
    }

    .about button {
        margin-top: 20px !important;
        align-self: flex-start !important;
    }

    .innfo-item {
        width: 100%;
        max-width: 100%;
        padding: 20px;
        border: 1px solid #F2F2F2;
        border-radius: 8px;
        display: flex;
        gap: 16px;
        flex: 0 0 100%;
    }

    .carousel-card h3 {
        font-size: 28px !important;
        font-weight: 300 !important;
    }


    .carousel-card p {
        font-size: 16px !important;
        line-height: 24px !important;
        padding-left: 4px !important;
    }

    .carousel-wrapper {
    width: 100%;
    overflow: hidden;
    }

    .carousel-track {
        display: flex;
        gap: 20px;
        width: max-content;
        animation: slide 25s linear infinite;
    }

    .carousel-card {
        min-width: 300px; 
        max-width: 340px;
        background: #fff;
        border-radius: 12px;
        padding: 20px;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }

    @keyframes slide {
        0%   { transform: translateX(0); }
        100% { transform: translateX(-50%); }
    }

    .faq-item h4 {
        font-size: 28px !important;
        line-height: 38px !important;
    }

    .faq-answer {
        font-size: 16px !important;
        line-height: 24px !important;
    }

    .faq {
        padding: 40px 20px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        /* SINGLE COLUMN */
        gap: 18px;
    }

    .faq-item {
        --faq-btn-size: 40px;
        padding: 16px 16px;
        padding-right: calc(var(--faq-btn-size) + 22px);
    }

    .faq-item button {
        right: 12px;
        font-size: 20px;
    }

    .faq-answer {
        font-size: 16px !important;
        line-height: 24px !important;
    }

    .form-container p {
        font-size: 16px !important;
        line-height: 24px !important;
    }

    .navbar {
        display: flex !important;
        flex-direction: row !important;
        justify-content: center !important;
        align-items: center !important;
        width: 100%;
        min-height: 92px;
        padding: 12px 18px;
    }

    .navbar img {
        height: 60px !important;
        width: auto;
    }

    .navbar img {
        height: 100px !important;
        width: auto;
    }

    .nav-right {
        display: none;
    }

    .footer {
        padding: 30px 20px;
        gap: 25px;
    }

    .footer-logo {
        width: 190px;
    }

    .footer-left h3 {
        font-size: 17px;
        line-height: 26px;
    }

    .footer-left p {
        font-size: 14px;
        line-height: 22px;
    }

    .footer-right {
        gap: 12px;
    }

    .footer-icon img {
        width: 62px;
        height: 62px;
    }

    .footer-graphics {
        padding-top: 30px;
    }

    .city img {
        width: 110%;
        margin-left: -5%;
    }

    .road img {
        width: 110%;
        margin-left: -5%;
    }

    .flight img {
        width: 110px;
    }

    .truck img {
        width: 130px;
    }

    .flight {
        left: 3%;
        bottom: 50%;
    }

    .truck {
        right: 3%;
        bottom: 5%;
    }

    .form-container h3 {
        font-size: 28px;
        line-height: 36px;
    }

    .form-container p {
        font-size: 16px;
        line-height: 26px;
        margin-bottom: 24px;
    }

    .form-row {
        display: grid;
        grid-template-columns: 1fr;
        gap: 16px;
        width: 95%;
        margin: 0 auto;
    }

    .form-row input,
    .form-row select {
        width: 100%;
    }

    .form-row:last-child {
        grid-template-columns: 1fr;
    }


    .button-form {
        width: 100%;
        max-width: 100%;
        padding: 16px;
        font-size: 17px;
        border-radius: 6px;
    }
}

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

    .form-section {
        padding: 60px 6%;
    }

    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .form-row:last-child {
        grid-template-columns: 1fr;
    }

    .button-form {
        max-width: 100%;
    }

    .faq {
        padding: 50px 40px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .faq-item {
        --faq-btn-size: 42px;
        padding: 18px 20px;
        padding-right: calc(var(--faq-btn-size) + 24px);
    }

    .faq-item button {
        right: 14px;
        font-size: 21px;
    }

    .carousel-wrapper {
        width: 100%;
        overflow: hidden;
    }

    .carousel-track {
        display: flex;
        gap: 20px;
        width: max-content;
        animation: slide 25s linear infinite;
    }

    .carousel-card {
        min-width: 300px; 
        max-width: 340px;
        background: #fff;
        border-radius: 12px;
        padding: 20px;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }

    @keyframes slide {
        0%   { transform: translateX(0); }
        100% { transform: translateX(-50%); }
    }
    
}

/* 👉 Detect Windows 150% Zoom (High DPI Screens) */
@media screen and (min-resolution: 144dpi) and (max-resolution: 180dpi) {

    p {
        font-size: 16px !important;
        line-height: 24px !important;
    }

    .hero {
        display: flex !important;
        flex-direction: row !important;
        justify-content: center !important;
        align-items: center !important;
        height: 90vh !important;
        text-align: left !important;
    }

    .hero-box1 {
        min-width: 650px;
    }

    .hero-box2 {
        height: 73vh;
    }

    .hero-box2 p {
        font-size: 22px;
    }

    .hero h1 {
        font-family: "Mona Sans Condensed", sans-serif;
        font-weight: 700;
        font-size: 60px;
        line-height: 70px;
        letter-spacing: 0%;
        text-transform: uppercase;
    }

    .hero-box1 .subtext {
    font-family: "Mona Sans Condensed", sans-serif;
    font-weight: 500;
    font-size: 28px;
    line-height: 27px;
    letter-spacing: 0%;
    margin-top: 20px;
}

    .hero p {
        font-size: 16px !important;
        line-height: 24px !important;
    }

    .text-content h2{
        font-size: 20px !important;
        line-height: 26px !important;
        color: #0D54A1
    }

    .text-content p{
        font-size: 10px !important;
        line-height: 16px !important;
    }

    .about {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 30px;
        min-height: 70vh;
        padding: 60px 8%;
        margin-bottom: 0px;
    }

    .about>div:first-child img {
        width: 100%;
        max-width: 600px;
        height: auto;
        border-radius: 10px;
        object-fit: cover;
    }

    .about-text {
        flex: 1;
        max-width: 600px;
        color: #001F39;
        background: none;
        padding-bottom: 20px;
    }

    .about-text h2 {
        font-family: "Mona Sans Condensed", sans-serif;
        font-weight: 500;
        font-size: 40px;
        line-height: 52px;
        margin-bottom: 20px;
    }

    .about-text p {
        font-size: 16px !important;
        line-height: 24px !important;
    }

    .innfo{
        margin-top: 0px;
        padding: 60px 8%;
    }

    .innfo-item {
        flex: 0 0 calc(50% - 16px);
        max-width: calc(50% - 16px);
        padding: 20px;
        border: 1px solid #F2F2F2;
        border-radius: 8px;
        display: flex;
        gap: 16px;
}

    .carousel-card {
        width: 360px;
        height: 280px;
        background-color: #fff;
        color: #000;
        border-radius: 3px;
        border: 1px solid rgba(0, 0, 0, 0.1);
        flex-shrink: 0;
        padding: 25px;
        text-align: left;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
        opacity: 1;
        transition: transform 0.3s ease, box-shadow 0.3s ease;

    }

    .carousel-card p {
        font-size: 16px !important;
        line-height: 24px;
    }

    /* Navbar */
    .navbar img {
        height: 70px !important;
        width: auto !important;
    }

    .nav-right img {
        height: 70px !important;
        object-fit: contain;
    }
}