@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    font-family: 'Lexend', sans-serif;
    width: 100%;
    overflow-x: hidden;
}

.content-wrapper {
    margin-top: 10vh;
    width: 100%;
    position: relative;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2.25vw 4.75vw;
    background-color: #fff;
    font-family: 'Lexend', sans-serif;
    height: 10vh;
    box-shadow: 0 0.68vw 4.83vw 0 #a2a2a2;
    gap: 0.625vw;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    box-sizing: border-box;
    z-index: 1000;
    margin: 0;
    position: relative;
}

.logo img {
    height: 7vh;
}

.nav-links {
    display: flex;
    gap: 3.25vw;
}

.nav-links a {
    text-decoration: none;
    color: #808080;
    font-size: 1.25vw;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #000;
}

.nav-links a.active {
    color: #000;
}

.contact-us {
    display: flex;
    align-items: center;
    gap: 0.5vw;
    text-decoration: none;
    color: #000;
    font-size: 1.25vw;
}

.contact-us .icon {
    width: 1.56vw;
    height: 2.5vh;
    flex: none;
    order: 0;
    flex-grow: 0;
}

.nav-links .contact-us {
    display: none;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    cursor: pointer;
    text-decoration: none;
    color: #808080;
    font-size: 1.25vw;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.3vw;
}

.dropdown-toggle:hover {
    color: #000;
}

.dropdown-arrow {
    width: 1vw;
    height: 1vw;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-arrow,
.dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: calc(70% + 0.5vh);
    left: 0;
    background-color: #fff;
    min-width: 250px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 1vh 0;
    z-index: 1001;
}

.dropdown-menu a {
    display: block;
    padding: 1.2vh 1.5vw;
    text-decoration: none;
    color: #808080;
    font-size: 1.15vw;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.dropdown-menu a:hover {
    background-color: #f5f5f5;
    color: #000;
    padding-left: 2vw;
}

.dropdown:hover .dropdown-menu,
.dropdown.active .dropdown-menu {
    display: block;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #000;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 4px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

@media (max-width: 1024px) {
    .nav-links {
        gap: 1vw;
    }

    .nav-links a {
        font-size: 1.5vw;
    }

    .contact-us {
        font-size: 1.5vw;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 4vw 6vw !important;
        height: 12vh !important;
        justify-content: center !important;
        position: relative !important;
        overflow: visible !important;
    }

    .logo {
        position: absolute !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
    }

    .logo img {
        height: 6vh !important;
    }

    .nav-links {
        position: fixed !important;
        top: 12vh !important;
        left: -100% !important;
        width: 100vw !important;
        height: calc(100vh - 12vh) !important;
        background-color: #fff !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: flex-start !important;
        padding-top: 5vh !important;
        gap: 4vh !important;
        transition: left 0.3s ease !important;
        z-index: 999 !important;
        overflow-y: auto !important;
    }

    .nav-links.active {
        left: 0 !important;
    }

    .nav-links a {
        font-size: 5vw !important;
        padding: 2vh 0 !important;
        width: 80% !important;
        text-align: center !important;
        color: #808080 !important;
        transition: color 0.3s ease !important;
    }

    .nav-links a:hover {
        color: #000 !important;
    }

    .nav-links a.active {
        color: #000 !important;
    }

    .nav-links .contact-us {
        display: flex !important;
        font-size: 5vw !important;
        gap: 3vw !important;
        justify-content: center !important;
        align-items: center !important;
    }

    .nav-links .contact-us .icon {
        width: 6vw !important;
        height: 3vh !important;
    }

    .dropdown {
        width: 80% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }

    .dropdown-toggle {
        width: 100% !important;
        text-align: center !important;
        font-size: 5vw !important;
        padding: 2vh 0 !important;
        color: #808080 !important;
        justify-content: center !important;
    }

    .dropdown-arrow {
        width: 4vw !important;
        height: 4vw !important;
    }

    .dropdown-menu {
        position: static !important;
        box-shadow: none !important;
        background-color: transparent !important;
        padding: 0 !important;
        margin-top: 0 !important;
        width: 100% !important;
        min-width: 100% !important;
        max-height: 0 !important;
        overflow: hidden !important;
        transition: max-height 0.3s ease !important;
    }

    .dropdown-menu a {
        font-size: 4.5vw !important;
        padding: 1.5vh 0 !important;
        width: 100% !important;
        text-align: center !important;
        color: #808080 !important;
    }

    .dropdown-menu a:hover {
        padding-left: 0 !important;
        background-color: transparent !important;
        color: #000 !important;
    }

    .dropdown.active .dropdown-menu {
        max-height: 500px !important;
    }

    .dropdown:hover .dropdown-menu {
        max-height: 0 !important;
    }

    .dropdown.active:hover .dropdown-menu {
        max-height: 500px !important;
    }

    .dropdown:hover .dropdown-arrow {
        transform: rotate(0deg) !important;
    }

    .dropdown.active .dropdown-arrow {
        transform: rotate(180deg) !important;
    }

    .dropdown:not(.active) .dropdown-arrow {
        transform: rotate(0deg) !important;
    }

    .hamburger {
        display: flex !important;
        position: absolute !important;
        right: 6vw !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        z-index: 1001 !important;
    }

    .header>.contact-us {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 3vw 5vw !important;
        height: 10vh !important;
        box-shadow: none;
    }

    .logo img {
        height: 5vh !important;
    }

    .nav-links {
        top: 10vh !important;
        height: calc(100vh - 10vh) !important;
    }

    .hamburger {
        width: 30px !important;
    }

    .hamburger span {
        width: 30px !important;
        height: 3px !important;
    }
}

.hero-section {
    position: relative;
    width: 100%;
    max-width: 100vw;
    height: 160vh;
    background-color: transparent;
    font-family: 'Lexend', sans-serif;
    overflow-x: hidden;
    box-sizing: border-box;
    scale: 0.82;
    margin-top: -20vh;
}

.hero-bg-image {
    position: absolute;
    top: -10vh;
    left: 0;
    width: 160vw;
    height: 220vh;
    object-fit: cover;
    z-index: -1;
    pointer-events: none;
    opacity: 0.6;
}

.hero-content {
    position: relative;
    width: 100%;
    height: 150vh;
}

.hero-section h1 {
    position: absolute;
    width: 75vw;
    height: auto;
    left: 12.5vw;
    top: 5vh;
    font-family: 'Lexend', sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 5vw;
    line-height: 1.2;
    text-align: center;
    letter-spacing: -0.04em;
    color: #080808;
    margin: 0;
}

.hero-section .highlight {
    font-weight: normal;
    color: #017AFF;
}

.hero-section .sub-heading {
    position: absolute;
    width: 36.25vw;
    height: auto;
    left: calc(50% - 18.125vw);
    top: 60vh;
    font-family: 'Lexend', sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 2.8vw;
    line-height: 1.5;
    text-align: center;
    color: #080808;
    margin: 0;
}

.cta-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    width: 24vw;
    height: 7vh;
    left: 38vw;
    top: 40vh;
    filter: drop-shadow(0px 0.34vh 0.21vh rgba(0, 0, 0, 0.25));
}

.hero-section .cta-button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 90%;
    background: #017AFF;
    border-radius: 3vh;
    text-decoration: none;
}

.cta-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1vw;
}

.cta-text {
    font-family: 'Lexend', sans-serif;
    font-weight: 400;
    font-size: 1.5vw;
    color: #FFFFFF;
}

.cta-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4.0vh;
    height: 4.0vh;
    background: #FFFFFF;
    border-radius: 50%;
}

.cta-icon img {
    width: 2.0vh;
    height: 1.5vh;
}

.trusted-logos {
    position: absolute;
    width: 60vw;
    height: 8vh;
    left: calc(50% - 30vw);
    top: 72vh;
    overflow: hidden;
    pointer-events: none;
}

.carousel-track {
    display: flex;
    align-items: center;
    gap: 3vw;
    animation: scroll 30s linear infinite;
    width: max-content;
}

.carousel-track img {
    height: 6vh;
    width: auto;
    max-width: 15vw;
    object-fit: contain;
}

.carousel-track img.black-bg {
    background-color: #000000;
    padding: 1vh;
    border-radius: 0.5vh;
}

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

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

.side-card-left {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 4vh 3vw;
    position: absolute;
    width: 20vw;
    height: 100vh;
    left: 5vw;
    top: 58vh;
    background: url('/images/idea.gif') no-repeat center, #FBFBFB;
    background-size: cover;
    border: 1px solid #000000;
    box-shadow: 0.28vw -0.42vh 0.47vw rgba(0, 0, 0, 0.25);
    border-radius: 6.33vh;
}

.side-card-left h3 {
    font-family: 'Lexend', sans-serif;
    font-weight: 500;
    font-size: 1.8vw;
    text-align: left;
    color: #080808;
    margin: 0;
}

.side-card-right {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 4vh 3vw;
    position: absolute;
    width: 20vw;
    height: 100vh;
    right: 5vw;
    top: 58vh;
    background: url('/images/6913652_Motion_Graphics_Motion_Graphic_1080x1920.gif') no-repeat center;
    background-size: cover;
    filter: drop-shadow(0.28vw -0.42vh 0.47vw rgba(0, 0, 0, 0.25));
    border-radius: 6.33vh;
}

.side-card-right h3 {
    font-family: 'Lexend', sans-serif;
    font-weight: 500;
    font-size: 1.8vw;
    text-align: left;
    color: #000000;
    margin: 0;
}

.stats-container {
    position: absolute;
    display: flex;
    flex-direction: row;
    gap: 14vw;
    width: 44vw;
    height: 20vh;
    left: 28vw;
    top: 84vh;
}

.stat-box-left,
.stat-box-right {
    box-sizing: border-box;
    width: 15vw;
    height: 27vh;
    background: #2D91FF;
    box-shadow: 0.16vw -0.25vh 0.28vw rgba(0, 0, 0, 0.25);
    border-radius: 2.98vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1vh 1vw;
}

.stat-inner-left,
.stat-inner-right {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1vw;
    width: 100%;
}

.stat-icon-left,
.stat-icon-right {
    flex-shrink: 0;
}

.stat-icon-left {
    width: 14vw;
    height: auto;
    object-fit: contain;
}

.stat-text-left,
.stat-text-right {
    font-family: 'Lexend', sans-serif;
    font-weight: 500;
    font-size: 1.5vw;
    line-height: 1.2;
    color: #FFFFFF;
    text-align: left;
    flex: 1;
}

.stat-number {
    font-size: 2.5vw;
    font-weight: 600;
}

.stat-icon-right {
    width: 14vw;
    height: auto;
    object-fit: contain;
    margin-left: -8vw;
}

.center-main-card {
    box-sizing: border-box;
    position: absolute;
    width: 44vw;
    height: 40vh;
    left: 28vw;
    top: 112vh;
    background: url('/images/sequence_01_3.gif') no-repeat center;
    background-size: cover;
    filter: drop-shadow(0.13vw -0.19vh 0.21vw rgba(0, 0, 0, 0.25));
    border-radius: 3.5vh;
    display: flex;
    align-items: center;
    padding: 2vh 2vw;
    margin-top: 2vw;
}

.center-main-card h3 {
    font-family: 'Lexend', sans-serif;
    font-weight: 500;
    font-size: 2vw;
    color: #FFFFFF;
    margin: 0;
}

.center-main-card video {
    display: none !important;
}

.center-main-card .mobile-text {
    display: none;
}

.center-main-card .desktop-text {
    display: block;
}

.mobile-hero-icons {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 10;
}

.mobile-icon {
    position: absolute;
    max-width: 8vw;
    height: auto;
    display: block;
}

.bulb-icon {
    top: 0vh;
    left: 6vw;
    width: 6vw;
}

.curved-arrow-icon {
    top: 30vh;
    right: 24vw;
    width: 6vw;
    transform: rotate(15deg);
}

.doodle-arrow-icon {
    top: 25vh;
    left: 24vw;
    width: 6vw;
}

.doodle-icon {
    top: 5vh;
    right: 10vw;
    width: 3.5vw;
}



@media (max-width: 768px) {
    .hero-section {
        height: auto;
        min-height: 175vh;
        margin-top: -10vh;
        overflow-y: hidden;
        scale: 1;
    }

    .hero-content {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto 0vh 0vh 18vh 18vh 18vh 18vh;
        gap: 2vh;
        padding: 0 5vw;
        margin-top: 5vh;
    }

    .hero-section h1 {
        position: static;
        width: 100%;
        margin: 3vh 0 2vh;
        font-size: 10vw;
        line-height: 1.3;
        grid-column: 1 / 3;
        font-weight: normal;
    }

    .hero-section .sub-heading {
        position: inherit;
        width: 100%;
        font-size: 4vw;
        grid-column: 1 / 3;
        top: 10vh;
        left: 0vw;
    }

    .hero-section .cta-button {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 65vw;
        height: 5vh;
        background: #017AFF;
        border-radius: 3vh;
        text-decoration: none;
    }

    .cta-container {
        position: inherit;
        width: 100%;
        height: 2vh;
        grid-column: 1 / 3;
        top: -19vh;
        left: 0vw;
    }

    .cta-inner {
        gap: 2vw;
    }

    .cta-text {
        font-size: 4vw;
    }

    .cta-icon {
        width: 3vh;
        height: 3vh;
        margin-top: 1vh;
        margin-bottom: 1vh;
    }

    .cta-icon img {
        width: 2vh;
        height: 1vh;
    }

    .trusted-logos {
        position: inherit;
        width: 100%;
        height: 10vh;
        grid-column: 1 / 3;
        overflow: hidden;
        top: -10vh;
        left: 0vw;
    }

    .carousel-track {
        gap: 6vw;
    }

    .carousel-track img {
        height: 8vh;
        max-width: 25vw;
    }

    .side-card-left,
    .side-card-right {
        position: static;
        width: 100%;
        height: 120%;
        margin: 0;
        padding: 3vh 4vw;
        left: auto;
        right: auto;
        top: auto;
        border-radius: 3.5vh;
    }

    .side-card-left {
        grid-row: 5 / 7;
        grid-column: 1 / 2;
    }

    .side-card-left h3,
    .side-card-right h3 {
        font-size: 3.5vw;
    }

    .stats-container {
        position: static;
        display: contents;
        width: auto;
        margin: 0;
        gap: 0;
        height: auto;
        flex-direction: row;
        left: auto;
        top: auto;
    }

    .stat-box-left {
        width: 100%;
        height: 120%;
        padding: 2vh 3vw;
        margin: 0;
        grid-row: 5 / 6;
        grid-column: 2 / 3;
        background: #2D91FF;
    }

    .stat-box-right {
        width: 100%;
        height: 120%;
        padding: 2vh 3vw;
        margin: 0;
        grid-row: 6 / 7;
        grid-column: 2 / 3;
        background: #2D91FF;
        margin-top: 3vh;
    }

    .stat-inner-left {
        gap: 2vw;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        text-align: left;
    }

    .stat-inner-right {
        gap: 2vw;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        text-align: left;
    }

    .stat-icon-left {
        width: 20vw;
        height: auto;
        object-fit: contain;
        flex-shrink: 0;
    }

    .stat-icon-right {
        width: 25vw;
        height: auto;
        object-fit: contain;
        flex-shrink: 0;
    }

    .stat-text-left,
    .stat-text-right {
        font-size: 3.5vw;
        text-align: left;
        color: #FFFFFF;
        font-weight: 500;
        flex: 1;
    }

    .stat-number {
        font-size: 5.5vw;
        font-weight: 600;
    }

    .center-main-card {
        position: relative;
        width: 100%;
        height: 140%;
        margin: 0;
        padding: 3vh 4vw;
        grid-row: 7 / 9;
        grid-column: 1 / 2;
        left: auto;
        top: auto;
        background: none;
        overflow: hidden;
        display: flex;
        align-items: flex-end;
        justify-content: flex-start;
        z-index: 1;
        isolation: isolate;
        transform: translateZ(0);
        -webkit-transform: translateZ(0);
        will-change: transform;
    }

    .center-main-card video {
        display: block !important;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 90%;
        object-fit: cover;
        z-index: -1;
        border-radius: 3.5vh;
        transform: translate3d(0, 0, 0);
        -webkit-transform: translate3d(0, 0, 0);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        margin-top: 8vh;
    }

    .center-main-card .desktop-text {
        display: none;
    }

    .center-main-card .mobile-text {
        display: block;
        font-size: 3.5vw;
        position: relative;
        z-index: 1;
        font-family: 'Lexend', sans-serif;
        font-weight: 500;
        color: #FFFFFF;
        margin: 0;
        top: 2vh;
        left: 1vw;
    }

    .side-card-right {
        grid-row: 7 / 9;
        grid-column: 2 / 3;
        margin-top: 8vh;
    }

    /* Mobile-only icons for hero section */
    .mobile-hero-icons {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        pointer-events: none;
        z-index: 0;
    }

    .mobile-icon {
        position: absolute;
        max-width: 15vw;
        height: auto;
    }

    .bulb-icon {
        top: -3vh;
        left: 2vh;
        width: 11vw;
    }

    .curved-arrow-icon {
        top: 25vh;
        right: 2vw;
        width: 14vw;
        transform: rotate(20deg);
    }

    .doodle-arrow-icon {
        top: 13vh;
        left: 5vh;
        width: 10vw;
    }

    .doodle-icon {
        top: 3.5vh;
        right: 3.5vh;
        width: 5vw;
    }
}

.work-with-us {
    width: 100%;
    max-width: 100vw;
    padding-bottom: 5vh;
    box-sizing: border-box;
    overflow-x: hidden;
}

.work-with-us-title {
    text-align: center;
    background-color: transparent;
    padding-bottom: 5vh;
}

.work-with-us-title h2 {
    font-size: 3vw;
    font-weight: normal;
    color: #000000;
    margin: 0;
}

.work-with-us-title h3 {
    font-size: 3vw;
    font-weight: normal;
    color: #017aff;
    margin: 0;
}

.work-with-us-content {
    background-color: #017AFF;
    background-size: cover;
    padding: 5vh 5vw;
    display: grid;
    place-items: center;
    width: 100%;
    margin: 0 auto;
    position: relative;
    min-height: 130vh;
    box-sizing: border-box;
}

.cards-bucket {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 1.5vw;
    width: 80%;
    max-width: 85vw;
    position: relative;
    z-index: 1;
}

.work-with-us-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('/icons/Doodles.png');
    background-size: 50vw;
    background-repeat: repeat;
    opacity: 0.5;
    z-index: 0;
}


.card {
    background-color: white;
    border-radius: 2vw;
    padding: 1vw;
    box-shadow: 0 0.5vw 1vw rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
}

.card-1 {
    grid-row: 1;
    grid-column: 1;
}

.card-2 {
    grid-row: 1;
    grid-column: 2;
}

.card-3 {
    grid-row: 1;
    grid-column: 3;
}

.card-4 {
    grid-row: 2;
    grid-column: 1;
}

.card-5 {
    grid-row: 2;
    grid-column: 2;
}

.card-6 {
    grid-row: 2;
    grid-column: 3;
}


.work-with-us-content .card img {
    width: 100%;
    border-radius: 1vw;
    margin-bottom: 1.5vh;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.work-with-us-content .card h4 {
    font-size: 1.3vw;
    font-weight: 500;
    color: #000000;
    margin: 0 0 1vh 0;
    line-height: 1.3;
}

.work-with-us-content .card p {
    font-size: 0.9vw;
    color: #333;
    margin: 0.5vh 0;
    line-height: 1.5;
}


.scaling-intro h2 {
    font-size: 4.5vw;
    font-weight: normal;
    margin-bottom: 5vh;
}

@media (max-width: 768px) {
    .work-with-us {
        padding-bottom: 5vh;
    }

    .scaling-intro h2 {
        font-size: 8.5vw;
        font-weight: normal;
        margin-bottom: 2vh;
    }

    .work-with-us-title {
        padding-bottom: 4vh;
    }

    .work-with-us-title h2 {
        font-size: 9vw;
    }

    .work-with-us-title h3 {
        font-size: 9vw;
    }

    .work-with-us-content {
        padding: 5vh 5vw;
    }

    .cards-bucket {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 4vh;
        width: 100%;
        max-width: 100%;
    }

    .work-with-us-content::before {
        background-image: url('/images/handdrawn_doodle.png');
        background-size: 100vw;
        background-repeat: repeat;
    }

    .card {
        padding: 5vw;
        border-radius: 5vw;
        grid-column: 1 !important;
        grid-row: auto !important;
    }

    .card-1,
    .card-2,
    .card-3,
    .card-4,
    .card-5,
    .card-6 {
        grid-column: 1;
        grid-row: auto;
    }

    .work-with-us-content .card img {
        border-radius: 3vw;
        margin-bottom: 2vh;
        aspect-ratio: 1 / 1;
    }

    .work-with-us-content .card h4 {
        font-size: 5vw;
        margin: 0 0 2vh 0;
    }

    .work-with-us-content .card p {
        font-size: 3.5vw;
        margin: 1vh 0;
        line-height: 1.6;
    }
}

.scaling-section {
    background-color: #ffffff;
    padding: 8vh 0;
    text-align: center;
    background-size: contain;
    background-position: center;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    overflow-x: hidden;
    scale: 0.9;
}



.scaling-heading {
    font-size: 4.5vw;
    font-weight: normal;
    margin-bottom: 5vh;
}

.scaling-blue {
    color: #017AFF;
}

.scaling-blue-full {
    color: #017AFF;
}

.mobile-heading {
    display: none;
}

.scaling-heading .scaling-blue {
    color: #007bff;
}

.scaling-intro p {
    font-size: 1.3vw;
    color: #333;
    line-height: 1.6;
    margin-bottom: 2vh;
}

.scaling-cards {
    display: flex;
    justify-content: center;
    gap: 3vw;
}

.scaling-card {
    background-color: #ffffff;
    border-radius: 1.5vw;
    box-shadow: 0 0.8vw 2vw rgba(0, 0, 0, 0.1);
    padding: 4vh 3vw;
    width: 32vw;
    text-align: center;
}

.card-image {
    width: 40vh;
    height: 30vh;
    margin-bottom: 3vh;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.scaling-card h3 {
    font-size: 2vw;
    font-weight: normal;
    color: #017aff;
    margin-bottom: 3vh;
}

.scaling-card p {
    font-size: 1.1vw;
    color: #333;
    line-height: 1.7;
}

.image-1 {
    width: 30vh;
}

@media (max-width: 768px) {
    .scaling-section {
        padding: 6vh 4vw;
        scale: 1;
    }

    .scaling-heading {
        font-size: 7.5vw;
        margin-bottom: 3vh;
        line-height: 1.3;
        font-weight: normal;
    }

    .scaling-intro p {
        font-size: 3.5vw;
        line-height: 1.5;
        margin-bottom: 1.5vh;
        padding: 0 2vw;
    }

    .scaling-intro p:last-of-type {
        margin-bottom: 5vh;
    }

    .scaling-cards {
        flex-direction: row;
        gap: 3vw;
        padding: 0 2vw;
    }

    .scaling-card {
        width: 45vw;
        padding: 2.5vh 2.5vw;
        border-radius: 3vw;
        border: 1px solid #e0e0e0;
        height: 60vh;
    }

    .image-1 {
        width: 100%;
    }

    .card-image {
        width: 100%;
        height: auto;
        max-height: 18vh;
        margin-bottom: 1.5vh;
        object-fit: contain;
        margin-top: 5vh;
    }

    .scaling-card h3 {
        font-size: 3.8vw;
        margin-bottom: 1.5vh;
        line-height: 1.3;
    }

    .scaling-card p {
        font-size: 2.8vw;
        line-height: 1.4;
    }

    /* Mobile-only icons for scaling section */
    .mobile-scaling-icons {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        pointer-events: none;
        z-index: 0;
    }

    .mobile-care-icons {
        position: absolute;
        width: 100%;
        height: 100%;
        pointer-events: none;
        z-index: 0;
    }

    .scaling-star-stick-icon {
        position: absolute;
        max-width: 15vw;
        height: auto;
        bottom: 0vh;
        right: 0vw;
        width: 7vw;
    }

    .scaling-thumbs-icon {
        position: absolute;
        max-width: 15vw;
        height: auto;
        top: 23vh;
        right: 10vw;
        width: 8vw;
    }

    .scaling-wow-icon {
        position: absolute;
        max-width: 15vw;
        height: auto;
        top: 55vh;
        left: -1vw;
        width: 7vw;
    }

    .scaling-star-doodle-icon {
        position: absolute;
        max-width: 15vw;
        height: auto;
        top: 14vh;
        right: 1vw;
        width: 8vw;
        transform: rotate(-5deg);
    }
}

.care-section {
    background-color: #fff;
    padding-top: 10vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: 'Lexend', sans-serif;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    overflow-x: hidden;
}

.care-heading {
    text-align: center;
    margin-bottom: 8vh;
    max-width: 45vw;
}

.care-heading h1 {
    font-size: 3vw;
    font-weight: normal;
    color: #000;
    margin: 0;
}

.care-heading h1 span {
    font-size: 3vw;
    font-weight: normal;
    color: #017aff;
    margin-top: 1vh;
}

.care-content-wrapper {
    background-color: #000;
    background-image: url('/icons/Doodles.png');
    background-size: 50vw;
    background-repeat: repeat;
    width: 100%;
    padding: 15vh 0;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-bottom-left-radius: 50vw 5vh;
    border-bottom-right-radius: 50vw 5vh;
}

.care-content-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: transparent;
    z-index: 0;
}

.care-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5vw;
    width: 70vw;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.care-card {
    background-color: #fff;
    border-radius: 1vw;
    box-shadow: 0.5px 3px 5px 0px rgba(0, 0, 0, 0.3);
    padding: 2vw;
    padding-right: 1vw;
    padding-bottom: 2vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}

.care-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.4);
    background-color: #017AFF;
}

.care-card:hover .card-left p {
    color: #fff;
}

.care-card:hover .card-left img,
.care-card:hover .card-arrow {
    filter: brightness(0) invert(1);
}

.card-left {
    display: flex;
    flex-direction: column;
    gap: 2vh;
}

.card-left img {
    width: 3.5vw;
}

.card-left p {
    margin: 0;
    font-size: 1.4vw;
    color: #333;
    font-weight: 600;
}

.card-arrow {
    width: 3vw;
    position: relative;
    top: 7vh;
}

.care-cta-button {
    margin-top: 8vh;
    padding: 2vh 3vw;
    font-size: 1.2vw;
    font-weight: normal;
    color: #fff;
    background-color: #017AFF;
    border: 1px solid #017AFF;
    border-radius: 0.5vw;
    cursor: pointer;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.care-cta-button:hover {
    transform: scale(1.05);
    background-color: #fff;
    color: #017AFF;
}

@media (max-width: 768px) {
    .care-section {
        padding: 0vh 0vw;
    }

    .care-heading {
        margin-bottom: 6vh;
        max-width: 75vw;
    }

    .care-heading h1 {
        font-size: 6vw;
    }

    .care-heading h1 span {
        font-size: 7vw;
        margin-top: 1vh;
    }

    .care-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3vw;
        width: 90vw;
    }

    .care-card {
        padding: 4vw;
        border-radius: 3vw;
    }

    .card-left {
        gap: 1.5vh;
    }

    .card-left img {
        width: 12vw;
    }

    .card-left p {
        font-size: 4vw;
    }

    .card-arrow {
        width: 7vw;
        top: auto;
        bottom: -11vw;
        right: -2vw;
    }

    /* .care-cta-button {
        margin-top: 6vh;
        padding: 2.5vh 8vw;
        font-size: 4vw;
        border-radius: 2vw;
        display: block;
        margin-left: auto;
        margin-right: auto;
    } */

    .care-cta-button {
        display: none;
    }
}

.insights-section {
    font-family: 'Lexend', sans-serif;
    text-align: center;
    padding-top: 10vh;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    overflow-x: hidden;
}

.insights-header {
    background-color: #fff;
    padding: 0 5vw 5vh 5vw;
}

.insights-header h1 {
    font-size: 5vw;
    font-weight: normal;
    color: #000;
    margin: 0 auto;
    text-align: center;
}

.insights-header h1 span {
    font-size: 3vw;
    font-weight: normal;
    color: #017aff;
    margin-top: 1vh;
}

.mobile-header {
    display: none;
}

.desktop-header {
    display: block;
    max-width: 50vw;
    margin: 0 auto;
    font-size: 3vw !important;
    text-align: center;
}

.insights-header p {
    font-size: 1.2vw;
    color: #333;
    width: 65vw;
    margin: 5vh auto 0 auto;
    line-height: 1.6;
}

.insights-main {
    background-color: #017aff;
    padding: 15vh 5vw 10vh 5vw;
    position: relative;
    padding-top: 5vh;
}

.insights-main::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('/icons/Doodles-2.png');
    background-size: 50vw;
    opacity: 0.5;
    z-index: 0;
}

.insights-main>* {
    position: relative;
    z-index: 1;
}

.insights-main::before {
    content: '';
    position: absolute;
    top: -1;
    left: 0;
    width: 100%;
    height: 5vh;
    background-color: #fff;
    border-bottom-left-radius: 50vw 5vh;
    border-bottom-right-radius: 50vw 5vh;
}

.insights-cards {
    display: flex;
    justify-content: center;
    gap: 2vw;
    position: relative;
    z-index: 2;
    flex-wrap: nowrap;
}

.insight-card {
    background-color: #fff;
    border-radius: 1.5vw;
    box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.1);
    padding: 1vw;
    width: 18vw;
    text-align: left;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    cursor: pointer;
}

.insight-card-image {
    width: 100%;
    height: 10vw;
    object-fit: cover;
    border-radius: 1vw;
    margin-bottom: 1vw;
}

.card-top {
    display: flex;
    align-items: center;
    margin-bottom: 2vh;
}

.color-marker {
    width: 1.2vw;
    height: 1.2vw;
    border-radius: 50%;
    margin-right: 0.8vw;
}

.color-marker.green {
    background-color: #9ef01a;
}

.color-marker.pink {
    background-color: #f000b8;
}

.color-marker.orange {
    background-color: #fca311;
}

.read-time {
    font-size: 0.9vw;
    color: #888;
}

.insight-card h3 {
    font-size: 1.4vw;
    font-weight: normal;
    color: #000;
    margin: 0 0 2vh 0;
    line-height: 1.3;
}

.insight-card p {
    font-size: 1vw;
    color: #555;
    line-height: 1.5;
    margin: 0 0 1vw 0; /* Add margin below description */
    flex-grow: 1; /* Allow paragraph to grow */
}

.card-content-bottom {
    display: block; /* Change to block to stack elements */
    margin-top: auto; /* Push to the bottom */
    position: relative; /* For positioning the arrow */
    height: 3vw; /* Give some height for the arrow */
}

.card-arrow-icon {
    position: absolute;
    bottom: -2vh;
    right: 0;
    width: 3vw;
    height: 3vw;
    flex-shrink: 0;
}

.insights-cta {
    margin-top: 8vh;
    padding: 1.5vh 2.5vw;
    font-size: 1.1vw;
    font-weight: 600;
    color: #333;
    background-color: #fff;
    border: 1px solid #017AFF;
    border-radius: 0.5vw;
    cursor: pointer;
}

@media (max-width: 768px) {
    .insights-section {
        padding-top: 8vh;
    }

    .insights-header {
        padding: 0 6vw 0vh 6vw;
    }

    .insights-header h1 {
        font-size: 7vw !important;
        max-width: 90vw;
        margin: 0 auto;
        text-align: center;
    }

    .desktop-header {
        display: block;
        max-width: 90vw;
        font-size: 6vw !important;
        margin: 0 auto;
        text-align: center;
    }

    .mobile-header {
        display: none;
    }

    .insights-header p {
        font-size: 3.8vw;
        width: 90vw;
        margin: 4vh auto 0 auto;
        line-height: 1.6;
    }

    .insights-main::after {
        background-image: url('/icons/Doodles.png');
        background-size: 100vw;
    }

    .insights-cards {
        flex-direction: column;
        gap: 5vw;
        margin-left: 0;
        align-items: center;
    }

    .insight-card {
        width: 80vw;
        min-width: 90vw;
        height: auto;
        padding: 4vw;
        border-radius: 5vw;
    }

    .insight-card-image {
        height: 40vw;
        border-radius: 3vw;
    }

    .card-top {
        margin-bottom: 2vh;
    }

    .color-marker {
        width: 4vw;
        height: 4vw;
        margin-right: 2vw;
    }

    .read-time {
        font-size: 3.5vw;
    }

    .insight-card h3 {
        font-size: 4.5vw;
        margin: 0 0 2vh 0;
        line-height: 1.4;
    }

    .insight-card p {
        font-size: 3.5vw;
        line-height: 1.6;
        margin: 0 0 3vw 0; /* Adjusted for mobile margin */
    }

    .card-content-bottom {
        display: block; /* Change to block to stack elements */
        margin-top: auto; /* Push to the bottom */
        position: relative; /* For positioning the arrow */
        height: 10vw; /* Give some height for the arrow */
    }

    .card-arrow-icon {
        position: absolute;
        bottom: 0;
        right: 0;
        width: 10vw;
        height: 10vw;
    }

    .insights-cta {
        margin-top: 6vh;
        padding: 2vh 6vw;
        font-size: 3.8vw;
        border-radius: 2vw;
    }
}

.brands-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    padding: 8vh 8vw 0vh 8vw;
    font-family: 'Lexend', sans-serif;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    overflow-x: hidden;
}

.brands-heading {
    text-align: center;
    margin-bottom: 6vh;
}

.brands-heading h1 {
    font-size: 3vw;
    font-weight: normal;
    color: #000;
    margin: 0;
    line-height: 1.2;
}

.brands-heading .blue-text {
    color: #017AFF;
}

.brands-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4vw;
    width: 100%;
}

.brands-left {
    position: relative;
    width: 45vw;
    height: 35vw;
}

.brands-left .image-container {
    width: 100%;
    height: 100%;
    background-color: transparent;
    border-radius: 2.5vw;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.brands-left .image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('/icons/Doodles.png');
    background-size: 50%;
    background-repeat: no-repeat;
    background-position: 10% 20%;
    opacity: 0.5;
    z-index: 0;
}

.brands-left .image-container>* {
    position: relative;
    z-index: 1;
}

.brands-left .brands-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 2vw;
}

.brands-left .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10vw;
    height: 10vw;
    cursor: pointer;
    filter: brightness(0) invert(1);
}

.brands-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 40vw;
}

.brands-right h2 {
    font-size: 2vw;
    font-weight: 700;
    margin-bottom: 3vh;
    line-height: 1.3;
}

.brands-right ul {
    list-style-position: outside;
    padding-left: 1.5vw;
    margin-bottom: 4vh;
}

.brands-right li {
    font-size: 1vw;
    color: #333;
    margin-bottom: 2vh;
    padding-left: 0.5vw;
}

.brands-buttons {
    display: flex;
    gap: 1.5vw;
}

.brands-buttons button {
    padding: 1.8vh 2.8vw;
    border-radius: 0.8vw;
    border: 0.15vw solid #000;
    cursor: pointer;
    font-size: 1vw;
    font-weight: 500;
    transition: all 0.3s ease;
}

.brands-buttons .read-more-btn {
    background-color: #017AFF;
    color: #fff;
    border-color: #017AFF;
}

.brands-buttons .view-all-btn {
    background-color: #fff;
    color: #000;
}

.brands-buttons .read-more-btn:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}

.brands-buttons .view-all-btn:hover {
    background-color: #f0f0f0;
}

@media (max-width: 768px) {
    .brands-section {
        padding: 6vh 6vw;
    }

    .brands-heading {
        margin-bottom: 5vh;
    }

    .brands-heading h1 {
        font-size: 8vw;
        line-height: 1.3;
        font-weight: normal;
    }

    .brands-content {
        flex-direction: column;
        gap: 5vh;
    }

    .brands-left {
        width: 90vw;
        height: 60vw;
    }

    .brands-left .image-container {
        border-radius: 6vw;
    }

    .brands-left .play-button {
        width: 20vw;
        height: 20vw;
    }

    .brands-right {
        width: 90vw;
    }

    .brands-right h2 {
        font-size: 5vw;
        margin-bottom: 3vh;
        line-height: 1.4;
    }

    .brands-right ul {
        padding-left: 5vw;
        margin-bottom: 4vh;
    }

    .brands-right li {
        font-size: 3.5vw;
        margin-bottom: 2vh;
        padding-left: 1vw;
        line-height: 1.6;
    }

    .brands-buttons {
        flex-direction: row;
        gap: 3vw;
    }

    .brands-buttons button {
        padding: 1.5vh 5vw;
        border-radius: 2vw;
        font-size: 3.5vw;
        flex: 1;
    }
}

#booking-section {
    font-family: 'Lexend', sans-serif;
    text-align: center;
    background-color: #fff;
    position: relative;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    overflow-x: hidden;
}


.booking-header h2 {
    font-size: 3vw;
    font-weight: normal;
    color: #000;
    margin-bottom: 5vh;
}

.booking-header h2 span {
    color: #017AFF;
}

.booking-main {
    background-color: #017aff;
    padding: 8vh 5vw 0vh 5vw;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.booking-main::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('/icons/Doodles.png');
    background-repeat: repeat;
    background-size: 50vw;
    opacity: 0.5;
    z-index: 0;
    pointer-events: none;
}

.booking-main::before {
    content: '';
    position: absolute;
    top: -1;
    left: 0;
    width: 100%;
    height: 10vh;
    background-color: #fff;
    border-bottom-left-radius: 50vw 10vh;
    border-bottom-right-radius: 50vw 10vh;
}

.calendly-inline-widget {
    background-color: transparent;
    border-radius: 2vw;
    max-width: 80vw;
    width: 100%;
    height: 800px;
    min-height: 800px;
    position: relative;
    z-index: 1;
    border: none;
    box-shadow: none;
    overflow: hidden;
}

.calendly-inline-widget iframe {
    width: calc(100% + 20px) !important;
    margin-right: -20px !important;
}

.calendar-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3vh;
    padding: 0 1vw;
}

.calendar-nav .month-year {
    font-size: 1.5vw;
    font-weight: 700;
    cursor: pointer;
}

.calendar-nav img {
    width: 1.2vw;
    cursor: pointer;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.5vw;
    text-align: center;
}

.day-header,
.date-cell {
    font-size: 1vw;
    padding: 0.8vw;
}

.day-header {
    color: #999;
    font-weight: 400;
}

.date-cell {
    color: #000;
    font-weight: 400;
    cursor: pointer;
    border-radius: 20%;
}

.date-cell.other-month {
    color: #ccc;
    cursor: default;
}

.date-cell.selected {
    background-color: #017AFF;
    color: #fff;
}

.time-slot-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2vh;
    position: relative;
}

.time-slot-header .back-to-calendar {
    width: 1.2vw;
    cursor: pointer;
    position: absolute;
    left: 1vw;
}

.time-slot-view .selected-date-header,
.time-slot-view .details-header {
    font-size: 1.5vw;
    font-weight: 700;
    margin-bottom: 2vh;
}

.time-slot-view .selected-date-header {
    margin-bottom: 0;
}

.time-slots-container {
    max-height: 30vh;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1vh;
    margin-bottom: 4vh;
}

.time-slots {
    display: flex;
    flex-direction: column;
    gap: 1vh;
}

.time-slot-btn {
    background-color: #fff;
    border: 1px solid #017AFF;
    color: #000;
    padding: 1.5vh 2vw;
    border-radius: 5vw;
    font-size: 1vw;
    cursor: pointer;
    font-family: 'Lexend', sans-serif;
}

.time-slot-btn:hover {
    background-color: #f0f0f0;
}

.time-slot-btn.disabled {
    background-color: #f8f9fa;
    color: #adb5bd;
    cursor: not-allowed;
    border-color: #dee2e6;
}

.time-slot-selected-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1vw;
}

.time-slot-btn.selected {
    background-color: #dee2e6;
    border-color: #dee2e6;
    color: #000;
}

.next-btn {
    background-color: #0d6efd;
    color: #fff;
    border: none;
    padding: 1.5vh 2vw;
    border-radius: 5vw;
    font-size: 1vw;
    cursor: pointer;
    font-family: 'Lexend', sans-serif;
}

.details-form {
    display: flex;
    flex-direction: column;
    gap: 1.5vh;
    margin-bottom: 3vh;
}

.details-form input {
    background-color: #f0f0f0;
    border: none;
    border-radius: 1vw;
    padding: 2vh 1.5vw;
    font-size: 1vw;
    font-family: 'Lexend', sans-serif;
    width: 100%;
}

.details-form input::placeholder {
    color: #999;
}

.cta-btn {
    background-color: #017AFF;
    color: #fff;
    border: none;
    padding: 2vh 2vw;
    border-radius: 5vw;
    font-size: 1.2vw;
    cursor: pointer;
    font-family: 'Lexend', sans-serif;
    font-weight: 700;
    width: 100%;
    margin-top: 2vh;
}

.year-selector {
    position: absolute;
    top: 15vh;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    border-radius: 1vw;
    box-shadow: 0 0.5vw 1vw rgba(0, 0, 0, 0.2);
    width: 15vw;
    max-height: 30vh;
    overflow-y: auto;
    z-index: 100;
}

.year-selector ul {
    list-style: none;
    padding: 1vh 0;
    margin: 0;
}

.year-selector li {
    padding: 1.5vh 2vw;
    font-size: 1vw;
    cursor: pointer;
}

.year-selector li:hover,
.year-selector li.hover {
    background-color: #f0f0f0;
}

.year-selector li.selected-year {
    background-color: #017AFF;
    color: #fff;
}

@media (max-width: 768px) {
    #booking-section {
        padding-top: 8vh;
        padding-bottom: 0vh;
    }

    .booking-header h2 {
        font-size: 7vw;
        margin-bottom: 4vh;
        font-weight: normal;
    }

    .booking-main {
        padding: 15vh 4vw 0vh 4vw;
        background-size: 80vw;
        margin-top: -3vh;
    }

    .booking-main::before {
        height: 8vh;
        border-bottom-left-radius: 90vw 8vh;
        border-bottom-right-radius: 90vw 8vh;
    }

    .calendly-inline-widget {
        max-width: 92vw;
        border-radius: 5vw;
        height: 99vh;
        min-height: 650px;
        background-color: transparent;
        border: none;
        box-shadow: none;
        overflow: visible;
    }

    .calendly-inline-widget iframe {
        width: 100% !important;
        margin-right: 0 !important;
    }

    .calendar-nav {
        margin-bottom: 3vh;
        padding: 0 2vw;
    }

    .calendar-nav .month-year {
        font-size: 4.5vw;
    }

    .calendar-nav img {
        width: 4vw;
    }

    .calendar-grid {
        gap: 1vw;
    }

    .day-header,
    .date-cell {
        font-size: 3.5vw;
        padding: 2vw;
    }

    .time-slot-header .back-to-calendar {
        width: 4vw;
        left: 2vw;
    }

    .time-slot-view .selected-date-header,
    .time-slot-view .details-header {
        font-size: 4.5vw;
        margin-bottom: 2vh;
    }

    .time-slots-container {
        max-height: 35vh;
    }

    .brands-heading h1 {
        font-size: 10vw;
        font-weight: normal;
        color: #000;
        margin: 0;
        line-height: 1.2;
    }

    .time-slot-btn {
        padding: 2vh 4vw;
        border-radius: 10vw;
        font-size: 3.5vw;
    }

    .next-btn {
        padding: 2vh 4vw;
        border-radius: 10vw;
        font-size: 3.5vw;
    }

    .time-slot-selected-row {
        gap: 2vw;
    }

    .details-form {
        gap: 2vh;
        margin-bottom: 3vh;
    }

    .insights-header h1 {
        font-size: 7vw;
        font-weight: normal;
        color: #000;
        margin: 0 auto;
        text-align: center;
    }

    .insights-header h1 span {
        font-size: 7vw;
        font-weight: normal;
        color: #007bff;
        margin-top: 1vh;
    }

    .details-form input {
        border-radius: 2vw;
        padding: 2.5vh 4vw;
        font-size: 3.5vw;
    }

    .cta-btn {
        padding: 2.5vh 5vw;
        border-radius: 10vw;
        font-size: 4vw;
        margin-top: 2vh;
    }

    .year-selector {
        top: 12vh;
        width: 40vw;
        max-height: 35vh;
        border-radius: 3vw;
    }

    .year-selector li {
        padding: 2vh 4vw;
        font-size: 3.5vw;
    }

    .booking-main::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: url('/icons/Doodles.png');
        background-repeat: repeat;
        background-size: 85vw;
        opacity: 0.5;
        z-index: 0;
        pointer-events: none;
    }
}

.faq-section {
    background-color: #383838;
    padding: 5vh 6vw;
    display: flex;
    font-family: 'Lexend', sans-serif;
    color: white;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    overflow-x: hidden;
}

.faq-title-container {
    width: 40vw;
}

.faq-title {
    font-size: 3vw;
    font-weight: normal;
    position: relative;
    top: 30%;
    text-align: center;
}

.faq-accordion {
    width: 35vw;
}

.faq-item {
    background-color: white;
    border-radius: 1vw;
    padding: 2vh 2vw;
    margin-bottom: 2vh;
    cursor: pointer;
}

.faq-question {
    display: flex;
    align-items: center;
    font-weight: normal;
    color: #000;
    font-size: 1.5vw;
}

.faq-question .icon {
    font-size: 2vw;
    margin-right: 1vw;
    font-weight: 300;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out, padding-top 0.4s ease-in-out;
    color: #363049;
    font-size: 1.2vw;
    padding-left: 1.8vw;
    padding-top: 0;
    opacity: 0.7;
}

.faq-item.active .faq-answer {
    max-height: 100vh;
    padding-top: 1vh;
}

.footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 25vh 5vh 5vw 5vw;
    background: linear-gradient(180deg, rgba(217, 217, 217, 0) 0%, rgba(1, 122, 255, 0.25) 100%);
    font-family: 'Lexend', sans-serif;
    gap: 5vh;
    position: static;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    overflow-x: hidden;
}

.footer-content {
    display: flex;
    justify-content: space-around;
    width: 100vw;
    align-items: flex-start;
    padding: 0 5vw;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 1.5vh;
}

.footer-section h3 {
    font-size: 1.5vw;
    margin-bottom: 1vh;
    font-weight: normal;
}

.footer-section a,
.footer-section p {
    text-decoration: none;
    color: #000;
    font-size: 1.1vw;
}

.footer-section.cta {
    border-right: 3px solid #000;
    padding-right: 2vw;
}

.footer-section.cta h2 {
    font-size: 2vw;
    color: #017AFF;
    text-align: center;
    font-weight: normal;
}

.footer-section.cta .button {
    background-color: #017AFF;
    color: #fff;
    padding: 1.5vh 2vw;
    border-radius: 0.5vw;
    text-align: center;
    font-size: 1.2vw;
    transition: transform 0.3s ease;
}

.footer-section.cta .button:hover {
    transform: scale(1.05);
}

.social-links {
    display: flex;
    gap: 1vw;
}

.social-links img {
    width: 2vw;
    height: 2vw;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2vh;

    padding-top: 3vh;
    width: 100%;
}

.footer-logo img {
    height: 15vh;
}

.copyright {
    font-size: 1vw;
}

@media (max-width: 768px) {
    .faq-section {
        flex-direction: column;
        padding: 6vh 6vw;
        gap: 4vh;
    }

    .faq-title-container {
        width: 100%;
    }

    .faq-title {
        font-size: 6.5vw;
        top: 0;
        position: static;
        margin-bottom: 4vh;
    }

    .faq-accordion {
        width: 100%;
    }

    .faq-item {
        border-radius: 3vw;
        padding: 3vh 5vw;
        margin-bottom: 2.5vh;
    }

    .faq-question {
        font-size: 4vw;
    }

    .faq-question .icon {
        font-size: 5vw;
        margin-right: 3vw;
    }

    .faq-answer {
        font-size: 3.5vw;
        padding-left: 8vw;
        line-height: 1.6;
    }
        .footer {
        padding: 5vh 8vw 8vw 8vw;
    }
    
    .footer-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto auto;
        gap: 6vh 6vw;
        padding: 0;
        width: 100%;
    }

    .footer-section.cta {
        grid-column: 1 / -1;
        border-right: none;
        padding-right: 0;
        text-align: center;
    }

    .footer-section {
        text-align: left;
        width: 100%;
    }

    .footer-section h3 {
        font-size: 5vw;
        margin-bottom: 2vh;
    }

    .footer-section a,
    .footer-section p {
        font-size: 4vw;
    }

    .footer-section.cta h2 {
        font-size: 8vw;
    }

    .footer-section.cta .button {
        font-size: 4vw;
        padding: 2vh 6vw;
        border-radius: 2vw;
        max-width: 60vw;
        margin: 0 auto;
    }

    .social-links {
        justify-content: flex-start;
        gap: 4vw;
    }

    .social-links img {
        width: 8vw;
        height: 8vw;
    }

    .footer-logo img {
        height: 10vh;
    }

    .copyright {
        font-size: 3.5vw;
        text-align: center;
    }
    .mobile-hero-icons {
        display: block;
    }

    .mobile-scaling-icons {
        display: none;
    }

    .mobile-care-icons {
        display: none;
    }

    .insights-cards {
        gap: 5vw;
    }
}

.insights-header {
    position: relative;
}

.insights-navigation {
    position: absolute;
    top: 7vh;
    right: 5vw;
    display: flex;
    gap: 10px;
}

.arrow-btn {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.insights-cards-container {
    overflow-x: hidden;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
    width: 89vw;
    top: 8vh;
    height: 75vh;
}

.insights-cards-container::-webkit-scrollbar {
    display: none; /* Chrome, Safari, and Opera */
}

@media (min-width: 769px) {
    .insights-cards {
        display: flex;
        flex-wrap: nowrap;
        gap: 1vw;
        padding-bottom: 2vw;
        width: 100vw;
        left: -5vw;
        padding-top: 5vw;
    }
}

.insight-card {
    flex: 0 0 calc((100% - 4vw) / 3);
    max-width: calc((100% - 4vw) / 4);
    background-color: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform 0.3s ease;
    top: 2vh;
}

.insight-card:hover {
    transform: translateY(-5px);
}

.insight-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.insight-card-content {
    padding: 15px;
}

.insight-card-author-date {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 10px;
}

.insight-card-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.insight-card-summary {
    font-size: 0.9rem;
    color: #333;
    line-height: 1.5;
    margin-bottom: 15px;
}

.read-more-link {
    font-size: 0.9rem;
    color: #017aff;
    text-decoration: none;
    font-weight: 600;
}