/* Import Google Fonts: Roboto and Poppins (all weights) */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&family=Poppins:wght@100;300;400;500;700;900&display=swap');

/* Correct CSS variables scope */
:root {
    --primary-color: #0a1d2d;
    --secondary-color: #2a3396;
    --light-blue-cyan: #ddeded;
    --light-cyan: #f0f4f4;
    --dark-cyan: #139da0;
    --blue-color: #2884bc;
    --yellow-color: #ffe169;
    --white-color: #ffffff;
    --rotateY-element: 45deg;
    --cursor: "pointer";
    --shadow-floor-y: 1px;
    --shadow-floor-x: 0px;
    --rotate-screen-x: 125deg;
}

.font-roboto {
    font-family: 'Roboto', sans-serif;
}

html,
body {
    overflow-x: hidden
}

body {
    font-family: 'Poppins', 'Roboto', Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: var(--primary-color);
}

body:not(.loaded)>*:not(#page-loader) {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

body.loaded>*:not(#page-loader) {
    opacity: 1;
}

/* Page Loader Styles */
#page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease-in-out;
}

#page-loader.fade-out {
    opacity: 0;
    pointer-events: none;
}

.spinner {
    width: 48px;
    height: 48px;
    border: 4px solid var(--blue-color);
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}


/* Make header overlay the hero with pure transparency */
.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent !important;
    box-shadow: none !important;
    z-index: 100;
}


.hero-section {
    background-color: var(--light-cyan);
}

.book-button {
    font-size: 20px;
}


.slider-section {
    position: relative;
}


.slider-section .swiper-pagination-bullet-active {
    background-color: var(--secondary-color) !important;
}



.we-work-with-section {
    background-color: var(--light-cyan);
}

/* left list styling */
.we-work-with-section .work-list-item {
    color: #abb1d3;
    font-size: 40px;
    cursor: pointer;
    transition: color .2s, font-weight .2s;
    padding: .5rem 0.75rem;
    border-radius: 0.5rem;
    text-align: center;
}

.we-work-with-section .work-list-item:hover {
    color: #2a3396;
}

.we-work-with-section .work-list-item.active {
    color: #2a3396 !important;
    font-weight: 700;
}

/* make sure slides don't overlap when fade is used */
.we-work-with-section .rightContent .swiper-slide {
    display: block;
    position: relative;
}

/* hide scrollbar but keep scrollable */
.we-work-with-section #workList {
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE/Edge */
}

.we-work-with-section #workList::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari */
}



.benefits-of-bizCare-section {
    background-color: var(--white-color);
}



.how-it-works-section {
    background-color: var(--light-cyan);
}

.about-us-section {
    background-color: var(--white-color);
}

.help-section {
    background-color: var(--light-cyan);
}

footer {
    background-color: var(--primary-color);
}


/* Custom Fade In from Parent Container */
.animate__fadeInUp {
    animation-name: fadeInUpLocal !important;
}

.animate__fadeInLeft {
    animation-name: fadeInLeftLocal !important;
}

.animate__fadeInRight {
    animation-name: fadeInRightLocal !important;
}

/* Keyframes that respect parent (start closer, not from viewport) */
@keyframes fadeInUpLocal {
    from {
        opacity: 0;
        transform: translate3d(0, 20px, 0);
        /* only 20px up inside parent */
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInLeftLocal {
    from {
        opacity: 0;
        transform: translate3d(-20px, 0, 0);
        /* only 20px left inside parent */
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInRightLocal {
    from {
        opacity: 0;
        transform: translate3d(20px, 0, 0);
        /* only 20px right inside parent */
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}


.mbp-mockup-wrapper {
    width: 100%;
    max-width: 1280px;
    min-width: 320px;
    margin: 10px auto 20px;
    height: auto;
    align-self: flex-start;
    position: relative;
    display: flex;
}

.mbp-container {
    position: relative;
    width: 100%;
    max-width: 1280px;
    min-width: 320px;
    height: auto;
    padding-top: 58.6%;
    margin: 0 auto;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    box-sizing: border-box;
}

.mbp-display {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: block;
    width: 81.3%;
    height: 95.2%;
    margin: 0 auto;
    background-image: radial-gradient(#cfd0d1, #cfd0d1, #adadae);
    border: 1px solid #e5e7e9;
    border-radius: 3.1% / 4%;
    z-index: 1;
}

.mbp-display .display-edge {
    display: block;
    position: relative;
    width: 99.37%;
    height: 99.25%;
    margin: 0.3% auto;
    z-index: 2;
    background-color: #262626;
    border-radius: 2.75% / 3.8%;
}

.mbp-display .display-edge .bezel {
    display: block;
    position: relative;
    width: 99.5%;
    height: 99.2%;
    margin: auto;
    top: 0.4%;
    border-radius: 2.8% / 3.2%;
    z-index: 3;
    background-color: #010101;
}

.mbp-display .bezel:after {
    content: '';
    display: none;
    position: absolute;
    right: 0.15%;
    top: 0.3%;
    width: 62.5%;
    height: 100%;
    pointer-events: none;
    background: -moz-linear-gradient(55deg, rgba(0, 0, 0, 0) 61%, rgba(242, 245, 248, 0.15) 61%);
    background: -webkit-linear-gradient(36deg, rgba(0, 0, 0, 0) 61%, rgba(242, 245, 248, 0.15) 61%);
    background: -o-linear-gradient(55deg, rgba(0, 0, 0, 0) 61%, rgba(242, 245, 248, 0.15) 61%);
    background: -ms-linear-gradient(55deg, rgba(0, 0, 0, 0) 61%, rgba(242, 245, 248, 0.15) 61%);
    background: linear-gradient(55deg, rgba(0, 0, 0, 0) 61%, rgba(242, 245, 248, 0.15) 61%);
    background-blend-mode: screen;
    -webkit-border-top-right-radius: 3.5% 3%;
    -moz-border-radius-toptight: 3.5% 3%;
    border-top-right-radius: 3.5% 3%;
}

.mbp-display.with-glare .bezel:after {
    display: block;
}

.mbp-display .display-edge .bezel .display-camera {
    width: .62%;
    height: .95%;
    margin: 1% auto;
    left: 0;
    right: 0;
    position: absolute;
    border-radius: 50%;
    z-index: 5;
    background-color: var(--primary-color);
}

.mbp-display .display-edge .bezel .display-frame {
    display: block;
    position: absolute;
    width: 97.65%;
    height: 89.5%;
    margin: 0 auto;
    top: 3.5%;
    left: 0;
    right: 0;
    background-color: var(--white-color);
    overflow-x: hidden;
}

.mbp-display .display-frame iframe {
    left: 0;
    top: 0;
    position: absolute;
    width: 200%;
    height: 200%;
    border: 0;
    -ms-zoom: 0.5;
    -moz-transform: scale(0.5);
    -moz-transform-origin: 0 0;
    -o-transform: scale(0.5);
    -o-transform-origin: 0 0;
    -webkit-transform: scale(0.5);
    -webkit-transform-origin: 0 0;
    transform: scale(0.5);
    transform-origin: 0 0;
}


.mbp-keyboard {
    width: 99.75%;
    height: 7.6%;
    margin: 0 auto;
    position: absolute;
    bottom: 0px;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.mbp-keyboard .front {
    /* 	opacity:0; */
    width: 100%;
    height: 37.25%;
    position: absolute;
    margin: 0 auto;
    left: 0;
    right: 0;
    top: 0;
    background: linear-gradient(90deg, #68696b 0%, #757678 .15%, #a0a1a3 .3%, #cccdcf .5%, #e7e8ea .8%, #e8e9eb 1%, #dfe0e2 1.25%, #d1d2d4 1.5%, #adaeb0 2%, #a4a5a7 3%, #bbbdbf 4%, #e1e1e3 8%, #eaebed 15%, #e9eaec 25%, #e9eaec 75%, #eaebed 85%, #e1e1e3 92%, #bbbdbf 96%, #a4a5a7 97%, #adaeb0 98%, #d1d2d4 98.5%, #dfe0e2 98.75%, #e8e9eb 99%, #e7e8ea 99.2%, #cccdcf 99.5%, #a0a1a3 99.7%, #757678 99.85%, #68696b 100%);
    z-index: 100;
    border-radius: 1px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.mbp-keyboard .opener-left {
    position: relative;
    width: 6.917%;
    height: 65.5%;
    z-index: 101;
    border-radius: 0 0 0 20px;
    background-color: #c1c2c6;
    background: linear-gradient(180deg, rgba(195, 198, 200, 0.5) 0%, rgba(199, 200, 204, 0.5) 60%, rgba(115, 125, 130, 0.4) 100%), radial-gradient(circle at right, rgba(189, 190, 193, 0.5) 0%, rgba(189, 190, 193, 0.5) 50%, rgba(166, 169, 172, 0.5) 80%, rgba(30, 34, 40, 0.75) 100%);
    background-blend-mode: darken;
}

.mbp-keyboard .opener-right {
    position: relative;
    width: 6.917%;
    height: 65.5%;
    z-index: 101;
    border-radius: 0 0 20px 0;
    background-color: #c1c2c6;
    background: linear-gradient(180deg, rgba(195, 198, 200, 0.5) 0%, rgba(199, 200, 204, 0.5) 60%, rgba(115, 125, 130, 0.4) 100%), radial-gradient(circle at left, rgba(189, 190, 193, 0.5) 0%, rgba(189, 190, 193, 0.5) 50%, rgba(166, 169, 172, 0.5) 80%, rgba(30, 34, 40, 0.75) 100%);
    background-blend-mode: darken;
}

.mbp-keyboard .bottom-left {
    display: block;
    position: relative;
    width: 50%;
    height: 58%;
    top: 10%;
    z-index: 99;
    background: linear-gradient(180deg, #e5e6e9 0%, #909193 65%, #4e4f51 90%, #323234 96%, #29292b 100%);
    border-bottom-left-radius: 25% 60%;
}

.mbp-keyboard .bottom-right {
    display: block;
    position: relative;
    width: 50%;
    height: 58%;
    top: 10%;
    z-index: 99;
    background: linear-gradient(180deg, #e5e6e9 0%, #909193 65%, #4e4f51 90%, #323234 96%, #29292b 100%);
    border-bottom-right-radius: 25% 60%;
}

.mbp-shadow {
    width: 95%;
    height: 60%;
    display: flex;
    justify-content: center
}

.mbp-shadow .shadow-left {
    display: block;
    position: relative;
    width: 50%;
    height: 100%;
    top: 10%;
    z-index: 90;
    background: linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(8, 11, 17, .85) 2.5%, rgba(29, 32, 36, .4) 15%, rgba(255, 255, 255, 0) 50%);
    filter: blur(2px);
    background-blend-mode: multiply;
    border-top-left-radius: 20% 90%;
}

.mbp-shadow .shadow-right {
    display: block;
    position: relative;
    width: 50%;
    height: 100%;
    top: 10%;
    z-index: 90;
    background: linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(8, 11, 17, .85) 2.5%, rgba(29, 32, 36, .4) 15%, rgba(255, 255, 255, 0) 50%);
    filter: blur(2px);
    background-blend-mode: multiply;
    border-top-right-radius: 20% 90%;
}



@media(max-width:440px) {
    .book-button {
        font-size: 100%;
    }

    .we-work-with-section .work-list-item {
        font-size: 20px;
    }
}