* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

body {
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

#menu-toggle {
    display: none;
}

.hamburger-menu {
    display: none;
    width: 30px;
    height: 22px;
    position: relative;
    cursor: pointer;
    z-index: 1001;
}

.hamburger-menu span {
    display: block;
    position: absolute;
    height: 4px;
    width: 100%;
    background: #465782;
    border-radius: 2px;
    left: 0;
}

.hamburger-menu span:nth-child(1) {
    top: 0;
}

.hamburger-menu span:nth-child(2) {
    top: 9px;
}

.hamburger-menu span:nth-child(3) {
    top: 18px;
}

.mobile-nav {
    display: none;
    position: absolute;
    top: 10vh;
    left: 0;
    width: 100%;
    background-color: white;
    border-bottom: 1px solid #E5E5E5;
    z-index: 999;
    padding: 1rem 8vw;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.mobile-nav a {
    display: block;
    color: #465782;
    font-weight: 600;
    text-decoration: none;
    padding: 1rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.mobile-nav a:last-child {
    border-bottom: none;
}

#menu-toggle:checked~.mobile-nav {
    display: block;
}

.header {
    display: flex;
    align-items: center;
    padding: 2vh 8vw;
    justify-content: space-between;
    border-bottom: 1px solid #E5E5E5;
    position: sticky;
    top: 0;
    background-color: white;
    z-index: 1000;
    min-height: 10vh;
}

.logo {
    height: 6vh;
}

.header-right a {
    padding-left: 2vw;
    text-decoration: none;
    color: #465782;
    font-weight: 600;
}

.header-right a:hover {
    color: #FF5731;
    transition: all .3s ease;
}

.gap {
    height: 0;
}

.hero {
    margin: 0 7vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 5vh;
}

.solving h1 {
    color: #369AFD;
    font-size: 3rem;
    text-align: left;
}

.solving p {
    color: #76797E;
    margin-top: 5vh;
    font-weight: 600;
}

#br-mobile {
    display: none;
}

.video {
    width: 50vw;
    height: auto;
}

.video video {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.track {
    margin-top: 5vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #EEF4FF;
    padding: 3vh 2vw;
}

.shipment {
    margin: 0 1vw;
    text-decoration: none;
    color: #051C57;
    padding: 2vh;
    font-weight: bold;
    border: 1px solid #369EFD;
    border-radius: 10px;
}

.shipment:hover {
    color: white;
    background-color: #369EFD;
    transition: all .3s ease;
}

h1 {
    margin: 7vh 0;
    text-align: center;
    color: #051C57;
    font-size: 3rem;
    font-weight: bold;
}

.intercity {
    display: flex;
    justify-content: space-evenly;
    padding: 0 2vw 5vh 2vw;
    max-width: 68.75rem;
    margin-left: auto;
    margin-right: auto;
}

.intracity {
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    padding: 4vh 2.5vw;
    width: 31%;
    border: 1px solid #E0E0E0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.gif {
    width: 4rem;
    height: 4rem;
    margin-bottom: 1rem;
}

.intracity h2 {
    color: #29558C;
    padding-top: 1rem;
}

.intracity span {
    padding-top: 1rem;
    color: #76797E;
    font-size: 1rem;
    font-weight: 600;
}

.intracity span::before {
    content: '✔';
    color: #f08800;
    padding-right: 0.5rem;
}

.quick {
    text-align: center;
    font-size: 0.9rem;
    font-weight: 700;
    color: #76797e;
    margin-top: 5vh;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.scale {
    text-align: center;
    font-weight: 700;
    margin-top: -6vh;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    width: 100%;
    max-width: 68.75rem;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.stat-item {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 30px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.stat-number {
    font-size: 4rem;
    font-weight: bold;
    color: #405DFE;
    line-height: 1.2;
}

.stat-label {
    font-size: 1rem;
    color: #555555;
    margin-top: 8px;
}

.give {
    margin-top: -6vh;
    text-align: center;
    color: #405dfe;
    padding: 0 1.25rem;
}

.services-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    width: 100%;
    max-width: 68.75rem;
    margin: 2.5rem auto;
    padding: 0 1.25rem;
}

.service-item {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 0.5rem;
    padding: 2.5rem 1.875rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.service-icon {
    height: 6rem;
    width: 6rem;
    margin-bottom: 1.25rem;
    object-fit: contain;
    object-position: left;
}

.service-title {
    font-size: 1.6rem;
    font-weight: bold;
    color: #003366;
    margin-top: 0;
    margin-bottom: 0.9375rem;
}

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

.service-list li {
    font-size: 1rem;
    color: #555;
    padding-left: 1.75rem;
    position: relative;
    line-height: 1.6;
}

.service-list li::before {
    content: '✔';
    color: #f08800;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0.125rem;
}

.ondc-section {
    background-color: #f7f9fc;
    width: 100%;
    max-width: 68.75rem;
    display: flex;
    margin: 2.5rem auto;
    padding: 5rem 1.25rem;
    align-items: center;
    gap: 4rem;
    justify-content: center;
}

.ondc-content {
    text-align: left;
    flex: 1;
}

.ondc-eyebrow {
    display: block;
    font-size: 1rem;
    font-weight: bold;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}

.ondc-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #003366;
    line-height: 1.2;
    margin-top: 0;
    margin-bottom: 1.25rem;
}

.ondc-description {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 1.75rem;
}

.ondc-button {
    display: inline-block;
    background-color: #ffffff;
    border: 1px solid #adadad;
    border-radius: 0.375rem;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: bold;
    color: #333;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.2s;
}

.ondc-button:hover {
    background-color: #f9f9f9;
}

.ondc-image-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 0.5rem;
    padding: 2.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    margin-top: 0;
}

.ondc-logo-placeholder {
    display: block;
    width: 100%;
    max-width: 15.625rem;
    height: auto;
}

.case-studies-section {
    background-color: #f7f9fc;
    width: 100%;
    max-width: 68.75rem;
    margin: 2.5rem auto;
    padding: 3.5rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.case-studies-content {
    flex: 1;
    text-align: left;
}

.cs-eyebrow {
    display: block;
    font-size: 1rem;
    font-weight: bold;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}

.cs-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #003366;
    line-height: 1.2;
    margin-top: 0;
    margin-bottom: 1.25rem;
}

.cs-date {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 1rem;
}

.cs-quote {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 1.75rem;
}

.cs-read-more {
    display: inline-block;
    font-size: 1rem;
    font-weight: bold;
    color: #0052cc;
    text-decoration: none;
}

.cs-read-more .arrow {
    margin-left: 0.5rem;
}

.case-studies-empty-space {
    flex: 1;
    height: 12.5rem;
    border-radius: 0.5rem;
}

.clients-section {
    width: 100%;
    max-width: 68.75rem;
    margin: 5rem auto 2.5rem auto;
    text-align: center;
    padding: 0 1.25rem;
}

.section-eyebrow {
    font-size: 1rem;
    font-weight: bold;
    color: #76797e;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 2.5rem;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem 1.5rem;
    align-items: center;
    justify-items: center;
}

.client-logo-item {
    padding: 0.5rem;
}

.client-logo {
    display: block;
    max-width: 100%;
    height: 3rem;
    object-fit: contain;
}

.testimonials-section {
    background-color: #f7f9fc;
    width: 100%;
    margin: 5rem auto;
    padding: 3.5rem 1.25rem;
    text-align: center;
}

.testimonials-section .section-eyebrow {
    margin-bottom: 2.5rem;
}

.testimonial-card {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    max-width: 50rem;
    margin: 0 auto;
    background-color: #ffffff;
    border-radius: 0.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    padding: 2.5rem;
}

.testimonial-logo {
    flex-shrink: 0;
    width: 8rem;
    height: 8rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.testimonial-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.testimonial-content {
    flex-grow: 1;
    text-align: left;
    position: relative;
}

.testimonial-text {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.testimonial-nav {
    position: absolute;
    right: 0;
    bottom: -2.5rem;
    display: flex;
    gap: 0.5rem;
}

.nav-arrow {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 50%;
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.2rem;
    font-weight: bold;
    color: #555;
    cursor: pointer;
    transition: background-color 0.2s, color 0.2s;
}

.nav-arrow:hover {
    background-color: #0052cc;
    color: #ffffff;
    border-color: #0052cc;
}

.investors-section {
    width: 100%;
    max-width: 68.75rem;
    margin: 5rem auto 2.5rem auto;
    text-align: center;
    padding: 0 1.25rem;
}

.investors-section .section-eyebrow {
    margin-bottom: 2.5rem;
}

.investors-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem 1.5rem;
    align-items: center;
    justify-items: center;
}

.investor-logo-item {
    padding: 0.5rem;
}

.investor-logo {
    display: block;
    max-width: 100%;
    height: 3rem;
    object-fit: contain;
}

.media-section {
    width: 100%;
    max-width: 68.75rem;
    margin: 5rem auto;
    text-align: center;
    padding: 0 1.25rem;
}

.media-section .section-eyebrow {
    margin-bottom: 0.5rem;
}

.media-section .section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #003366;
    margin-top: 0;
    margin-bottom: 2.5rem;
}

.media-grid {
    display: grid;
    gap: 1.875rem;
    margin-bottom: 1.875rem;
}

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

.media-grid-3-col {
    grid-template-columns: repeat(3, 1fr);
}

.media-item {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 0.5rem;
    padding: 1.875rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    text-align: left;
    display: flex;
    flex-direction: column;
}

.media-date {
    display: block;
    font-size: 0.9rem;
    color: #0052cc;
    font-weight: bold;
    margin-bottom: 1.25rem;
}

.media-img-wrapper {
    height: 6rem;
    display: flex;
    align-items: center;
    margin-bottom: 1.25rem;
    position: relative;
}

.media-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
}

.video-item .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 3rem;
    height: 3rem;
    background-color: #0052cc;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

#active {
    color: #ff5731;
}
.video-item .play-button::before {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0.6rem 0 0.6rem 1rem;
    border-color: transparent transparent transparent #ffffff;
    margin-left: 0.2rem;
}

.media-description {
    font-size: 1rem;
    color: #333;
    line-height: 1.5;
    margin-top: auto;
}

.main-footer {
    background-color: #ffffff;
    padding: 3.5rem 1.25rem 1.5rem 1.25rem;
    color: #555;
    font-size: 0.9rem;
    border-top: 1px solid #e0e0e0;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 68.75rem;
    margin: 0 auto 3rem auto;
    text-align: left;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-branding .footer-logo {
    max-height: 4rem;
    object-fit: contain;
    margin-bottom: 1.5rem;
}

.footer-heading {
    font-size: 1rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 1rem;
}

.footer-col p {
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

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

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col ul li a {
    text-decoration: none;
    color: #555;
    transition: color 0.2s;
}

.footer-col ul li a:hover {
    color: grey;
}

.contact-heading {
    margin-top: 1.5rem;
}

.social-icons {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.social-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background-color: #BCD5FF;
    transition: background-color 0.2s;
}

.social-icon img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(8%) saturate(5784%) hue-rotate(162deg) brightness(122%) contrast(103%);
    width: 1.5rem;
    height: 1.5rem;
    object-fit: contain;
}

.social-icon:hover {
    background-color: orange;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 68.75rem;
    margin: 0 auto;
    padding-top: 1.5rem;
    border-top: 1px solid #e0e0e0;
}

.footer-links-bottom a {
    text-decoration: none;
    color: #555;
    margin-left: 1.5rem;
    transition: color 0.2s;
}

.footer-links-bottom a:first-child {
    margin-left: 0;
}

.footer-links-bottom a:hover {
    color: grey;
}

@media (max-width: 768px) {
    .header {
        padding: 2vh 5vw;
        position: static;
    }

    .logo {
        height: 5vh;
    }

    .header-right {
        display: none;
    }

    .hamburger-menu {
        display: block;
    }

    .hero {
        flex-direction: column;
        margin: 0 5vw;
        margin-top: 3vh;
    }

    .solving h1 {
        font-size: 2rem;
    }

    .video {
        width: 100%;
        margin-top: 3vh;
    }

    .track {
        flex-direction: column;
        padding: 3vh 5vw;
        gap: 1rem;
    }

    .shipment {
        margin: 0;
        width: 100%;
        text-align: center;
    }

    h1 {
        font-size: 2.2rem;
        margin: 5vh 0;
        padding: 0 1.25rem;
    }

    .intercity {
        flex-direction: column;
        padding: 0 5vw 3vh 5vw;
        gap: 1.25rem;
    }

    .intracity {
        width: 100%;
        padding: 3vh 5vw;
    }

    .gif {
        width: 5rem;
        height: 5rem;
    }

    .stats-container {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        padding: 0 5vw;
    }

    .give {
        padding: 0 5vw;
        color: #465782;
    }

    .services-container {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        padding: 0 5vw;
    }

    .service-icon {
        object-position: center;
    }

    .ondc-section {
        flex-direction: column;
        padding: 3.5rem 1.25rem;
        gap: 2rem;
        margin: 2.5rem 0;
    }

    .ondc-title {
        font-size: 2rem;
    }

    .ondc-image-card {
        margin-top: 0;
        padding: 1.5rem;
    }

    .case-studies-section {
        flex-direction: column;
        gap: 2rem;
        margin: 2.5rem 0;
    }

    .cs-title {
        font-size: 2rem;
    }

    .case-studies-empty-space {
        display: none;
    }

    .clients-section {
        padding: 0 5vw;
    }

    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem 1.5rem;
    }

    .client-logo {
        height: 3.5rem;
    }

    .testimonial-card {
        flex-direction: column;
        gap: 1.5rem;
        padding: 2rem 1.5rem;
    }

    .testimonial-logo {
        width: 6rem;
        height: 6rem;
    }

    .testimonial-content {
        text-align: center;
    }

    .testimonial-text {
        font-size: 1rem;
    }

    .testimonial-nav {
        position: static;
        justify-content: center;
        margin-top: 1rem;
    }

    .investors-section {
        padding: 0 5vw;
    }

    .investors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem 1.5rem;
    }

    .investor-logo {
        height: 3.5rem;
    }

    .media-section {
        padding: 0 5vw;
    }

    .media-section .section-title {
        font-size: 2rem;
    }

    .media-grid-2-col,
    .media-grid-3-col {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-col {
        align-items: center;
    }

    .footer-col p {
        max-width: 300px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-links-bottom {
        display: flex;
        gap: 1.5rem;
    }

    .footer-links-bottom a {
        margin-left: 0;
    }
}