html {
    scroll-padding-top: 75px;
}

body {
    margin: 0;
    width: 100% !important;
    overflow-x: hidden;
}

.text-center {
    text-align: center;
}

.pt-0 {
    padding-top: 0 !important;
}

.pb-0 {
    padding-bottom: 0 !important;
}

.pl-0 {
    padding-left: 0 !important;
}

.pr-0 {
    padding-right: 0 !important;
}

.pt-10 {
    padding-top: 6rem !important;
}

.pt-20 {
    padding-top: 10rem !important;
}

.pb-10 {
    padding-bottom: 6rem !important;
}

.px-0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.mt-0 {
    margin-top: 0 !important;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.mx-0 {
    margin: 0 !important;
}

.mx-15 {
    margin-left: 15px !important;
    margin-right: 15px !important;
}

.pl-1 {
    padding-left: 15px !important;
}

.pl-5 {
    padding-left: 50px !important;
}

.pl-10 {
    padding-left: 100px !important;
}

.row {
    margin-right: 0px;
    margin-left: 0px;
    padding-left: 0px;
    padding-right: 0px;
}

h2, h3, p {
    padding-left: 0px !important;
    padding-right: 0px !important;
}

#loadingOverlayWrapper {
    z-index: 1050;
}

#loadingOverlay {
    width: 380px;
}

.fade-out {
    opacity: 0;
    transition: opacity 0.5s ease-out;
}

.floatingVoiceBtn {
    position: fixed;
    bottom: 10px;
    right: 100px;
    z-index: 9999;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.floatingVoiceBtn:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.3);
}

#btnIcon {
    font-size: 24px;
    transition: transform 0.3s ease;
}

.floatingChatBtn {
    position: fixed;
    bottom: 10px;
    right: 20px;
    z-index: 1000;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.floatingChatBtn:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.3);
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    position: fixed;
    top: 0;
    z-index: 1000;
    width: calc(100% - 40px);
    margin: 0px 20px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    background-color: #000434;
    color: #FFFFFF;

    /* Logo */

    .logo img {
        height: 45px;
    }

    /* Navigation links */

    .nav-links {
        margin-bottom: 0px;
        list-style: none;
        display: flex;
        gap: 20px;

        li {
            display: inline;
            margin-left: 15px;
        }

        a {
            text-decoration: none;
            color: white;
            font-size: 20px;
            font-family: 'DM Sans', sans-serif;
        }

        a.active {
            color: #2997FF;
            font-weight: bold;
        }

        a:hover {
            color: #2997FF;
        }

    }

    .hamburger {
        display: none;
        cursor: pointer;
    }

    .hamburger div {
        width: 30px;
        height: 4px;
        background-color: white;
        margin: 6px 0;
    }

    /* Contact Us Button */

    .contact-button a {
        text-decoration: none;
        background-color: white;
        color: black;
        font-weight: bold;
        padding: 10px 20px;
        border-radius: 30px;
        transition: background 0.3s ease;
    }
}

/* Home Page */
.block-section {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    padding: 48px 96px;
}

.text-section {
    h2 {
        font-size: 54px;
        font-weight: bold;
        font-family: 'Roboto', sans-serif;
    }

    p {
        font-size: 22px;
        font-weight: 400;
        line-height: 1.8;
        font-family: 'DM Sans', sans-serif;
        margin-bottom: 0px !important;
    }
}

.media-section {
    padding: 120px 0px 0px 0px;

    .video-wrapper {
        position: relative;
        width: 100%;
        margin-left: 25px;
        padding-top: 56.25%;
        overflow: hidden;
    }

    .video-wrapper video,
    .video-wrapper img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-radius: 20px !important;
        object-fit: cover;
    }

    .video-wrapper img {
        cursor: pointer;
        z-index: 2;
        transition: opacity 0.3s ease;
    }

    .video-wrapper img.hidden {
        opacity: 0;
        pointer-events: none;
    }
}

.build-ai {
    .text-section {
        padding: 70px 0px 0px 0px;
    }
}

.round-button {
    text-decoration: none;
    background-color: #2997FF;
    color: #FFFFFF !important;
    border: none;
    font-size: 20px;
    font-family: 'Roboto', sans-serif;
    padding: 13px 30px;
    border-radius: 40px;
    transition: background 0.3s ease;
}

.engineering {
    background: #000434;
    color: #FFFFFF;
    background-image: url("././../images/mesh-bg.webp");
    background-repeat: no-repeat;
    background-position-x: left;
    background-position-y: bottom;
}

.engineering {
    p {
        color: #FFFFFF;
        margin-top: 0px;
    }

    .product-slide {
        background: #FFFFFF;
        border-radius: 24px;
        padding: 20px !important;
        margin: 20px !important;

        img {
            width: 100%;
            border-radius: 10px;
            overflow: hidden;
        }

        h3 {
            line-height: 1.5;
            font-size: 22px;
            font-weight: bold;
            font-family: 'Roboto', sans-serif;
            color: #000000;
            padding-top: 20px !important;
        }
    }
}

.our-beliefs {
    p {
        margin-top: 0px;
    }

    .our-beliefs-container {
        background-color: #2997FF;
        border-radius: 20px;
    }

    .belief-slide {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        border: 2px solid #FFFFFF;
        border-radius: 20px;
        padding: 20px !important;
        margin: 20px;
        align-items: center;

        img {
            height: 120px;
            width: 120px;
        }

        h3 {
            text-transform: uppercase;
            color: #FFFFFF;
            text-align: center;
            font-size: 32px;
            padding-top: 30px;
        }
    }
}

.solution-build {
    background-color: #000434;
    color: #FFFFFF;

    p {
        color: #FFFFFF;
        margin-top: 0px;
    }

    .view-all {
        display: flex;
        flex-direction: column;
        justify-content: center;

    }
}

.what-we-do {
    background: #000434;
    color: #FFFFFF;
    background-image: url("././../images/mesh-bg.webp");
    background-repeat: no-repeat;
    background-position-x: left;
    background-position-y: bottom;

    h2, p {
        color: #FFFFFF;
    }

    .what-we-do-slider {
        .custom-tabs {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin: 1rem 0rem;
            flex-wrap: wrap;
        }

        .custom-tabs .tab-btn {
            background-color: #FFFFFF;
            border: none;
            padding: 10px 20px;
            font-size: 0.9rem;
            font-weight: 600;
            font-family: 'DM Sans', sans-serif;
            text-transform: uppercase;
            color: #444;
            border-radius: 0.5rem;
            transition: all 0.2s ease;
        }

        .custom-tabs .tab-btn.active {
            background-color: #007bff;
            color: #fff;
        }

        .slider-content {
            background-color: #FFFFFF;
            padding: 20px !important;
            border-radius: 15px !important;
            margin: 15px;

            .slider-title {
                font-size: 1.5rem;
                font-weight: 600;
                margin-bottom: 1rem;
            }

            .slider-image {
                margin-left: 20px;
                border-radius: 15px;
                width: 100%;
                height: auto;
            }

            .slider-description {
                font-size: 1rem;
                color: #666;
                margin-top: 1rem;
            }

            .slide {
                display: none;
            }

            .slide.active {
                display: block;
            }
        }

        .dots {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            margin-top: 40px;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: #444;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .dot.active {
            background-color: #007bff;
        }

        .arrow {
            font-size: 20px;
            cursor: pointer;
            color: #444;
            transition: all 0.2s ease;
            padding: 5px;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 24px; /* Ensures the same width */
            height: 24px; /* Ensures the same height */
        }

        .arrow:hover {
            color: black;
        }

        h3, li {
            color: #000000;
            font-family: 'Roboto', sans-serif;
        }

        .ideal {
            margin-bottom: 0px;
        }

        .round-button {
            padding: 6px 20px !important;
        }

        .slider-content {
            p {
                font-size: 18px;
                color: #000000;
            }
        }

        .row, .col-md-5, .col-md-10, .slider-content {
            padding-left: 0px !important;
            padding-right: 0px !important;
        }
    }
}

.language-translator {
    h2 {
        font-weight: normal !important;
    }

    .translator-description {
        padding: 0px;

        p {
            font-size: 22px;
        }

        li {
            line-height: 2;
            font-size: 20px;
        }

        img {
            width: 100%;
            border-radius: 15px;
        }
    }

    .business-container {
        border-radius: 20px;
    }

    .business-slide {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        border: 2px solid #000000;
        border-radius: 20px;
        padding: 20px !important;
        margin: 20px;
        align-items: center;

        img {
            height: 80px;
            width: 80px;
        }

        h3 {
            text-transform: uppercase;
            color: #000000;
            text-align: center;
            font-size: 30px;
            font-weight: bold;
            padding-top: 30px;
        }

        p {
            font-size: 15px;
        }
    }
}

.who-we-work {
    background: #000434;
    color: #FFFFFF;
    background-image: url("././../images/mesh-bg.webp");
    background-repeat: no-repeat;
    background-position: bottom center;
    background-position-x: left;
    ` background-position-y: bottom;

    p {
        margin-top: 0px;
        font-size: 22px;
        color: #FFFFFF;
    }

    .g-3 {
        padding-left: 0px;
        padding-right: 0px;
    }

    ul {
        padding-left: 50px;
        line-height: 2;
    }

    .who-we-work-slide {
        background: #1F72CC;
        padding: 20px !important;
        margin: 20px 0px !important;
        border-radius: 15px;

        h3 {
            font-size: 32px;
        }

        p {
            font-size: 20px;
        }

        .description {
            font-size: 16px;
        }

        img {
            width: 100%;
            border-radius: 15px;
        }
    }

    li {
        font-size: 22px;
    }
}

.ai-agent {
    position: relative;

    .row, .col-md-5, .col-md-7 {
        margin-top: 0px;
    }

    h2 {
        font-size: 50px;
        font-family: 'Roboto', sans-serif;
    }

    p {
        font-size: 22px;
        font-family: 'DM Sans', sans-serif;
    }

    img {
        width: 100%;
        border-radius: 15px;
    }
}

.ai-agent::after {
    content: '';
    position: absolute;
    left: 96px;
    right: 96px;
    bottom: 0;
    height: 1px;
    background: black;
}

.valley-proof {
    background: #000434;
    color: #FFFFFF;
    background-image: url("././../images/mesh-bg.webp");
    background-repeat: no-repeat;
    background-position: bottom center;
    background-position-x: left;
    background-position-y: bottom;

    .text-content {
        padding-right: 20px !important;
    }

    h2 {
        font-size: 52px;
        font-family: 'Roboto', sans-serif;
    }

    .title {
        color: cyan;
        text-decoration: underline;
    }

    p {
        font-size: 20px;
        font-family: 'DM Sans', sans-serif;
        font-style: italic;
        color: #E4E4E4;
    }

    img {
        width: 100%;
        border-radius: 15px;
    }

    button {
        margin-left: 30px;
        font-size: 20px;
        padding: 5px 30px;
    }
}

.testimonial {
    background-image: url("././../images/testimonial-background.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 20% 25%;
    min-height: 500px;
    width: 100%;

    .testimonial-container {
        position: relative;
        display: flex;
        align-items: center;
    }

    .client-testimonial {
        background: linear-gradient(350deg, #2997FF 1%, #000327 15%);
        border-radius: 15px;
        display: none;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        transition: transform 0.5s ease-in-out;

        h3 {
            color: #FFFFFF;
        }

        p {
            color: #FFFFFF;
            font-size: 22px;
            line-height: 1.5;
        }

        img {
            padding: 0px !important;
            margin-left: 15px;
            border-radius: 20px;
            height: auto;
            width: auto;
        }
    }

    .testimonial-page-container {
        display: flex;
        gap: 8px;
    }

    .testimonial-page {
        width: 12px;
        height: 12px;
        background-color: #E4E4E4;
        border-radius: 15px;
        cursor: pointer;
        transition: background 0.3s;
    }

    .testimonial-page.active {
        background-color: #000434;
    }
}

.contact-us {
    background: #000434;
    color: #FFFFFF;
    background-image: url("././../images/mesh-bg.webp");
    background-repeat: no-repeat;
    background-position: bottom center;
    background-position-x: left;
    background-position-y: bottom;

    a {
        text-decoration: none;
    }

    p {
        font-size: 24px;
        color: #E4E4E4 !important;
    }

    h2 {
        font-size: 50px;
    }

    h3 {
        font-size: 22px;
    }

    .contact-details {
        p {
            font-size: 17px;
        }
    }

    .social-icons a {
        width: 35px;
        height: 35px;

        i {
            font-size: 18px;
        }
    }

    form {
        input, textarea {
            background: transparent;
            color: #FFFFFF;
        }
    }

    button {
        font-size: 20px;
        padding: 5px 30px;
    }

    .terms {
        font-size: 14px !important;

        a {
            text-decoration: underline !important;
            color: #D3D3D3;
        }
    }
}

.clients {
    border-bottom: 1px solid #000000;

    .slider-wrapper {
        padding: 0px;
        overflow: hidden;
        width: 100%
    }

    .client-slider {
        display: flex;
        width: max-content;
        height: 80px;
        animation: scroll 10s linear infinite;
    }

    .logo {
        flex: 0 0 auto;
        display: flex;
        align-items: center;
        justify-content: center;
        object-fit: contain;
    }

    .logo img {
        width: 235px;
        height: 80px;
        margin: 0 20px;
    }
}

/* Animation Keyframes */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.faq {
    p {
        margin-top: 0px;
        margin-bottom: 22px;
        color: #000000;
    }

    .faq-item {
        border: 1.5px solid #000000;
        border-radius: 15px;
        margin-bottom: 10px;
        overflow: hidden;
    }

    .faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 22px;
        font-size: 23px;
        font-family: 'DM Sans', sans-serif;
        font-weight: bold;
        cursor: pointer;
        border-radius: 15px;
    }

    .faq-answer {
        display: none;
        padding: 0px 22px 15px 22px;
        background: white;
        text-align: left;
        font-size: 22px;
        font-family: 'DM Sans', sans-serif;
    }

    .faq-toggle {
        font-size: 22px;
        font-weight: bold;
        transition: 0.3s;
    }

    button {
        background: grey;
        font-size: 20px;
        padding: 5px 30px;
    }
}

.footer {
    background: #000434;
    color: #FFFFFF;
    background-image: url("././../images/mesh-bg.webp");
    background-repeat: no-repeat;
    background-position: bottom center;
    background-position-x: left;
    background-position-y: bottom;

    .footer-logo {
        height: 110px;
        width: 220px;
        padding: 5px;

        p {
            color: #FFFFFF;
        }

        img {
            height: 100px;
            width: 200px;
        }
    }

    .sitemap-heading {
        cursor: default !important;
        font-weight: bold;
        font-size: 18px !important;
    }

    .sitemap-inactive {
        cursor: default !important;
        color: gray !important;
    }

    .sitemap a {
        text-decoration: none;
        color: #E4E4E4;
        font-size: 16px;
        font-family: 'DM Sans', sans-serif;
        cursor: pointer;
    }
}

.social-icons {
    display: flex;
    gap: 20px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 2px solid #FFFFFF;
    border-radius: 50%;
    color: white;
    font-size: 24px;
    text-decoration: none;
    transition: 0.3s;
}

.social-icons a:hover {
    background-color: #FFFFFF;
    color: #0b1231;
}

/* About Us */
.about-us {
    h2 {
        margin-bottom: 0px;
        color: #000000;
    }

    p {
        margin-top: 15px;
        color: #3A3A3A;
    }

    img {
        margin-top: 20px;
        border-radius: 15px;
        width: 100%;
    }
}

.company-legacy {
    background: #000434;
    color: #FFFFFF;
    background-image: url("././../images/mesh-bg.webp");
    background-repeat: no-repeat;
    background-position: bottom center;
    background-position-x: left;
    background-position-y: bottom;

    h2 {
        margin-bottom: 0px;
    }

    .company-legacy-container {
        background-color: #2997FF;
        border-radius: 20px;
    }

    .company-legacy-slide {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        border: 2px solid #FFFFFF;
        border-radius: 20px;
        padding: 15px !important;
        margin: 12px;
        align-items: center;

        img {
            height: 70px;
            width: 70px;
        }

        h3 {
            color: #FFFFFF;
            text-align: center;
            font-size: 28px;
            padding-top: 10px;
        }

        p {
            font-size: 18px;
            margin: 15px 0px 0px 0px;
            color: #FFFFFF;
            text-align: center;
        }
    }
}

.our-ceo {
    h2 {
        color: #000000;
    }

    .ceo-container {
        background-color: #000434;
        padding: 15px;
        border-radius: 15px;

        img {
            border-radius: 15px;
            width: 100%;
        }

        h4 {
            color: #FFFFFF;
            text-align: left;
            margin-bottom: 0px;
        }

        p {
            font-size: 17px;
            margin: 0px;
            color: #E4E4E4;
        }

        .expertise {
            font-size: 16px;
            margin-top: 15px;
        }

        .ceo-social-icons a {
            color: #FFFFFF;
            margin-right: 15px;
            font-size: 20px;
        }
    }

    .ceo-message-title, .ceo-message {
        color: #3A3A3A !important;
        text-align: center;
        font-size: 20px;
        margin-top: 10px;
    }

    .ceo-message {
        font-style: italic;
        margin-top: 0px !important;
    }
}

/****************Chat bot********************/
/* Chatbot icon button */
#chatbot-toggle {
    position: fixed;
    bottom: 50px;
    right: 20px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 50%;
    padding: 15px;
    font-size: 20px;
    cursor: pointer;
    z-index: 999;
}

/* Chat Assistant */
.chat-container {
    width: 400px;
    background-color: #000033;
    border-radius: 10px;
    overflow: hidden;
    display: none;
    flex-direction: column;
    position: fixed;
    bottom: 75px;
    right: 10px;
    z-index: 999;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

.chat-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    background-color: #000033;
    color: white;
    border-bottom: 1px solid #ccc;
}

.chat-header-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.chat-header img {
    width: 32px;
    height: 32px;
    object-fit: cover;
}

.close-btn {
    background: transparent;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
}

.chat-box {
    height: 360px;
    background-color: #fff;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 10px;
    overflow-y: auto;
    scroll-behavior: smooth;
}

.chat-box::-webkit-scrollbar {
    width: 6px;
}

.chat-box::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 4px;
}

.message {
    max-width: 75%;
    padding: 10px 15px;
    border-radius: 20px;
    font-size: 0.95rem;
    line-height: 1.4;
}

.bot-message {
    background-color: #1a1a4e;
    color: white;
    align-self: flex-start;
}

.user-message {
    background-color: #4db8ff;
    color: white;
    align-self: flex-end;
}

.typing-indicator {
    background-color: #f2f2f2;
    padding: 10px 14px;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    gap: 5px;
    align-items: center;
    width: fit-content;
    align-self: flex-start;
}

.dot {
    width: 6px;
    height: 6px;
    background-color: #555;
    border-radius: 50%;
/*    animation: bounce 1.3s infinite ease-in-out;*/
}

.dot:nth-child(2) {
    animation-delay: 0.2s;
}

.dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes bounce {
    0%, 80%, 100% {
        transform: scale(1);
    }
    40% {
        transform: scale(1.5);
    }
}

.chat-input {
    display: flex;
    align-items: center;
    padding: 10px;
    background-color: #000033;
}

.chat-input input {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 5px;
    margin-right: 10px;
    font-size: 1rem;
}

.chat-input button {
    background-color: transparent;
    border: none;
    cursor: pointer;
    color: white;
    font-size: 1.2rem;
}

.chat-input input:focus {
    outline: none;
}

/* Terms and Conditions */
#terms {
    padding-left: 200px;
    padding-right: 200px;

    .block-section {
        padding: 0px 100px !important;
    }

    h2 {
        font-size: 40px;
    }

    h2, h3, h4 {
        padding: 15px 0px !important;
        font-weight: bold;
        font-family: 'Roboto', sans-serif;
    }

    h4 {
        font-size: 22px;
    }

    p, li {
        font-size: 18px;
        font-family: 'DM Sans', sans-serif
    }

    li {
        line-height: 2 !important;
    }
}

/* Legal section */
#legal {
    padding-left: 50px !important;
    padding-right: 50px !important;

    .wrapper {
        display: flex;
        flex-wrap: nowrap; /* prevent wrapping */
    }

    .sidebar {
        min-width: 300px;
        max-width: 300px;
        background-color: #f8f9fa;
        padding: 1rem;
        height: 100%;
    }

    .content {
        flex-grow: 1;
        padding: 0rem 2rem;
    }

    h2 {
        font-size: 40px;
        padding-bottom: 0px !important;
    }

    h4 {
        font-size: 22px;
        padding: 15px 0px !important;
    }

    h2, h4 {
        font-weight: bold;
        font-family: 'Roboto', sans-serif;
    }

    p, li {
        font-size: 18px;
        font-family: 'DM Sans', sans-serif
    }

    .content li {
        line-height: 2 !important;
    }
}

/* Careers */
#careers {

    h2 {
        margin-top: 10px;
    }

    .work-from-home-container {
        background-color: #2997FF;
        border-radius: 20px;
    }

    .work-from-home-slide {
        display: flex;
        flex-direction: column;
        gap: 0;
        padding: 25px !important;
        margin: 12px;
        align-items: center;

        img {
            height: 100px;
            width: 100px;
        }

        h3 {
            color: #FFFFFF;
            text-align: center;
            font-size: 25px;
            padding-top: 10px;
            text-transform: uppercase;
        }

        p {
            font-size: 18px;
            color: #FFFFFF;
            text-align: center;
            margin-bottom: 0px;
        }
    }
}

.career-path {
    background-color: #000434;
    color: #FFFFFF;
    .row, .col-md-5, .col-md-7 {
        margin-top: 0px;
    }

    h2 {
        font-size: 50px;
        font-family: 'Roboto', sans-serif;
    }

    p {
        font-size: 20px;
        font-family: 'DM Sans', sans-serif;
    }

    img {
        width: 100%;
        border-radius: 15px;
    }
}
.open-positions {
    background-color: #000434;
    color: #FFFFFF;
    .row, .col-md-5, .col-md-7 {
        margin-top: 0px;
    }

    h2 {
        font-size: 50px;
        font-family: 'Roboto', sans-serif;
    }

    p {
        font-size: 20px;
        font-family: 'DM Sans', sans-serif;
        color: #E4E4E4 !important;
    }
    p1 {
        font-size: 20px;
        font-family: 'DM Sans', sans-serif;
        padding-top: 10px;
    }
    img {
        width: 100%;
        border-radius: 15px;
    }
    .openings{
        border: 1.5px solid #E4E4E4;
        padding-bottom: 20px;
        font-size: 30px;
        font-family: 'DM Sans', sans-serif;
        text-align: center;
    }
}

.careers-benefits {
    border-bottom: 1px solid #000000;

    .careers-benefits-container {
        border-radius: 20px;
    }

    .careers-benefits-slide {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        border: 2px solid #000000;
        border-radius: 20px;
        padding: 20px !important;
        margin: 10px;

        img {
            height: 80px;
            width: 80px;
        }

        h3 {
            text-transform: uppercase;
            color: #000000;
            text-align: center;
            font-size: 25px;
            font-weight: bold;
            padding-top: 15px;
        }

        .with-line {
             margin-bottom: 0px;
             position: relative;
         }

        .with-line::after {
            content: "";
            display: block;
            height: 1px;
            background-color: black;
            margin: 16px 0; /* equal spacing above and below the line */
        }

        p {
            text-align: left !important;
            font-size: 16px;
        }
        .forSpace{
            padding-right: 5px;
        }
    }
}

#blogs {
    .blog-post {
        border-bottom: 1px solid #000000;
        padding: 1rem 0;
    }

    .post-meta {
        font-size: 0.85rem;
        text-transform: uppercase;
        font-weight: 600;
        color: #6c757d;
    }

    .post-meta .badge {
        background-color: #e9ecef;
        color: #212529;
        font-size: 0.75rem;
        margin-right: 0.5rem;
    }

    .post-title {
        font-size: 1.5rem;
        font-weight: 700;
        margin-top: 0.5rem;
    }

    .post-desc {
        margin: 0.5rem 0 1rem;
        color: #495057;
    }

    .read-more {
        color: #007bff;
        font-weight: 600;
        text-decoration: none;
    }
}

.subscribe-section {
    background-color: #020243;
    color: white;
    padding: 40px 20px;
    text-align: center;
    margin-top: 30px;
    border-radius: 10px;
}

.form-control:focus {
    box-shadow: none;
}

.subscribe-input-group .form-control {
    border-top-left-radius: 0.375rem;
    border-bottom-left-radius: 0.375rem;
}

.subscribe-input-group .btn {
    border-top-right-radius: 0.375rem;
    border-bottom-right-radius: 0.375rem;
    background-color: #0d6efd;
    color: white;
}

.subscribe-input-group .btn:hover {
    background-color: #1c82c4;
}

@media screen and (max-width: 1064px) {
    .floatingVoiceBtn, .floatingChatBtn {
        bottom: 30px !important;
    }
}

/* Blog Detailed */
#blog-detailed {
    img {
        border-radius: 15px;
        width: 100%;
    }

    .circle-icon {
        width: 30px;
        height: 30px;
        background-color: #0b5ed7;
        color: #fff;
        border-radius: 50%;
        border: none;
    }

    .dual-badge {
        display: inline-flex;
        border-radius: 10px;
        overflow: hidden;
        font-size: 0.75rem;
        font-weight: 600;
        margin-left: 0.75rem;
        box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05);
        border: 1px solid #e2e8f0;
        height: 30px;
    }

    .dual-badge span {
        padding: 0.4rem 0.75rem;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        white-space: nowrap;
    }

    .dual-badge .left {
        background-color: #ffffff;
        color: #1e293b;
        font-weight: 700;
    }

    .dual-badge .right {
        background-color: #0b5ed7;
        color: #ffffff;
    }

    h2 {
        text-transform: uppercase;
    }

    p, li {
        font-size: 20px;
    }

    .italic {
        font-style: italic;
    }

    h3 {
        text-transform: uppercase;
    }

    .founder-card {
        border-top: 5px solid #0d6efd;
        background-color: #f0f5ff;
        margin-top: 20px;
        padding: 1.5rem;
        border-radius: 0.5rem;
    }

    .founder-title {
        text-transform: uppercase;
        font-weight: bold;
        font-size: 1.25rem;
    }

    a {
        text-decoration: none;
    }
}

#similar-blog {

    .similar-blog-content {
        background-color: #dceeff;
        padding: 30px 45px;
        border-radius: 15px;
    }

    .dual-badge {
        display: inline-flex;
        border-radius: 10px;
        overflow: hidden;
        font-size: 0.75rem;
        font-weight: 600;
        box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05);
    }

    .dual-badge span {
        padding: 0.4rem 0.75rem;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        color: #1e293b;
        white-space: nowrap;
    }

    .dual-badge .left {
        background-color: #f3f5ff;
        font-weight: 700;
    }

    .dual-badge .right {
        background-color: #ffffff;
        font-weight: 600;
    }

    .post-title {
        font-weight: bold;
        font-size: 28px;
        color: #1a1a1a;
    }

    .post-description {
        color: #4a4a4a;
    }

    .post-image {
        border-radius: 0.5rem;
        max-width: 100%;
        height: auto;
    }

    a {
        text-decoration: none;
    }
}

#early-access-email {
    width: 280px;
}
@media screen and (max-width: 1064px) {
    h2 {
        font-size: 40px !important;
    }

    p {
        font-size: 18px !important;
    }
    .faq-answer {
        font-size: 18px !important;
    }
}
