﻿:root {
    --primary-white: #ffffff;
    --off-white: #F5F5F5;
    --primary-darker-blue: #071E3D;
    --primary-dark-blue: #1F4287;
    --primary-terquois: #278EA5;
    --primary-terquois-hover: rgba(39, 142, 165, 0.40);
    --primary-green-neon: #21E6C1;
    --primary-green-neon-hover: rgba(33, 230, 193, 0.40);
    --padding-s: 16px;
    --padding-m: 20px;
    --padding-m: 20px;
    --padding-l: 40px;
    --radius-small: 8px;
    --radius-medium: 20px;
    --radius-large: 40px;
    --radius-full: 1000px;
    --breakpoint-md: 768px;
    --breakpoint-sm: 400px;
    --font-primary: 'Sora', sans-serif;
    --font-secondary: 'Inter', sans-serif;
}

body {
    background: linear-gradient(154deg, #21E6C1 -4.84%, #090030 19.53%, #0C3C78 42.13%, #090030 55.52%);
    display: flex;
    flex-direction: column;
    align-items: center;
    scroll-behavior: smooth;
    cursor: default;
    margin: 0;
    overflow-x: hidden;
}

.error-message {
    color: var(--primary-white);
    font-family: var(--font-secondary);
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 0px;
}


h1 {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    color: var(--primary-white);
    margin: 0px;
}

h2, h2 span, h2 p {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    color: var(--primary-white);
    margin: 0px;
}

h3 {
    font-family: var(--font-secondary);
    font-size: 1.75rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    color: var(--primary-white);
    margin: 0px;
}

p, label {
    font-family: var(--font-secondary);
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    color: var(--primary-white);
    margin: 0px;
}

button {
    cursor: pointer;
}

.small-text {
    color: var(--off-white);
    text-align: center;
    font-family: var(--font-secondary);
    font-size: 1rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin: 0px;
}

.client-quote-text {
    padding: 80px 0px 140px 0px
}

.quote-text p, .quote-text p span {
    text-align: center;
    font-family: var(--font-secondary);
    font-size: 2rem;
    font-style: italic;
    font-weight: 400;
    line-height: normal;
}

a {
    font-family: var(--font-secondary);
    font-size: 1rem;
    font-style: normal;
    font-weight: 500;
    line-height: 1rem;
    color: var(--primary-white);
    cursor: pointer;
    text-decoration: none;
    margin: 0px;
}

.cyan-heading {
    color: #04879C;
}

.blue-heading {
    color: #0C3C78;
}

.green-neon-heading {
    color: #21E6C1
}

section {
    margin-top: 80px;
    max-width: 1280px;
    width: calc(100% - 120px);
    display: flex;
    flex-direction: column;
    color: var(--primary-darker-blue)
}

input, textarea, .dropdown {
    background: none;
    border: 1px solid var(--primary-green-neon);
    border-radius: 8px;
    transition: 0.3s;
    color: var(--primary-white);
    padding: 20px 16px;
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}

    input::placeholder, textarea::placeholder, .dropdown::placeholder {
        color: var(--primary-white);
        font-family: var(--font-secondary);
    }

    input[type="date"] {
        color: white; /* Changes text color */
        font-family: var(--font-secondary);
        color-scheme: dark;
    }

textarea {
    font-family: var(--font-secondary);
    height: 120px;
}

    input:focus, textarea:focus {
        border: 1px solid var(--primary-green-neon-hover);
        outline: none;
    }

.btn-primary, .btn-secondary {
    padding: 1.25rem 3.25rem;
    border-radius: var(--radius-small);
    max-width: 260px;
    text-align: center;
    transition: 0.3s;
    text-transform: capitalize;
}

.btn-primary {
    color: var(--primary-dark-blue);
    background: var(--primary-green-neon);
    text-transform: capitalize;
}

    .btn-primary:hover {
        background: #86D5C9;
    }

.btn-secondary {
    color: #000;
    background: var(--primary-terquois);
    text-transform: capitalize;
}

    .btn-secondary:hover {
        background: #89B2BE;
    }

/* NAV SECTION */
nav {
    width: calc(100% - 40px);
    max-width: 1280px;
    display: flex;
    flex-direction: column;
    z-index: 1100;
    margin: 25px 52px;
}

.nav-block {
    max-width: 100%;
    display: flex;
    gap: 24px;
    justify-content: space-between;
    background-color: var(--primary-black);
    border-radius: 1000px;
    align-items: center;
}

.nav-logo-container {
    width: 42px;
    height: 42px;
    object-fit: cover;
}

    .nav-logo-container img {
        width: 42px;
        height: 42px;
        object-fit: cover;
    }

.burger-menu {
    display: none;
    cursor: pointer;
}

    .burger-menu img {
        width: 32px;
        height: 32px;
    }

.nav-menu-container {
    display: flex;
    flex-direction: row;
}

.nav-menu-item {
    display: flex;
    gap: var(--padding-m);
    align-items: center;
    flex-wrap: wrap;
}

    .nav-menu-item a {
        font-family: var(--font-primary);
        font-size: 1.25rem;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
    }
/* HOME PAGE */
/* HERO SECTION */
.hero-section {
    margin: var(--padding-l);
    margin-bottom: 0;
    width: 100%;
    max-width: 100VW;
}

.hero-section-no-padding {
    margin-bottom: 0;
    width: 100%;
    max-width: 100VW;
}

.hero-section-alt {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin: 0px auto;
    gap: var(--padding-l);
}

.hero-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    max-width: none;
}

.CTA-hero {
    height: 525PX;
}

.hero-content-container {
    display: flex;
    flex-direction: column;
    gap: VAR(--padding-m);
    max-width: 660px;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-copy {
    font-family: var(--font-secondary);
    color: var(--primary-white);
    text-align: center;
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

/* WHY CHOOSE ZOKYO SECTION */
.banner-image-height {
    height: auto;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.section-inner-content-column {
    max-width: 1280px;
    width: calc(100% - 120px);
    display: flex;
    flex-direction: column;
    margin: 0px auto;
    padding: 40px 0px;
}

.section-inner-content-row {
    max-width: 1280px;
    width: calc(100% - 120px);
    display: flex;
    flex-direction: row;
    margin: 0px auto;
    gap: var(--padding-l);
}

.section-inner-content-row-no-margin {
    max-width: 1280px;
    display: flex;
    flex-direction: row;
    gap: var(--padding-l);
}

.title-content-block {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: var(--padding-m);
    max-width: 100%;
}

.title-content-block-additional-padding {
    max-width: 1280px;
    width: calc(100% - 120px);
    margin: auto;
    align-items: center;
    text-align: center;
    margin-bottom: var(--padding-m);
}

.centered-block {
    text-align: center;
    align-items: center;
}

.why-choose-zokyo-container {
    max-width: fit-content;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 100px;
    margin-top: var(--padding-l);
    justify-items: center;
    align-self: center;
}

.why-choose-zokyo-card {
    display: flex;
    flex-direction: column;
    gap: var(--padding-s);
    align-items: center;
    text-align: center;
    max-width: 130px;
    padding: 20px 35px
}

.why-choose-zokyo-cards-image-container {
    max-height: 80px;
    max-width: 80px;
}

.row-image {
    max-width: 605px;
    width: 100%;
}

    .row-image img {
        height: 100%;
        max-width: 605px;
        width: 100%;
        object-fit: cover;
        border-radius: 8px;
    }

.map-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 100%;
    gap: var(--padding-m);
}

    .map-container img {
        max-width: 620px;
        width: 100%;
        object-fit: cover;
    }

.three-hexagon-container {
    max-width: fit-content;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--padding-l);
    margin-top: var(--padding-l);
    justify-items: center;
    align-self: center;
}

.hexagon-container {
    max-height: 200px;
    max-width: 100%;
    justify-items: center;
}

.hexagon-item {
    display: flex;
    gap: 10px;
    height: 200px;
    width: 226px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    color: white;
}

    .hexagon-item p {
        max-width: 106px;
        text-align: center;
        font-style: normal;
        line-height: normal;
    }

    .hexagon-item .hexagon-number-title {
        font-family: var(--font-primary);
        font-size: 1.96994rem;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
    }

    .hexagon-item .hexagon-title {
        font-size: 1.03519rem;
        font-weight: 700;
    }

    .hexagon-item .hexagon-body {
        font-size: 0.625rem;
        font-weight: 400;
        line-height: normal;
    }

.margin-zero {
    margin: 0px;
}

.margin-extra {
    margin-top: 40px;
}

/* INDUSTRY PAGE */
/* OUR VALUES SECTION */

.our-values-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--padding-m);
}

    .our-values-container .hexagon-container .hexagon-item {
        width: 100%;
        min-height: 200px;
        height: 100%;
        max-width: 226px;
    }

.specialise-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--padding-l);
    margin: var(--padding-l) 0px;
    justify-content: center;
}

.specialise-card {
    position: relative;
    align-items: center;
    justify-items: center;
}

.specialise-card-title {
    position: absolute;
    text-align: center;
    padding: 20px 0px;
    background: rgba(39, 142, 165, 0.80);
    top: 0;
    width: 100%;
    border-radius: 20px 20px 0px 0px;
}

.specialise-card-image {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
}

    .specialise-card-image img {
        width: inherit;
        height: 100%;
    }
/* SERVICES PAGE */

.hero-container img {
    width: 100%;
}

.service-offering-title {
    background: linear-gradient(277deg, rgba(252, 252, 252, 0.80) 43.8%, rgba(33, 230, 193, 0.80) 75.52%);
    color: transparent;
    background-clip: text;
    max-width: 100%;
    width: 250px;
    margin-bottom: 20px;
    justify-self: center;
}

.our-service-offering-cards-container {
    display: flex;
    flex-direction: row;
    transition: transform 0.3s ease-in-out;
    margin: 0 auto;
    gap: 60px;
    justify-content: center;
    width: calc(100% - 120px);
}

.service-offering-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 319px;
    max-width: 360px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.service-offering-image-block {
    max-width: 360px;
    height: auto;
    object-fit: cover;
    padding: 15px;
    justify-self: center;
    align-self: center;
}

    .service-offering-image-block img {
        width: 100%;
    }

.our-service-offering-container .centered-block:nth-child(1) {
    margin-right: -100px;
}

.our-service-offering-container .centered-block:nth-child(2) .service-offering-image-container {
    height: 380px;
    width: 429px;
}

    .our-service-offering-container .centered-block:nth-child(2) .service-offering-image-container img {
        height: 351px;
        width: 388px;
    }

.our-service-offering-container .centered-block:nth-child(3) {
    margin-left: -100px;
    z-index: -1
}

.btn-container {
    height: 56px;
    display: flex;
    margin-top: var(--padding-m);
    justify-content: center;
}

.infinite-slider-container {
    max-width: 1280px;
    display: flex;
    flex-direction: column;
}

.client-logo-block {
    margin-top: 20px;
    height: 107px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(357deg, rgba(252, 252, 252, 0.08) 49.84%, rgba(150, 150, 150, 0.02) 97.43%);
    position: relative;
    width: 100%;
}

.client-track {
    display: flex;
    gap: var(--padding-l);
    flex-wrap: nowrap;
    align-items: center;
    white-space: nowrap;
    width: max-content;
    position: absolute;
    left: 0;
    will-change: transform;
}

.client-logo {
    display: flex;
    justify-content: center;
    padding: 0 20px;
}

    .client-logo img {
        max-height: 48px;
        width: auto;
    }

.full-width-image-container {
    height: 500px;
    margin-bottom: 80px;
}

    .full-width-image-container img {
        height: 500px;
    }

.teal-block-block {
    position: relative;
    height: 134px;
    background: rgba(33, 230, 193, 0.40);
}

.client-quote-block {
    border-radius: 8px;
    overflow: hidden;
}

.client-quote-image {
    position: absolute;
    left: 50%;
    top: 70%;
    transform: translate(-50%, -50%);
    display: flex;
    width: 166px;
    height: 150px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

    .client-quote-image img {
        max-width: 100px;
        width: 100%;
    }

.client-quote-details {
    display: flex;
    flex-direction: column;
    gap: var(--padding-m);
    background: linear-gradient(180deg, #587B9D 0%, #1F2B37 100%);
    padding: 60px var(--padding-m);
    text-align: center;
    height: 100%;
}

.form-toggle-container {
    display: flex;
    flex-direction: column;
    gap: var(--padding-m);
}

.form-button-block {
    background: #C4C4C4;
    height: 49px;
    border-radius: 8px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

    .form-button-block .form-swap {
        background: none;
        border: none;
        width: 100%;
        border-radius: 8px;
        color: #363636;
        text-align: center;
        font-size: 1.25rem;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
    }

    .form-button-block .active {
        background: var(--primary-white);
    }

.contact-form-section {
    background: rgba(88, 123, 157, 0.20);
    margin-top: 80px;
    padding: 40px 0px;
    max-width: 100vw;
    width: 100%;
    display: flex;
    flex-direction: column;
    color: var(--primary-darker-blue);
}

.contact-form-container, .form-group {
    display: flex;
    flex-direction: column;
    gap: var(--padding-m);
    margin-bottom: 20px;
}

#resumes {
    width: 250px;
}

.file-upload {
    background: none;
    border: 1px solid var(--primary-green-neon);
    border-radius: 8px;
    padding: 42px;
}

.upload-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    align-items: center;
    color: var(--off-white);
}

    .upload-content button {
        padding: 10px 20px;
        border-radius: 10px;
        max-width: 140px;
    }

.upload-icon {
    margin-bottom: 30px;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-btn {
    font-family: var(--font-secondary);
    cursor: pointer;
    text-align: left;
    display: flex;
    color: white;
    background: none;
    border: none;
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    justify-content: space-between;
    width: 100%;
    max-height: 52px;
}

.dropdown-content {
    display: none;
    position: absolute;
    width: 100%;
    background: var(--primary-dark-blue);
    border: 1px solid var(--primary-green-neon);
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 10;
    border-radius: 8px;
    left: 0;
    top: 54px;
    overflow: hidden;
    padding-left: 0px;
}

    .dropdown-content .dropdown-item {
        font-family: var(--font-secondary);
        padding: 10px;
        cursor: pointer;
        transition: 0.3s;
        list-style-type: none;
    }

        .dropdown-content .dropdown-item:hover {
            background: var(--primary-darker-blue);
        }

    .dropdown-content.show {
        display: block;
    }

.form-control-file {
    border: none;
    margin-top: 20px;
    padding: 0px;
}

.row-image-full-height {
    max-width: 605px;
    width: 100%;
}

    .row-image-full-height img {
        height: 100%;
        max-width: 605px;
        width: 100%;
        object-fit: cover;
        border-radius: 8px;
    }

.contact-form-btn {
    margin-top: 24px;
    max-width: none;
    width: 100%;
    cursor: pointer;
}

.cta-overlay-container {
    position: relative;
}

.cta-overlay-block {
    height: 100%;
    max-width: 350px;
    width: 100%;
    position: absolute;
    top: 0;
    right: 0;
}

footer {
    max-width: 1280px;
    width: calc(100% - 120px);
    justify-content: space-between;
    margin-top: 80px;
    margin-bottom: var(--padding-l);
    display: flex;
    flex-direction: row;
    gap: var(--padding-l);
}

.footer-links-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.footer-nav-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

    .footer-nav-container .footer-link-item {
        width: 188px;
        padding: 8px 0px;
    }

.social-icon-container {
    display: flex;
    flex-direction: row;
    gap: var(--padding-l);
}

.hexagon-floating-position {
    position: relative;
}

.floating-hexagon-contact-us {
    position: absolute;
    top: -155px;
    right: -238px;
    z-index: -1;
}

.floating-hexagon-case-studies-first {
    position: absolute;
    top: -243px;
    right: -29px;
    z-index: -1;
    height: 560px;
}

.floating-hexagon-case-studies-second {
    position: absolute;
    top: 304px;
    left: -327px;
    z-index: -1;
    height: 306px;
}

.client-testimonial-carousel-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    margin-top: 30px;
}

    .client-testimonial-carousel-container .carousel-dots {
        margin: 40px auto;
    }

.client-testimnonials-carousel-wrapper {
    display: flex;
    flex-direction: row;
    transition: transform 0.3s ease-in-out;
    margin: 0 auto;
    gap: 30px;
    width: 100%;
}

.client-testimnonials-carousel-item {
    flex: 0 0 calc((100% / 3) - 20px);
    width: 33.33%;
    box-sizing: border-box;
    border-radius: 10px;
    overflow: hidden;
}

.carousel-controls {
    display: none;
}

.max-container-width {
    max-width: 605px;
    width: 100%;
}

.company-details-section {
    width: 100%;
    display: flex;
    flex-direction: row;
    margin: 0px auto;
    gap: var(--padding-l);
}

    .company-details-section .title-content-block {
        max-width: 240px;
    }

    .company-details-section .row-image, .company-details-section .row-image img {
        width: 100%;
        max-width: none;
    }

.content-swap-mobile {
    display: none;
}

/* Dots */
.carousel-dots {
    justify-content: center;
    margin-top: 15px;
}

.carousel-dot {
    padding: 8px;
    background: #ccc;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: background 0.3s ease-in-out;
    border: none;
}

    .carousel-dot.active {
        background: var(--primary-green-neon);
    }

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

    .contact-details a {
        font-size: 1.25rem;
        text-decoration: underline;
    }


.caseStudyMobile {
    display: none;
}

.file-info {
    margin-top: 8px;
    padding: 8px;
    background: #f8f9fa;
    border-radius: 5px;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    max-width: 300px;
    width: 100%;
}

#file-name {
    color: var(--primary-darker-blue);
    text-align: center;
    font-family: var(--font-secondary);
    font-size: 0.99138rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-align: left;
}

.remove-file {
    background: var(--primary-green-neon);
    color: white;
    border: none;
    cursor: pointer;
    padding: 2px 5px;
    border-radius: 50%;
    font-size: 16px;
    line-height: 16px;
}

form {
    width: 100%;
}

.success-container {
    border: 1px solid var(--primary-white);
    background: var(--primary-dark-blue);
    border-radius: 8px;
    width: 100%;
}

.success-block {
    padding: 32px;
    display: flex;
    text-align: center;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
}

.loading-spinner {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
    margin-bottom: 20px;
}

.spinner-border {
    width: 3rem;
    height: 3rem;
    color: #32fe00;
    border-width: 0.25em;
    animation: spinner-border 0.75s linear infinite;
}

@keyframes spinner-border {
    to {
        transform: rotate(360deg);
    }
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.form-error-message {
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 4px;
}


@media (max-width: 1024px) {
    nav {
        max-width: 100%;
        width: 100%;
        margin: 0px;
    }

    .nav-container {
        margin: 0px;
        width: 100%;
        height: 100%;
    }

    .nav-block {
        display: flex;
        flex-direction: column;
        border-radius: 0px;
        gap: 27px;
        padding: 25px;
        background-color: transparent;
        justify-content: normal;
        align-items: inherit;
    }

    .bg-active {
        background: linear-gradient(154deg, #21E6C1 -4.84%, #090030 19.53%, #0C3C78 42.13%, #090030 55.52%);
        height: 100vh;
        position: fixed;
        max-width: 1024px;
        width: calc(100% - 50px);
    }

    .nav-controller {
        display: flex;
        flex-direction: row-reverse;
        justify-content: space-between;
        width: 100%;
    }

    .nav-logo-container {
        height: 54px;
        width: 54px;
    }

    .burger-menu {
        display: block;
        padding: var(--padding-s);
        background-color: var(--primary-teal);
        border-radius: var(--radius-full);
        max-width: 32px;
        max-height: 32px;
    }

    .burger-visible {
        display: block;
    }

    .burger-hidden {
        display: none;
    }

    .nav-menu-container {
        display: none;
    }

    .nav-menu-active {
        height: 81vh;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .nav-menu-item {
        flex-direction: column;
        z-index: 1000;
        width: 100%;
        align-items: flex-start;
        gap: var(--padding-s);
    }

        .nav-menu-item a {
            font-size: 32px;
            line-height: 41.6px;
            border-bottom: 1px solid var(--primary-grey);
            padding-bottom: var(--padding-s);
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

    .section-inner-content-column {
        width: calc(100% - 80px);
    }

    .title-content-block-additional-padding {
        width: calc(100% - 80px);
    }

    .why-choose-zokyo-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .our-values-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .specialise-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .floating-hexagon-contact-us {
        top: -329px;
        right: -432px;
    }

    .floating-hexagon-case-studies-first {
        right: -387px;
    }

    .slider-wrapper {
        position: relative;
        overflow: hidden;
        width: 100%;
        margin-top: 20px;
    }

    .our-service-offering-container {
        display: flex;
        width: 100%;
        flex-direction: row;
        margin: 0 auto;
        transition: transform 0.5s ease-in-out;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

        .our-service-offering-container .centered-block .service-offering-image-container {
            height: 380px;
            width: 429px;
        }

            .our-service-offering-container .centered-block .service-offering-image-container img {
                height: 351px;
                width: 388px;
            }

        .our-service-offering-container .centered-block:nth-child(1), .our-service-offering-container .centered-block:nth-child(3) {
            margin: 0px;
        }

        /* Each slide */
        .our-service-offering-container .title-content-block {
            flex: 0 0 auto;
            text-align: center;
            scroll-snap-align: center;
            width: 100%;
            margin: 0px;
        }

    /* Image styling */
    .service-offering-image-container {
        display: flex;
        width: 100%;
        transition: transform 0.5s ease-in-out;
        scroll-snap-type: x mandatory;
        justify-self: center;
    }

    .carousel-controls {
        position: absolute;
        top: 50%;
        width: 100%;
        justify-content: space-between;
        transform: translateY(-50%);
    }

    .carousel-btn {
        background: rgba(0, 0, 0, 0.5);
        color: white;
        padding: 10px;
        cursor: pointer;
    }


    .client-testimnonials-carousel-wrapper {
        gap: 0px;
    }

    .client-testimnonials-carousel-item {
        flex: 0 0 calc((100% / 2) - 20px);
        width: 50%;
    }

    .client-testimnonials-carousel-wrapper .client-testimnonials-carousel-item:nth-child(odd) {
        margin-right: 40px;
    }

    .our-service-offering-cards-container {
        justify-content: normal;
        gap: 0px;
        width: 100%;
    }

        .our-service-offering-cards-container .client-testimnonials-carousel-item {
            flex: 0 0 100%;
        }

    .three-hexagon-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 762px) {

    .hero-section-alt {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        margin: 0px auto;
        gap: var(--padding-l);
        text-align: center;
    }

    section {
        width: calc(100% - 40px);
    }

    .hero-content-container {
        padding: 0px var(--padding-m);
    }

    .section-inner-content-column {
        width: calc(100% - 40px);
    }

    .section-inner-content-row, .company-details-section {
        flex-direction: column;
        width: calc(100% - 40px);
    }

    .section-inner-content-row-no-margin {
        flex-direction: column;
    }

    .row-image {
        height: 250px;
        width: 100%;
        max-width: none;
    }

        .row-image img {
            max-width: none;
            width: 100%;
        }

    .specialise-container, .three-hexagon-container {
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }

    .specialise-card-title {
        max-width: none;
    }

    .specialise-card {
        max-width: none;
    }

    .specialise-card-image {
        max-width: none;
    }

    footer {
        gap: var(--padding-l);
        width: calc(100% - 40px);
    }

    .footer-nav-container {
        grid-template-columns: repeat(1, 1fr);
        gap: var(--padding-m);
    }

        .footer-nav-container .footer-link-item {
            width: auto;
        }

    .social-icon-container {
        gap: 12px;
        margin-top: auto;
    }

    .floating-hexagon-contact-us, .floating-hexagon-case-studies-first, .floating-hexagon-case-studies-second {
        display: none;
    }

    .cta-overlay {
        height: 250px;
        right: 20px;
        bottom: 0%;
    }

        .cta-overlay img {
            height: 250px;
        }

    .company-details-section .title-content-block {
        max-width: none;
    }

    .company-details-section .row-image img {
        object-fit: contain;
    }

    .max-container-width {
        max-width: none;
    }

    .content-swap-desktop {
        display: none;
    }

    .content-swap-mobile {
        display: flex;
    }

    .client-testimnonials-carousel-wrapper {
        gap: 0px;
    }

        .client-testimnonials-carousel-wrapper .client-testimnonials-carousel-item:nth-child(odd) {
            margin-right: 0px;
        }

    .client-testimnonials-carousel-item {
        flex: 0 0 100%;
    }

    .background-image-manager {
        background: none;
    }

    .caseStudyMobile {
        display: flex;
    }

    .caseStudyDesktop {
        display: none;
    }

    .hero-section-alt .row-image {
        order: 01;
    }

    .row-image-full-height, .row-image-full-height img {
        max-height: 250px;
        max-width: none;
    }
}

@media (max-width: 480px) {

    .CTA-hero {
        height: auto;
        padding: 40px 20px;
    }

    .why-choose-zokyo-container {
        grid-template-columns: repeat(1, 1fr);
        gap: 0px;
    }

        .why-choose-zokyo-container .why-choose-zokyo-card {
            padding: 25px 35px;
        }

    .title-content-block-additional-padding {
        width: calc(100% - 40px);
    }

    .our-values-container {
        grid-template-columns: repeat(1, 1fr);
    }

    .footer-links-container {
        flex-direction: column;
        gap: var(--padding-m);
    }
}