@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto+Slab:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

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

html,
body {
    max-width: 100%;
    margin: 0;
    padding: 0;
    font-family: "Roboto", "sans-serif";
    scroll-behavior: smooth;
    background-color: #FFFFF0;
}

h1,
h2 {
    font-weight: 700;
    font-family: "Roboto", "sans-serif";
}

h3,
h4 {
    font-family: "Roboto Slab", "serif";
    font-weight: 500;
}

li,
span {
    font-family: "Roboto Slab", "serif";
    font-weight: 400;
}

p,
a,
span {
    font-family: "Roboto", "san-serif";
    font-weight: 400;
}

img {
    height: 100%;
    width: 100%;
}

header {
    position: sticky;
    top: 0px;
    z-index: 20;
    box-shadow: 0px 4px 4px 0px #00000040;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 16px;
    background-color: #FFFFF0;
}

@media (max-width: 776px){
    .hide-mobile {
        display: none !important;
    }
}

@media (min-width: 776px){
    .show-mobile {
        display: none !important;
    }
}

nav img {
    height: 50px;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    font: bold 1.5rem;
    font-size: 17px;
}

nav ul li {
    position: relative;
    margin: 0px 30px;
    padding: 10px 0px;
    width: max-content;
}

nav ul li:before {
    content: "";
    position: absolute;
    inset: calc(100% - 3px) 0 0 0;
    background: #1d2b2e;
    scale: 0 1;
    transition: 0.3s, translate 0s 0.3s;
}

nav ul li:hover:before {
    scale: 1;
    transition: 0.3s;
}

nav ul li:hover:before {
    translate: 0;
    transition: 0.3s;
}

nav ul li:hover~li:before {
    translate: -100% 0;
    transition: 0.2s 0.2s, scale 0s 0.4s;
}

nav ul li:has(~ li:hover):before {
    translate: 100% 0;
    transition: 0.2s 0.2s, scale 0s 0.4s;
}

nav ul li a {
    color: #1d2b2e;
    text-decoration: none;
    padding: 10px 0px;
}

.btn-epic {
    position: relative;
    margin: auto;
    width: 150px;
    height: 40px;
    background: #03120e;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-size: 18px;
    letter-spacing: 0.05em;
    transition: all 0.4s ease-in-out;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-epic:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fffff0;
    border-radius: 50% 50% 0 0;
    transform: translateY(100%) scaleY(0.5);
    transition: all 0.6s ease;
}

.btn-epic:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #1d2b2e;
    transform: translateY(0) scaleY(1);
    transition: all 0.6s ease;
}

.btn-epic div {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    overflow: hidden;
}

.btn-epic span {
    position: absolute;
    z-index: 1;
    width: 100%;
    text-align: center;
    transition: transform 0.5s ease;
}

.btn-epic span:first-child {
    color: #1d2b2e;
    transform: translateY(100%);
}

.btn-epic span:last-child {
    color: #fffff0;
    transform: translateY(0);
}

.btn-epic:hover {
    background: #1d2b2e;
}

.btn-epic:hover:before {
    border-radius: 0;
    transform: translateY(0) scaleY(1);
}

.btn-epic:hover:after {
    border-radius: 0 0 50% 50%;
    transform: translateY(-100%) scaleY(0.5);
}

.btn-epic:hover span:first-child {
    transform: translateY(0);
}

.btn-epic:hover span:last-child {
    transform: translateY(-100%);
}

.get-started-dark-btn {
    height: 50px;
    width: 160px;
    border: 1px solid #1d2b2e !important;
}

.onscreen-element {
    display: flex;
    align-items: center;
}

.offscreen-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: fixed;
    top: 0px;
    right: -350px;
    height: 460px;
    width: 250px;
    z-index: 10;
    padding: 80px 20px 30px 20px;
    background-color: #fffff0;
    border-radius: 0px 0px 0px 44px;
    box-shadow: 0px 4px 4px 0px #00000040;
    transition: right 0.3s ease-in-out;
}

.offscreen-menu ul {
    display: flex;
    flex-direction: column;
    list-style: none;
    padding: 0;
    font-size: 17px;
    margin-bottom: 10px;
}

.offscreen-menu ul li {
    margin: 0px 0px 10px 0px;
    overflow: hidden;
}

#ham-menu-btn {
    display: none;
}

#ham-menu-btn i {
    color: #03120e;
    font-size: 45px;
    cursor: pointer;
    transition: 0.3s ease;
}

#ham-menu-btn:hover {
    opacity: 0.8;
}

#close-menu-btn i {
    position: absolute;
    top: 8px;
    right: 10px;
    padding: 16px;
    font-size: 35px;
    color: #03120e;
    cursor: pointer;
    transition: 0.3s ease;
}

#close-menu-btn:hover {
    opacity: 0.8;
}

/* Pop-up overlay */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
    padding: 20px;
    box-sizing: border-box;
}

/* Pop-up box */
.popup {
    background: #ffffff;
    padding: 40px;
    color: #1d2b2e;
    box-shadow: 0px 0px 10px 8px #ffffff26;
    border-radius: 54px;
    width: 600px;
    max-width: 90vw;
    position: relative;
    max-height: 80vh;
    overflow-y: auto;
    word-wrap: break-word;
    overflow-wrap: break-word;
    scrollbar-width: thin;
    scrollbar-color: #c1c1c1 #f1f1f1;
}

/* Custom scrollbar for popup */
.popup::-webkit-scrollbar {
    width: 8px;
}

.popup::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.popup::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 10px;
    transition: background 0.3s ease;
}

.popup::-webkit-scrollbar-thumb:hover {
    background: #1d2b2e;
}

.popup-heading {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin: 0px 0px 10px 0px;
}

.popup-title {
    font-size: 32px;
    line-height: 36px;
}

.popup-close-btn {
    font-size: 24px;
    color: #03120e;
    cursor: pointer;
    transition: 0.3s ease;
}

.popup-close-btn:hover {
    opacity: 0.8;
}

#user-type-selector {
    width: 100%;
    max-width: 100%;
    padding: 14px 24px;
    margin: 15px auto 0;
    font-size: 16px;
    border-radius: 44px;
    box-shadow: 0px 0px 4px 4px #00000014;
    outline: none;
    border: none;
    color: #00000080;
    background-color: #f5f5f5;
    cursor: pointer;
    overflow: visible;
    white-space: nowrap;
    text-overflow: ellipsis;
}

#user-type-selector option {
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
    padding: 8px;
    line-height: 1.4;
}

#transition-message {
    margin: 0px auto;
    font-size: 18px;
    text-align: center;
}

#selected-option {
    width: 100%;
}

.loading-dots {
    width: 20px;
    text-align: left;
}

.hidden {
    display: none !important;
}

/* Tool Tip  */
.hero-animation {
    display: flex;
    gap: 20px;
    position: relative;
}

.hero-animation-icon {
    position: relative;
    cursor: pointer;
}

.tooltip {
    position: absolute;
    padding: 10px;
    background-color: #fffff0;
    color: #1d2b2e;
    border-radius: 5px;
    display: none;
    z-index: 10;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.tooltip h3 {
    margin: 0;
    font-size: 16px;
}

.tooltip p {
    margin: 5px 0 0;
    font-size: 14px;
}

/*  */
/* Chat Bot  */
.chatbot-toggler {
    position: fixed;
    z-index: 100;
    right: 20px;
    bottom: 20px;
    height: 65px;
    width: 65px;
    font-size: 26px;
    color: #1d2b2e;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fffff0;
    border: none;
    outline: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 16px rgba(38, 38, 38, 0.5);
    transition: all 0.2s ease;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    20% {
        transform: translateY(-10px);
    }

    40% {
        transform: translateY(5px);
    }

    60% {
        transform: translateY(-5px);
    }

    80% {
        transform: translateY(2px);
    }
}

@keyframes popUp {
    0% {
        transform: scale(0);
        opacity: 0;
        visibility: visible;
    }

    50% {
        transform: scale(1.1);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 1;
        visibility: visible;
    }
}

#intro-msg {
    position: fixed;
    z-index: 100;
    bottom: 20px;
    right: 95px;
    height: 60px;
    width: 155px;
    font-size: 18px;
    background-color: #f2f2f2;
    padding: 10px 6px;
    border-radius: 15px;
    align-items: center;
    justify-content: space-between;
}

#intro-msg::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -15px;
    transform: translateY(-50%);
    border-width: 10px;
    border-style: solid;
    border-color: transparent transparent transparent #f2f2f2;
}

#intro-msg .chatbot-profile {
    margin: 0px;
}

#intro-msg p {
    margin: 0px 0px 0px auto;
}

.hide-intro-msg {
    display: none !important;
}

.show-chatbot .chatbot {
    animation: bounce 0.4s ease;
    transform: scale(1);
    opacity: 1;
    pointer-events: auto;
}

.show-chatbot .chatbot-toggler {
    transform: rotate(90deg);
}

.chatbot-toggler span {
    position: absolute;
}

.show-chatbot .chatbot-toggler span:first-child,
.chatbot-toggler span:last-child {
    opacity: 0;
}

.show-chatbot .chatbot-toggler span:last-child {
    opacity: 1;
}

.chatbot {
    position: fixed;
    z-index: 100;
    right: 20px;
    bottom: 100px;
    border-radius: 15px;
    width: 420px;
    transform: scale(0.5);
    background-color: #fffff0;
    box-shadow: 0 0 128px 0 rgba(0, 0, 0, 0.1),
        0 32px 64px -48px rgba(0, 0, 0, 0.5);
    opacity: 0;
    pointer-events: none;
    transform-origin: bottom right;
    transition: all 0.1s ease;
}

.response-loader {
    width: 12px;
    height: 12px;
    margin: 6px 16px;
    background: #1d2b2e;
    border-radius: 50%;
    box-shadow: 20px 0 #1d2b2e22, -20px 0 #1d2b2e;
    animation: d5 1s infinite linear alternate;
}

@keyframes d5 {
    0% {
        box-shadow: 20px 0 #1d2b2e, -20px 0 #1d2b2e22;
        background: #1d2b2e;
    }

    33% {
        box-shadow: 20px 0 #1d2b2e, -20px 0 #1d2b2e22;
        background: #1d2b2e22;
    }

    66% {
        box-shadow: 20px 0 #1d2b2e22, -20px 0 #1d2b2e;
        background: #1d2b2e22;
    }
}

.show-chatbot .chatbot {
    transform: scale(1);
    opacity: 1;
    pointer-events: auto;
}

.chatbot-header {
    background-color: #1d2b2e;
    padding: 16px 0;
    margin: -1px;
    text-align: center;
    border-radius: 14px 14px 0px 0px;
    position: relative;
}

.chatbot-header h2 {
    color: #fffff0;
    font-size: 20px;
}

.chatbot-header span {
    position: absolute;
    right: 20px;
    top: 50%;
    color: #fffff0;
    cursor: pointer;
    display: none;
    transform: translateY(-50%);
}

.chatbox {
    height: 450px;
    overflow-y: auto;
    padding: 30px 20px 100px;
    }

.chat {
    display: flex;
}

.chat p {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 4px;
    color: #fffff0;
    font-size: 14px;
    max-width: 100%;
    text-align: left;
    white-space: normal;
    padding: 10px 20px;
    border-radius: 10px 10px 0 10px;
    background: #1d2b2e;
    overflow-wrap: break-word;
}

.incoming p {
    color: #000;
    background: #f2f2f2;
    border-radius: 10px 10px 10px 0;
}

.chatbot-profile {
    background-image: url(/assets/images/ada-ai.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.incoming span {
    min-height: 42px;
    min-width: 42px;
    color: #fffff0;
    align-self: flex-end;
    text-align: center;
    line-height: 32px;
    border-radius: 4px;
    margin: 0 10px 7px 0;
}

.outgoing {
    margin: 20px 0;
    justify-content: flex-end;
}

.chat-input {
    position: absolute;
    display: flex;
    gap: 5px;
    bottom: 0;
    width: 100%;
    background: #fffff0;
    padding: 0px 12px;
    border-radius: 0px 0px 14px 14px;
    border-top: 1px solid #ccc;
}

.chat-input textarea {
    font-family: "Roboto", sans-serif;
}

.chat-input textarea {
    height: 55px;
    max-height: 150px;
    width: 100%;
    border: none;
    outline: none;
    font-size: 16px;
    resize: none;
    padding: 16px 15px 16px 0;
    background: #fffff0;
}

.chat-input span {
    height: 42px;
    line-height: 55px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0px 0px 6px 0px;
    padding: 10px 14px;
    border-radius: 5px;
    align-self: flex-end;
    color: #fffff0;
    background-color: #1d2b2e;
    font-size: 18px;
    cursor: pointer;
    visibility: hidden;
}

.chat-input textarea:valid~span {
    visibility: visible;
}

@media (max-width: 490px) {
    .chatbot {
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        border-radius: 0;
    }

    .chatbot .chatbox {
        height: 90%;
    }

    .chatbot-header,
    .chat-input {
        border-radius: 0;
    }

    .chatbot-header span {
        display: block;
    }
}

/*  */

.fixifi-hero {
    width: 100%;
    background: linear-gradient(to right, #1a2426 0%, #2a4145 50%, #3d5a5f 100%);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.fixifi-hero-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    color: #fffff0;
    min-height: 450px;
    height: 550px;
    padding: 0 64px;
    max-width: 1600px;
    margin: 0 auto;
}

.hero-animation {
    height: 450px;
    width: 450px;
    border-radius: 50%;
    border: 2px dashed rgba(198, 198, 198, 0);
    position: relative;
    transition: all 0.3s linear;
    animation: fade-in 1s ease-in-out, hero-spinner 32s linear infinite;
    animation-delay: 1s;
}

@keyframes hero-spinner {

    0%,
    12.5% {
        transform: rotateZ(0deg);
        border-color: rgba(198, 198, 198, 0.32);
    }

    25%,
    37.5% {
        transform: rotateZ(90deg);
    }

    50%,
    62.5% {
        transform: rotateZ(180deg);
    }

    75%,
    87.5% {
        transform: rotateZ(270deg);
    }

    100% {
        transform: rotateZ(360deg);
        border-color: rgba(198, 198, 198, 0.32);
    }
}

.hero-animation img {
    height: 40px;
    width: 40px;
}

.hero-icon {
    background-color: #ffffff;
    padding: 17px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-animation-icon {
    position: absolute;
    transition: all 0.3s linear;
    animation: fade-in 1s ease-in-out forwards,
        hero-icons-spinner 32s linear infinite;
    animation-delay: 1s;
    opacity: 0;
}

@keyframes hero-icons-spinner {

    0%,
    12.5% {
        transform: rotateZ(0deg);
    }

    25%,
    37.5% {
        transform: rotateZ(-90deg);
    }

    50%,
    62.5% {
        transform: rotateZ(-180deg);
    }

    75%,
    87.5% {
        transform: rotateZ(-270deg);
    }

    100% {
        transform: rotateZ(-360deg);
    }
}

@keyframes fade-in {
    from {
        opacity: 0;
        transform: scale(0.9);
        border-color: rgba(198, 198, 198, 0);
    }

    to {
        opacity: 1;
        transform: scale(1);
        border-color: rgba(198, 198, 198, 0.32);
    }
}

.icon-1 {
    top: 30px;
    left: 40px;
}

.icon-1 img {
    border-radius: 5px;
}

.icon-2 {
    top: 30px;
    right: 40px;
}

.icon-3 {
    bottom: 30px;
    left: 40px;
}

.icon-4 {
    bottom: 30px;
    right: 40px;
}

.hero-info {
    position: absolute;
    animation: fade-in 1s ease-in-out;
    animation-delay: 0.5s;
    opacity: 0;
    transform: translateY(20px);
    animation-fill-mode: forwards;
}

.hero-info h1 {
    font-size: 32px;
    line-height: 38px;
}

.hero-info h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 10px;
}

.hero-info-btn {
    margin-top: 40px;
}

.hero-btn::after {
    background: #ffffff;
}

.hero-btn::before {
    background: #1d2b2e;
}

.hero-btn span:first-child {
    color: #ffffff;
}

.hero-btn span:last-child {
    color: #1d2b2e;
}

.about-fixifi {
    padding: 60px 64px 50px 64px;
    max-width: 1600px;
    margin: 0px auto;
    width: 100%;
    background-color: #FFFFF0;
    flex-direction: column;
}

.about-fixifi .about-section-heading {
    text-align: center;
    margin-bottom: 30px;
}

.about-fixifi .about-section-heading h2 {
    font-size: 48px;
    line-height: 56px;
    color: #1d2b2e;
    font-weight: 700;
}

.about-fixifi-wrapper {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    width: 100%;
}

.about-fixifi-img {
    background-image: url(/assets/images/FiXiFi\ About\ us\ thumbnail.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 34px;
    position: relative;
    cursor: pointer;
}

.about-us-main-img {
    width: 45%;
    height: 370px;
}

.about-fixifi-img video {
    width: 100%;
    position: absolute;
    z-index: 2;
    display: none;
    border-radius: 44px;
    background-color: #000;
}

.about-fixifi-img video {
    height: 370px;
}

.about-fixifi-play {
    position: absolute;
    top: 39%;
    left: 41%;
    height: 20%;
    width: 20%;
}

.about-fixifi-info {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    text-align: justify;
    margin: 0;
    width: 45%;
    padding: 0 40px;
}

.about-fixifi-info h2 {
    font-size: 45px;

    line-height: 52px;
    margin-bottom: 50px;
}

.about-fixifi-info p {
    font-size: 18px;
    margin: 0 0 10px 0;
    line-height: 30px;
}

.about-fixifi-btn {
    font-size: 20px;
    margin-top: 40px;
    font-size: 24px;
    line-height: 28px;
}

@keyframes slide-in-left {
    from {
        opacity: 0;
        transform: translateX(-100%);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slide-in-right {
    from {
        opacity: 0;
        transform: translateX(100%);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

[data-animation="slide-in-left"],
[data-animation="slide-in-right"] {
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

[data-animation].animate {
    opacity: 1;
}

[data-animation="slide-in-left"].animate {
    animation: slide-in-left 1s ease forwards;
}

[data-animation="slide-in-right"].animate {
    animation: slide-in-right 1s ease forwards;
}

@keyframes slide-in-bottom {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

[data-animation="slide-in-bottom"] {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

[data-animation="slide-in-bottom"].animate {
    animation: slide-in-bottom 0.8s ease forwards;
}

@keyframes fade-in-mobile-section {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@media (max-width: 786px) {

    [data-animation="slide-in-left"],
    [data-animation="slide-in-right"],
    [data-animation="slide-in-bottom"] {
        animation: none !important;
        opacity: 0;
    }

    [data-animation] {
        animation: fade-in-mobile-section 0.8s ease forwards;
    }
}

.services {
    display: flex;
    flex-direction: column;
    max-width: 1600px;
    margin: 0px auto;
    width: 100%;
    padding: 40px 64px 40px 64px;
}

.services-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    margin-top: 40px;
}

.services-left {
    width: 35%;
}

.services-left h2 {
    font-size: 60px;
    line-height: 64px;
    margin-bottom: 30px;
}

.services-intro {
    font-size: 18px;
    line-height: 30px;
    color: #1d2b2e;
}

.services-right {
    width: 65%;
}

.services-list {
    list-style: disc;
    padding-left: 25px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 40px;
    row-gap: 25px;
    margin-top: 40px;
}

.services-list li {
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 0;
    color: #1d2b2e;
}

.services-list li b {
    font-weight: 600;
}

/* Old styles - keep for compatibility */
.services h2 {
    font-size: 60px;
    line-height: 64px;
}

.services-info {
    display: flex;
    justify-content: space-between;
    text-align: justify;
    width: 100%;
    margin-top: 40px;
}

.services-info h4 {
    font-size: 18px;
    line-height: 30px;
}

.services-info p {
    font-size: 18px;
    line-height: 30px;
}

.column1 {
    width: 45%;
    margin-right: 20px;
}

.column1 li,
.column1 p,
.column2 li,
.column2 p {
    margin-top: 20px;
}

.column2 {
    width: 45%;
    margin-left: 30px;
}

.services-info-btn {
    font-size: 24px;
    line-height: 28px;
    width: 100%;
    margin-top: 30px;
    display: flex;
    justify-content: flex-start;
    grid-column: 2;
}

.services-btn {
    margin-left: 0px;
    margin-right: auto;
}

/* About Section Title */
.about-section-wrapper {
    padding: 60px 64px 0 64px;
    max-width: 1600px;
    margin: 0 auto;
    width: 100%;
    background-color: #FFFFF0;
}

.about-section-heading {
    text-align: center;
    margin-bottom: 0;
}

.about-section-heading h2 {
    font-size: 48px;
    line-height: 56px;
    color: #1d2b2e;
    font-weight: 700;
}

/* Platform Brands Section */
.platform-brands {
    padding: 60px 64px;
    max-width: 1600px;
    margin: 0 auto;
    width: 100%;
    background-color: #FFFFF0;
}

.platform-brands-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.platform-brands-heading {
    text-align: center;
    margin-bottom: 50px;
}

.platform-brands-heading h2 {
    font-size: 48px;
    line-height: 56px;
    color: #1d2b2e;
    font-weight: 700;
}

.platform-brands-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    width: 100%;
    max-width: 1200px;
}

.platform-brand-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.platform-brand-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 30px;
    background: linear-gradient(180deg, #f5f5f5 0%, #b8b8b8 100%);
    border-radius: 20px;
    box-shadow: 0px 8px 25px rgba(29, 43, 46, 0.12);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.platform-brand-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1d2b2e 0%, #3a5a5f 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.platform-brand-item:hover {
    transform: translateY(-8px);
    box-shadow: 0px 15px 40px rgba(29, 43, 46, 0.3);
    border-color: rgba(29, 43, 46, 0.2);
}

.platform-brand-item:hover::before {
    transform: scaleX(1);
}

.platform-brand-logo {
    width: 100%;
    max-width: 250px;
    height: 50px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.platform-brand-link:hover .platform-brand-logo {
    transform: scale(1.05);
}

.platform-brand-logo img {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0px 2px 4px rgba(0, 0, 0, 0.1));
}

.platform-brand-item h3 {
    font-size: 26px;
    line-height: 34px;
    color: #1d2b2e;
    margin-bottom: 15px;
    font-weight: 700;
    letter-spacing: -0.5px;
    transition: color 0.3s ease;
}

.platform-brand-link:hover .platform-brand-item h3 {
    color: #03120e;
}

.platform-brand-item p {
    font-size: 17px;
    line-height: 26px;
    color: #2d3d3f;
    font-weight: 400;
    transition: color 0.3s ease;
}

.platform-brand-link:hover .platform-brand-item p {
    color: #1d2b2e;
}

/* Responsive styles for platform brands */
@media (max-width: 1024px) {
    .platform-brands-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .platform-brands {
        padding: 40px 32px;
    }
    
    .platform-brands-heading h2 {
        font-size: 36px;
        line-height: 44px;
    }
    
    .platform-brands-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .platform-brand-logo {
        max-width: 200px;
    }
}

.our-platforms {
    padding: 30px 64px;
    max-width: 1600px;
    margin: 30px auto;
    width: 100%;
}

.our-platforms h3 {
    font-size: 32px;
    line-height: 36px;
}

.our-platforms-wrapper {
    display: grid;
    align-items: center;
    grid-template-areas:
        "box1 box2"
        "box3 box4";
    gap: 30px;
    width: 100%;
    margin: 40px 0px 0px 0px;
}

.our-platforms-wrapper a {
    text-decoration: none;
    color: #ffffff;
    transition: 0.3s ease;
}

.our-platforms-wrapper a:hover {
    transform: scale(1.02);
}

.box {
    border-radius: 20px;
    height: 250px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    transition: 0.3s ease;
    filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.box-wrapper {
    display: flex;
    background-color: rgba(29, 43, 46, 0.4);
    justify-content: center;
    flex-direction: column;
    padding: 20px;
    color: #ffffff;
    font-size: 18px;
    line-height: 26px;
    font-weight: 500;
    border-radius: 20px;
    width: 100%;
    height: 100%;
    transition: 0.3s ease;
}

.box-wrapper-bottom {
    display: flex;
    align-items: center;
    margin-top: 30px;
    justify-content: space-between;
}

.box-wrapper-img img {
    height: 45px;
    width: 230px;
    object-fit: contain;
    filter: grayscale(100%) brightness(480%);
    transition: all 0.3s ease;
}

.box:hover {
    transform: scale(1.01);
    box-shadow: 0px 8px 16px rgba(38, 38, 38, 0.2);
}

.box:hover span {
    text-decoration: underline;
}

.box:hover .box-wrapper-img img {
    filter: grayscale(0%) brightness(100%);
}

.box-wrapper b {
    font-size: 20px;
    font-weight: 600;
    line-height: 30px;
}

.box-wrapper span {
    font-size: 20px;
    font-weight: 600;
    line-height: 24px;
    transition: all 0.3s ease;
}

#box1 {
    grid-area: box1;
    background-image: url(/assets/images/background-1.webp);
}

#box2 {
    grid-area: box2;
    background-image: url(/assets/images/background-4.webp);
}

#box3 {
    grid-area: box3;
    background-image: url(/assets/images/background-3.webp);
}

#box4 {
    grid-area: box4;
    background-position: top 14% center;
    background-image: url(/assets/images/background-2.webp);
}

.our-platforms-bottom-heading {
    margin: 64px 0px 0px 0px;
    text-align: center;
}

.our-platforms-bottom-heading p {
    font-size: 24px;
    line-height: 28px;
    font-weight: 600;
}

.brands-logo {
    background: linear-gradient(90deg, #ffffff 0%, #a7aaa4 100%);
    overflow: hidden;
    padding: 64px 0;
    white-space: nowrap;
    position: relative;
    z-index: 0;
}

.brands-slide {
    display: inline-block;
    animation: 20s brands-slider linear infinite !important;
}

.brands-slide img {
    object-fit: contain;
    height: 80px !important;
    width: fit-content !important;
    margin: 0px 40px;
}

@keyframes brands-slider {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-25%);
    }
}

.brands-logo-lines {
    position: absolute;
    width: 400px;
    height: 250px;
    top: 30px;
    right: -200px;
}

.testimonials-cards {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.testimonials-cards-container {
    max-width: 1600px;
    margin: 64px auto 30px auto;
}

.testimonials-cards-wrapper {
    position: relative;
    z-index: 1;
    margin: 155px 55px 50px 55px;
}

.testimonials-cards-lines {
    position: absolute;
    width: 250px;
    height: 400px;
    top: -35px;
    left: -40px;
}

.testimonials-cards-quotes {
    position: absolute;
    width: 300px;
    height: 280px;
    z-index: 0;
    top: 80px;
    right: 120px;
    opacity: 0.25;
}

.testimonials-cards-quotes img {
    filter: brightness(0.4) contrast(1.2);
}

.testimonials-cards-heading {
    width: 100%;
    padding: 0px 64px 0px 0px;
    display: flex;
    justify-content: flex-end;
}

.testimonials-cards h2 {
    font-size: 56px;

    line-height: 80px;
}

.cards-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 100px !important;
}

.slide-wrapper {
    overflow: hidden;
    padding: 0px;
}

.swiper-wrapper {
    display: flex !important;
    transition-timing-function: ease !important;
}

.swiper-button-prev::after,
.swiper-button-next::after {
    content: "" !important;
}

.card {
    border: 1px solid #00000080;
    border-radius: 44px;
    height: 360px !important;
    padding: 30px;
    position: relative;
}

.card-client {
    display: flex;
    align-items: center;
    height: 100px;
}

.card-client-profile {
    margin: 0px 20px 0px 0px;
    height: 100px;
}

.card-client-profile img {
    object-fit: contain;
}

.card-name {
    font-size: 20px;
    line-height: 36px;
    margin: 0px 10px;
}

.card-details {
    font-size: 18px;
    line-height: 30px;

    margin-top: 30px;
    padding: 0px 20px;
}

.arrow-btn {
    border: 1px solid #1d2b2e;
    border-radius: 50%;
    padding: 1rem;
    margin: 10px 0px;
    height: 60px !important;
    width: 60px !important;
}

.pagination {
    bottom: 0px !important;
}

.swiper-pagination-bullet {
    width: 12px !important;
    height: 12px !important;
    opacity: 1;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    transform: none !important;
}

.ai-capabilities {
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url(/assets/images/banner-background@2x.webp);
    height: 100%;
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 100px 0px 40px 0px;
}

.ai-capabilities-heading {
    display: flex;
    justify-content: flex-end;
    position: relative;
    z-index: 2;
    width: 50%;
    margin-left: auto;
}

.ai-capabilities-heading h2 {
    font-size: 40px;
    line-height: 44px;
    width: 100%;
    padding: 20px 0;
    border-radius: 10px;
}

.ai-capabilities-wrapper {
    max-width: 1600px;
    min-height: 600px;
    width: 100%;
    padding: 0px 64px;
    color: #ffffff;
}

.ai-capabilities-info {
    float: right;
    width: 50%;
    margin-top: 40px;
    position: relative;
    z-index: 1;
}

.sliding-container {
    height: 400px;
    width: 100%;
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to bottom,
            rgba(0, 0, 0, 1) 0%,
            rgba(0, 0, 0, 1) 85%,
            transparent);
    -webkit-mask-image: linear-gradient(to bottom,
            rgba(0, 0, 0, 1) 0%,
            rgba(0, 0, 0, 1) 85%,
            transparent);
}

.sliding-content {
    position: absolute;
    width: 100%;
    animation: scroll 30s linear infinite;
}

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

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

@media (min-width: 768px) {
    .sliding-container:hover .sliding-content {
        animation-play-state: paused;
    }
}

.ai-capabilities-info ul {
    font-size: 18px;
    line-height: 30px;
    list-style: none;
}

.ai-capabilities-info h2 {
    font-size: 40px;
    line-height: 44px;
    margin: 0px 0px 20px 0px;
}

.ai-capabilities-info h3 {
    font-size: 26px;
    line-height: 30px;
    margin: 25px 0px;
}

.ai-capabilities-info h4 {
    font-size: 24px;
    line-height: 28px;
    margin: 10px 0px;
}

.ai-capabilities-info-btn a {
    margin-top: 30px;
    margin-left: 0px;
    margin-right: auto;
}

.blog-cards {
    display: flex;
    position: relative;
    max-width: 1600px;
    margin: 30px auto;
    padding: 100px 64px 32px 64px;
    width: 100%;
    justify-content: flex-end;
}

.blog-cards-info {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    padding: 100px 30px 0px 64px;
    background-color: #FFFFF0;
    display: grid;
    grid-template-areas:
        "info-heading"
        "info-para-1"
        "info-para-2"
        "blog-cards-line"
        "blog-btn";
    gap: 30px;
    width: 570px;
}

.blog-cards-info h2 {
    grid-area: info-heading;
    font-size: 50px;

    line-height: 54px;
}

.blog-cards-info p {
    justify-self: center;
    font-size: 18px;
    line-height: 30px;
}

.blog-cards-info-para-1 {
    grid-area: info-para-1;
}

.blog-cards-info-para-2 {
    grid-area: info-para-2;
}

.blog-cards-info-line {
    grid-area: blog-cards-line;
    padding: 0px 75px 0px 50px;
    margin: 0px auto;
}

.blog-btn {
    grid-area: blog-btn;
    width: 88%;
    height: 70px;
    display: flex;
    justify-content: flex-end;
}

.blog-btn-mobile {
    width: 100%;
    height: 70px;
    display: none;
}

.next-blog {
    position: static !important;
    height: 60px !important;
    width: 60px !important;
}

.prev-blog {
    position: static !important;
    height: 60px !important;
    margin-right: 30px;
    width: 60px !important;
}

.blog-box-container {
    height: 100%;
    margin: 0px 0px 0px 525px !important;
    padding: 30px 20px !important;
}

.blog-boxes {
    display: flex;
}

.blog-box {
    width: 100%;
    height: 633px;
    margin: 0px auto;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 5px 8px rgba(0, 0, 0, 0.3);
    border-radius: 44px 44px 15px 15px;
    overflow: hidden;
    transition: 0.5s;
    cursor: pointer;
    backdrop-filter: blur(10px);
}

.blog-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(#da22ff, #9733ee); */
    clip-path: circle(30% at right 70%);
    transition: 0.5s;
}

.blog-box::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(#e55d87, #5fc3e4); */
    clip-path: circle(20% at 10% 10%);
    transition: 0.5s;
}

.blog-box:hover::before {
    clip-path: circle(75% at 50% 50%);
}

.blog-box:hover::after {
    clip-path: circle(70% at 50% 50%);
}

.blog-box:hover {
    transform: translateY(-20px);
    transition: transform 0.5s ease;
}

.blog-box a {
    color: #03120e;
    position: relative;
    z-index: 2;
    display: block;
    height: 633px;
    text-decoration: none;
}

.blog-slide a {
    color: #03120e;
    text-decoration: none;
    cursor: pointer;
}

.blog-box-img {
    width: 100%;
    height: 280px;
    border-radius: 44px 44px 0px 0px;
}

.blog-box-img img {
    object-fit: cover;
}

.blog-box-info {
    display: flex;
    flex-direction: column;
    padding: 20px 40px;
    position: relative;
}

.blog-box-info span {
    font-size: 14px;

    font-family: "Montserrat", sans-serif;
    line-height: 22px;
}

.blog-box-info h3 {
    font-family: "Montserrat", sans-serif;
    font-size: 24px;

    line-height: 36px;
    margin: 8px 0 15px 0px;
}

.blog-box-info p {
    font-size: 18px;

    line-height: 30px;
}

.lables {
    position: absolute;
    width: 100%;
    margin: 0px auto;
    bottom: 0px;
    padding: 20px 30px;
    background-color: #FFFFF0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
}

.blog-box-lable {
    background-color: #a7aaa4;
    padding: 6px 10px;
    color: #ffffff;
    margin-right: 10px;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;

    line-height: 20px;
    border-radius: 5px;
    cursor: pointer;
}

.contact-form {
    position: relative;
    width: 100%;
    padding: 0px 64px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-form-wrapper {
    max-width: 1600px;
    width: 100%;
    margin: 30px auto;
}

.contact-form-lines {
    position: absolute;
    width: 650px;
    height: 700px;
    top: -90px;
    left: -265px;
    z-index: -1;
}

.contact-form-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: #ffffff;
    width: 100%;
    position: relative;
    padding: 100px 64px;
    border-radius: 44px;
    background-image: url(/assets/images/untitled-design-1@2x.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.contact-form-container h2 {
    font-size: 48px;
    line-height: 52px;
    text-align: center;
    margin-bottom: 40px;
}

.contact-form-mobile-para {
    display: none;
}

.contact-form-para,
.contact-form-mobile-para b {
    font-weight: 600;
}

.contact-us-form {
    background-color: #ffffff;
    border-radius: 44px;
    padding: 100px 80px 30px 80px;
    width: 55%;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 30px;
}

.contact-us-form input,
.contact-us-form select {
    border: none;
    outline: none;
    padding: 14px 24px;
    width: 100%;
    box-shadow: 2px 2px 8px 0px #00000040;
    border-radius: 44px;
    border: 1px solid #00000080;
}

.contact-us-form select {
    color: #00000080;
}

.contact-form input::placeholder,
.contact-form select {
    font-family: "Montserrat", sans-serif;
    color: #00000080;
    font-size: 14px;
    line-height: 24px;
}

.form-name {
    display: flex;
    width: 100%;
    gap: 30px;
}

.contact-us-form div {
    width: 100%;
}

.grecaptcha-badge {
    display: none !important;
}

.contact-form-btn {
    font-size: 20px;
}

.form-btn {
    height: 50px;
    width: 230px;
}

.popup-contact-us-form {
    padding: 60px 40px 30px 40px;
}

.popup-contact-us-form p {
    color: red;
    padding: 0px 0px 0px 22px;
}

.popup-contact-us-form .investment-radio {
    flex-direction: column;
    align-items: start;
}

footer {
    background-color: #03120e;
    padding: 30px 64px 0px 64px;
    overflow-x: hidden;
    margin: auto 0px 0px 0px;
}

.upper-footer {
    display: flex;
    justify-content: space-between;
    max-width: 1600px;
    margin: 0px auto;
    padding: 50px 64px 50px 64px;
    width: 100%;
    color: #ffffff;
    border-top: 3px solid #ffffff;
    border-bottom: 3px solid #ffffff;
}

.upper-footer-logo {
    margin: 0px auto 0px 0px;
}

.upper-footer-logo img {
    height: 200px;
    width: 200px;
    object-fit: contain;
}

.upper-footer-lists {
    flex-wrap: wrap;
    display: grid;
    grid-template-areas: "upper-list-1 upper-list-2 upper-list-3 upper-list-4";
    justify-content: space-evenly;
}

.upper-footer-lists ul {
    font-family: "Montserrat", sans-serif;
    list-style: none;
    margin: 20px 35px 0px 35px;
}

.upper-footer-lists h4 {
    font-size: 15px;
    line-height: 24px;
    margin-bottom: 20px;
    color: #ffffff;
}

.upper-footer-lists a {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.upper-footer-lists li {
    font-size: 15px;
    font-family: "Montserrat", sans-serif;
    line-height: 24px;
    font-weight: 200;
}

.upper-footer-lists a:hover {
    text-decoration: underline;
    opacity: 0.8;
}

.upper-footer-btn {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.black-btn {
    margin: 0px;
}

.black-btn::before {
    background: #03120e;
}

.black-btn span:first-child {
    color: #ffffff;
}

.black-btn span:last-child {
    color: #03120e !important;
}

.upper-mobile-footer {
    width: 100%;
    padding: 30px 20px;
    display: none;
    color: #ffffff;
    border-top: 3px solid #ffffff;
    border-bottom: 3px solid #ffffff;
}

.upper-mobile-footer-logo {
    display: flex;
}

.upper-mobile-footer-logo img {
    height: 200px;
    width: 200px;
    object-fit: contain;
}

.upper-mobile-footer-info {
    margin-top: 40px;
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.upper-mobile-footer-lists {
    width: 100%;
    margin-top: 0;
    display: grid;
    font-family: "Montserrat", "sans-serif";
    grid-template-areas:
        " upper-list-1 upper-list-2 upper-list-3"
        " upper-list-4 upper-list-5 upper-list-6";
}

.upper-mobile-footer-lists ul {
    margin: 0px 50px 50px 0px;
    list-style: none;
}

.upper-mobile-footer-lists h4 {
    font-size: 15px;
    line-height: 24px;
    margin-bottom: 20px;
    color: #ffffff;
}

.upper-mobile-footer-lists li {
    font-size: 15px;
    font-family: "Montserrat", sans-serif;
    line-height: 24px;
    font-weight: 200;
}

.upper-mobile-footer-lists a {
    cursor: pointer;
    color: #ffffff;
    text-decoration: none;
    transition: 0.3s ease;
}

.upper-mobile-footer-lists a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

#upper-list-1 {
    grid-area: upper-list-1;
}

#upper-list-2 {
    grid-area: upper-list-2;
}

#upper-list-3 {
    grid-area: upper-list-3;
}

#upper-list-4 {
    grid-area: upper-list-4;
}

.upper-mobile-footer-btn {
    gap: 10px;
    display: flex;
}

.bottom-footer {
    display: flex;
    flex-direction: column;
    padding: 20px 0px 0px 0px;
    color: #ffffff;
    max-width: 1600px;
    margin: 30px auto 0px auto;
    width: 100%;
}

.bottom-footer-wrapper {
    padding: 0px 64px;
}

.bottom-footer h1,
.bottom-mobile-footer h1 {
    font-size: 48px;
    line-height: 72px;
}

.social-icons {
    margin: 20px auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    gap: 15px;
    font-family: "Averia Serif Libre", serif;
}

.item {
    background: center/50% no-repeat;
    width: min(90px);
    height: min(90px);
    border-radius: 50%;
    text-align: center;
    background-color: #ffffff;
    cursor: pointer;
    display: grid;
    place-items: center;
    color: transparent;
    font-size: calc(min(90px) / 7);
    transition: box-shadow 0.6s ease-in-out, color 0.5s ease-in-out;
}

.item:hover {
    box-shadow: inset calc(-1 * min(90px)) calc(-1 * min(90px)) 0 rgb(255, 240, 240),
        inset min(90px) calc(-1 * min(90px)) 0 green,
        inset calc(-1 * min(90px)) min(90px) 0 blue,
        inset min(90px) min(90px) 0 yellow, 0 0 20px silver;
    color: #1d2b2e;
}


.item>span {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    font-family: "Roboto", sans-serif;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
}

.social-icons a {
    text-decoration: none;
}

.item:first-of-type {
    background-image: url(/assets/images/facebook-f-brands-solid.svg);
    background-size: 40px 40px;
}

.item:nth-of-type(2) {
    background-image: url(/assets/images/linkedin-in-brands-solid.svg);
    background-size: 40px 40px;
}

.item:nth-of-type(3) {
    background-image: url(/assets/images/x-twitter-brands-solid.svg);
    background-size: 40px 40px;
}

.item:nth-of-type(4) {
    background-image: url(/assets/images/instagram-brands-solid.svg);
    background-size: 40px 40px;
}

.item:nth-of-type(5) {
    background-image: url(/assets/images/tiktok-brands-solid.svg);
    background-size: 40px 40px;
}

@media (max-width: 768px) {
    .social-icons {
        gap: 12px;
    }

    .item {
        width: min(80px);
        height: min(80px);
        font-size: calc(min(80px) / 7);
    }

    .item>span {
        font-size: 16px;
    }
}

@media (max-width: 600px) {
    .item {
        width: min(70px);
        height: min(70px);
        font-size: calc(min(70px) / 7);
    }

    .item>span {
        font-size: 14px;
    }
}

@media (max-width: 400px) {
    .item {
        width: min(60px);
        height: min(60px);
        font-size: calc(min(60px) / 7);
    }

    .item>span {
        font-size: 12px;
    }
}

.bottom-footer-lists {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin: 0px 0px 50px 0px;
}

.bottom-footer-lists ul {
    margin: 0px 35px;
    list-style: none;
    font-family: "Montserrat", sans-serif;
}

.bottom-footer-lists h4 {
    font-size: 15px;
    line-height: 24px;

    margin-bottom: 30px;
}

.bottom-footer-lists li a {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.bottom-footer-lists li {
    font-size: 15px;
    font-family: "Montserrat", sans-serif;
    line-height: 24px;
    font-weight: 200;
}

.bottom-footer-lists a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.bottom-mobile-footer {
    display: none;
    padding: 30px 30px 0px 30px;
    color: #ffffff;
    max-width: 1600px;
    margin: 0px auto;
    width: 100%;
}

.bottom-mobile-footer-lists {
    height: 100%;
    display: grid;
    grid-template-areas:
        "bottom-list-1 bottom-list-1 bottom-list-1"
        "bottom-list-2 bottom-list-3 bottom-list-4"
        "copy-right copy-right copy-right";
    margin-top: 40px;
    width: 100%;
    gap: 20px;
}

#bottom-list-1 {
    grid-area: bottom-list-1;
}

#bottom-list-2 {
    grid-area: bottom-list-2;
}

#bottom-list-3 {
    grid-area: bottom-list-3;
}

#bottom-list-4 {
    grid-area: bottom-list-4;
}

.bottom-mobile-footer-lists ul {
    list-style: none;
    color: #ffffff;
}

.bottom-mobile-footer-lists li a {
    color: #ffffff;
    transition: all 0.3s ease;
    text-decoration: none;
    cursor: pointer;
}

.bottom-mobile-footer-lists li {
    font-size: 15px;
    font-family: "Montserrat", sans-serif;
    line-height: 24px;
    font-weight: 200;
}

.bottom-mobile-footer-lists li a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.bottom-mobile-footer-lists h4 {
    font-size: 15px;
    line-height: 24px;

    margin-bottom: 15px;
}

.copy-right {
    display: flex;
    justify-content: space-between;
    text-align: center;
    font-family: "Montserrat", sans-serif;
    margin: 0px;
    padding: 25px 0px;
    border-top: 3px solid #ffffff;
}

.copy-left-side {
    text-align: left;
}

.copy-right h3,
.copy-right-mobile h3 {
    font-size: 15px;
    line-height: 24px;
}

.copy-right-mobile {
    text-align: center;
    font-family: "Montserrat", sans-serif;
    padding-top: 10px;
    margin-top: 100px;
    grid-area: copy-right;
    border-top: 3px solid #ffffff;
}

/* ALL BLOGS PAGE  */
.blog-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0px 64px;
    width: 100%;
    max-width: 1600px;
    margin: 50px auto;
}

.hero-title-container {
    width: 100%;
    background-color: #1d2b2e;
}

.hero-title-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #ffffff;
    padding: 100px 64px;
    height: 300px;
    max-width: 1600px;
    margin: 0 auto;
}

.hero-title-wrapper h1 {
    font-size: 56px;
    line-height: 60px;
}

.blog-wrapper {
    padding: 64px 0px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    justify-items: center;
}

/* About us Page */
.about-us-hero {
    position: relative;
}

.about-us-hero-wrapper {
    min-height: 600px;
}

.about-us-hero-info {
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 0px auto;
}

.about-us-hero-info h1 {
    font-size: 60px;
    line-height: 64px;
}

.about-us-hero-info p {
    font-size: 18px;
    line-height: 26px;
}

.about-us-hero-info-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    width: 80%;
    text-align: center;
}

.fixifi-hero-bg-lines {
    position: absolute;
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
    z-index: 0;
}

.fixifi-hero-bg-lines img {
    object-fit: cover;
}

.about-us-hero-btn {
    width: 180px !important;
}

.about-us-container {
    width: 100%;
}

.about-us-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 100px 64px;
    max-width: 1600px;
    margin: 0px auto;
}

.about-us-info {
    width: 40%;
    text-align: center;
}

.about-us-wrapper-btns {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 20px 0px;
}

.about-us-btn {
    width: 180px !important;
    margin: 0px;
}

.about-us-info h2 {
    font-weight: 500;
    font-size: 44px;
    line-height: 48px;
    margin: 10px 0px 35px 0px;
}

.about-us-info h4 {
    font-weight: 500;
    font-size: 22px;
    line-height: 26px;
    font-family: "Roboto", sans-serif;
}

.about-us-info p {
    font-size: 18px;
    line-height: 22px;
}

.about-us-img {
    width: 55%;
    height: 500px;
}

.about-us-img video {
    height: 500px;
}

.get-started-light-btn {
    height: 50px;
    width: 160px;
    background: #fffff0;
    border-radius: 5px;
    border: 1px solid #1d2b2e;
}

.dark-grey-btn::before {
    background: #1d2b2e;
}

.get-started-light-btn::after {
    background: #fffff0;
}

.get-started-light-btn span:first-child {
    color: #fffff0;
}

.get-started-light-btn span:last-child {
    color: #1d2b2e;
}

.get-started-light-btn:hover {
    background: #1d2b2e;
}
.modal .modal-body::-webkit-scrollbar {
  width: 8px;
}

.modal .modal-body::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.modal .modal-body::-webkit-scrollbar-thumb {
  background-color: #888;
  border-radius: 10px;
  border: 2px solid #f1f1f1;
}

.modal .modal-body::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.founders-story {
    padding: 0px 0px 0px 0px;
}
.modal-body{
    padding: 0px !important;
}
.modal-footer{
    display: none !important;
}
.modal-content{
    border-radius: 24px !important
}
.modal-header{
    padding: 0px !important;
    border: none !important;
    margin-bottom: 0px !important;
}
.custom-close {
  position: absolute;
  top: 20px;
  right: 30px;
  background-color: rgba(14, 21, 23, 0.6); /* semi-transparent dark */
  color: #fffff0; /* ivory cross */
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  font-size: 30px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1055; /* ensure it's above modal content */
}



.story {
    width: 100%;
    max-width: 1600px;
    margin: 0px auto;
    background-color: #1d2b2e;
    padding: 40px 44px;
    color: #fffff0;
    min-height: 500px;
    border-radius: 0px;
}

.story-heading {
    position: relative;
    max-width: 410px;
}

.story-heading span {
    position: absolute;
    bottom: -20px;
    right: 50px;
}

.story-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.story-paras-top {
    margin: 10px 0px 0px 0px;
    width: 50%;
    height: 400px;
}

.story h2 {
    font-size: 44px;
    line-height: 48px;
    margin: 30px 0px;
}

.story-img-wrapper {
    overflow: hidden;
    border-radius: 44px;
    margin: 20px;
    width: 60%;
}

.story-img {
    height: 400px;
    background-image: url(/assets/images/abot-us-story-img.webp);
    background-position: 50% 0%;
    background-size: cover;
    background-repeat: no-repeat;
}

.stroy-paras-top,
.stroy-paras-bottom {
    padding: 0px 20px;
}

.story p {
    font-size: 20px;
    line-height: 26px;
    margin: 20px 0px 0px 0px;
}

.story-conclusion {
    padding: 30px 50px;
    margin: 20px 0px 0px 0px;
    background: linear-gradient(180deg, #ffffff 0%, #a7aaa4 100%);
    border: 1px solid #00000080;
    box-shadow: 0px 4px 4px 0px #00000040;
    color: #000000cc;
    border-radius: 44px;
}

.story-conclusion p {
    margin: 0px;
}

.story-conclusion p b {
    font-style: italic;
}

.our-history {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.our-history-wrapper {
    max-width: 1600px;
    overflow: hidden;
    margin: 0 auto;
    color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 90px;
    padding: 100px 64px;
}

.our-history-wrapper h2 {
    font-size: 52px;
    line-height: 56px;
}

.history {
    width: 100%;
    padding: 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.history-year-1,
.history-year-2,
.history-year-3 {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    margin-bottom: 0;
}

.history-year-1 {
    flex-direction: row;
}

.history-year-2 {
    flex-direction: row-reverse;
}

.history-year-3 {
    flex-direction: row;
}

.history-line {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 5px;
    top: 0;
    height: 200%;
    background-color: #000;
}

.history-circle {
    position: absolute;
    top: 0px;
    left: 50%;
    height: 30px;
    width: 31px;
    transform: translateX(-50%);
    background-image: url(/assets/images/history-circle.svg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.history-year-1-info,
.history-year-2-info,
.history-year-3-info {
    width: 40%;
    margin: 10px 0px;
}

.history-detail-box {
    padding: 20px;
    background: linear-gradient(180deg, #ffffff 0%, #a7aaa4 100%);
    border: 1px solid #00000080;
    box-shadow: 0px 4px 4px 0px #00000040;
    border-radius: 44px;
    margin: 40px auto;
    width: 450px;
    max-width: 800px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.history-detail-box+.history-year-2 {
    margin-top: -40px;
}

.history h4 {
    margin: 0 0 10px 0;
    font-size: 30px;
    line-height: 34px;
}

.history p {
    font-size: 18px;
    line-height: 24px;
}

.history-conclusion-msg {
    position: relative;
    background-color: #fff;
    text-align: center;
    padding: 50px 20px 0px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.our-history-lines {
    position: absolute;
    top: 0px;
    right: 0px;
}

.our-history-lines-2 {
    position: absolute;
    top: 300px;
    left: -180px;
}

.our-history-lines img {
    height: 400px;
    width: 400px;
}

.our-history-lines-2 img {
    height: 600px;
    width: 600px;
}

.history-fixifi-img {
    width: 100%;
    height: 420px;
    display: none;
}

.history-fixifi-img video {
    height: 420px;
}

.our-team {
    max-width: 1600px;
    width: 100%;
    margin: 0px auto;
    padding: 40px 64px;
    position: relative;
    overflow: hidden;
}

.our-team h2 {
    font-size: 44px;
    line-height: 48px;
    text-align: center;
}

.our-values {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.our-values-wrapper {
    max-width: 1600px;
    margin: 0px auto;
    padding: 40px 64px 0px 64px;
}

.our-values-wrapper h2 {
    font-size: 56px;
    line-height: 60px;
    margin: 0px;
    text-align: center;
}

.our-values-line {
    position: absolute;
    top: -65px;
    right: -180px;
    height: 400px;
    width: 400px;
    z-index: -1;
}

.our-values-line img {
    object-fit: cover;
}

.our-values-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80%;
    height: 400px;
    background-color: #1d2b2e;
    border-radius: 44px;
    margin: 50px auto 200px auto;
    position: relative;
}

.ai-capabilities-our-values-para {
    position: absolute;
    top: 40px;
    color: #fffff0;
    font-size: 18px;
    line-height: 26px;
    font-weight: 500;
    width: 90%;
    text-align: center;
}

.our-values-cards {
    display: grid;
    grid-template-areas: "value-card-1 value-card-2 value-card-3 value-card-4";
    width: 120%;
    position: absolute;
    top: 140px;
}

.our-values-card {
    justify-self: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 370px;
    width: 265px;
    padding: 40px 20px 60px 20px;
    border-radius: 44px;
    background: linear-gradient(180deg, #ffffff 0%, #999999 100%);
    box-shadow: 0px 4px 4px 0px #00000040;
}

.our-values-card-img {
    height: 100px;
    width: 100px;
}

.our-values-card-img img {
    object-fit: contain;
}

.our-values-card-info {
    margin-top: 30px;
    text-align: center;
}

.our-values-card-1 {
    grid-area: value-card-1;
}

.our-values-card-2 {
    grid-area: value-card-2;
}

.our-values-card-3 {
    grid-area: value-card-3;
}

.our-values-card-4 {
    grid-area: value-card-4;
}

.our-values-card h4 {
    font-size: 20px;
    line-height: 24px;
    margin: 15px 0px 12px 0px;
    text-align: center;
}

.our-values-card p {
    font-size: 14px;
    line-height: 18px;
}

.get-started-contact-form-container {
    flex-direction: column;
    align-items: center;
    padding: 70px 64px;
    width: 100%;
}

.get-started-contact-form-container p {
    text-align: center;
    font-size: 18px;
    line-height: 30px;
    font-weight: 500;
    margin: 10px 0px 20px 0px;
    padding: 0px 22px;
    width: 85%;
}

.contact-us-form p {
    font-size: 14px;
    font-weight: 500;
    padding: 0px 22px;
    color: red;
    width: 85%;
}

.about-us-form-dialogue {
    background: #ffffff;
    padding: 40px;
    color: #1d2b2e;
    box-shadow: 0px 0px 10px 8px #ffffff26;
    border-radius: 54px;
    width: 100%;
    /* Make it responsive */
    max-width: 600px;
    margin: 0 auto;
    /* Center it within the form container */
}

.form-heading {
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: 40px;
    margin: 0px 0px 10px 0px;
}

#about-us-form-title {
    font-size: 32px;
    line-height: 36px;
}

.inline-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
}

#inline-user-type-selector {
    width: 100%;
    max-width: 100%;
    padding: 14px 24px;
    margin: 15px auto 0;
    font-size: 16px;
    border-radius: 44px;
    box-shadow: 0px 0px 4px 4px #00000014;
    outline: none;
    border: none;
    color: #00000080;
    background-color: #f5f5f5;
    cursor: pointer;
    overflow: hidden;
}

#inline-user-type-selector option {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

#inline-transition-message {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-width: 300px;
    max-width: 600px;
    font-size: 16px;
    background: #ffffff;
    padding: 40px;
    color: #1d2b2e;
    box-shadow: 0px 0px 10px 8px #ffffff26;
    border-radius: 54px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
    text-align: center;
}

#inline-selected-option {
    width: 100%;
}

/* Investors  */
.investment-hero-container {
    background: linear-gradient(to right, #1a2426 0%, #2a4145 50%, #3d5a5f 100%);
    position: relative;
    z-index: 0;
}

.investment-hero-wrapper {
    min-height: 600px;
    height: 100%;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.investment-hero-wrapper h1 {
    font-size: 50px;
    line-height: 54px;
}

.investment-hero-wrapper p {
    font-size: 20px;
    line-height: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.investment-hero-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    width: 70%;
}

.investment-hero-btn:nth-child(1) {
    width: 340px !important;
    margin: 0px;
}

.investment-hero-btn:nth-child(2) {
    width: 280px !important;
    margin: 0px;
}

.investment-details-container {
    width: 100%;
}

.investment-details-wrapper {
    max-width: 1600px;
    width: 100%;
    margin: 0px auto;
    padding: 80px 64px 0px 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 40px;
}

.investment-details-wrapper h2 {
    font-size: 38px;
    line-height: 42px;
    text-align: center;
}

.investment-details-cards {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.investment-details-card {
    width: 100%;
    max-width: 300px;
    min-width: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.investment-details-icon {
    height: 150px;
    width: 150px;
}

.investment-details-icon img {
    object-fit: contain;
}

.investment-details-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.investment-details-info h3 {
    font-size: 24px;
    line-height: 28px;
}

.investment-details-info p {
    font-size: 18px;
    line-height: 30px;
    color: #00000080;
}

.investment-details-wrapper-bottom p {
    text-align: center;
    font-size: 20px;
    line-height: 28px;
    font-weight: 600;
    margin: 0px auto;
}

.investment-details-wrapper-bottom-note p {
    font-size: 14px !important;
    line-height: 16px;
    color: #00000080;
    text-align: center;
    margin: 20px auto 0px auto;
    min-width: 280px;
    max-width: 850px;
}

.investment-why-us-container {
    width: 100%;
    padding: 80px 64px 0px 64px;
}

.investment-why-us-wrapper {
    max-width: 1600px;
    margin: 0px auto;
}

.investment-why-us-box {
    color: #ffffff;
    border-radius: 44px;
    background: linear-gradient(90deg, #1d2b2e 0%, #282974 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 40px 64px;
    gap: 40px;
    margin: 40px 0px 0px 0px;
}

.investment-why-us-heading {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
    text-align: center;
}

.investment-why-us-heading h2 {
    font-size: 38px;
    line-height: 34px;
}

.investment-why-us-heading p {
    font-size: 18px;
    line-height: 30px;
}

.investment-why-us-cards {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
}

.investment-why-us-card {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 18px;
    flex: 1 1 calc(25% - 30px);
    min-width: 180px;
    max-width: 252px;
}

.investment-why-us-icon {
    height: 180px;
    width: 180px;
}

.investment-why-us-icon img {
    object-fit: cover;
}

.investment-why-us-info p {
    font-size: 16px;
    line-height: 27px;
    font-weight: 500;
    text-align: center;
}

.investment-why-img {
    background-image: url(/assets/images/AI\ Unicorn.png);
    background-position: 50% 20%;
    width: 100%;
    height: 500px;
    margin: 0px auto;
}

.investment-why-img video {
    height: 500px;
}

.investment-opportunities-container {
    max-width: 1600px;
    width: 100%;
    margin: 0px auto;
    padding: 80px 32px 0px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.investment-opportunities-heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.investment-opportunities-heading h2 {
    font-size: 38px;
    line-height: 34px;
}

.investment-opportunities-heading p {
    font-size: 18px;
    line-height: 30px;
}

.investment-opportunities-cards {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.investment-opportunities-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    background: linear-gradient(180deg, #ffffff 0%, #a7aaa4 100%);
    border: none;
    box-shadow: 3px 3px 5px 0px #00000040;
    border-radius: 44px;
    padding: 28px 20px;
    width: 100%;
    max-width: 260px;
    min-width: 240px;
    height: 300px;
    filter: drop-shadow(3px 3px 5px rgba(0, 0, 0, 0.25));
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.investment-opportunities-card:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.investment-opportunities-icon {
    height: 60px;
    width: 60px;
}

.investment-opportunities-icon img {
    object-fit: cover;
}

.investment-opportunities-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    gap: 10px;
    flex: 1;
}

.investment-opportunities-info h3 {
    font-size: 22px;
    line-height: 26px;
}

.investment-opportunities-info p {
    font-size: 18px;
    line-height: 24px;
}

.investment-opportunities-bottom {
    max-width: 900px;
    margin-top: 0px;
}

.investment-opportunities-bottom p {
    font-size: 22px;
    line-height: 30px;
    font-weight: 500;
    text-align: center;
}

.strategic-partnerships-container {
    max-width: 1600px;
    width: 100%;
    margin: 0px auto;
    padding: 80px 64px 0px 64px;
}

.strategic-partnerships-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
}

.andre-card {
    background: linear-gradient(180deg, #1d2b2e 0%, #03120e 100%);
    color: #ffffff;
    border-radius: 44px;
    padding: 0px 30px 40px 30px;
    max-width: 420px;
    width: 100%;
    flex: 0 1 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    position: relative;
}

.andre-profile {
    width: 260px;
    height: 260px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    top: -50px;
    margin-bottom: -50px;
}

.andre-profile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.andre-info h3 {
    font-size: 26px;
    line-height: 30px;
    font-weight: 600;
    margin: 0;
}

.andre-info span {
    font-size: 20px;
    line-height: 24px;
    font-weight: 400;
    display: block;
    margin: 6px 0 10px 0;
}

.andre-info p {
    font-size: 16px;
    line-height: 24px;
    margin: 0;
}

.strategic-partnerships-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    flex: 0 1 auto;
}

.strategic-partnerships-right h2 {
    font-size: 36px;
    line-height: 40px;
    font-weight: 700;
    margin: 0;
    text-align: center;
}

.strategic-partnerships-cards {
    display: flex;
    flex-direction: row;
    gap: 40px;
    align-items: flex-start;
}

.strategic-partnerships-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
}

.partnerships-logo {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #1d2b2e;
}

.partnerships-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.strategic-partnerships-card h3 {
    font-size: 20px;
    line-height: 24px;
    font-weight: 600;
    margin: 0;
}

.strategic-partnerships-card p {
    font-size: 16px;
    line-height: 22px;
    font-weight: 500;
    margin: 0;
}

.strategic-partnerships-bottom {
    text-align: center;
    margin-top: 60px;
}

.strategic-partnerships-bottom p {
    font-size: 22px;
    line-height: 30px;
    font-weight: 500;
}

.key-traction-metrics-container {
    max-width: 1600px;
    width: 100%;
    margin: 0px auto;
    padding: 80px 64px 0px 64px;
}

.key-traction-metrics-container h2 {
    font-size: 44px;
    line-height: 48px;
    font-weight: 700;
    text-align: center;
    margin: 0 0 60px 0;
}

.key-traction-metrics-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 120px;
    flex-wrap: wrap;
}

.key-traction-metric {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
}

.metric-value {
    font-size: 96px;
    line-height: 96px;
    font-weight: 500;
    color: #FA8F3D;
    text-shadow: 0px 4px 20px rgba(0, 0, 0, 0.25);
}

.metric-label {
    font-size: 22px;
    line-height: 26px;
    font-weight: 600;
    margin: 0;
    max-width: 280px;
}

.key-traction-metrics-bottom {
    text-align: center;
    margin-top: 60px;
    margin-bottom: 60px;
}

.key-traction-metrics-bottom p {
    font-size: 22px;
    line-height: 30px;
    font-weight: 500;
}

.realtime-metrics-link {
    color: #FA8F3D;
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.3s ease;
}

.realtime-metrics-link:hover {
    color: #e67d2a;
}

.share-holder-relations-container {
    max-width: 1600px;
    width: 100%;
    margin: 0px auto;
    padding: 40px 0px 80px 0px;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.share-holder-relations-wrapper {
    margin: 0px auto;
    padding: 0px 0px 0px 160px;
}

.share-holder-relations-wrappper-content {
    position: relative;
    background-color: #1d2b2e;
    width: 870px;
    margin: 0px auto;
    color: #fff;
    border-radius: 22px;
    display: flex;
    align-items: center;
    padding: 20px 20px 20px 120px;
}

.share-holder-relations-profile {
    width: 200px;
    position: absolute;
    left: -100px;
}

.share-holder-relations-profile img {
    border-radius: 50%;
    object-fit: cover;
}

.share-holder-relations-details {
    display: flex;
    flex-direction: column;
}

.share-holder-relations-details h2 {
    font-size: 26px;
    line-height: 30px;
    font-weight: 600;
}

.share-holder-relations-details span {
    font-size: 20px;
    line-height: 24px;
    font-weight: 600;
    margin: 5px 0px 10px 0px;
}

.share-holder-relations-details p {
    font-size: 18px;
    line-height: 24px;
}

.share-holder-relations-info {
    font-size: 22px;
    line-height: 26px;
    margin: 30px 0px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1035px;
}

.share-holder-relations-info p {
    width: 680px;
    padding: 0px 0px 0px 50px;
}

.share-holder-relations-info button {
    margin: 0px;
    width: 290px;
}

.investmentForm {
    width: 100%;
}

.investment-popup {
    padding: 50px;
}

.investment-form {
    width: 100%;
    max-width: 600px;
    padding: 30px 0px 0px 0px;
}

.investment-form select,
.investment-form input {
    font-size: 16px;
}

.investment-form input {
    color: #333;
}

.investment-radio {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    gap: 20px;
    color: #00000080;
}

.investment-radio-btns {
    display: flex;
    gap: 5px;
    width: 100%;
    max-width: 150px;
}

.investment-radio-btns input {
    box-shadow: none !important;
    padding: 0px !important;
    width: 20px !important;
}

.investment-btn {
    background-color: #1d2b2e;
    color: #fff;
    transition: all 0.3s ease;
}

.investment-btn:hover {
    background-color: #03120e;
    opacity: 0.9;
}

/*  */
/* Resellers Page  */
.resellers-hero-container {
    width: 100%;
    background: 
        linear-gradient(to right, rgba(26, 36, 38, 0.95) 0%, rgba(42, 65, 69, 0.92) 50%, rgba(61, 90, 95, 0.90) 100%),
        url(/assets/images/reseller-hero-bg.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    z-index: 0;
}

.reseller-hero-tint {
    height: 100%;
    width: 100%;
    position: absolute;
    z-index: 1;
    top: 0px;
    left: 0px;
    background: transparent;
    opacity: 0;
    pointer-events: none;
}

.resellers-hero-wrapper {
    max-width: 1600px;
    margin: 0px auto;
    color: #ffffff;
    min-height: 500px;
    height: 100%;
    padding: 100px 64px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.resellers-hero-wrapper h1 {
    font-size: 50px;
    line-height: 54px;
}

.resellers-hero-wrapper p {
    font-size: 20px;
    line-height: 30px;
    width: 65%;
}

.resellers-partner-container {
    max-width: 1600px;
    width: 100%;
    margin: 0px auto;
    padding: 40px 20px;
}

.resellers-partner-cards {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 40px;
    position: relative;
    z-index: 0;
}

.resellers-partner-block {
    height: 160px;
    width: 40%;
    min-width: 500px;
    background-color: #1d2b2e;
    border-radius: 44px;
    position: absolute;
    z-index: 1;
}

.resellers-partner-card {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 10px;
    background: linear-gradient(180deg, #ffffff 0%, #a7aaa4 100%);
    border: 1px solid #00000024;
    box-shadow: 3px 3px 5px 0px #00000040;
    border-radius: 44px;
    padding: 40px;
    width: 100%;
    height: 300px;
    max-width: 420px;
    width: 30%;
    min-width: 280px;
    position: relative;
    z-index: 2;
}

.resellers-partner-card h3 {
    font-size: 22px;
    line-height: 26px;
}

.resellers-partner-card p {
    font-size: 18px;
    line-height: 26px;
}

.resellers-partner-line {
    position: absolute;
    z-index: 1;
}

.resellers-partner-line img {
    object-fit: cover;
}

.resellers-benefits-container {
    max-width: 1600px;
    width: 100%;
    margin: 0px auto;
    padding: 40px;
    position: relative;
}

.resellers-partner-container h2,
.resellers-benefits-container h2 {
    font-size: 44px;
    line-height: 48px;
    text-align: center;
    margin: 40px auto;
}

.resellers-benefits-cards {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.resellers-benefits-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 370px;
    width: 265px;
    padding: 40px 20px 60px 20px;
    border-radius: 44px;
    background: linear-gradient(180deg, #ffffff 0%, #999999 100%);
    box-shadow: 0px 4px 4px 0px #00000040;
}

.resellers-join-container {
    width: 100%;
    background-color: #1d2b2e;
    color: #fff;
}

.resellers-join-wrapper {
    max-width: 1600px;
    margin: 0px auto;
    padding: 40px 64px;
}

.resellers-join-wrapper h2 {
    font-size: 40px;
    line-height: 44px;
    margin: 0px auto;
    text-align: center;
}

.resellers-join-wrapper p {
    font-size: 18px;
    line-height: 28px;
    margin: 20px auto 40px auto;
    text-align: center;
}

.resellers-join-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.resellers-join-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 265px;
    padding: 0px 40px;
    gap: 20px;
}

.resellers-join-card img {
    height: 150px;
    width: 150px;
    object-fit: contain;
}

.resellers-join-card p {
    font-size: 18px;
    line-height: 28px;
    text-align: center;
}

.reseller-form-container h2 {
    margin: 0px 0px 40px 0px;
}

.reseller-form {
    width: 100%;
}

.resellers-learn-more-container {
    max-width: 1600px;
    width: 100%;
    margin: 0px auto 40px auto;
    padding: 0px 20px;
    text-align: center;
}

.resellers-learn-more-container-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px 0px 0px 0px;
}

.resellers-learn-more-container-btns button {
    width: 160px;
    margin: 0px;
}

.resellers-learn-more-btn-box {
    width: 160px !important;
    display: block !important;
}

.dark-grey-border-btn {
    border: 1px solid #1d2b2e !important;
    margin: 0px !important;
}

.resellers-learn-more-container h2 {
    font-size: 30px;
    line-height: 34px;
}

.resellers-learn-more-container span {
    font-size: 20px;
    line-height: 24px;
    margin: 0px 10px;
}

/*  */
/* Pitch Deck Page  */
.pitch-deck-hero-container {
    background-image: url(/assets/images/hero-bg.webp);
    position: relative;
    z-index: 0;
}

.pitch-deck-hero-wrapper {
    min-height: 500px;
    height: 100%;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.pitch-deck-hero-wrapper h1 {
    font-size: 50px;
    line-height: 54px;
}

.pitch-deck-hero-wrapper p {
    font-size: 20px;
    line-height: 30px;
    width: 65%;
}

.pitch-deck-explore-container {
    max-width: 1600px;
    width: 100%;
    margin: 0px auto;
    padding: 100px 64px;
    position: relative;
}

.pitch-deck-explore-container h2 {
    font-size: 34px;
    line-height: 38px;
}

.pitch-deck-explore-container p {
    font-size: 18px;
    line-height: 24px;
    margin: 10px 0px 20px 0px;
}

.pitch-deck-explore-wrapper {
    width: 90%;
    border-radius: 44px;
    height: 100%;
    background: #999999;
    border: 1px solid #000000cc;
    box-shadow: 0px 4px 4px 0px #00000040;
    margin: 0px auto;
    overflow: hidden;
}

.pitch-deck-explore-wrapper .swiper-slide {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pitch-deck-explore-wrapper img {
    max-height: 100%;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

#pitch-deck-explore-slide-btn {
    cursor: pointer;
}

.pitch-deck-pagination-wrapper {
    position: relative;
    width: 80%;
    margin: 20px auto 0px auto;
}

.pitch-deck-explore-pagination {
    border-radius: 44px !important;
    height: 20px !important;
    overflow: hidden;
}

.swiper-pagination-progressbar-fill {
    background: #282974 !important;
}

.pitch-deck-swiper-left {
    transform: rotateY(180deg);
    left: 70px !important;
}

.pitch-deck-swiper-mobile-left {
    transform: rotateY(180deg);
}

.pitch-deck-popup-swiper-mobile-left {
    transform: rotateY(180deg);
    left: -50px !important;
}

.pitch-deck-swiper-right {
    right: 70px !important;
}

.pitch-deck-popup-swiper-mobile-right {
    right: -50px !important;
}

.pitch-deck-swiper-left,
.pitch-deck-swiper-right {
    width: 100px !important;
    height: 80px !important;
}

.pitch-deck-swiper-right svg,
.pitch-deck-swiper-left svg {
    height: 80px;
    width: 80px;
    fill: #fff;
    transition: 0.2s all ease;
    background-color: #1d2b2e;
    padding: 20px;
    border-radius: 50%;
}

.pitch-deck-swiper-right:hover svg,
.pitch-deck-swiper-left:hover svg {
    transform: scale(1.1);
}

.pitch-deck-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(29, 43, 46, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.pitch-deck-popup {
    background: #ffffff;
    width: 90%;
    height: 90%;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.25);
    border-radius: 20px;
}

.pitch-deck-popup-swiper {
    flex: 1;
    width: 100%;
    height: 100%;
    border-radius: 20px;
}

.pitch-deck-popup-close-btn:hover {
    opacity: 0.8;
}

.pitch-deck-action-container {
    max-width: 1600px;
    width: 100%;
    margin: 0px auto;
    padding: 100px 64px;
    text-align: center;
}

.pitch-deck-secure-access-wrapper h2,
.pitch-deck-action-container h2 {
    font-size: 34px;
    line-height: 38px;
}

.pitch-deck-action-container p {
    font-size: 18px;
    line-height: 26px;
    margin: 10px 0px 20px 0px;
}

.pitch-deck-action-cards {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 40px;
    position: relative;
    z-index: 10;
}

.pitch-deck-action-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    background: linear-gradient(180deg, #ffffff 0%, #a7aaa4 100%);
    border: 1px solid #00000024;
    box-shadow: 3px 3px 5px 0px #00000040;
    border-radius: 44px;
    padding: 40px;
    width: 100%;
    height: 100%;
    min-height: 450px;
    max-width: 420px;
    width: 30%;
    min-width: 280px;
}

.pitch-deck-action-on-screen-videos {
    position: fixed;
    bottom: 100px;
    left: 5px;
    z-index: 10;
    display: none;
    width: 100%;
    align-items: center;
    justify-content: left;
    transition: opacity 0.3s ease-in-out;
}

.pitch-deck-action-on-screen-videos i {
    z-index: 12;
    font-size: 40px;
    cursor: pointer;
    margin: 0px 0px auto 0px;
}

.pitch-deck-action-on-screen-videos video {
    width: 55%;
    max-width: 550px;
    min-width: 280px;
    border-radius: 22px;
    opacity: 1;
}

.pitch-deck-action-card-video {
    background-image: url(/assets/images/place-holder-thumbnail.webp);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 150px !important;
    width: 100% !important;
    border-radius: 22px !important;
    cursor: pointer;
}

#pitch-deck-action-card-1 {
    background-image: url(/assets/images/companian-1.webp);
}

#pitch-deck-action-card-2 {
    background-image: url(/assets/images/companian-2.webp);
}

#pitch-deck-action-card-3 {
    background-image: url(/assets/images/companion-3.webp);
}

#pitch-deck-action-card-4 {
    background-image: url(/assets/images/maintenance_desk.png);
}

#pitch-deck-action-card-5 {
    background-image: url(/assets/images/job_desk.png);
}

#pitch-deck-action-card-6 {
    background-image: url(/assets/images/hello_maintenance.png);
}

.pitch-deck-action-card-video video {
    height: 150px;
    border-radius: 22px !important;
}

.pitch-deck-action-card-video img {
    display: flex;
    position: static !important;
    height: 60px;
    width: 60px;
    object-fit: cover;
    opacity: 0.4;
}

.pitch-deck-action-card h3 {
    font-size: 22px;
    line-height: 26px;
    margin: 20px 0px 10px 0px;
}

.pitch-deck-action-card p {
    font-size: 18px;
    line-height: 26px;
}

.pitch-deck-secure-access-container {
    width: 100%;
    position: relative;
    padding: 40px 64px 150px 64px;
    overflow: hidden;
}

.pitch-deck-secure-access-wrapper {
    max-width: 1600px;
    margin: 0px auto;
}

.pitch-deck-secure-access-wrapper p {
    font-size: 18px;
    line-height: 24px;
    font-weight: 500;
    margin: 10px 10px 20px 10px;
}

.pitch-deck-secure-access-wrapper p b {
    font-style: italic;
    color: #282974;
}

.pitch-deck-secure-access-cards {
    padding: 0px 40px;
    display: grid;
    grid-template-areas:
        "secure-access-1 secure-access-2"
        "secure-access-3 secure-access-4"
        "secure-access-5 secure-access-6";
    gap: 20px;
}

.pitch-deck--secure-access-card-1 {
    grid-area: secure-access-1;
}

.pitch-deck--secure-access-card-2 {
    grid-area: secure-access-2;
}

.pitch-deck--secure-access-card-3 {
    grid-area: secure-access-3;
}

.pitch-deck--secure-access-card-4 {
    grid-area: secure-access-4;
}

.pitch-deck--secure-access-card-5 {
    grid-area: secure-access-5;
}

.pitch-deck--secure-access-card-6 {
    grid-area: secure-access-6;
}

.pitch-deck-secure-access-card {
    display: flex;
    gap: 10px;
    flex-direction: column;
    width: 100%;
    max-width: 400px;
    min-width: 280px;
}

.pitch-deck-secure-access-card h3 {
    font-size: 22px;
    line-height: 26px;
}

.pitch-deck-secure-access-card p {
    font-size: 18px;
    line-height: 24px;
    color: #00000080;
    margin: 0px;
}

.pitch-deck-secure-access-line {
    position: absolute;
    top: 0px;
    right: -100px;
}

.pitch-deck-secure-access-line img {
    object-fit: contain;
    height: 500px;
    width: 250px;
}

#investorpitchForm,
#investorpitchFormPopup {
    width: 100%;
}

.pitch-deck-form-container h2 {
    margin: 0px 0px 40px 0px;
}

.pitch-deck-form-container {
    gap: 10px;
}

.form-submission-msg {
    background-color: #ffffff;
    border-radius: 44px;
    color: #000;
    padding: 40px;
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 10px;
}

.form-submission-msg h2 {
    font-size: 38px;
    line-height: 42px;
}

.form-submission-msg p {
    font-size: 18px;
    line-height: 26px;
}

.form-submission-msg p b {
    font-weight: 400;
    font-style: italic;
}

.form-submission-msg-btn {
    width: 320px;
}

.contact-pitch-form-msg,
.about-us-form-msg,
.ai-capabilities-form-msg,
.reseller-form-msg {
    background-color: #ffffff;
    border-radius: 44px;
    color: #000;
    padding: 40px;
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 10px;
}

.contact-pitch-form-msg h2,
.about-us-form-msg h2,
.ai-capabilities-form-msg h2,
.reseller-form-msg h2 {
    font-size: 38px;
    line-height: 42px;
}

.contact-pitch-form-msg p,
.about-us-form-msg p,
.ai-capabilities-form-msg p,
.reseller-form-msg p {
    font-size: 18px;
    line-height: 26px;
}

.contact-pitch-form-msg p b {
    font-weight: 400;
    font-style: italic;
}

.contact-pitch-form-msg-btn {
    width: 320px;
}

/*  */

/* Ai -capabilities  */
.ai-capabilities-hero {
    position: relative;
}

.ai-capabilities-hero-wrapper {
    height: 620px;
    padding: 100px 64px;
}

.ai-capabilities-hero-info {
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 0px auto;
}

.ai-capabilities-hero-info h1 {
    font-size: 60px;
    line-height: 64px;
}

.ai-capabilities-hero-info-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    width: 80%;
    text-align: center;
}

.ai-capabilities-hero-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    width: 100%;
    margin: auto 0px 0px 0px;
    position: relative;
    z-index: 1;
}

.ai-capabilities-hero-icons a {
    text-decoration: none;
}

.ai-capabilities-hero-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.ai-capabilities-hero-icon-img {
    height: 100px;
    width: 100px;
}

.ai-capabilities-hero-icon-img img {
    object-fit: contain;
}

.ai-capabilities-hero-icon span {
    font-size: 12px;
    line-height: 14px;
    font-weight: 500;
    color: #fffff0;
}

.ai-solutions {
    max-width: 1600px;
    width: 100%;
    margin: 0px auto;
    padding: 40px 64px;
}

.ai-solutions-heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 40px auto 0px auto;
    gap: 20px;
}

.ai-solutions-heading h2 {
    font-size: 34px;
    line-height: 38px;
}

.ai-solutions-heading p {
    font-size: 18px;
    line-height: 30px;
}

.ai-solutions-cards {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 10px 0px 40px;
}

.ai-solutions-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 280px;
    gap: 10px;
}

.ai-solution-card-img {
    height: 300px;
    width: 300px;
}

.ai-solution-card-img img {
    object-fit: cover;
}

.ai-solution-card-info {
    text-align: center;
    min-height: 170px;
}

.ai-solution-card-info h3 {
    font-size: 24px;
    line-height: 26px;
    margin: 0px 0px 20px 0px;
}

.ai-solution-card-info p {
    font-size: 16px;
    line-height: 30px;
}

/* .ai-solutions-service-header {
    max-width: 1600px;
    width: 100%;
    margin: 0px auto;
}

.ai-solutions-service-header h3 {
    font-size: 28px;
    line-height: 32px;
    padding: 20px 64px;
}

.ai-solutions-service-header-container {
    color: #fffff0;
    display: flex;
    flex-direction: column;
    background-image: linear-gradient(90deg, #1d2b2e, #282974);
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 10px;
    padding: 20px 35px;
    width: 82%;
    margin: 0px auto;
    border-radius: 44px;
}

.ai-solutions-service-header-container h2 {
    font-size: 40px;
    line-height: 44px;
}

.ai-solutions-service-header-container p {
    font-size: 18px;
    line-height: 30px;
}

.ai-capabilities-stacking-cards {
    padding: 0px 0px 100px 0px;
    max-width: 82%;
    margin: 0 auto 150px auto;
}

.stacking-cards-container {
    max-width: 1600px;
    color: #fff;
    padding: 20px;
    height: 550px;
    background-image: url(/assets/images/hero-bg.webp);
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 44px;
    overflow: hidden;
    pointer-events: auto;
    position: sticky;
    top: 100px;
    left: 0;
    right: 0;
    margin: 40px auto;
    display: flex;
    justify-content: space-between;
    border: 1px solid #fffff0;
    box-shadow: 0px 4px 4px 0px #00000040;
    transition: transform 0.3s ease, z-index 0.3s ease;
}

.stacking-container-cards-heading {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.stacking-container-cards-heading h2 {
    font-size: 38px;
    line-height: 42px;
}

.stacking-container-cards-heading p {
    font-size: 20px;
    line-height: 24px;
    font-weight: 500;
    margin: 10px 0px 10px 0px;
}

.stacking-cards-img {
    position: relative;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 45%;
    border-radius: 26px;
}

.stacking-cards-img img {
    position: absolute;
    top: 0px;
    left: 20px;
    object-fit: contain;
    height: 100px;
    width: 100%;
    max-width: 350px;
}

.stacking-container-wrapper {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.stacking-container-cards {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    width: 100%;
}

.stacking-container-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 250px;
    height: 250px;
    border-radius: 44px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.stacking-container-card img {
    max-height: 80px;
    width: 80px;
    object-fit: contain;
    transition: all 0.3s ease;
    opacity: 1;
}

#property-management-img {
    background-image: url(/assets/images/background-1.webp);
    background-position: 40% 50%;
}

#service-provider-img {
    background-image: url(/assets/images/background-3.webp);
    background-position: 65% 50%;
}

#residential-tenants-img {
    background-image: url(/assets/images/background-4.webp);
    background-position: 90% 50%;
}

#owner-occupier-img {
    background-image: url(/assets/images/background-2.webp);
    background-position: 50% 50%;
}

.stacking-container-card h3 {
    font-size: 22px;
    line-height: 26px;
    margin-top: 20px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.stacking-container-card-para {
    opacity: 0;
    max-height: 0;
    font-size: 18px;
    line-height: 26px;
    text-align: center;
    transition: all 0.3s ease;
}

.stacking-container-cards-btn {
    margin: 64px 0px 0px 0px !important;
    height: 50px;
    z-index: 2;
}

.stacking-container-card:hover {
    transform: translateY(-10px);
}

.stacking-container-card:hover img {
    transform: scale(1.1);
}

.stacking-container-card:hover .stacking-container-card-para {
    opacity: 1;
    max-height: 40px;
}

.stacking-container-cards-btn,
.stacking-container-card {
    pointer-events: auto;
}

.stacking-cards-container.active {
    transform: translateY(0) scale(1);
    z-index: 10;
}

.stacking-cards-container:not(.active) {
    pointer-events: none;
}

.stacking-cards-container {
    transition: transform 0.3s ease, z-index 0.3s ease;
} */



.ai-capabilities-values-box {
    margin: 100px auto 250px auto;
}

.ai-capabilities-values {
    top: 150px;
}

.ai-capabilities-benefits {
    max-width: 1600px;
    width: 100%;
    margin: 0px auto;
    padding: 40px 64px;
}

.ai-capabilities-benefits h2 {
    font-size: 44px;
    line-height: 48px;
    margin: 40px 0px;
    text-align: center;
}

.benefits-cards {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.benefits-card {
    width: 45%;
    min-width: 300px;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
}

.benefits-card-img {
    height: 60px;
    width: 60px;
}

.benefits-card-img img {
    object-fit: contain;
}

.benefits-card-info {
    margin-top: 20px;
    text-align: left;
    font-size: 18px;
    line-height: 30px;
}

.ai-capabilities-headline-container {
    width: 100%;
    background-color: #1d2b2e;
    color: #fffff0;
}

.ai-capabilities-headline-container-wrapper {
    max-width: 1600px;
    margin: 0px auto;
    padding: 40px 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 40px;
}

.ai-capabilities-headline-container-wrapper h2 {
    font-size: 40px;
    line-height: 44px;
}

.ai-capabilities-headline-container-wrapper p {
    font-size: 18px;
    line-height: 30px;
}

.ai-capabilities-headline-container-wrapper span {
    font-size: 18px;
    line-height: 30px;
    font-weight: 500;
}

.ai-capabilities-tab-container {
    width: 100%;
    max-width: 1600px;
    margin: 0px auto;
    padding: 10px 40px 40px 40px;
    overflow: hidden;
}

.ai-capabilities-tab-heading {
    text-align: center;
    margin: 20px auto;
}

.ai-capabilities-tab-heading p {
    font-size: 24px;
    line-height: 28px;
    font-weight: 600;
}

.ai-capabilities-tab-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 900px;
    color: #fffff0;
    background-color: #1d2b2e;
    border-radius: 22px 22px 44px 44px;
    padding: 40px;
    position: relative;
}

.ai-capabilities-tab-btns {
    display: flex;
    position: absolute;
    top: -5px;
    width: 100%;
    overflow: hidden;
    border-radius: 22px 22px 0px 0px;
}

.tab-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #fffff0;
    border-radius: 22px;
    gap: 20px;
    padding: 0px 20px;
    color: #000;
    background-color: #a7aaa4;
    cursor: pointer;
    height: 100px;
    width: 324px;
    position: relative;
    z-index: 2;
    margin: 0px -10px;
}

.tab-btn-img {
    height: 60px;
    width: 80px;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

#tab-btn-clicking-gif {
    height: 60px;
    width: 60px;
    position: absolute;
    bottom: 0px;
    right: 24px;
}

#tab-btn-clicking-gif img {
    object-fit: contain;
}

.tab-btn p {
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
}

.tab-page {
    display: flex;
    gap: 20px;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    padding: 100px 40px 40px 40px;
    transform: translateX(100%);
}

.tab-page-list-icon {
    height: 60px;
    width: 60px;
}

.tab-page-list-icon img {
    object-fit: contain;
}

.tab-page h2 {
    font-size: 40px;
    line-height: 44px;
}

.tab-page p {
    font-size: 18px;
    line-height: 30px;
}

.tab-page ul {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 64px 0px 64px 0px;
}

.tab-page li {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
}

.tab-page li h3 {
    font-size: 22px;
    line-height: 26px;
    font-weight: 600;
}

.tab-page-btn {
    width: 100%;
    display: flex;
    justify-content: center;
}

#tab-page-1 {
    transform: translateX(0px);
}

.ai-capabilities-form-container {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.ai-capabilities-form-container p {
    font-size: 18px;
    line-height: 30px;
    font-weight: 500;
    margin: 20px 0px 30px 0px;
    width: 85%;
}

.ai-capabilities-contact-form {
    width: 85%;
}

/* Error 404 Page  */
.oops-error-container {
    max-width: 1600px;
    width: 100%;
    min-height: 600px;
    margin: 0px auto;
    padding: 40px 64px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 20px;
}

.oops-error-container h1 {
    font-size: 120px;
    line-height: 124px;
}

.oops-error-container h2 {
    font-size: 30px;
    line-height: 34px;
}

.oops-error-container p {
    font-size: 18px;
    line-height: 24px;
}

.oops-error-btn {
    width: 200px;
    margin: 0px;
}

/*  */
.email-template-hero {
    max-height: 500px;
    display: flex;
    align-items: center;
}

.email-template-hero-wrapper {
    height: 100%;
    min-height: 400px;
}

.email-template-hero h1 {
    color: #000;
    font-size: 36px;
    line-height: 40px;
    text-align: center;
}

.email-template-main {
    max-width: 1600px;
    width: 100%;
    margin: 40px auto;
}

.email-template-main-wrapper {
    padding: 40px 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.email-template-main h2 {
    font-size: 48px;
    line-height: 52px;
    margin: 0px auto;
    text-align: center;
    width: 85%;
}

.email-template-main-wrapper p {
    font-size: 18px;
    line-height: 22px;
}

.email-template-main-wrapper-left {
    width: 45%;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
}

.email-template-main-wrapper-left img {
    object-fit: cover;
    height: 360px;
    width: 360px;
    border-radius: 50%;
    border: 2px solid #03120e;
    margin: 0px auto;
}

.email-template-main-wrapper-left div {
    background-color: #1d2b2e;
    color: #fff;
    padding: 10px 20px;
    width: 350px;
    margin: 0px auto;
    border-radius: 22px;
    text-align: center;
}

.email-template-main-wrapper-left h3,
.email-template-main-wrapper-left h4 {
    font-size: 26px;
    line-height: 30px;
}

.email-template-main-wrapper-left h3 {
    font-weight: 600;
}

.email-template-main-wrapper-left h4 {
    font-weight: 400;
    margin: 6px 0px 0px 0px;
}

.purple-btn {
    border: 1px solid #282974 !important;
    background: #282974 !important;
    border-radius: 44px;
    height: 60px;
    margin: 0px;
    font-weight: 600;
}

.purple-btn::after {
    background: #282974 !important;
}

.purple-btn::before {
    background: #fff !important;
}

.purple-btn span:first-child {
    color: #282974 !important;
}

.purple-btn span:last-child {
    color: #fff !important;
}

.purple-border-btn {
    border-radius: 44px;
    height: 60px;
    margin: 0px;
    font-weight: 600;
    border: 1px solid #282974 !important;
    background: #fff !important;
}

.purple-border-btn::after {
    background: #fff !important;
}

.purple-border-btn::before {
    background: #282974 !important;
}

.purple-border-btn span:first-child {
    color: #fff !important;
}

.purple-border-btn span:last-child {
    color: #282974 !important;
}

.email-template-main-wrapper-right {
    padding: 0px 40px;
    width: 55%;
}

.email-template-main-wrapper-right h3 {
    font-size: 24px;
    line-height: 28px;
    margin: 0px 0px 20px 0px;
}

.email-template-main-wrapper-right p {
    color: #00000080;
}

.email-template-main-wrapper h2 {
    font-size: 26px;
    line-height: 30px;
}

.email-template-blue {
    font-weight: 600;
    color: #282974;
}

.email-template-brown {
    font-weight: 600;
    color: #602a1e;
}

.email-template-discover {
    padding: 40px 64px;
}

.email-template-discover h2 {
    margin: 20px;
}

.email-template-discover li {
    color: #00000080;
    font-size: 24px;
    line-height: 28px;
}

.email-template-main-wrapper a {
    margin: 20px auto;
    width: 280px;
}

.email-template-bottom {
    padding: 40px 64px;
}

.email-template-bottom h2 {
    margin: 20px auto;
    font-size: 28px;
    line-height: 32px;
}

.email-template-main-cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.email-template-main-card {
    width: 100%;
    max-width: 350px;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 10px;
}

.email-template-main-card img {
    height: 100px;
    width: 100px;
    object-fit: contain;
}

.email-template-main-card h3 {
    font-size: 24px;
    line-height: 28px;
    color: #2c2d76;
}

.email-template-bottom p,
.email-template-main-card p {
    color: #00000080;
    font-size: 22px;
    line-height: 28px;
}

.email-template-main-bottom-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.email-template-footer {
    background-color: #1d2b2e;
    color: #fff;
}

.email-template-footer-top {
    max-width: 1600px;
    width: 100%;
    margin: 0px auto;
    padding: 40px 0px;
}

.email-template-footer-top h2 {
    font-size: 34px;
    line-height: 38px;
    text-align: center;
    margin: 0px auto;
}

.email-template-footer-top h3 {
    font-size: 34px;
    line-height: 38px;
    text-align: end;
    margin: 40px 0px;
}

.email-template-footer-bottom {
    max-width: 1600px;
    width: 100%;
    margin: 0px auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 2px solid #6a7476;
    border-bottom: 2px solid #6a7476;
    padding: 40px 0px;
}

.email-template-footer-bottom-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.email-template-footer-bottom-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background-color: #03120e;
    border-radius: 50%;
}

.email-template-footer-bottom-icon svg {
    height: 40px;
    width: 40px;
}

.email-template-footer-bottom-icon svg path {
    fill: #fff;
}

.email-template-footer-bottom h2 {
    font-size: 34px;
    line-height: 38px;
    font-weight: 600;
}

.email-template-footer-bottom p {
    font-size: 22px;
    line-height: 26px;
    font-weight: 600;
    text-align: end;
}

.email-template-copy-right {
    max-width: 1600px;
    width: 100%;
    margin: 0px auto;
    padding: 40px 0px 20px 0px;
}

.email-template-copy-right h2 {
    font-size: 24px;
    line-height: 28px;
    font-weight: 400;
}

.email-template-copy-right p {
    font-weight: 400;
    font-size: 18px;
    line-height: 22px;
    margin: 20px 0px 0px 0px;
    text-align: center;
}

/*  */

@media (max-width: 1280px) {
    .ai-capabilities-stacking-cards {
        max-width: 82%;
        margin: 0 auto;
    }

    .strategic-partnerships-wrapper {
        flex-wrap: wrap;
    }

    .about-us-hero-info {
        width: 100%;
    }

    .about-us-hero-wrapper {
        padding: 20px 20px 40px 20px;
    }

    .about-us-info {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        margin-bottom: 55px;
        width: 65%;
    }

    .about-us-img {
        height: 500px;
        width: 82vw;
    }

    .about-us video {
        height: 500px;
        width: 82vw;
    }

    .story-paras-top {
        width: 100%;
        height: 100%;
    }

    .story-img-wrapper {
        width: 100%;
    }

    .history-fixifi-img {
        height: 500px;
    }

    .history-fixifi-img video {
        height: 500px;
    }

    .our-values-cards {
        width: 130%;
    }

    .our-values-card {
        width: 92%;
        min-width: 200px;
    }

    .ai-capabilities-hero-wrapper {
        height: 100%;
        min-height: 520px;
    }

    .ai-capabilities-hero-info-content {
        width: 100%;
        margin: 0px auto 40px auto;
    }

    .ai-capabilities-hero-icons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .services-cards {
        padding: 80px 0px 40px 0px;
    }

    .ai-capabilities-tab-box {
        height: 1020px;
    }

    .tab-btn {
        width: 100%;
        padding: 0px;
    }

    .tab-btn-para {
        display: none;
    }

    .stacking-cards-container {
        top: 60px;
        height: 540px;
    }

    .stacking-container-card:hover img {
        max-height: 0;
        opacity: 0;
    }

    .stacking-container-card {
        height: 230px;
        gap: 10px;
    }

    .stacking-container-card h3 {
        margin: 0;
        font-size: 20px;
    }

    .stacking-container-cards-heading h2 {
        font-size: 32px;
        line-height: 36px;
    }

    .stacking-container-cards-heading p {
        margin: 0px;
        font-size: 18px;
        line-height: 22px;
    }

    .share-holder-relations-container {
        padding: 80px 64px 80px 64px;
    }

    .share-holder-relations-wrapper {
        padding: 0px;
    }

    .share-holder-relations-wrappper-content {
        flex-direction: column;
        padding: 120px 20px 20px 20px;
        text-align: center;
        min-width: 280px;
        width: 100%;
    }

    .share-holder-relations-profile {
        left: auto;
        top: -100px;
    }

    .share-holder-relations-info {
        justify-content: center;
        /* flex-direction: column; */
        gap: 20px;
    }

    .share-holder-relations-info p {
        width: 100%;
        padding: 0px;
    }

    .pitch-deck-secure-access-line {
        right: -180px;
        bottom: -180px;
    }

    .pitch-deck-explore-wrapper {
        max-height: 600px;
    }

    .resellers-partner-card {
        width: 100%;
        height: 100%;
        min-height: 300px;
    }

    .resellers-partner-block {
        display: none;
    }

    .resellers-partner-line {
        display: none;
    }

    .email-template-main-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .email-template-main-wrapper-left {
        width: 100%;
    }

    .email-template-main-wrapper-right {
        width: 100%;
    }

    .email-template-main h2 {
        font-size: 34px;
        line-height: 38px;
    }

    .email-template-footer-top h2,
    .email-template-footer-top h3 {
        font-size: 30px;
    }
}

@media (max-width:1024px) {
    .about-us-wrapper {
            flex-direction: column;
        }

                        .story-top {
                            flex-direction: column;
                        }
    .ai-solutions-cards {
        flex-wrap: wrap;
    }

    .investment-why-us-card {
        flex: 1 1 calc(50% - 20px);
    }

    .strategic-partnerships-container {
        padding: 60px 32px 0px 32px;
    }

    .strategic-partnerships-wrapper {
        flex-direction: column;
        gap: 60px;
    }

    .andre-card {
        max-width: 100%;
        padding: 0px 32px 40px 32px;
    }

    .andre-profile {
        width: 260px;
        height: 260px;
        top: -50px;
        margin-bottom: -50px;
    }

    .strategic-partnerships-right h2 {
        font-size: 36px;
        line-height: 40px;
    }

    .strategic-partnerships-cards {
        flex-direction: column;
        gap: 40px;
    }

    .partnerships-logo {
        width: 240px;
        height: 240px;
    }

    .key-traction-metrics-container {
        padding: 60px 32px 0px 32px;
    }

    .key-traction-metrics-container h2 {
        font-size: 36px;
        line-height: 40px;
        margin: 0 0 40px 0;
    }

    .key-traction-metrics-wrapper {
        gap: 60px;
    }

    .metric-value {
        font-size: 72px;
        line-height: 72px;
    }

    .metric-label {
        font-size: 20px;
        line-height: 24px;
    }

    .key-traction-metrics-bottom {
        margin-top: 40px;
        margin-bottom: 40px;
    }

    .key-traction-metrics-bottom p {
        font-size: 20px;
        line-height: 28px;
    }

    .stacking-cards-container {
        position: static;
        transform: none !important;
        z-index: 1 !important;
        pointer-events: auto !important;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        height: 100%;
        width: 100%;
    }

    .stacking-container-wrapper {
        width: 100%;
    }

    .stacking-cards-img {
        height: 500px;
        width: 100%;
    }

    #property-management-img {
        background-position: 50% 45%;
    }

    #service-provider-img {
        background-position: 50% 30%;
    }

    #residential-tenats-img {
        background-position: 50% 50%;
    }

    #owner-occupier-img {
        background-position: 50% 16%;
    }

    .stacking-container-cards {
        flex-wrap: wrap;
    }

}

@media (max-width: 960px) {
    .about-us-hero-wrapper {
        padding: 60px 20px;
    }

    .about-us-hero-info h1 {
        font-size: 50px;
        line-height: 54px;
    }

    .about-us-wrapper {
        padding: 60px 40px;
    }

    .about-us-info {
        width: 100%;
    }

    .history-fixifi-img video {
        margin: 0px auto;
    }

    .history-fixifi-img {
        width: 82vw;
        margin: 0px auto;
    }

    .our-history {
        align-items: baseline;
        padding: 120px 0px 40px 0px;
    }

    .our-history h2 {
        padding: 0px 20px;
    }

    .our-history-lines {
        right: -100px;
    }

    .our-history-lines-2 {
        left: -240px;
    }

    .history-line {
        left: 20px;
        height: 300%;
    }

    .history-circle {
        left: 20px;
    }

    .history-conclusion-msg {
        padding: 30px 20px 0px 20px;
    }

    .history-year-3 {
        margin: 0px auto;
    }

    .history-year-2 {
        padding: 20px 0px;
    }

    .history-year-3 {
        padding: 20px 0px;
    }

    .history-year-1-info,
    .history-year-2-info,
    .history-year-3-info {
        width: 80%;
        margin: 64px auto 0px auto;
    }

    .our-values-box {
        height: 1600px;
        width: 100%;
    }

    @media (orientation: landscape) {
        .our-values-box {
            height: 800px;
        }
    }

    .our-values-cards {
        grid-template-areas:
            "value-card-1 value-card-2"
            "value-card-3 value-card-4";
        gap: 20px;
        width: 100%;
    }

    .our-values-card {
        min-width: 230px;
        width: 85%;
    }

    .ai-solutions {
        padding: 40px;
    }

    .ai-solutions-service-header-container {
        width: 90%;
    }

    .ai-capabilities-hero-info-content {
        width: 100%;
    }

    .ai-solutions-service-header-container h2 {
        font-size: 34px;
        line-height: 38px;
    }

    .ai-capabilities-values-container h2 {
        font-size: 40px;
        line-height: 44px;
    }

    .ai-capabilities-headline-container-wrapper {
        padding: 40px;
    }

    .ai-capabilities-tab-box {
        height: 1140px;
    }

    #tab-btn-clicking-gif {
        height: 40px;
        width: 40px;
    }

    .investment-hero-wrapper {
        padding: 100px 40px;
    }

    .investment-details-wrapper {
        padding: 60px 40px 0px 40px;
    }

    .investment-details-wrapper-bottom p {
        width: 100%;
    }

    .investment-why-us-container {
        padding: 60px 40px 0px 40px;
    }

    .investment-opportunities-container {
        padding: 60px 40px 0px 40px;
    }

    .resellers-hero-wrapper p {
        width: 100%;
    }

    .pitch-deck-secure-access-cards {
        justify-content: center;
        grid-template-areas:
            "secure-access-1"
            "secure-access-2"
            "secure-access-3"
            "secure-access-4"
            "secure-access-5"
            "secure-access-6";
    }

    .email-template-hero-wrapper,
    .email-template-main-wrapper,
    .email-template-discover,
    .email-template-bottom {
        padding: 40px;
    }

    .email-template-main h2 {
        width: 90%;
    }

    .email-template-main h2 {
        font-size: 30px;
        line-height: 34px;
    }

    .email-template-footer-top h2,
    .email-template-footer-top h3 {
        font-size: 26px;
    }

    .email-template-footer-bottom {
        justify-content: center;
        flex-direction: column;
        gap: 40px;
    }

    .email-template-footer-bottom p {
        text-align: center;
    }
}

@media (max-width: 800px) {
    .about-us-hero-info h1 {
        font-size: 38px;
        line-height: 42px;
    }

    .history-year-1-info,
    .history-year-2-info,
    .history-year-3-info {
        width: 90%;
    }

    .history-line {
        display: none;
    }

    .history-circle {
        display: none;
    }

    .founders-story {
        padding: 100px 30px 0px 30px;
    }

    .ai-capabilities-hero {
        padding: 100px 40px 40px 40px;
    }

    .ai-capabilities-hero-wrapper {
        padding: 40px 0px;
    }

    .ai-capabilities-hero-info-content h1 {
        font-size: 50px;
        line-height: 54px;
    }

    .ai-capabilities-tab-container {
        padding: 0px 40px 40px 40px;
    }

    .ai-capabilities-values-box {
        margin: 100px auto 300px auto;
    }

    .ai-capabilities-values {
        top: 200px;
    }

    .ai-capabilities-benefits {
        padding: 40px;
    }

    .ai-capabilities-benefits h2 {
        font-size: 36px;
        line-height: 40px;
    }

    .benefits-card-img {
        margin: 0px auto;
    }

    .benefits-card-info {
        text-align: center;
    }

    .ai-capabilities-headline-container-wrapper h2 {
        font-size: 36px;
        line-height: 40px;
    }

    .ai-capabilities-tab-box {
        height: 1400px;
    }

    #tab-btn-clicking-gif {
        bottom: 12px;
    }

    .tab-page {
        padding: 100px 20px 20px 20px;
    }

    .tab-page ul {
        flex-wrap: wrap;
        margin: 60px 0px 40px 0px;
        gap: 20px;
    }

    .tab-page li {
        width: 45%;
        min-width: 180px;
    }

    .share-holder-relations-container {
        padding: 80px 40px;
    }

    .investment-hero-wrapper h1 {
        font-size: 38px;
        line-height: 42px;
    }

    .investment-details-wrapper h2 {
        font-size: 34px;
        line-height: 38px;
    }

    .investment-why-us-heading h2 {
        font-size: 34px;
        line-height: 38px;
    }

    .investment-opportunities-heading h2 {
        font-size: 34px;
        line-height: 38px;
    }

    .resellers-hero-wrapper h1 {
        font-size: 44px;
        line-height: 48px;
    }

    .resellers-partner-container h2,
    .resellers-benefits-container h2 {
        font-size: 38px;
        line-height: 44px;
    }
}

@media (max-width: 730px) {
    .about-us-hero-info h1 {
        font-size: 34px;
        line-height: 38px;
    }

    .about-us-img,
    .about-us-img video {
        height: 400px;
    }

    .our-history-wrapper {
        padding: 100px 20px;
    }

    .our-history-lines {
        right: -150px;
    }

    .our-team h2 {
        font-size: 38px;
        line-height: 42px;
    }

    .our-values {
        padding: 40px 40px 0px 40px;
    }

    .our-values-wrapper {
        padding: 40px 0px;
    }

    .our-values-box {
        width: 100%;
    }

    .ai-solutions-heading h2 {
        font-size: 30px;
        line-height: 34px;
    }

    .tab-btn-img {
        width: 55px;
        height: 55px;
    }

    .stacking-container-cards-heading h2 {
        font-size: 30px;
        line-height: 34px;
    }

    .investment-hero-wrapper {
        padding: 80px 20px;
    }

    .investment-details-wrapper {
        padding: 60px 20px 0px 20px;
    }

    .investment-why-us-container {
        padding: 60px 20px 0px 20px;
    }

    .investment-opportunities-container {
        padding: 60px 20px 0px 20px;
    }

    .share-holder-relations-container {
        padding: 80px 20px;
    }

    .investment-hero-wrapper h1 {
        font-size: 34px;
        line-height: 38px;
    }

    .investment-details-wrapper h2 {
        font-size: 30px;
        line-height: 34px;
    }

    .investment-why-us-heading h2 {
        font-size: 30px;
        line-height: 34px;
    }

    .investment-opportunities-heading h2 {
        font-size: 30px;
        line-height: 34px;
    }

    .resellers-hero-wrapper {
        padding: 100px 20px;
    }

    .resellers-join-wrapper {
        padding: 40px 20px;
    }

    .resellers-benefits-container {
        padding: 40px 20px;
    }

    .resellers-hero-wrapper h1 {
        font-size: 40px;
        line-height: 44px;
    }

    .resellers-partner-container h2,
    .resellers-benefits-container h2 {
        font-size: 34px;
        line-height: 38px;
    }

    .reseller-form-row {
        flex-direction: column;
    }

    .pitch-deck-explore-wrapper {
        border-radius: 22px;
    }

    .pitch-deck-explore-pagination {
        border-radius: 22px !important;
    }

    .pitch-deck-action-card-video video {
        height: 150px !important;
    }

    .pitch-deck-secure-access-container {
        padding: 40px 40px 150px 40px;
    }

    .pitch-deck-secure-access-wrapper {
        text-align: center;
    }

    .pitch-deck-secure-access-wrapper h2 {
        font-size: 30px;
        line-height: 34px;
    }

    .pitch-deck-secure-access-wrapper p {
        margin: 10px 0px 20px 0px;
    }

    .pitch-deck-secure-access-cards {
        padding: 0px;
    }

    .pitch-deck-explore-container {
        padding: 100px 40px;
    }

    .popup-contact-us-form {
        padding: 60px 20px;
    }

    .investment-popup {
        padding: 20px;
    }

    .oops-error-container {
        padding: 40px;
    }
}

@media (max-width: 600px) {
    .about-us-hero-info h1 {
        font-size: 30px;
        line-height: 34px;
    }

    .about-us-hero-info h2 {
        font-size: 20px;
        line-height: 24px;
    }

    .about-us-img,
    .about-us-img video {
        height: 300px;
    }

    .ai-solutions-heading h2 {
        font-size: 26px;
        line-height: 30px;
    }

    .history {
        padding: 40px;
    }

    .story h2 {
        font-size: 34px;
        line-height: 38px;
        text-align: center;
    }

    .story-heading {
        margin: 0px auto;
    }

    .our-history {
        gap: 20px;
    }

    .our-history h2 {
        font-size: 40px;
        line-height: 44px;
    }

    .history-detail-box {
        width: 80%;
    }

    .our-values h2 {
        font-size: 40px;
        line-height: 44px;
    }

    .our-values-cards {
        grid-template-areas:
            "value-card-1"
            "value-card-2"
            "value-card-3"
            "value-card-4";
        top: 200px;
    }

    .ai-capabilities-hero {
        padding: 40px 20px 0px 20px;
    }

    .ai-capabilities-hero-info-content h1 {
        font-size: 40px;
        line-height: 44px;
    }

    .ai-capabilities-hero-icons {
        margin: 100px 0px 0px 0px;
    }

    .tab-page li {
        min-width: 100%;
    }

    .ai-capabilities-tab-box {
        height: 1700px;
    }

    .tab-page h2 {
        font-size: 34px;
        line-height: 38px;
    }

    .stacking-cards-img img {
        max-width: 250px;
    }

    #property-management-img {
        background-position: 30% 50%;
    }

    #service-provider-img {
        background-position: 80% 50%;
    }

    #residential-tenats-img {
        background-position: 100% 50%;
    }

    #owner-occupier-img {
        background-position: 50% 50%;
    }

    .investment-hero-wrapper h1 {
        font-size: 30px;
        line-height: 34px;
    }

    .investment-details-wrapper h2 {
        font-size: 26px;
        line-height: 30px;
    }

    .investment-details-wrapper-bottom p {
        font-size: 18px;
    }

    .investment-why-us-heading h2 {
        font-size: 26px;
        line-height: 30px;
    }

    .investment-opportunities-heading h2 {
        font-size: 26px;
        line-height: 30px;
    }

    .investment-opportunities-bottom p {
        font-size: 18px;
    }

    .share-holder-relations-info {
        font-size: 18px;
        line-height: 22px;
    }

    .resellers-hero-wrapper h1 {
        font-size: 38px;
        line-height: 42px;
    }

    .resellers-partner-container h2,
    .resellers-benefits-container h2 {
        font-size: 32px;
        line-height: 36px;
    }

    .resellers-learn-more-container h2 {
        font-size: 24px;
        line-height: 28px;
    }

    .resellers-learn-more-container p {
        font-size: 24px;
        line-height: 28px;
    }

    .pitch-deck-hero-wrapper h1 {
        font-size: 34px;
        line-height: 38px;
    }

    .pitch-deck-explore-container h2 {
        font-size: 28px;
        line-height: 32px;
    }

    .pitch-deck-action-on-screen-videos video {
        width: 280px;
    }

    .email-template-main h2 {
        font-size: 28px;
        line-height: 32px;
    }

    .email-template-footer-top h2 {
        font-size: 26px;
    }

    .email-template-footer-top h3 {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .about-us-img,
    .about-us-img video {
        height: 200px;
    }

    .about-us-wrapper-btns {
        flex-direction: column;
    }

    .founders-story {
        padding: 100px 20px 0px 20px;
    }

    .story {
        text-align: center;
        padding: 40px 20px;
    }

    .stroy-paras {
        padding: 0px 0px;
    }

    .our-history-wrapper {
        padding: 0px 10px;
    }

    .history {
        padding: 100px 20px;
    }

    .history-line {
        display: none;
    }

    .story h2 {
        font-size: 30px;
        line-height: 34px;
    }

    .our-history h2 {
        font-size: 30px;
        line-height: 34px;
    }

    .our-team {
        padding: 40px 20px;
    }

    .our-team h2 {
        font-size: 32px;
        line-height: 36px;
    }

    .our-values {
        padding: 40px 20px;
    }

    .our-values-box {
        width: 100%;
    }

    #about-us-form-title {
        font-size: 22px;
        line-height: 26px;
        margin-bottom: 20px;
    }

    .ai-capabilities-hero-info-content h1 {
        font-size: 34px;
        line-height: 38px;
    }

    .ai-solutions-service-header-container h2 {
        font-size: 26px;
        line-height: 30px;
    }

    .ai-solutions {
        padding: 40px 20px;
    }

    .ai-solutions-heading h2 {
        font-size: 24px;
        line-height: 28px;
    }

    .ai-solutions-service-header-container {
        padding: 40px 20px;
    }

    .stacking-cards-img img {
        max-width: 180px;
    }

    .stacking-container-cards-heading h2 {
        font-size: 28px;
        line-height: 32px;
    }

    .ai-capabilities-values-box {
        height: 1800px;
    }

    .ai-capabilities-values {
        top: 240px;
    }

    .ai-capabilities-benefits {
        padding: 40px 20px;
    }

    .ai-capabilities-benefits h2 {
        font-size: 30px;
        list-style: 34px;
    }

    .ai-capabilities-headline-container-wrapper {
        padding: 40px 20px;
    }

    .ai-capabilities-headline-container-wrapper h2 {
        font-size: 30px;
        line-height: 34px;
    }

    .ai-capabilities-tab-container {
        padding: 0px 20px 40px 20px;
    }

    .ai-capabilities-tab-heading p {
        font-size: 20px;
        line-height: 24px;
    }

    .tab-page {
        text-align: center;
    }

    .tab-page h2 {
        font-size: 30px;
        line-height: 34px;
    }

    .ai-capabilities-tab-box {
        height: 2020px;
    }

    .tab-btn-img {
        height: 40px;
        width: 40px;
    }

    .investment-hero-wrapper h1 {
        font-size: 26px;
        line-height: 30px;
    }

    .investment-hero-btns {
        width: 100%;
    }

    .investment-details-wrapper h2 {
        font-size: 22px;
        line-height: 26px;
    }

    .investment-why-us-heading h2 {
        font-size: 22px;
        line-height: 26px;
    }

    .investment-opportunities-heading h2 {
        font-size: 22px;
        line-height: 26px;
    }

    .resellers-hero-wrapper h1 {
        font-size: 34px;
        line-height: 38px;
    }

    .resellers-partner-container h2,
    .resellers-benefits-container h2 {
        font-size: 30px;
        line-height: 34px;
    }

    .resellers-learn-more-container-btns {
        flex-direction: column;
        margin: 40px 0px 0px 0px;
    }

    .pitch-deck-secure-access-container {
        padding: 20px 20px 150px 20px;
    }

    .pitch-deck-explore-container {
        padding: 100px 20px;
    }

    .oops-error-container {
        padding: 40px 20px;
    }

    .oops-error-container h1 {
        font-size: 100px;
        line-height: 104px;
    }

    .oops-error-container h2 {
        font-size: 26px;
        line-height: 32px;
    }

    .email-template-hero-wrapper,
    .email-template-main-wrapper,
    .email-template-discover,
    .email-template-bottom {
        padding: 40px 20px;
    }

    .email-template-hero h1 {
        font-size: 30px;
        line-height: 34px;
    }

    .email-template-main-wrapper-left img {
        height: 280px;
        width: 280px;
    }

    .email-template-main-wrapper-left {
        width: 100%;
    }

    .email-template-main-wrapper-left div {
        width: 280px;
    }
}

@media (max-width: 350px) {
    .investment-why-us-cards {
        gap: 20px;
    }

    .investment-why-us-card {
        flex: 1 1 100%;
    }

    .ai-capabilities-tab-box {
        height: 2400px;
    }
}

/*  */
.blog-wrapper a {
    color: #03120e;
    text-decoration: none;
    cursor: pointer;
}

.blog-box-wrapper {
    width: 100%;
}

.blog-box-wrapper a {
    color: #03120e;
    text-decoration: none;
}

/*  */

/* Blog Page  */
.blog-page {
    padding: 100px 64px;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
}

.tags {
    display: flex;
    justify-content: center;
}

.blog-intro {
    text-align: center;
    margin-top: 30px;
}

.blog-intro h1 {
    font-size: 75px;
    line-height: 100px;

    margin-bottom: 10px;
}

.blog-intro p {
    color: #00000080;
    font-size: 18px;
    line-height: 24px;

    text-align: center;
}

.blog-page-img img {
    height: 100%;
    margin: 40px 0px 40px 0px;
}

.blog-page-img img {
    border-radius: 44px;
    object-fit: cover;
}

.blog-area {
    display: flex;
    flex-direction: column;
}

.blog-area h2 {
    font-size: 34px;
    line-height: 44px;
    margin: 20px 0px 20px 0px;
}

.blog-area h3 {
    font-size: 24px;
    line-height: 28px;
    margin: 20px 0px 20px 0px;
}

.blog-area p {
    color: #00000080;
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 10px;
}

.blog-area ul li {
    color: #00000080;
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 10px;
}

.blog-area a {
    color: #000000;
    transition: 0.3s ease;
    text-decoration: none;
}

.blog-area a:hover {
    color: #00000080;
}

.related-blogs {
    width: 100%;
    margin: 30px auto;
    max-width: 1600px;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    padding: 30px 64px;
}

.related-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.related-bar h2 {
    font-size: 40px;
}

.related-bar a {
    text-decoration: none;
}

.relatedbar-btn {
    font-size: 18px;
}

.related-btn {
    width: 220px;
    border-radius: 44px;
}

.related-blogs-container {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 33px;
    padding: 30px 0px;
    justify-items: center;
}

/*  */

@media (max-width: 1280px) {
    .about-fixifi {
        padding: 60px 40px 50px 40px;
    }

    .about-fixifi-wrapper {
        flex-direction: column;
        gap: 15px;
    }

    .about-fixifi-info {
        width: 100%;
        text-align: center;
        margin: 0;
        padding: 0 20px;
    }

    .about-us-main-img {
        height: 310px;
        width: 100%;
    }

    .about-us-main-img video {
        height: 310px;
    }

    .about-fixifi .about-section-heading h2 {
        font-size: 40px;
        line-height: 48px;
    }

    .our-platforms-wrapper {
        grid-template-areas:
            "box1"
            "box2"
            "box3"
            "box4";
    }

    .card {
        height: 320px !important;
    }

    .testimonials-cards-wrapper {
        margin: 64px 0px 20px 0px;
    }

    .testimonials-cards-quotes {
        height: 150px;
        width: 150px;
    }

    .blog-cards {
        padding: 460px 64px 32px 64px;
    }

    .blog-box-container {
        margin: 0px 0px !important;
    }

    .blog-cards-info {
        align-items: center;
        text-align: center;
        width: 100%;
        padding: 32px 64px 0px 64px;
    }

    .blog-cards-info p {
        width: 100%;
    }

    .blog-cards-info-line {
        padding: 0px 0px;
        width: 80%;
    }

    .blog-btn {
        justify-content: space-between;
        width: 100%;
    }

    .ai-capabilities-info {
        margin-top: 40px;
    }

    .contact-form {
        padding: 32px 20px;
    }

    .contact-form-container {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: 100%;
    }

    .contact-form-container h2 {
        margin-bottom: 30px;
        text-align: center;
    }

    .contact-us-form {
        width: 80%;
        height: 100%;
    }

    .investment-form {
        width: 100%;
    }

    .upper-footer {
        align-items: center;
        padding: 0px 0px 30px 0px;
    }

    .upper-footer-logo {
        margin: 30px 0px 0px 0px;
    }

    .upper-footer-lists {
        width: 100%;
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        margin: 50px 0px 40px 0px;
        grid-template-areas: "upper-list-1 upper-list-2 upper-list-3 upper-list-4";
    }

    #upper-list-4 {
        justify-self: center;
    }
}

@media (max-width: 1200px) {

    .blog-wrapper,
    .related-blogs-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-us-main-img {
        height: 600px;
    }

    .about-us-main-img video {
        height: 600px;
    }

    .upper-footer-lists {
        grid-template-areas:
            "upper-list-1 upper-list-2 upper-list-3 "
            "upper-list-4 upper-list-4 upper-list-4";
    }
}

@media (max-width: 1090px) {
    .about-us-main-img {
        height: 500px;
    }

    .about-us-main-img video {
        height: 500px;
    }

    .services-info {
        width: 100%;
    }

    .services {
        align-items: center;
        flex-direction: column;
    }

    .card {
        height: 100% !important;
        padding: 40px 20px 80px 20px;
    }

    .ai-capabilities-info {
        flex-direction: column;
        display: flex;
        align-items: flex-start;
        width: 100%;
    }

    .blog-page {
        padding: 145px;
    }

    .upper-footer {
        flex-direction: column;
    }
}

@media (max-width: 950px) {
    .about-us-main-img {
        height: 450px;
    }

    .about-us-main-img video {
        height: 450px;
    }

    .blog-page {
        padding: 100px 80px;
    }

    .blog-intro h1 {
        font-size: 50px;
        line-height: 58px;
    }

    .blog-page-img {
        height: 100%;
    }

    .related-blogs {
        padding: 30px 63px;
    }

    #ham-menu-btn {
        display: block;
    }

    .onscreen-element {
        display: none;
    }
}

@media (max-width: 890px) {
    .testimonials-cards-heading {
        margin: 20px 0px 0px 0px;
    }

    .testimonials-cards-wrapper {
        margin: 40px 0px 60px 0px;
    }

    .testimonials-cards-heading {
        justify-content: center;
        padding: 0px 0px;
    }

    .testimonials-cards h2 {
        font-size: 34px;
        line-height: 38px;
    }

    .testimonials-cards-lines {
        display: none;
    }

    .testimonials-cards-quotes {
        top: 80px;
        right: 50px;
    }

    .cards-container {
        padding: 80px 110px !important;
    }

    .slide-wrapper {
        padding: 0px 10px;
    }

    .ai-capabilities-heading {
        text-align: center;
    }

    .ai-capabilities-wrapper {
        width: 100%;
    }

    .ai-capabilities-info {
        width: 100%;
    }

    .ai-capabilities-info h3 {
        margin: 20px auto;
    }

    .bottom-footer h1 {
        font-size: 40px;
    }

    footer {
        padding: 20px;
    }

    .upper-footer {
        display: none;
    }

    .upper-mobile-footer {
        display: block;
    }

    #upper-list-4 {
        justify-self: normal;
    }

    .bottom-footer {
        display: none;
    }

    .bottom-mobile-footer {
        display: block;
    }

    .blog-btn {
        display: none;
    }

    .blog-btn-mobile {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 40px;
    }

    .next-blog {
        height: 50px !important;
        width: 50px !important;
        margin: 0px 64px 0px 0px;
    }

    .prev-blog {
        height: 50px !important;
        width: 50px !important;
        margin: 0px 0px 0px 64px;
    }

    .blog-wrapper,
    .related-blogs-container {
        grid-template-columns: 1fr;
    }

    .blog-box-wrapper {
        width: 400px;
    }

    .blog-box {
        width: 400px !important;
    }
}

@media (max-width: 786px) {
    .services {
        padding: 40px 20px;
    }

    .services-wrapper {
        margin-top: 30px;
        gap: 40px;
    }

    .services-left {
        width: 100%;
    }

    .services-left h2 {
        font-size: 40px;
        line-height: 48px;
    }

    .services-right {
        width: 100%;
    }

    .services-list {
        grid-template-columns: 1fr;
        margin-top: 20px;
        padding-left: 20px;
    }

    .services-list li {
        font-size: 16px;
        line-height: 26px;
    }

    .about-fixifi {
        padding: 40px 20px 40px 20px;
    }

    .about-fixifi-wrapper {
        gap: 25px;
    }

    .about-fixifi .about-section-heading {
        margin-bottom: 25px;
    }

    .about-fixifi .about-section-heading h2 {
        font-size: 32px;
        line-height: 40px;
        margin-bottom: 0;
    }

    .about-us-main-img {
        height: 300px;
        width: 100%;
    }

    .about-us-main-img video {
        height: 300px;
    }

    .about-fixifi-info {
        padding: 0 10px;
        margin: 0;
    }

    .about-fixifi-info p {
        font-size: 16px;
        line-height: 26px;
        margin: 0 0 15px 0;
    }

    .about-fixifi-info p:first-child {
        margin-top: 0;
    }

    .about-fixifi-btn {
        margin-top: 20px;
    }

    .about-us-main-img img {
        border-radius: 22px;
    }

    .about-us-main-img video {
        border-radius: 22px;
    }

    .services-info {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
        padding: 0px 30px;
    }

    .services-info-btn {
        margin: 40px 0px;
    }

    .column1 {
        margin: 0;
        width: 100%;
    }

    .column2 {
        margin: 0;
        width: 100%;
    }

    .our-platforms-bottom-heading {
        margin: 100px 0px 0px 0px;
    }

    .our-platforms-bottom-heading p {
        font-size: 18px;
        line-height: 22px;
    }

    .ai-capabilities {
        padding: 0px;
    }

    .ai-capabilities-wrapper {
        min-height: 100%;
        padding: 60px 30px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .ai-capabilities-heading h2 {
        font-size: 30px;
    }

    .ai-capabilities-info {
        margin-top: 30px;
    }

    .ai-capabilities-info {
        font-size: 18px;
        line-height: 24px;
    }

    .blog-cards-info {
        padding: 32px 30px 0px 30px;
    }

    .next-blog {
        top: 510px !important;
    }

    .prev-blog {
        top: 510px !important;
    }

    .contact-us-form {
        width: 100%;
    }

    .contact-form-container {
        padding: 80px 40px;
    }

    .contact-form-container h2 {
        font-size: 44px;
        line-height: 48px;
        text-align: center;
    }

    .contact-form-para {
        display: none;
    }

    .contact-form-mobile-para {
        display: block;
    }

    .blog-page {
        padding: 100px 20px;
    }

    .upper-mobile-footer-btn {
        flex-direction: column;
    }

    .our-history-lines-2 {
        display: none;
    }

    .pitch-deck-swiper-mobile-btns {
        display: none !important;
    }

    .pitch-deck-swiper-mobile-left,
    .pitch-deck-swiper-mobile-right,
    .pitch-deck-popup-swiper-mobile-left,
    .pitch-deck-popup-swiper-mobile-right {
        display: none !important;
    }
}

@media (max-width: 660px) {
    .popup {
        width: 100%;
        max-width: 450px;
        margin: 0 10px;
        padding: 30px 25px;
    }
    
    .popup-overlay {
        padding: 15px;
    }

    .about-us-main-img {
        height: 350px;
    }

    .about-us-main-img video {
        height: 350px;
    }

    .our-platforms h3 {
        text-align: center;
    }

    .box {
        height: 100%;
        text-align: center;
        align-items: center;
    }

    .box-wrapper-bottom {
        flex-direction: column;
    }

    .testimonials-cards-quotes {
        top: 100px;
        height: 120px;
        width: 120px;
    }

    .ai-capabilities-info h3 {
        font-size: 24px;
        line-height: 28px;
    }

    .ai-capabilities-info h4 {
        font-size: 20px;
        line-height: 24px;
    }

    .ai-capabilities-info-btn {
        margin: 0px auto;
    }

    .blog-cards {
        padding: 365px 0px 32px 0px;
        flex-direction: column;
    }

    .blog-wrapper {
        padding: 40px 0px;
    }

    .blog-container {
        padding: 60px 0px;
    }

    .upper-mobile-footer-logo {
        align-items: center;
        justify-content: center;
    }

    .upper-mobile-footer-info {
        flex-direction: column-reverse;
        align-items: center;
        width: 100%;
        margin: 40px 0px 40px 0px;
        padding: 0;
    }

    .upper-mobile-footer-lists {
        grid-template-columns: 1fr 1fr;
        grid-template-areas:
            "upper-list-1 upper-list-2"
            "upper-list-3 upper-list-4";
        justify-content: center;
        justify-items: center;
        align-items: center;
        text-align: center;
        padding: 0;
        margin-bottom: 40px;
        row-gap: 40px;
        column-gap: 20px;
    }

    .upper-mobile-footer-lists ul {
        margin: 0;
    }

    .upper-mobile-footer-btn {
        margin-bottom: 40px;
        flex-direction: row;
    }

    .bottom-mobile-footer h1 {
        font-size: 34px;
        line-height: 38px;
    }
}

@media (max-width: 590px) {
    .hero-animation {
        height: 396px;
        width: 396px;
    }

    .hero-animation-icon img {
        height: 40px;
        width: 40px;
    }

    .hero-info h2 {
        font-size: 18px;
        line-height: 20px;
    }

    .hero-info-btn {
        margin-top: 20px;
    }

    .icon-1 {
        left: 20px;
    }

    .icon-2 {
        right: 20px;
    }

    .icon-3 {
        left: 20px;
    }

    .icon-4 {
        right: 20px;
    }

    .hero-info h1 {
        font-size: 29px;
        line-height: 33px;
    }

    .hero-btn {
        height: 50px;
        width: 150px;
    }

    .about-fixifi {
        flex-direction: column;
        padding: 60px 30px;
    }

    .services {
        padding: 40px 20px;
    }

    .services-info {
        margin-top: 40px;
    }

    .our-platforms {
        padding: 0px 20px 20px 20px;
    }

    .testimonials-cards {
        margin: 50px auto;
    }

    .testimonials-cards h2 {
        font-size: 25px;
    }

    .testimonials-cards-quotes {
        top: 120px;
    }

    .cards-container {
        padding: 80px 20px !important;
    }

    .card {
        display: flex !important;
        align-items: center !important;
        flex-direction: column !important;
    }

    .no-dp {
        flex-direction: row !important;
        height: 100px !important;
    }

    .card-details {
        text-align: center;
    }

    .card-client {
        flex-direction: column;
        align-items: center;
        height: 150px;
    }

    .arrow-btn {
        margin: 0px 20px;
    }

    .pagination {
        margin: 25px 0px 0px 0px;
        position: static !important;
    }

    .arrows {
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: absolute;
        width: 100%;
        bottom: 20px;
    }

    .blog-cards-info h2 {
        font-size: 30px;
        line-height: 34px;
    }

    .blog-cards-info p {
        font-size: 14px;
        width: 100%;
        line-height: 25px;
    }

    .contact-form {
        padding: 32px 20px;
    }

    .contact-form-container h2 {
        font-size: 30px;
        line-height: 34px;
    }

    .contact-form-lines {
        top: -110px;
    }

    .contact-us-form {
        padding: 60px 20px;
    }

    .bottom-mobile-footer h1 {
        text-align: center;
    }

    .bottom-mobile-footer h1 {
        font-size: 30px;
        line-height: 40px;
    }

    .bottom-mobile-footer-lists {
        grid-template-areas:
            "bottom-list-1 bottom-list-2"
            "bottom-list-3 bottom-list-4"
            "copy-right copy-right";
        text-align: center;
    }

    .social-icons {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .item {
        margin: 0px 10px;
    }

    .related-bar {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
}

@media (max-width: 560px) {
    .testimonials-cards-wrapper {
        margin: 55px 0px 60px 0px;
    }

    .contact-us-form {
        padding: 60px 40px;
    }

    .investment-form {
        padding: 60px 0px;
    }

    .hero-title-wrapper {
        padding: 100px 20px;
    }

    .hero-title-wrapper h1 {
        font-size: 36px;
        line-height: 40px;
    }

    .blog-intro h1 {
        font-size: 40px;
        line-height: 44px;
    }

    .blog-area h2 {
        font-size: 30px;
        line-height: 34px;
    }

    .blog-area h3 {
        font-size: 24px;
        line-height: 28px;
    }
}

@media (max-width: 500px) {
    #user-type-selector {
        font-size: 14px;
        padding: 14px 0px;
    }
}

@media (max-width: 520px) {
    .popup {
        width: 320px;
        max-width: calc(100vw - 40px);
        padding: 30px 20px;
        border-radius: 30px;
    }

    #user-type-selector {
        padding: 14px 20px;
        font-size: 14px;
    }

    .fixifi-hero-wrapper {
        padding: 40px 10px;
    }

    .about-fixifi {
        flex-direction: column;
        padding: 30px 20px;
    }

    .about-us-main-img {
        height: 180px;
    }

    .about-us-main-img video {
        height: 250px;
    }

    .about-fixifi-info {
        margin: 0;
        padding: 0 15px;
    }

    .about-fixifi-btn {
        margin-top: 20px;
    }

    .about-fixifi-info h2 {
        margin-bottom: 25px;
    }

    .contact-form {
        padding: 30px 0px 20px 0px;
    }

    .contact-form-container {
        padding: 60px 20px;
        border-radius: 0px;
    }

    .get-started-contact-form-container {
        margin: 0px;
    }

    .blog-intro h1 {
        font-size: 32px;
        line-height: 36px;
    }

    .blog-area h2 {
        font-size: 24px;
        line-height: 28px;
    }

    .blog-area h3 {
        font-size: 20px;
        line-height: 24px;
    }

    .related-blogs {
        padding: 30px 0px;
    }

    .blog-box {
        width: 380px !important;
    }

    .form-name {
        flex-direction: column;
    }
}

@media (max-width: 470px) {
    .hero-animation {
        height: 346px;
        width: 346px;
    }

    .hero-animation-icon img {
        height: 30px;
        width: 30px;
    }

    .icon-1 {
        left: 10px;
    }

    .icon-2 {
        right: 10px;
    }

    .icon-3 {
        left: 10px;
    }

    .icon-4 {
        right: 10px;
    }

    .hero-info h1 {
        font-size: 24px;
        line-height: 28px;
    }

    .hero-info h2 {
        font-size: 14px;
        line-height: 18px;
    }

    .blog-box {
        width: 340px !important;
        align-items: center;
        text-align: center;
    }

    .hero-title-wrapper h1 {
        font-size: 32px;
        line-height: 36px;
    }
}

@media (max-width: 440px) {
    .hero-animation {
        height: 300px;
        width: 300px;
    }

    .hero-animation-icon {
        padding: 13px;
    }

    .hero-animation-icon img {
        height: 25px;
        width: 25px;
    }

    .icon-1 {
        left: 0px;
    }

    .icon-2 {
        right: 0px;
    }

    .icon-3 {
        left: 0px;
    }

    .icon-4 {
        right: 0px;
    }

    .hero-info h1 {
        font-size: 20px;
        line-height: 24px;
    }

    .hero-info h2 {
        font-size: 12px;
        line-height: 16px;
    }

    .services h2 {
        font-size: 40px;
        line-height: 44px;
    }

    .blog-intro h1 {
        font-size: 24px;
        line-height: 28px;
    }

    .blog-area h2 {
        font-size: 20px;
        line-height: 24px;
    }

    .blog-area h3 {
        font-size: 18px;
        line-height: 22px;
    }

    .blog-area ul li,
    .blog-area p {
        font-size: 14px;
        line-height: 18px;
    }
}

@media (max-width: 420px) {
    .testimonials-cards-lines {
        display: none;
    }

    .tags {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .card-client {
        height: 180px !important;
    }

    .card-name {
        margin: 0px;
        text-align: center;
    }
}

@media (max-width: 400px) {
    .fixifi-hero-wrapper {
        padding: 40px 10px;
    }

    .about-fixifi-info {
        margin: 0;
        padding: 0 10px;
        font-size: 14px;
        line-height: 18px;
    }

    .about-fixifi-info p {
        margin: 0 0 12px 0;
    }

    .about-fixifi-btn {
        margin-top: 15px;
    }

    .services-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .services-left {
        width: 100%;
    }

    .services-left h2 {
        font-size: 40px;
        line-height: 44px;
    }

    .services-right {
        width: 100%;
    }

    .services-list {
        grid-template-columns: 1fr;
    }

    .services-info {
        padding: 0px 10px;
    }

    .column1 {
        width: 100%;
    }

    .column2 {
        width: 100%;
    }

    .testimonials-cards-wrapper {
        margin: 64px 0px;
    }

    .testimonials-cards-heading h2 {
        font-size: 24px;
        line-height: 26px;
    }

    .arrow-btn {
        margin: 0px 10px;
    }

    .ai-capabilities-info {
        text-align: center;
    }

    .blog-box-wrapper {
        width: 100%;
    }

    .blog-box {
        width: 330px !important;
    }

    .blog-container h1 {
        font-size: 34px;
        line-height: 38px;
    }

    .blog-box-info {
        padding: 20px 20px;
    }

    .contact-form {
        overflow-x: hidden;
    }

    .contact-form-lines {
        display: none;
    }

    .form-btn {
        width: 170px;
    }

    .upper-mobile-footer {
        padding: 20px 0px 0px 0px;
    }

    .upper-mobile-footer-lists {
        grid-template-columns: 1fr;
        grid-template-areas:
            "upper-list-1"
            "upper-list-2"
            "upper-list-3"
            "upper-list-4";
        justify-content: center;
        justify-items: center;
        align-items: center;
        text-align: center;
        padding: 0;
        gap: 0px;
        margin-bottom: 40px;
    }

    .upper-mobile-footer-lists h4 {
        margin-bottom: 10px;
    }

    .upper-mobile-footer-lists ul {
        margin: 20px 35px 0px 35px;
    }

    .upper-mobile-footer-btn {
        flex-direction: column;
    }

    .bottom-mobile-footer {
        padding: 30px 0px 0px 0px;
    }

    .bottom-mobile-footer-lists {
        grid-template-areas:
            "bottom-list-1"
            "bottom-list-2"
            "bottom-list-3"
            "bottom-list-4"
            "copy-right";
    }

    .bottom-mobile-footer h1 {
        font-size: 28px;
        line-height: 32px;
    }

    .social-icons {
        flex-direction: column;
        align-items: center;
    }

    .item {
        margin: 10px 0px;
    }

    .copy-right-mobile {
        margin-top: 40px;
    }

    .blog-intro h1 {
        font-size: 30px;
        line-height: 34px;
    }

    .blog-area h2 {
        font-size: 18px;
        line-height: 22px;
    }

    .blog-area h3 {
        font-size: 14px;
        line-height: 18px;
    }

    .blog-intro p,
    .blog-area p {
        font-size: 12px;
        line-height: 16px;
    }

    .related-blogs {
        padding: 30px 0px;
    }

    .related-bar h2 {
        font-size: 32px;
    }

    .tags span {
        font-size: 10px;
    }

    .related-bar {
        flex-direction: column;
    }

    .related-bar h2 {
        margin-bottom: 10px;
    }
}

@media (max-width: 370px) {
    .fixifi-hero-wrapper {
        min-height: 350px;
        height: 100%;
        padding: 40px 20px;
    }

    .hero-info {
        width: 100%;
    }

    .hero-info h1 {
        font-size: 30px;
        line-height: 34px;
    }

    .hero-animation {
        border: none;
        height: 300px;
        width: 100%;
        animation: none;
    }

    .hero-animation-icon {
        position: absolute;
        animation: popUp 1s ease-out forwards;
        visibility: hidden;
    }

    .icon-1 {
        top: 0px;
        left: 0px;
        animation-delay: 0s;
    }

    .icon-2 {
        top: 0px;
        right: 0px;
        animation-delay: 0.3s;
    }

    .icon-3 {
        bottom: 0px;
        left: 0px;
        animation-delay: 0.9s;
    }

    .icon-4 {
        bottom: 0px;
        right: 0px;
        animation-delay: 0.6s;
    }

    .our-platforms h3 {
        font-size: 28px;
        line-height: 32px;
    }

    .blog-box {
        width: 300px !important;
    }
}

@media (max-width: 350px) {
    .blog-cards {
        padding: 400px 0px 0px 0px;
    }

    .blog-box {
        width: 310px !important;
    }
}

@media (max-width: 340px) {
    .popup {
        width: 260px;
        max-width: calc(100vw - 20px);
        padding: 25px 15px;
        border-radius: 25px;
    }
    
    .popup-title {
        font-size: 24px;
        line-height: 28px;
    }
    
    #user-type-selector {
        padding: 12px 16px;
        font-size: 13px;
    }

    .hero-info h1 {
        font-size: 28px;
        line-height: 32px;
    }

    .services h2,
    .about-fixifi-info h2 {
        font-size: 32px;
        margin: 0px auto;
        line-height: 26px;
        text-align: center;
    }

    .services {
        padding: 30px 20px;
    }

    .our-platforms h3 {
        font-size: 24px;
        line-height: 28px;
    }

    .box-wrapper span {
        font-size: 18px;
        line-height: 22px;
    }

    .box-wrapper b {
        font-size: 18px;
        line-height: 22px;
    }

    .box-wrapper {
        font-size: 16px;
        line-height: 20px;
    }

    .card-details {
        margin-top: 30px;
    }

    .testimonials-cards-heading h2 {
        font-size: 24px;
        line-height: 30px;
    }

    .ai-capabilities-heading h2 {
        font-size: 24px;
        line-height: 30px;
    }

    .ai-capabilities-info {
        font-size: 14px;
        line-height: 18px;
    }

    .blog-cards-info h2 {
        text-align: center;
        font-size: 24px;
        line-height: 30px;
    }

    .blog-cards-info p {
        text-align: center;
    }

    .blog-box-lable {
        margin-top: 10px;
    }

    .blog-box-container {
        padding: 20px 0px;
    }

    .blog-box {
        width: 300px !important;
    }
}

@media (max-width: 320px) {
    #user-type-selector {
        font-size: 13px;
    }

    .ai-capabilities-tab-box {
        height: 2500px;
    }
}

@media (max-width: 300px) {
    .tags {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-bottom: 10px;
    }

    .blog-cards {
        padding: 650px 0px 0px 0px;
    }

    .blog-box {
        width: 260px !important;
    }
}

@media (max-width: 260px) {
    .blog-cards {
        padding: 800px 0px 32px 0px;
    }

    .brands-logo-lines {
        display: none;
    }

    .blog-box {
        width: 220px !important;
    }
}

/* Updated Team Cards Styling */

    .team-section {
      display: grid;
      grid-template-columns: repeat(3, minmax(360px, 1fr));
      gap: 14px;
      max-width: 1200px;
      margin: auto;
    }

    .team-card{
      perspective: 1000px;
      position: relative;
      padding-top: 60px;
    }

    .card-inner {
      position: relative;
      width: 100%;
      height: 210px;
      transition: transform 0.6s;
      transform-style: preserve-3d;
    }

    .team-card:hover .card-inner {
      transform: rotateY(180deg);
    }

    .card-front,
    .card-back {
      position: absolute;
      width: 100%;
      height: 100%;
      border-radius: 26px;
      background: linear-gradient(135deg, #1d2b2e 0%, #03120e 100%);
      color: white;
      backface-visibility: hidden;
      display: flex;
      align-items: flex-start;
      padding: 30px 30px;
      overflow: visible;
      flex-direction: row;
      justify-content: space-between;
      box-shadow: 0 4px 8px rgba(23, 22, 20, 0.5);
    }

    .info {
      flex: 1;
      z-index: 2;
    }

    .info h3 {
      font-size: 18px;
      margin: 0;
      font-weight: 600;
    }

    .info p {
      margin-top: 5px;
      font-size: 14px;
      width: 39% !important;
    }

    .image-wrapper {
      height: 100%;
      position: absolute;
      right: 20px;
      top: -50px;
    }
    .cut-shoulder-adjustment{
      height: 100%;
      position: absolute;
      right: 0px !important;
      top: -50px;
    }
    .cut-shoulder-adjustment img{
      width: 100%;
      height: calc(100% + 50px);
      object-fit: cover;
      border-radius: 26px 0 26px 0!important;
    }

    .image-wrapper img {
      width: 100%;
      height: calc(100% + 50px);
      object-fit: cover;
      border-radius: 5px 0px 5px 0px;
    }

    .card-back {
      transform: rotateY(180deg);
      flex-direction: column;
      justify-content: center;
      font-size: 14px;
      line-height: 1.5;
      text-align: left;
      padding-right: 30px;
      z-index: 2;
    }
    .card-back p{
      font-size: 13px;
      padding: 15px 10px;
    }

    @media (max-width: 1023px) {
        .team-section {
            grid-template-columns: repeat(2, minmax(280px, 1fr));
        }        
    }

    @media (max-width: 768px) {
      .team-section {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      }

      .strategic-partnerships-container {
        padding: 60px 20px 0px 20px;
      }

      .strategic-partnerships-wrapper {
        gap: 40px;
      }

      .andre-card {
        padding: 0px 24px 32px 24px;
      }

      .andre-profile {
        width: 220px;
        height: 220px;
        top: -40px;
        margin-bottom: -40px;
      }

      .andre-info h3 {
        font-size: 26px;
        line-height: 30px;
      }

      .andre-info span {
        font-size: 20px;
        line-height: 24px;
      }

      .andre-info p {
        font-size: 16px;
        line-height: 24px;
      }

      .strategic-partnerships-right h2 {
        font-size: 32px;
        line-height: 36px;
      }

      .strategic-partnerships-cards {
        gap: 32px;
      }

      .partnerships-logo {
        width: 200px;
        height: 200px;
      }

      .strategic-partnerships-card h3 {
        font-size: 22px;
        line-height: 26px;
      }

      .strategic-partnerships-card p {
        font-size: 16px;
        line-height: 22px;
      }

      .strategic-partnerships-bottom {
        margin-top: 40px;
        margin-bottom: 80px;
      }

      .strategic-partnerships-bottom p {
        font-size: 18px;
        line-height: 26px;
      }

      .key-traction-metrics-container {
        padding: 0px 20px 0px 20px;
      }

      .key-traction-metrics-container h2 {
        font-size: 32px;
        line-height: 36px;
        margin: 0 0 32px 0;
      }

      .key-traction-metrics-wrapper {
        gap: 40px;
      }

      .metric-value {
        font-size: 56px;
        line-height: 56px;
      }

      .metric-label {
        font-size: 18px;
        line-height: 22px;
      }

      .key-traction-metrics-bottom {
        margin-top: 32px;
        margin-bottom: 32px;
      }

      .key-traction-metrics-bottom p {
        font-size: 18px;
        line-height: 26px;
      }

      .card-front,
      .card-back {
        flex-direction: row;
        text-align: left;
        padding: 10px 10px;
      }

      .image-wrapper {
        position: absolute;
        right: 0px;
        left: auto;
        transform: none;
        top: -50px;
      }
      .card-front .info{
        margin-top: 30px !important;
      }
       
    .cut-shoulder-adjustment{
      height: 100%;
      position: absolute;
      right: 0px !important;
      top: -50px;
    }
    .cut-shoulder-adjustment img{
      width: 100%;
      height: calc(100% + 50px);
      object-fit: cover;
      border-radius: 26px 0 26px 0!important
    }

    .image-wrapper img {
      width: 100%;
      height: calc(100% + 50px);
      object-fit: cover;
      border-radius: 24px 0 24px 0 !important;
    }
    .card-back p{
      font-size: 13px;
      padding: 15px 10px;
    }

    }

/* Careers Form Specific Styling */
.careers-form {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.careers-form .form-group {
    margin-bottom: 20px;
    width: 100%;
}

.careers-form label {
    display: block;
    margin-bottom: 8px;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    color: #1d2b2e;
    font-size: 16px;
}

.careers-form input,
.careers-form select,
.careers-form textarea {
    width: 100%;
    padding: 14px 24px;
    border: 1px solid #00000080;
    border-radius: 44px;
    outline: none;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    box-shadow: 2px 2px 8px 0px #00000040;
    background-color: #ffffff;
    color: #1d2b2e;
}

.careers-form input::placeholder,
.careers-form textarea::placeholder {
    color: #00000080;
    font-size: 14px;
}

.careers-form select {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='2' fill='none' fill-rule='evenodd'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 24px center;
    background-size: 12px 8px;
    padding-right: 50px;
}

.careers-form select:focus {
    border-color: #1d2b2e;
    box-shadow: 0 0 0 2px rgba(29, 43, 46, 0.2);
}

.careers-form textarea {
    min-height: 120px;
    border-radius: 24px;
    resize: vertical;
    line-height: 1.5;
}

.careers-form .resume-option {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.careers-form .resume-option input[type="radio"] {
    width: auto;
    margin-right: 10px;
}

.careers-form .resume-option label {
    margin-bottom: 0;
    cursor: pointer;
    color: #1d2b2e !important;
    font-weight: 500;
}

.careers-form .hidden {
    display: none !important;
}

.careers-form .row {
    display: flex;
    gap: 20px;
    margin-bottom: 0;
}

.careers-form .col-md-6 {
    flex: 1;
}

@media (max-width: 768px) {
    .careers-form .row {
        flex-direction: column;
        gap: 0;
    }
    
    .careers-form .col-md-6 {
        flex: none;
    }
    
    .careers-form .form-group {
        margin-bottom: 12px;
    }
}

/* Response message styling */
#responseMessage .success {
    background-color: #d4edda;
    color: #155724;
    padding: 12px 20px;
    border-radius: 8px;
    margin: 10px 0;
    border: 1px solid #c3e6cb;
}

#responseMessage .error {
    background-color: #f8d7da;
    color: #721c24;
    padding: 12px 20px;
    border-radius: 8px;
    margin: 10px 0;
    border: 1px solid #f5c6cb;
}
