/* body carousel starts */

.swiper {
    width: 100%;
    height: 100vh;
}

.swiper-slide>.background-image {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    /* align-items: center; */
    width: 100%;
    background-size: cover;
    background-position: center;
}

.background-image {
    /* box-shadow: inset 0 0 0 2000px rgba(0, 0, 0, 0.2); */
}

.video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(270deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.60) 100%);
    /* background: linear-gradient(89.53deg, rgba(0, 0, 0, 0.6) 38.02%, rgba(0, 0, 0, 0.3) 60.4%, rgba(0, 0, 0, 0) 71.79%); */
    box-shadow: inset 0 0 0 2000px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.main-tagline {
    max-width: 1440px;
    margin: 0 auto;
    padding: 128px 50px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    z-index: 3;
    color: #fff;
}

.headline {
    width: 60%;
    font-family: Urbanist, sans-serif;
    font-size: 3.14rem;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: -0.03em;
    text-align: left;
    color: #fff;
}


.description {
    width: 60%;
    font-family: Plus Jakarta Sans, sans serif;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.618;
    text-align: left;
    color: #fff;
}

.cta-buttons {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 24px;
}

.main-cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    gap: 16px;
    padding: 16px 24px;
    border-radius: 80px;
    background: transparent;
    border: 1px solid #fff;
    text-decoration: none;
    color: #fff;
    position: relative;
    overflow: hidden;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.5;
    letter-spacing: -0.03em;
    text-align: center;
}

.swipe-buttons {
    background: #fff;
    padding: 20px;
    position: absolute;
    bottom: 0;
    right: 0;
    display: flex;
    gap: 24px;
    z-index: 10;
    border: 1px solid #fff;
    margin: 0;
    border-radius: 48px 0 0 0;
}

.swipe-buttons::before {
    content: '';
    height: 50px;
    width: 50px;
    position: absolute;
    background: transparent;
    top: -50px;
    right: 0;
    border-radius: 50px;
    box-shadow: 30px 30px 0 #fff;
}

.swipe-buttons::after {
    content: '';
    height: 50px;
    width: 50px;
    position: absolute;
    background-color: transparent;
    bottom: 0;
    left: -50px;
    border-radius: 50px;
    box-shadow: 26px 26px 0 #fff;
}

.button-prev,
.button-next {
    cursor: pointer;
    padding: 10px;
    border-radius: 50%;
    border: 1px solid #000;
    transition: background 1s ease-in;
}

.button-prev:hover,
.button-next:hover {
    background: linear-gradient(100.54deg, #003366 2.13%, #0f52ba 96.81%);
    border: 1px solid linear-gradient(100.54deg, #003366 2.13%, #0f52ba 96.81%);
}

.button-prev:hover .button-prev svg {
    background: #fff;
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
    .swiper {
        width: 100%;
    }

    .swiper-slide>.background-image {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
        background-size: cover;
        background-position: center;
    }

    .main-tagline {
        display: flex;
        flex-direction: column;
        gap: 16px;
        padding: 50px;
    }

    .headline {
        width: 100%;
        font-family: Urbanist, sans-serif;
        font-size: 3.235rem;
        font-weight: 900;
        line-height: 1.2;
        letter-spacing: -0.03em;
        text-align: left;
        color: #fff;
    }

    .description {
        width: 80%;
        font-family: Plus Jakarta Sans, sans serif;
        font-size: 1.2rem;
        font-weight: 600;
        line-height: 1.5;
        text-align: left;
        color: #fff;
    }

    .cta-buttons {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        gap: 24px;
    }

}

@media screen and (max-width:430px) {
    .swiper {
        width: 100%;
    }

    .swiper-slide>.background-image {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
        background-size: cover;
        background-position: center;
    }

    .main-tagline {
        gap: 0px;
        padding: 20px;
    }

    .headline {
        width: 100%;
        font-family: Urbanist, sans-serif;
        font-size: 2.617rem;
        font-weight: 900;
        line-height: 1.2;
        letter-spacing: -0.03em;
        text-align: left;
        color: #fff;
    }

    .description {
        width: 100%;
        font-family: Plus Jakarta Sans, sans serif;
        font-size: 1rem;
        font-weight: 600;
        line-height: 1.5;
        text-align: left;
        color: #fff;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

.about-gretex {
    display: flex;
    justify-content: space-between;
    gap: 32px;
}

.about-visual {
    width: 45%;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.about-video-container {
    position: relative;
}

.about-video-container>img {
    display: block;
    width: 100%;
    margin: 0 auto;
    object-fit: cover;
    border-radius: 26px;
}

.about-video-play {
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 16px 32px;
    border-radius: 48px 0 0 0;
    background-color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.about-video-play>span {
    font-family: Plus Jakarta Sans;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.618;
    letter-spacing: -0.02em;
    text-align: left;
}

.play-button-wrapper {
    position: relative;
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    overflow: hidden;
}

.play-icon {
    position: relative;
    z-index: 10;
}

.pulse-circle {
    position: absolute;
    width: 24px;
    height: 24px;
    border: 2px solid black;
    border-radius: 50%;
    animation: pulse 2s ease-out infinite;
    z-index: 1;
}

.pulse-circle:nth-child(2) {
    animation-delay: 1s;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    70% {
        opacity: 0.3;
    }

    100% {
        transform: scale(2);
        opacity: 0;
    }
}

.about-video-play::before {
    content: '';
    height: 50px;
    width: 50px;
    position: absolute;
    background: transparent;
    top: -50px;
    right: 0;
    border-radius: 50px;
    box-shadow: 26px 26px 0 #fff;
}

.about-video-play::after {
    content: '';
    height: 50px;
    width: 50px;
    position: absolute;
    background-color: transparent;
    bottom: 0px;
    left: -50px;
    border-radius: 50px;
    box-shadow: 26px 26px 0 #fff;
}

.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.lightbox.hidden {
    display: none;
}

.close-button {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}

.lightbox-content {
    position: relative;
    max-width: 80%;
    max-height: 80%;
}

.lightbox video {
    width: 100%;
    height: auto;
}

.about-metrics {
    padding: 16px 12px;
    background: linear-gradient(100.54deg, #003366 2.13%, #0f52ba 96.81%);
    border-radius: 26px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 20px;
    gap: 12px;
    flex-wrap: wrap;
}

.metric {
    flex: 1 1 30%;
    text-align: center;
    border-left: 1px solid #f0f2f4;
    padding: 0px;
    /* background-color: #000; */
}

.metric:first-child {
    border-left: none;
}

.number {
    font-family: Urbanist;
    font-size: 2.617rem;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #fff;
}

.metric-description {
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.618;
    text-align: center;
    color: #fff;
    margin-top: 4px;
}

@media screen and (max-width:430px) {
    .about-metrics {
        padding: 24px;
    }

    .metric {
        flex: 1 1 30%;
        text-align: center;
        padding: 10px;
    }

    /* .metric:last-child {
        border-top: 1px solid #f0f2f4;
        border-left: none;
    } */

    .number {
        font-size: 1.2rem;
    }

    .metric-description {
        font-size: 0.6rem;
    }
}

.about-content {
    width: 55%;
    padding: 24px 64px;
    background-color: #f0f2f4;
    border-radius: 26px;
    justify-content: center;
    align-content: center;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.content-header>h2 {
    font-family: Urbanist, sans-serif;
    font-size: 2.617rem;
    font-weight: 600;
    line-height: 1.2;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #000
}

.content-body {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.content-body>p {
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.618;
    letter-spacing: -0.02em;
    text-align: left;
    color: #000;
}

.about-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    gap: 16px;
    padding: 16px 24px;
    border-radius: 80px;
    background: transparent;
    border: 1px solid #000;
    text-decoration: none;
    color: #000;
    position: relative;
    overflow: hidden;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.5;
    letter-spacing: -0.03em;
    text-align: center;
    transition: background 0.5s ease, color 0.5s ease, box-shadow 0.5s ease;
}

.arrow-dissapear,
.arrow-appear {
    transition: opacity 0.5s ease, transform 0.5s ease;
    position: relative;
}

.arrow-dissapear {
    opacity: 1;
    transform: translateX(0);
}

.arrow-appear {
    opacity: 0;
    transform: translateX(20px);
}

.button-text {
    transition: transform 0.5s ease, margin-right 0.5s ease;
}

.about-button:hover {
    background: linear-gradient(100.54deg, #003366 2.13%, #0f52ba 96.81%);
    color: #fff;
    border: 1px solid transparent;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.about-button:hover .arrow-dissapear {
    opacity: 0;
    transform: translateX(-20px);
}

.about-button:hover .arrow-appear {
    opacity: 1;
    transform: translateX(0);
}

.about-button:hover .button-text {
    transform: translateX(-20px);
    /* Move the text left to close the gap */
    margin-right: -10px;
    /* Adjust spacing between text and right arrow */
}

@media screen and (max-width:768px) {
    .about-gretex {
        display: flex;
        flex-direction: column-reverse;
    }

    .about-visual,
    .about-content {
        width: 100%;
    }
}

@media screen and (max-width:430px) {
    .about-content {
        padding: 64px 32px;
        background-color: #f0f2f4;
        border-radius: 26px;
        justify-content: center;
        align-content: center;
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .content-header>h2 {
        font-family: Urbanist, sans-serif;
        font-size: 2.617rem;
        font-weight: 600;
        line-height: 1.2;
        text-align: left;
        text-underline-position: from-font;
        text-decoration-skip-ink: none;
        color: #000
    }

    .content-body>p {
        font-family: Plus Jakarta Sans, sans-serif;
        font-size: 1rem;
        font-weight: 500;
        line-height: 1.618;
        letter-spacing: -0.02em;
        text-align: left;
    }
}

.homepage-gateway {
    max-width: 1440px;
    margin: 0 auto;
    padding: 96px 50px;
    background: #ffffff;
}

.homepage-gateway-container {
    display: flex;
    flex-direction: column;
    gap: 56px;
}

.homepage-gateway-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    text-align: left;
}

.homepage-gateway-header h2 {
    width: 50%;
    margin: 0;
    font-family: Urbanist, sans-serif;
    font-size: 2.617rem;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #0b0b0b;
}

.homepage-gateway-top {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 48px;
    align-items: center;
}

.homepage-gateway-copy {
    display: flex;
    flex-direction: column;
    gap: 18px;
    max-width: 720px;
}

.homepage-gateway-header p {
    width: 50%;
    margin: 0;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.75;
    color: #2d2d2d;
}

.homepage-gateway-link {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    text-decoration: none;
    border-bottom: 1px solid #0b0b0b;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #0b0b0b;
    transition: opacity 200ms ease, transform 200ms ease;
}

.homepage-gateway-link:hover {
    opacity: 0.85;
    transform: translateY(-1px);
}

.homepage-gateway-link-icon {
    display: inline-block;
    transform: translateY(-1px);
}

.homepage-gateway-cards {
    padding: 24px 0;
}

.homepage-gateway-card {
    display: flex;
    flex-direction: row;
    gap: 32px;
    align-items: stretch;
    text-decoration: none;
    color: inherit;
    background: #ffffff;
    overflow: hidden;
    transition: transform 220ms ease, box-shadow 220ms ease;
}

.homepage-gateway-card-media {
    width: 45%;
    overflow: hidden;
    background: #f0f2f4;
    position: relative;
}

.homepage-gateway-card-media-overlay {
    position: absolute;
    content: '';
    background: linear-gradient(rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.19));
    height: 100%;
    width: 100%;
    z-index: 9999;
}

.homepage-gateway-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 350ms ease;
}

.homepage-gateway-card-body {
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.homepage-gateway-card-body h3 {
    margin: 0;
    font-family: Urbanist, sans-serif;
    font-size: 1.618rem;
    font-weight: 600;
    line-height: 1.2;
    color: #000;
}

.homepage-gateway-card-body p {
    margin: 0;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 0.98rem;
    font-weight: 500;
    line-height: 1.6;
    color: #4b5563;
}

.homepage-gateway-card-cta {
    margin-top: 10px;
    width: fit-content;
    text-decoration: none;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #0b0b0b;
    border-bottom: 1px solid #0b0b0b;
    padding-bottom: 4px;
}

.homepage-gateway-pagination {
    margin-top: 16px;
    text-align: center;
}

@media screen and (min-width: 1024px) {
    .homepage-gateway-swiper .swiper-wrapper {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 96px;
    }

    .homepage-gateway-card {
        flex-direction: column;
    }

    .homepage-gateway-card-media {
        width: 100%;
        min-height: 250px;
        aspect-ratio: 9/11;
    }

    .homepage-gateway-card-body {
        padding: 24px 0;
    }
}

@media screen and (max-width: 768px) {
    .homepage-gateway {
        padding: 72px 40px;
    }

    .homepage-gateway-header h2 {
        width: 100%;
        font-size: 2.617rem;
    }

    .homepage-gateway-header p {
        width: 100%;
    }

    .homepage-gateway-card {
        max-width: 680px;
        margin: 0 auto;
        flex-direction: row;
        align-items: center;
        gap: 32px;
    }

    .homepage-gateway-card-media {
        width: 60%;
        max-width: 60%;
        aspect-ratio: 4/5;
    }

    .homepage-gateway-card-body {
        width: 40%;
        padding-top: 0;
    }

    .homepage-gateway-card-media img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }
}

@media screen and (max-width: 430px) {
    .homepage-gateway {
        padding: 64px 20px;
    }

    .homepage-gateway-header h2 {
        width: 80%;
    }

    .homepage-gateway-card {
        flex-direction: column;
        align-items: flex-start;
        max-width: 100%;
    }

    .homepage-gateway-card-media,
    .homepage-gateway-card-body {
        width: 100%;
    }

    .homepage-gateway-card-media {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        background: #f0f2f4;
        position: relative;
    }

    .homepage-gateway-card-media-overlay {
        position: absolute;
        content: '';
        background: linear-gradient(rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.19));
        height: 100%;
        width: 100%;
        z-index: 9999;
    }

    .homepage-gateway-card-media img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 350ms ease;
    }

    .homepage-gateway-card-body {
        padding: 0;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }


    .homepage-gateway-card-body {
        padding-top: 16px;
    }
}

.services-main {
    background: #f0f2f4;
    margin-top: 50px;
    padding: 50px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    overflow: hidden;
}

.services-main-header {
    display: flex;
    flex-direction: column;
    gap: 2px;
    /* gap: 24px; */
    padding: 32px 0;
    border-bottom: 1px solid #e6e6e6;
}

.services-main-header>span {
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    line-height: 1.618;
    text-align: left;
    text-transform: uppercase;
}

.services-main-header>h2 {
    width: 50%;
    font-family: Urbanist, sans-serif;
    font-size: 2.617rem;
    font-weight: 600;
    line-height: 1.2;
    text-align: left;
    color: #000;
}

.services-main-content {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.services-swiper {
    position: relative;
}

.services-container {
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.services-container-image>img {
    width: 100%;
    margin: 0 auto;
}

.services-container-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.services-container-content>h3 {
    font-family: Urbanist, sans-serif;
    font-size: 1.618rem;
    font-weight: 600;
    line-height: 1.2;
    text-align: left;
}

.services-container-content>p {
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5;
    text-align: left;
}

.services-custom-buttons {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 0 24px;
    z-index: 2;
    pointer-events: none;
}

.services-custom-buttons > div {
    pointer-events: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: rgba(255, 255, 255, 0.94);
    color: #111111;
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.14);
    backdrop-filter: blur(10px);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.services-custom-buttons > div:hover {
    transform: translateY(-2px);
    background: #ffffff;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
}

.services-custom-buttons > div:focus-visible {
    outline: 2px solid #111111;
    outline-offset: 3px;
}

.services-custom-buttons > div svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
}

.services-custom-buttons .swiper-button-disabled {
    opacity: 0.45;
    cursor: default;
    box-shadow: none;
}

.services-custom-buttons .swiper-button-disabled:hover {
    transform: none;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: none;
}


@media screen and (max-width:768px) {
    .services-main-header>h2 {
        width: 100%;
    }

    .services-custom-buttons {
        padding: 0 12px;
    }

    .services-custom-buttons > div {
        width: 48px;
        height: 48px;
    }
}

@media screen and (max-width:430px) {
    .services-main {
        padding: 64px 20px;
    }

    .services-main-header>h2 {
        font-size: 2.617rem;
    }
}

.block-quote-container {
    padding: 128px 128px 50px 128px;
    max-width: 1440px;
    margin: 0 auto;
}

.block-quote-row {
    display: flex;
    align-items: center;
}

.block-quote-col {
    width: 50%;
}

.block-quote-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.block-quote-col>h2 {
    font-family: Urbanist, sans-serif;
    font-size: 2.617rem;
    font-weight: 500;
    line-height: 1.2;
}

.block-quote-author-name {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.block-quote-author-name>h4 {
    font-family: Urbanist, sans-serif;
    font-size: 1.618rem;
    font-weight: 700;
    line-height: 1.2;
    color: #003366;
}

.block-quote-author-name>span {
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.618;
    color: #000;
}

/* Core usps */

.core-usps {
    padding: 128px 50px;
    display: flex;
    flex-direction: column;
    gap: 64px;
    background-image: linear-gradient(to top, white, #f0f2f4 70%, white 70%);
}

.usp-image-container>h2 {
    width: 80%;
    margin: 0 auto;
    font-family: Urbanist, sans-serif;
    font-size: 2.617rem;
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
    padding: 0px 12px 64px 12px;

}

.usp-image-container>img {
    width: 100%;
    object-fit: cover;
    margin: 0 auto;
    border-radius: 26px;
}

.usp-header {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.usp-header>span {
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    line-height: 1.618;
    text-align: left;
    text-transform: uppercase;
}

.usp-header>h2 {
    width: 50%;
    font-family: Urbanist, sans-serif;
    font-size: 2.617rem;
    font-weight: 600;
    line-height: 1.2;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #000;
}

.usp-main-row {
    display: flex;
    justify-content: space-between;
    gap: 32px;
}

.usp-col {
    padding: 64px 32px;
    background-color: #fff;
    border-radius: 26px;
    border: 1px solid #f0f2f4;
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.15);
}

.usp-icon-box {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.usp-icon-box>svg {
    padding: 16px;
    background-color: #f0f2f4;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.usp-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.usp-content>h3 {
    font-family: Urbanist, sans-serif;
    font-size: 1.618rem;
    font-weight: 600;
    line-height: 1.2;
    color: #000;
}

.usp-content>p {
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5;
    color: #000;
}

@media screen and (max-width:768px) {
    .core-usps {
        padding: 128px 40px;
        display: flex;
        flex-direction: column;
        gap: 64px;
        background-image: linear-gradient(to top, white, #f0f2f4 80%, white 80%);
    }

    .usp-header>h2 {
        width: 100%;
    }

    .usp-main-row {
        display: flex;
        justify-content: space-between;
        gap: 32px;
        flex-wrap: wrap;
    }

    .usp-col {
        width: 45%;
        flex: 1;
        padding: 64px 32px;
        background-color: #fff;
        border-radius: 26px;
        border: 1px solid #f0f2f4;
    }

    .usp-icon-box {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .usp-content {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

}

@media screen and (max-width:430px) {
    .core-usps {
        padding: 128px 20px;
        display: flex;
        flex-direction: column;
        gap: 64px;
        background-image: linear-gradient(to top, white, #f0f2f4 90%, white 90%);
    }

    .usp-header>h2 {
        width: 100%;
        font-size: 2.617rem;
    }

    .usp-main-row {
        display: flex;
        justify-content: space-between;
        gap: 32px;
        flex-wrap: wrap;
    }

    .usp-col {
        width: 100%;
        flex: 1;
        padding: 64px 32px;
        background-color: #fff;
        border-radius: 26px;
        border: 1px solid #f0f2f4;
    }

    .usp-icon-box {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .usp-content {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }
}

/* Testimonial section */

.testimonial-container-main {
    position: relative;
    height: 100vh;
    padding: 50px;
    overflow: hidden;
    box-shadow: inset 0 0 0 2000px rgba(0, 0, 0, 0.9);
}

.testimonial-container>span {
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.618;
    color: #fff;
    background-color: #212121;
    padding: 8px 16px;
    border-radius: 80px;
}

/* Video styling */
.testimonial-video {
    position: absolute;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    z-index: -1;
    /* keeps video behind content */
}

.testimonial-grid {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.testimonial-container {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
    color: white;
    /* Ensure text is visible on video */
}

.testimonial-container>h3 {
    width: 60%;
    font-family: Urbanist, sans-serif;
    font-size: 2.617rem;
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
}

.testimonial-container>p {
    width: 60%;
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5;
    text-align: center;
}

.testimonial-cta {
    padding: 10px 0;
}

.cta-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: fit-content;
    gap: 16px;
    padding: 8px 12px 8px 24px;
    border-radius: 80px;
    background-color: #fff;
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.618;
    text-decoration: none;
    color: #000;
}

.inline-svg-icon {
    width: 40px;
    height: 40px;
    display: inline-block;
    vertical-align: middle;
    background-color: #212121;
    border-radius: 80px;
    padding: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.inline-svg-icon>svg {
    width: 24px;
    height: 24px;
    transform: scale(2.5);
    transform-origin: center;
}


@media screen and (max-width:768px) {
    .testimonial-container>h3 {
        width: 80%;
        font-size: 2.617rem;
    }

    .testimonial-container>p {
        width: 60%;
    }
}

@media screen and (max-width:430px) {
    .testimonial-container>h3 {
        width: 100%;
    }

    .testimonial-container>p {
        width: 100%;
    }
}

/* Insights Section */
.insights-section {
    padding: 96px 0;
    max-width: 1440px;
    margin: 0 auto;
}

.insights-section-header {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 64px;
}

.insights-section-label {
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #666;
}

.insights-section-header h2 {
    width: 60%;
    font-family: Urbanist, sans-serif;
    font-size: 2.617rem;
    font-weight: 600;
    line-height: 1.2;
    color: #212121;
    margin: 0;
}

.insights-explore-btn {
    align-self: flex-start;
    padding: 12px 24px;
    border: 1px solid #212121;
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    color: #212121;
    background-color: #ffffff;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.insights-explore-btn:hover {
    background-color: #212121;
    color: #ffffff;
}

.insights-content-wrapper {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.insights-main-col {
    width: 55%;
}

.insights-side-col {
    width: 45%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.insights-featured-post {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 24px;
}

.insights-featured-image {
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
}

.insights-featured-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.insights-featured-image:hover img {
    transform: scale(1.05);
}

.insights-featured-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.insights-category {
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    color: #444;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.insights-featured-content h3 {
    font-family: Urbanist, sans-serif;
    font-size: 1.618rem;
    font-weight: 500;
    line-height: 1.3;
    color: #212121;
    margin: 0;
}

.insights-featured-content h3 a {
    color: #212121;
    text-decoration: none;
    transition: color 0.3s ease;
}

.insights-featured-content h3 a:hover {
    color: #2B46BA;
}

.insights-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: 0.875rem;
    color: #666;
}

.insights-meta svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.insights-read-time {
    color: #666;
}

.insights-separator {
    color: #666;
    margin: 0 4px;
}

.insights-date {
    color: #666;
}

.insights-side-post {
    display: flex;
    align-items: center;
    flex: 1;
    gap: 16px;
}

.insights-side-image {
    width: 30%;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 8px;
    position: relative;
}

.insights-side-image img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.insights-side-image:hover img {
    transform: scale(1.05);
}

.insights-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.insights-side-image:hover .insights-video-overlay {
    opacity: 1;
}

.insights-video-overlay svg {
    width: 32px;
    height: 32px;
}

.insights-side-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.insights-side-content h3 {
    font-family: Urbanist, sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.3;
    color: #212121;
    margin: 0;
}

.insights-side-content h3 a {
    color: #212121;
    text-decoration: none;
    transition: color 0.3s ease;
}

.insights-side-content h3 a:hover {
    color: #2B46BA;
}

.insights-side-content .insights-meta {
    font-size: 0.8rem;
}

@media screen and (max-width: 1024px) {
    .insights-content-wrapper {
        flex-direction: column;
        gap: 48px;
    }

    .insights-main-col,
    .insights-side-col {
        width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .insights-section {
        padding: 64px 0;
    }

    .insights-section-header {
        margin-bottom: 48px;
    }

    .insights-section-header h2 {
        width: 90%;
    }

    .insights-side-content h3 {
        font-size: 1.2rem;
    }
}

@media screen and (max-width: 430px) {
    .insights-section {
        padding: 48px 0;
    }

    .insights-section-header {
        margin-bottom: 32px;
    }

    .insights-section-header h2 {
        width: 100%;
    }

    .insights-side-col {
        gap: 48px
    }

    .insights-side-post {
        gap: 24px;
    }

    .insights-category,
    .insights-read-time,
    .insights-separator,
    .insights-date {
        font-size: 0.75rem;
    }

    .insights-side-content h3 {
        font-size: 1rem;
        line-height: 1.4;
    }

    .insights-meta {
        gap: 4px;
    }
}


/* Press section */

.press-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 64px 50px;
}

.press-container-header {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.press-container-header>h2 {
    font-family: Urbanist, sans-serif;
    font-size: 2.617rem;
    font-weight: 600;
    line-height: 1.2;
    text-align: left;
}

.press-container-header>hr {
    height: 1px;
    background-color: #e6e6e6;
    border: none;
    margin: 0;
}

.press-container-body {
    padding: 64px 0;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.press-row {
    padding: 12px 0;
    border-bottom: 0.5px solid #212121;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.press-col {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.press-meta>span {
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    line-height: 1.618;
    text-align: left;
    text-transform: uppercase;
    color: #212121;
}

.press-meta span:last-child {
    font-weight: 400;
}

.press-col>h3 {
    font-family: Urbanist, sans-serif;
    font-size: 1.618rem;
    font-weight: 500;
    line-height: 1.2;
    text-align: left;
}


.press-col-cta>a {
    padding: 12px;
    text-decoration: none;
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.618;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #000;
}

@media screen and (max-width:1024px) {
    .press-container {
        padding: 64px 40px;
    }
}

@media screen and (max-width:768px) {
    .press-container-header>h2 {
        font-size: 2.617rem;
    }

    .press-meta>span {
        font-size: 0.8rem;
    }

    .press-col>h3 {
        font-size: 1.2rem;
    }

    .press-col-cta a {
        font-size: 1rem;
    }

    .press-col-cta a>svg {
        height: 14px !important;
        width: 14px !important;
    }
}

@media screen and (max-width:430px) {
    .press-container {
        padding: 64px 20px;
    }

    .press-col-cta>a>span {
        display: none;
    }

    .press-col>h3 {
        font-weight: 500;
        line-height: 1.618;
    }
}
