.faq-section {
    margin: 0 auto;
    padding: 40px 0px;
    color: #1a1a1a;
}
.steps-container {
        font-size: clamp(24px, 4vw, 40px);
}
.faq-section h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    border-radius: 12px;
    overflow: hidden;
    background: #f1f7fc;
    transition: box-shadow 0.3s ease;
    border: none;
}

.faq-item.open {
    background-color: #eaf4fc;
}

.faq-section {
    width: 100%;
    margin-bottom: 5%;
    background: transparent linear-gradient(0deg, #F3FAFF 0%, #FBFDFF 100%) 0% 0% no-repeat padding-box;
}

.faq-section h3 {
    text-align: left;
    font-size: clamp(20px, 2.5vw, 32px) !important;

}

.faq-answer p {
    text-align: left;
    font-size: clamp(16px, 2vw, 23px);
    color: #33475B;
    margin-top: 0;
    padding-top: 0;
}

.faq-container {
        width: 85%;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem
}

.faq-item {
    background-color: #f0f8ff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .05)
}

.faq-toggle {
    background: 0 0;
    border: 1px solid transparent;
    font-weight: 600;
    display: flex;
    align-items: baseline;
    gap: .75rem;
    cursor: pointer;
    width: 100%;
    text-align: left;
    padding: 20px;
}

.faq-toggle:hover {
    border: 1px solid #105f9b;
    border-radius: 10px
}

.faq-toggle svg {
    transition: transform 0.3s ease;
}

.faq-toggle.active svg {
    transform: rotate(180deg);
}

.faq-toggle h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.faq-answer {
    display: none;
    padding: 0 20px 20px 56px;
    font-size: 16px;
    color: #333;
    line-height: 1.6;
}

.faq-item.open .faq-answer {
    display: block;
}




.steps-main-section{
    display: block !important;
}
.steps-heading {
    text-align: left;
    width: 72%;
    margin: 0 auto;
    font-size: clamp(24px, 4vw, 40px);
}
.feature-steps {
    display: flex;
    width: 85%;
    margin: auto;
    align-items: flex-start;
    gap: 50px;
    padding: 0px 0px 60px 0px;
    flex-wrap: wrap;
    background: transparent linear-gradient(0deg, #F3FAFF 0%, #FBFDFF 100%) 0% 0% no-repeat padding-box;
}

.main-section2 {
    display: flex;
    width: 100%;
    margin: auto;
    align-items: flex-start;
    gap: 50px;
    padding: 60px 0px;
    flex-wrap: wrap;
    background: transparent linear-gradient(0deg, #F3FAFF 0%, #FBFDFF 100%) 0% 0% no-repeat padding-box;
}

.steps-container {
    width: 540px;
    display: flex;
    flex-direction: column;
    position: relative;
    background: transparent linear-gradient(0deg, #F3FAFF 0%, #FBFDFF 100%) 0% 0% no-repeat padding-box;
    ;
    border-radius: 12px;
    padding: 20px;
}

.step {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    margin-bottom: 10px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: linear-gradient(to right, #F0F6FE -20%, #FFFFFF 20%);
}

.step:hover {
    background-color: #f0f6ff;
}

.step.active {
    background-color: #e9f1ff;
}

.step-circle {
    width: 95px;
    height: 95px;
    border-radius: 50%;
    box-shadow: 0px 3px 6px #B8C6D4;
    color: #1a3b73;
    display: flex;
    align-items: center;
    font-size: clamp(1.2rem, 2.5vw, 1.875rem);
    justify-content: center;
    font-weight: 600;
    transition: all 0.3s ease;
}

.step:not(:last-child)::before {
    content: '';
    position: absolute;
    top: 105%;
    left: 9%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border-top: 2px solid #105F9B;
    border-bottom: 2px solid #105F9B;
    border-radius: 50%;
    background: white;
    z-index: 2;
}

.step.active .step-circle,
.step.completed .step-circle {
    background-color: #F0F6FE !important;
}
.step.active {
    background: linear-gradient(to left, #F0F6FE -6%, #FFFFFF 268%) !important;
}
.step:hover{
    background: linear-gradient(to left, #F0F6FE -6%, #FFFFFF 268%) !important;
}
.step.completed::after {
    background-color: #1a3b73;
}

.step h3 {
   font-size: clamp(1.2rem, 2.5vw, 1.875rem);
    margin: 0;
    font-weight: 600;
    color: #0c2146;
}

.content-container {
    max-width: 875px;
    flex: 1;
        margin: auto;
}

.content {
    display: none;
    animation: fadeIn 0.4s ease;
}

.content.active {
    display: block;
}

.content h2 {
    font-size: 22px;
    font-weight: 700;
    color: #0c2146;
    margin-bottom: 10px;
}

.content p {
    font-size: 16px;
    line-height: 1.6;
    color: #334155;
    text-align: left;
    margin-bottom: 20px;
}

.content img,
.content video {
    width: 100%;
    border-radius: 10px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@media (max-width: 900px) {
.steps-heading {
    text-align: center;
    width: 72%;
    margin: 0 auto;
    font-size: clamp(24px, 4vw, 40px);
}
}
@media (max-width: 900px) {
    .main-section {
        flex-direction: column;
        align-items: center;
    }

    .steps-container {
        width: 100%;
        max-width: 500px;
    }

    .content-container {
        max-width: 100%;
    }
}
.checkbox{
    margin: 0;
    padding: 0;
}



.main-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: clamp(1rem, 5vw, 10rem);
    max-width: 85%;
    margin: 0 auto;
    flex-wrap: wrap;
    padding: 2rem 0;
}

.use-case-heading {
    text-align: center;
    font-size: clamp(1.8rem, 4vw, 3.2rem);
    font-weight: 700;
    margin-bottom: 2rem;
    font-family: 'Inter', sans-serif;
    color: #222;
}

.left-panel {
    flex: 1 1 400px;
    display: flex;
    justify-content: center;
}

.left-panel img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    max-width: 600px;
}

.right-panel {
    flex: 1 1 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.user-icons ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.user-icons li {
    display: flex;
    align-items: baseline;
    gap: clamp(0.5rem, 1vw, 1rem);
    margin-bottom: clamp(0.5rem, 1.2vw, 1.5rem);
    font-size: clamp(1rem, 2vw, 1.8rem);
    font-weight: 400;
    color: #333;
}

.user-icons img {
    width: clamp(24px, 3vw, 40px);
    height: auto;
    object-fit: contain;
}

.list-use-case strong {
    font-weight: 500;
}

@media (max-width: 1024px) {
    .main-content {
        max-width: 90%;
        gap: 4rem;
    }

    .user-icons li {
        font-size: clamp(1rem, 2.3vw, 1.6rem);
    }
}

@media (max-width: 768px) {
    .cta-button {
        font-size: .95rem;
        padding: .6rem 1.2rem
    }

    .main-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .left-panel img {
        max-width: 90%;
    }

    .user-icons li {
        justify-content: center;
        font-size: clamp(0.95rem, 3vw, 1.4rem);
    }
}

@media (max-width: 480px) {
    .use-case-heading {
        font-size: clamp(1.4rem, 6vw, 2rem);
    }

    .user-icons li {
        font-size: clamp(0.85rem, 4vw, 1.1rem);
    }

    .user-icons img {
        width: clamp(20px, 6vw, 30px);
    }
}


.testimonials {
    background-size: cover;
    padding: 80px 20px;
    text-align: center;
    background: transparent linear-gradient(0deg, #F3FAFF 0%, #FBFDFF 100%) 0% 0% no-repeat padding-box;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 60px;
    color: #111;
}

.testimonial-cards {
    display: flex;
    justify-content: center;
    gap: 40px;
    max-width: 85%;
    margin: 0 auto;
    flex-wrap: wrap;
}

.testimonial-card {
    position: relative;
    width: 358px;
    height: 360px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top center;
    padding: 20px;
}

.card1 {
    background-image: url(../features/images/ethan.webp);
}

.card2 {
    background-image: url(../features/images/olivia.webp);
}

.card3 {
    background-image: url(../features/images/liam.webp);
}
.feature-2-card1 {
    background-image: url(../features/images/carter.webp);
}

.feature-2-card2 {
    background-image: url(../features/images/davis.webp);
}

.feature-2-card3 {
    background-image: url(../features/images/thompson.webp);
}
.feature-3-card1 {
    background-image: url(../features/images/daniel.webp);
}

.feature-3-card2 {
    background-image: url(../features/images/sophie.webp);
}

.feature-3-card3 {
    background-image: url(../features/images/michael.webp);
}

.about-us-card1 {
    background-image: url(../features/images/carter.webp);
}
.about-us-card2 {
    background-image: url(../features/images/davis.webp);
}
.about-us-card3 {
    background-image: url(../features/images/thompson.webp);
}

.card-content {
    position: relative;
    text-align: center;
    max-width: 260px;
        margin: auto;
    margin-top: 135px;
}

.name {
    font-size: 16px;
    font-weight: 700;
    color: #0055a5;
    margin-bottom: 4px;
    margin: 0;
    padding: 0;
}

.role {
    font-size: 14px;
    color: #555;
    margin-bottom: 16px;
}

.quote {
    font-size: 13px;
    line-height: 1.6;
    color: #333;
}

@media (max-width: 1024px) {
    .testimonial-cards {
        gap: 30px;
    }

    .testimonial-card {
        width: 320px;
        height: 340px;
    }

    .card-content {
        max-width: 240px;
        padding: 0;
    }
}

@media (max-width: 768px) {
    .testimonial-cards {
        flex-direction: column;
        align-items: center;
    }

    .testimonial-card {
        width: 90%;
        max-width: 360px;
        background-size: cover;
        background-position: center;
        margin-bottom: 30px;
    }

    .card-content {
        max-width: 90%;
    }

    .section-title {
        font-size: 28px;
        margin-bottom: 40px;
    }
}

@media (max-width: 480px) {
    .testimonial-card {
        width: 100%;
        max-width: 100%;
        padding: 15px;
    }

    .card-content {
        padding: 16px;
    }

    .name {
        font-size: 16px;
    }

    .role {
        font-size: 13px;
    }

    .quote {
        font-size: 14px;
    }

    .section-title {
        font-size: 24px;
    }
}

@media (max-width: 420px) {
    .page-header .header-navbar ul.complete-list>li {
        margin-left: -15px !important;
    }
    .testimonial-card {
        width: 100%;
        max-width: 100%;
        padding: 0px;
    }

    .testimonial-card {
        height: 315px;
    }

    .card-content {
        padding-bottom: 55px;
    }

    .name,
    .role,
    .quote {
        margin: 0;
        padding: 0;
    }
    .name {
        line-height: 0.5rem !important;
        margin: 0;
        padding: 0;
    }

    .quote {
        line-height: 1rem !important;
        margin: 0;
        padding: 0;
    }

.card-content {
    margin-bottom: 7px !important;
}
}

@media (max-width: 390px) {
    .testimonial-card {
        width: 100%;
        max-width: 100%;
        padding: 0px;
    }
        .first-section {
        gap: 4rem;
    }
    .first-section{
        text-align: center;
        width: 85% !important;
    }
    
    .testimonial-card {
        height: 330px;
    }

    .card-content {
        padding-bottom: 55px;
    }
    .testimonial-cards {
    max-width: 100%;
}
.testimonials {
    padding: 0;
}
.first-section {
    margin-bottom: 4rem !important;
    margin-top: 8rem !important;
}
}


.cta-button {
    text-decoration: none !important
}

.cta-button {
    font-size: 1rem
}

.cta-button {
    display: inline-block;
    background-color: #fff;
    color: #105f9b;
    font-weight: 700;
    padding: .5rem 2.5rem;
    border-radius: 8px;
    transition: background .3s, color .3s, box-shadow .3s;
    margin-top: 1rem;
    box-shadow: none
}

.cta-button:hover {
    background-color: #fff;
    color: #0a4e85;
    box-shadow: 0 0 10px 2px rgba(255, 255, 255, .7)
}

@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    src: url(https://fonts.gstatic.com/s/poppins/v22/pxiEyp8kv8JHgFVrJJnecmNE.woff2) format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

.signup-section {
    background-image: url(../features/images/instant-signup.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 85%;
    margin: 2rem auto;
    padding: 2rem;
    color: #fff;
    font-family: 'Inter', sans-serif;
}

.signup-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: clamp(1rem, 5vw, 4rem);
    flex-wrap: wrap;
}

.signup-left {
    flex: 1 1 150px;
    text-align: center;
    padding: 1rem;
}

.signup-left h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.3;
}

.signup-left p {
    font-size: clamp(1rem, 2.2vw, 1.4rem);
    color: #f5f5f5;
    max-width: 80%;
    margin: 0 auto;
}

.signup-card {
    flex: 1.1;
    width: 50%;
    background: linear-gradient(160deg, #005cb8 0%, #004a9b 100%);
    border-radius: 20px;
    padding: 1.5rem;
    margin-right: 25px;
    box-shadow: inset 0px 0px 49px #FFFFFF;
    color: #fff;
}

.signup-card h3 {
    font-family: 'Poppins', FontAwesome;
    text-align: center;
    font-size: clamp(1.2rem, 2vw, 1.8rem);
    margin: 0;
}

label {
    font-family: 'Poppins', FontAwesome;
    display: block;
    font-size: clamp(0.85rem, 1.6vw, 1rem);
}

.input-box {
    position: relative;
    margin-bottom: 1.2rem;
}

.input-box input {
    width: 100%;
    padding: 0.75rem;
    border-radius: 6px;
    border: none;
    font-family: 'Poppins', FontAwesome;
    font-size: clamp(0.9rem, 1.6vw, 1rem);
    color: #333;
    background: #fff;
    box-sizing: border-box;
    transition: outline 0.3s ease;
}

.input-box input:focus {
    outline: 2px solid #0090ff;
}

.name-input::placeholder,
.email-input::placeholder,
.phone-input::placeholder {
    font-family: 'Poppins', FontAwesome;
    color: #999;
    font-size: 14px;
}

.iti {
    width: 100%;
    box-sizing: border-box;
}

.iti input {
    width: 100%;
    padding-left: 87px !important;
    box-sizing: border-box;
}

.iti__country-name,
.iti--separate-dial-code .iti__selected-dial-code {
    color: #33475b;
}

.terms {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: clamp(0.8rem, 1.4vw, 0.95rem);
    margin: 1.2rem 0 1.8rem 0;
    flex-wrap: wrap;
    text-align: left;
}

.terms a {
    color: #fff;
    text-decoration: underline;
}

.create-btn {
    width: 100%;
    padding: clamp(0.8rem, 2vw, 1rem);
    font-size: clamp(0.9rem, 1.8vw, 1rem);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 8px;
    background: linear-gradient(180deg, #105f9b 0%, #2183ce 100%);
    cursor: pointer;
    transition: all 0.3s ease;
}

.create-btn:hover {
    background: linear-gradient(180deg, #2183ce 0%, #105f9b 100%);
    transform: translateY(-2px);
}

@media (max-width: 992px) {
    
    .signup-container {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    .signup-card {
    margin-right: 0px;
}
.signup-section {
    height: 752px;
}
    .signup-left h2,
    .signup-left p {
        width: 100%;
        text-align: center;
    }

    .signup-card {
        width: 100%;
        max-width: 480px;
    }
}

@media (max-width: 768px) {
    .signup-section {
        width: 95%;
        padding: 2rem 1rem;
    }

    .signup-left h2 {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }

    .signup-left p {
        font-size: clamp(0.9rem, 3.5vw, 1.2rem);
    }

    .signup-card {
        padding: 1.8rem;
    }
}


@media (max-width: 550px) {
    .main-section2 {
            width: 92% !important;

    }
    .signup-card {
        width: 70%;
        max-width: 480px;
    }

    .signup-section {
        padding: 0;
    }
}

@media (max-width: 480px) {
    .signup-section {
        width: 100%;
        border-radius: 0;
        padding: 0;
    }
        .signup-container {
        gap: 0rem;
    }
        .signup-section {
            padding-bottom: 0;
            margin-bottom: 0;
        height: 730px;
    }
    .signup-left h2 {
        font-size: 1.5rem;
        padding-top: 1rem;
    }
    .main-section2 {
        padding: 0;
}
    .main-content {
        padding-bottom: 0;
    }
.content img, .content video {
    margin-bottom: 2rem;
}
.feature-steps {
    padding: 0;
}
.mini-footer {
    margin-top: -2rem !important;
}

    .signup-left p {
        font-size: 1rem;
    }
    .signup-card h3 {
    margin-bottom: 1rem;
}

    .terms {
        font-size: 0.6rem !important;
    }
    label {
    font-size: clamp(0.65rem, 1.6vw, 1rem);
}

    .create-btn {
        font-size: 0.9rem;
    }
    .steps-container {
        padding: 0;
    }
    .step h3 {
    font-size: clamp(0.7rem, 2.5vw, 1.875rem);
}
.step:not(:last-child)::before {
    left: 17%;
}

}




















.tickmark-alignment {
    position: relative;
    top: 0.5rem;
}

.first-section h1 {
    font-size: clamp(32px, 6vw, 55px) !important;
    margin: auto !important;
    font-weight: bold !important;
}

.first-section p {
    margin: 0;
}

.feature-list p {
    margin-top: 13px;
    margin-left: 9px;
}

.main-section-3 .image-section {
    text-align: right;
}

.main-section-2 .container-1 .sections {
    gap: 3rem !important;
    align-items: stretch;
}

.main-section-2 .container-1 .sections ul {
    display: flex;
    flex-direction: column;
    margin: 0;
}

.page-header ul {
    padding-left: 24px;
}

@media (min-width: 1023px) and (max-width: 1919px) {
    .btn.color-freesignup {
        height: 3rem !important;
    }
}

.page-header .header-navbar ul.complete-list>li:last-child>a {
    color: #fff !important;
    padding: 0rem 4.7rem;
    /* padding-bottom: 0rem !important; */
}


a.footer-redirection {
    display: inline-block !important;
    min-width: 48px !important;
    min-height: 48px !important;
    color: inherit !important;
    line-height: 1.4 !important;
    border-radius: 4px !important;
}


.sub-container {
    width: 85% !important;
}

@media (min-width: 731px) and (max-width: 900px) {
    .mail-id ul {
        gap: 1rem !important;
    }

    .btn.color-freesignup {
        padding: 0.5rem 1.3rem !important;
    }
}

@media (min-width: 374px) and (max-width: 730px) {
    .mail-id ul {
        gap: 0.7rem !important;
    }
}


.page-header .header-content-container {
    width: 85.5% !important;
}


@media (max-width: 767px) {

    .btn.color-freesignup {
        border-radius: 0.6rem;
        padding: 0.5rem 1.3rem !important;
    }

    .mini-footer {
        text-align: center;
    }

    .page-header__actions {
        margin-bottom: 1.2rem;
    }

    .signup-demo-buttons {
        list-style: none;
        padding: 0;
        margin: 0;
        text-align: center !important;
        width: 106%;
    }

    .signup-demo-buttons li {
        display: inline-block;
    }

    .mini-footer {
        flex-direction: column !important;
        gap: 0rem !important;
    }

    .page-header__actions .signup-demo-buttons {
        text-align: center !important;
    }


    .mini-footer p {
        font-size: clamp(1.2rem, 2.8vw, 1.75rem);
        margin: 0;
        color: #111;
        margin-bottom: 2rem;
    }
}



.container {
    width: 100%;
    margin: auto;
}

.main-section-2,
.main-section-3 {
    width: 100%;
}

.main-section-3 {
    background-repeat: no-repeat;
    height: auto;
}

.sub-left-section ul li {
    font-size: clamp(20px, 3vw, 30px);
}

.sub-right-section ul li {
    font-size: clamp(20px, 3vw, 30px);
}

.high-light {
    color: #0f5f9c;
}

.sections {
    margin: auto;
    display: flex;
    align-items: center;
    margin-bottom: 4rem !important;
    margin-top: 4rem;
    gap: 10rem;
}

.image-section img {
    width: 50%;
    height: auto;
}

.integration-section {
    background: transparent linear-gradient(180deg, #F3FAFF 0%, #FBFDFF 100%) 0% 0% no-repeat padding-box;
    padding: clamp(2rem, 5vw, 4rem);
}

.our-integrations-container {
    max-width: 85%;
    margin: 0 auto;
}

.integration-heading {
    text-align: center;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 600;
    margin-bottom: clamp(2rem, 4vw, 3rem);
}

.integrations-grid {
    display: grid;
    grid-template-columns: 1fr 3fr 1fr;
    grid-template-rows: repeat(4, auto);
    row-gap: clamp(1rem, 2vw, 1.5rem);
    align-items: center;
    position: relative;
}

.logo-cell {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-cell img {
    width: clamp(110px, 15vw, 180px);

    height: auto;
}

.text-cell {
    background-color: white;
    padding: 2.5rem 1.75rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    font-size: clamp(18px, 1.5vw + 0.5rem, 23px);
    line-height: 1.5;
}

.text-cell:hover {
    background-color: #105f9b14 !important;
}

.tail-image-column {
    grid-column: 3 / 4;
    grid-row: 1 / span 4;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

@media (max-width: 1100px) {
    .integrations-grid {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }

    .logo-cell,
    .text-cell {
        justify-content: center;
        text-align: center;
    }

    .text-cell {
        padding: 1.5rem 1rem;
        font-size: 1rem;
    }

    .logo-cell img {
        max-width: 140px;
    }

    .tail-image-column {
        display: none;
    }
}

.svg-button,
.linkedIn-Link a {
    text-decoration: none
}

.platform h2 {
    text-align: center;
    font-size: clamp(24px, 4vw, 39px);
    padding-top: 2rem;
}

.platform p {
    font-size: clamp(18px, 2.2vw, 23px);

    color: #5A627A;
}

.video-section {
    display: none
}

.video-section.active {
    display: block
}

.image-section img {
    width: 100%;
    height: auto
}

.arrow {
    cursor: pointer
}

body {
    overflow-x: hidden
}

.main-section-1 {
    width: 100%;
}

.first-section,
.mini-container-1,
.mini-container-2,
.mini-container-3,
.platform,
.container-1,
.testimonial-wrapper,
.security-section,
.integration-section {
    width: 85%;
    margin: auto;
}

.main-section-1 {
    background-image: url('../features/images/main-background.webp');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    margin: auto;
    justify-content: center;
}

.mini-footer {
    margin-top: 1rem;
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}


.first-section {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: row;
    margin: auto;
    margin-bottom: 15rem;
    margin-top: 15rem;
}

.image-section,
.left-section,
.right-section {
    width: 50%
}

.first-section .left-section h1 {
    color: #FFFFFF
}

.first-section .left-section p {
    font-size: clamp(20px, 3vw, 26px);
    color: #FFFFFF;
    text-align: start;
    line-height: clamp(1.8rem, 5vw, 3rem);

}

.featured-section h2,
.featured-section p,
.header,
.security-section,
.testimonial-section,
p {
    text-align: center
}

.first-section .left-section .feature-list li {
    display: flex;
    flex-direction: row
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    height: auto
}

.container-1 .image-section img,
.right-section {
    margin-left: 1rem
}

video {
    margin-top: 15%;
    border-radius: 8px;
}




.featured-section h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1e1e2f;
    margin-bottom: 12px
}

.featured-section p {
    font-size: 16px;
    color: #8c94a3;
    margin-bottom: 32px
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 110px;
    flex-wrap: wrap
}

.logo-container img {
    height: 40px;
    opacity: .7;
    transition: opacity .3s
}

.logo-container img:hover {
    opacity: 1
}


.mini-container-1 .sections {
    padding-bottom: 5% !important
}


.mini-container-2 .sections,
.mini-container-3 .sections {
    padding-top: 5%;
    padding-bottom: 5%
}

.mini-container-1 .header1 h2 {
    margin-left: 10%;
    margin-right: 10%;
    width: 80%;
    font-size: clamp(28px, 5vw, 48px) !important;
    text-align: center;
    padding-top: 3rem;

}

.mini-container-1 .sections .content-section,
.mini-container-3 .sections .content-section {
    width: 50%;
}

.mini-container-2 .sections .content-section {
    width: 50%;
}

.content-section h3 {
    text-align: left;
    color: #0f5f9c;
    font-size: clamp(24px, 4vw, 40px);
}

.content-section p {
    text-align: left;
    color: #33475b;
    font-size: clamp(18px, 2.5vw, 25px);
    line-height: clamp(1.8rem, 5vw, 3rem);

    background: 0 0;
    padding: 0
}

.page-header__actions {
    background: inherit;
    background-repeat: no-repeat
}

.page-header__actions .signup-demo-buttons {
    margin-top: 0.7rem;
    text-align: left;
    list-style: none;
    background: 0 0;
    padding: 0;
}

.page-header__actions .signup-demo-buttons a {
    text-decoration: none;
    padding: 0.7rem 2.5rem;
    
}
.main-button a{
    background: white !important;
    color: #004a9b !important;
}

.page-header__actions .signup-demo-buttons a:hover {
    box-shadow: 0 0 10px 2px rgba(255, 255, 255, .7)
}

.mini-container-2 {
    height: auto;
    background-color: #fff
}

.mini-container-3 {
    background-repeat: no-repeat
}

.container-1 {
    background-color: #fff
}

.sections .left-section {
    flex: 1 1 300px;
    padding: 1.5rem;
    padding-top: 0rem;
    border-radius: 20px;
    background: #f3f6fb;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .05);
    color: #1e2b3b;
}

.sections .left-section .sub-left-section,
.sections .right-section,
.sections .right-section .sub-right-section {
    padding: 1.5rem;
    padding-top: 0rem;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .05);
    border-radius: 20px
}

.container-1 .sections .left-section h3 {
    font-size: clamp(22px, 3.5vw, 35px) !important;

    color: #718093
}

.container-1 .sections .right-section h3 {
    font-size: clamp(22px, 3.5vw, 35px) !important;
    color: #fff
}

.sections .right-section {
    flex: 1 1 300px;
    background: linear-gradient(90deg, #0886e5 0, #006cbe 62%, #105f9b 100%);
    color: #fff;
}

.sections .left-section .sub-left-section {
    flex: 1 1 300px;
    color: #1e2b3b
}

.sections .right-section .sub-right-section {
    flex: 1 1 300px;
    color: #252f4a;
    display: flex;
}

.sections .left-section h3,
.sections .right-section h3 {
    text-align: center;
    margin-bottom: 1rem;
    margin-top: 1rem;
    font-size: 1.3rem;
    font-weight: 600
}

.sections .left-section ul {
    display: flex;
    flex-grow: 1;
    flex-direction: column;
    flex-grow: 1;
}

.sections .left-section ul,
.sections .right-section ul {

    list-style: none;
    padding: 0
}

.sections .left-section li,
.sections .right-section li {
    display: flex;
    align-items: flex-start;
    margin: .75rem 0;
    font-size: 25px;
    line-height: 1.5;
    gap: 0.7rem;
}

.testimonial-section {
    padding: 60px 20px;
    background: linear-gradient(180deg, #f3faff 0, #fbfdff 100%)
}

.testimonial-section h2 {
    font-size: clamp(30px, 5.5vw, 53px);
    margin-bottom: 40px
}

.slider-container {
    position: relative;
    overflow: hidden;
    max-width: 85%;
    margin: 0 auto
}

.slider-track {
    display: flex;
    transition: transform .6s
}

.testimonial {
    min-width: 100%;
    box-sizing: border-box;
    border-radius: 20px;
    padding: 30px;
    display: flex;
    gap: 20px;
    align-items: flex-start
}



.profile-img {
    width: clamp(80px, 30vw, 200px);
    border-radius: 50%;
    object-fit: cover;
    max-width: 100%;
    height: auto
}

.testimonial-content {
    background-image: url('../images/marketing/quote.webp');
    background-repeat: no-repeat;
    background-size: clamp(50px, 10vw, 97px);
    text-align: left !important;
    margin-right: clamp(1rem, 3vw, 2rem);
    padding-left: clamp(1rem, 3vw, 2rem)
}

.testimonial-content h3 {
    padding-left: clamp(.5rem, 2vw, 3%);
    font-size: clamp(20px, 2.5vw, 32px);
    margin-bottom: clamp(.5rem, 1.5vw, 10px)
}

.testimonial-content p {
    font-size: clamp(18px, 2.5vw, 30px);
    line-height: clamp(1.8rem, 5vw, 3rem);

    padding-left: clamp(.5rem, 2vw, 3%);
    text-align: left
}


.author {
    margin-top: clamp(8px, 1.5vw, 20px);
    margin-left: clamp(1rem, 5vw, 8rem);
    width: clamp(320px, 60vw, 715px);
    height: auto
}

.authour-name {
    font-size: clamp(18px, 2.5vw, 27px);
    color: #19191a
}

.linkedIn-Link {
    font-size: clamp(14px, 1.5vw, 16px)
}

.role {
    color: #777;
    font-size: clamp(.8rem, 1.2vw, 1.1rem);
    margin: 0;
    padding: 0;
}

.stars {
    color: #f9b017;
    font-size: 1rem;
    margin-top: 5px
}

.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #ddebf7;
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    font-size: 1.8rem;
    z-index: 10;
    transition: background .3s
}

.arrow:hover {
    background: #c7dbef
}

.arrow.left {
    left: 0
}

.arrow.right {
    right: 0
}

.security-section .badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 20px;
    flex-direction: row !important;
}

.security-section .badges img {
    width: 120px;
    height: 120px;
    object-fit: contain
}

.security-section h2 {
    font-size: clamp(28px, 5vw, 48px);
    color: #1e2a3a;
    margin-bottom: .5rem
}

.security-section h3 {
    font-size: clamp(18px, 2.4vw, 26px);

    font-weight: 600;
    color: #1e2a3a;
    margin-bottom: 20px
}


.security-section .description {
    max-width: 700px;
    margin: 0 auto 0px;
    color: #66788a;
    font-size: clamp(16px, 2vw, 24px);

    line-height: clamp(1.8rem, 5vw, 3rem);

}

.security-section .svg-button {
    background-color: #0074d9;
    color: #fff;
    font-weight: 600;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
    transition: background .3s
}

.security-section .svg-button:hover {
    background-color: #005fa3
}

.subtext {
    margin-top: 0px;
    font-size: 24px;
    color: #1e2a3a;
}

.first-section .left-section h1 {
    margin-top: 5rem !important;
}






.svg-text-overlay {
    width: 85%;
    margin-bottom: 5% !important;
    background-image: url('../images/blogImages/TryForFree.webp');
    background-position: center;
    background-repeat: no-repeat;
    padding: 2rem 1rem;
    color: #fff;
    text-align: center;
    border-radius: 15px
}

.svg-text-overlay h2 {
    font-size: clamp(24px, 3.5vw, 35px) !important;

}

.svg-text-overlay p {
    margin: 0;
    font-size: clamp(20px, 3vw, 29px) !important;

}

.svg-button,
.text-overlay p {
    font-size: 1.4rem
}

.svg-text-overlay h2,
.svg-text-overlay p {
    color: #fff;
    margin-bottom: 1rem
}

.svg-button {
    display: inline-block;
    background-color: #fff;
    color: #105f9b;
    font-weight: 700;
    padding: 0.8rem 2.9rem;
    border-radius: 8px;
    transition: background .3s, color .3s, box-shadow .3s;
    margin-top: 1rem;
    box-shadow: none
}

.svg-button:hover {
    background-color: #fff;
    color: #0a4e85;
    box-shadow: 0 0 10px 2px rgba(255, 255, 255, .7)
}

@media (max-width:992px) {
    .first-section {
        flex-direction: column;
        margin: 5%;
        gap: 3rem;

    }
    .name {
        line-height: 0.5rem !important;
        margin: 0;
        padding: 0;
    }

    .quote {
        line-height: 1rem !important;
        margin: 0;
        padding: 0;
    }

    .content-section,
    .image-section,
    .left-section,
    .right-section {
        width: 90%;
        margin: 0
    }

    .page-header .header-content-container {
        width: 91.5% !important;
    }

    .image-section {
        text-align: center !important;
    }

    .testimonial-content {
        text-align: center !important;
        margin-right: 23px !important;
    }

    .arrow-icon {
        width: 14px !important;
        height: 14px !important;
    }

    .arrow-icon-testimonial {
        width: 50px !important;
        height: 50px !important;
    }

    .arrow.left:hover .arrow-icon-left {
        transform: translateX(-6px) !important;
    }

    .arrow.right:hover .arrow-icon-right {
        transform: translateX(6px) !important;
    }

    .badge1 {
        width: 150px !important;
    }

    .quality-choiceaward {
        width: 70px !important;
    }

    .happiest-award {
        width: 70px !important;
    }

    .image-section img {
        width: 100%;
    }

    .container-1 .sections {
        flex-direction: column;
        margin-bottom: 3rem;
        gap: 2rem;
    }

    .mini-container-1 .sections {
        flex-direction: column-reverse;
        margin-bottom: 3rem;
        gap: 2rem;
    }

    .mini-container-2 .sections {
        flex-direction: column;
        margin-bottom: 3rem;
        gap: 2rem;
    }

    .mini-container-3 .sections {
        flex-direction: column-reverse;
        margin-bottom: 3rem;
        gap: 2rem;
    }




    .subtext {
        margin-bottom: 0rem !important;
    }

    .mini-footer {
        gap: 0.2rem;
    }


    .viedo-section video {
        width: 175%;
        margin: auto;
        margin-top: 10% !important;

    }

    .image-section,
    .mini-container-1 .sections .content-section,
    .mini-container-2 .sections .content-section,
    .mini-container-3 .sections .content-section {
        width: 80%;
        margin: 0 auto
    }

    .mini-container-1 .sections .image-section,
    .mini-container-2 .sections .image-section,
    .mini-container-3 .sections .image-section {
        margin: 2rem auto
    }

    .header {
        width: 90%;
        margin: 0 auto
    }

}

@media (max-width:576px) {
    .first-section {
        flex-direction: column;
        margin: 19% 5%;
        gap: 3rem;
    }
    .first-section {
        margin-bottom: 4rem !important;
        margin-top: 8rem !important;
    }
    .tickmark-alignment {
        top: 0rem;
    }
    .first-section .left-section p {
        margin-bottom: 40px;
    }
    .mini-footer p {
        margin-bottom: 1rem !important;
    }

    .sections .left-section li,
    .sections .right-section li {
        font-size: 14px;
    }

    .arrow-icon {
        width: 14px !important;
        height: 14px !important;
    }

    .featured-section h2 {
        font-size: 22px !important
    }


    .slider-container {
        padding: 0 1rem
    }

    .viedo-section video {
        width: 208% !important;
        margin: 0 !important;
        margin-right: -70% !important;

    }

    .text-cell {
        font-size: clamp(16px, 1.5vw + 0.5rem, 16px) !important;
        margin-left: 0 !important;
    }

    .svg-button {
        padding: 0.5rem 0.9rem;
    }

    .svg-button,
    .text-overlay p {
        font-size: 0.9rem;
    }

    .mini-container-1 .sections {
        flex-direction: column-reverse;
        padding: 1rem;
        margin-bottom: 0rem !important;
        gap: 0rem !important;
    }

    .mini-container-2 .sections {
        flex-direction: column;
        padding: 1rem;
        margin-bottom: 0rem !important;
        gap: 0rem !important;
    }

    .mini-container-3 .sections {
        flex-direction: column-reverse;
        padding: 1rem;
        margin-bottom: 0rem !important;
        gap: 0rem !important;
    }

    .first-section .left-section h1 {
        width: 115% !important;
        margin-top: 0 !important;
    }

    .first-section .left-section p {
        width: 110% !important;
    }

    video {
        margin-top: 0% !important;
        width: 124%;
    }

    .security-section .subtext {
        margin-top: 16px;
        font-size: clamp(1.2rem, 2.8vw, 1.75rem);
        ;
        color: #111;
    }

    .image-section,
    .mini-container-1 .sections .content-section,
    .mini-container-2 .sections .content-section,
    .mini-container-3 .sections .content-section {
        width: 85%;
        margin: 1rem auto;
        padding: 0 1rem;
        margin: 0;
        padding: 0;
    }

    .mini-container-1 .header {
        text-align: center;
        width: 100%
    }

    .content-section h3 {
        text-align: center
    }

    .content-section p {
        text-align: center
    }

    .image-section img,
    .image-section video {
        width: 100% !important;
        height: auto !important;
    }

    .sections {
        margin-top: 0rem !important;
        padding: 0;
    }

    .arrow-icon-right {
        margin-left: 0% !important;
    }

    .arrow-icon-right {
        font-size: 2rem !important;
    }

    .arrow-icon-left {
        font-size: 2rem !important;
    }

    .arrow-icon-left {
        margin-left: 0% !important;
    }

    .testimonial-content {
        width: 210px;
        text-align: center !important;
        margin-left: 0;
        background-size: 54px 54px
    }

    .author {
        margin-left: 0;
        text-align: left
    }

    .feature-list img {
        height: 20px !important;
        margin-top: 1rem;
    }

    .logo-container img {
        height: 30px;
        opacity: .7;
        transition: opacity .3s
    }

    .sections .left-section {
        margin-left: 0
    }

    .sections .right-section {
        margin-right: 0
    }

    .container {
        margin-bottom: 0
    }

    .building_box li img {
        max-width: 100px !important;
        width: 24px !important;
        height: 24px !important
    }

    .arrow-icon-testimonial {
        width: 50px !important;
        height: 50px !important;
    }
}

@media (max-width:1440px) {
    .testimonial-content {
        text-align: center !important;
    }
}

@media (max-width:990px) {
    .sections .left-section {
        margin-left: 0
    }

    .sections .right-section {
        margin-right: 0
    }
}


body {
    margin: 0;
    font-family: "Inter", system-ui, Arial, sans-serif;
    color: #111;
}

.testimonial-section {
    max-width: 85%;
    margin-inline: auto;
    padding: 4rem 1rem;
}

.testimonial-section h2 {
    font-size: clamp(28px, 4vw, 53px);

    font-weight: 700;
    text-align: center;
    margin: 0 0 3rem;
    max-width: 85%;
    margin: auto;
}

.slider-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
}

.arrow {
    flex: 0 0 48px;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: #dde8f3;
    font-size: 1.5rem;
    line-height: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .2s;
}


.arrow-icon-right {
    font-size: 3.5rem;
    margin-left: -140%;
    color: black;
    display: inline-block;
    transition: transform 0.3s ease;
}

.arrow-icon-left {
    font-size: 3.5rem;
    margin-left: 140%;
    color: black;
    display: inline-block;
    transition: transform 0.3s ease;
}

.arrow.right:hover .arrow-icon-left {
    transform: translateX(6px);
}

.arrow.left:hover .arrow-icon-left {
    transform: translateX(-6px);
}

.arrow.right:hover .arrow-icon-right {
    transform: translateX(6px);
}

.arrow.left:hover .arrow-icon-right {
    transform: translateX(-6px);
}

.arrow:hover {
    background-color: #cfddea;
}

.slider-track {
    flex: 1 1 0;
}

.slider-track>.testimonial {
    flex: 0 0 100%;
    display: flex;
    align-items: center;
    gap: 3rem;
    padding: 2rem max(2vw, 1rem);
    box-sizing: border-box;
    transition: opacity .4s ease;
}

.slider-track {
    display: flex;
    transition: transform .6s ease;
}

.author {
    flex-shrink: 0;
    text-align: center;
    max-width: 220px;
}

.profile-img {
    width: 160px;
    aspect-ratio: 1/1;
    border-radius: 50%;
    object-fit: cover;
}

.authour-name {
    margin: .8rem 0 .2rem;
}

.role {
    color: #556;
}

.linkedIn-Link a {
    font-size: 1.2rem;
    color: #1a66c4;
    text-decoration: none;
    word-break: break-all;
}

.stars {
    margin-top: .3rem;
    font-size: 1.1rem;
    color: #f5b000;
}

.testimonial-content h3 {
    margin: 0 0 .6rem;
    font-size: clamp(18px, 2.5vw, 32px);
    font-weight: 700;
}

.testimonial-content p {
    margin: 0;
    text-align: justify;
    line-height: 1.55;
    max-width: clamp(320px, 85vw, 1050px);


}

@media (max-width: 1024px) {
    .page-header .header-navbar ul.complete-list>li {
        margin-left: 30px !important;
    }


    .page-header .signup-demo-buttons {
        margin-top: 0 !important;
    }



    .testimonial-section {
        padding: 3rem 1rem;
    }

    .slider-track>.testimonial {
        gap: 2rem;
        padding: 2rem 1rem;
    }

    .testimonial-content h3 {
        font-size: 1.1rem;
    }

    .testimonial-content p {
        font-size: 0.95rem;
    }

    .testimonial-content p {

        max-width: 600px;
    }
}

@media (max-width: 1468px) {
    video {
        margin-top: 25% !important;
    }

    .slider-container {
        flex-direction: column;
        gap: 2rem;
    }

    .arrow {
        order: -1;
    }

    .slider-track {
        flex: 1 1 100%;
        width: 110%;
    }

    .testimonial-content p {

        max-width: 800px;
    }

    .slider-track>.testimonial {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding: 2rem 1rem;
    }



    .testimonial-content p {
        text-align: center;
        font-size: 0.95rem;
        max-width: 100%;
    }

    .profile-img {
        width: 120px;
    }

    .testimonial-content h3 {
        font-size: 1.1rem;
    }

    .authour-name {
        font-size: 1rem;
    }

    .role {
        font-size: 0.85rem;
    }

    .stars {
        font-size: 1rem;
    }
}

@media (max-width:2200px) {
    .testimonial-content p {
        max-width: clamp(320px, 80vw, 900px) !important;
    }
}

@media (max-width:1950px) {
    .testimonial-content p {
        max-width: clamp(320px, 80vw, 750px) !important;

    }
}

@media (max-width:1700px) {
    .testimonial-content p {
        max-width: clamp(320px, 80vw, 600px) !important;

    }
}

@media (max-width: 480px) {

    .contact-details p,
    ul li {
        line-height: 1.5rem !important;
    }

 
    .testimonial-section {
        padding: 2rem 1rem;
    }

    .slider-track>.testimonial {
        padding: 1.5rem 0.5rem;
    }

    .testimonial-content p {
        font-size: 0.9rem;
    }

    .arrow {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}




@media (min-width:2560px) {
    .logo-cell img {
        margin-right: 30px;
    }

    .slider-container {
        max-width: 50% !important;
    }

    .image-section img {
        width: 100%;
        height: auto;
    }

    .first-section {
        margin-top: 140px !important;
    }

    .sub-container {
        width: 50% !important;
    }

    .page-header .header-content-container {
        width: 50% !important;
    }

    .first-section,
    .mini-container-1,
    .mini-container-2,
    .mini-container-3,
    .platform,
    .container-1,
    .testimonial-wrapper,
    .security-section,
    .integration-section {
        width: 50%;
        margin: auto;
    }

    .sections {
        justify-content: space-between;
    }

    .mini-container-2 .sections,
    .mini-container-3 .sections {
        padding-top: 2%;
        padding-bottom: 2%;
    }

    .testimonial-content p {
        max-width: clamp(320px, 85vw, 440px);
    }

    .certification-logo {
        width: 60px !important;
    }

    .footer-col-header {
        font-size: 2.1rem !important;
    }

    .footer-column ul li {
        font-size: 1.4rem;
    }

    .logo-content {
        font-size: 1.4rem;
    }

    .mobile-number ul li {
        font-size: 1.45rem;
    }

    .mail-id ul li {
        font-size: 1.45rem;
    }

    .term-conditions {
        font-size: 1.4875rem;
    }

    .media-text {
        font-size: 1.425rem;
    }

    .badges-devices {
        display: flex;
        gap: 3rem !important;
    }


}


@media (min-width:3560px) {
    .slider-container {
        max-width: 45% !important;
    }

    .sub-container {
        width: 45% !important;
    }

    .page-header .header-content-container {
        width: 45% !important;
    }

    .first-section,
    .mini-container-1,
    .mini-container-2,
    .mini-container-3,
    .platform,
    .container-1,
    .testimonial-wrapper,
    .security-section,
    .integration-section {
        width: 45%;

        margin: auto;
        margin-top: 12rem;
    }

    .sections {
        justify-content: space-between;
    }

    .testimonial-content p {
        max-width: clamp(320px, 85vw, 650px);
    }

}

@media (min-width:4000px) {

    .slider-container {
        max-width: 40% !important;
    }

    .first-section {
        margin-top: 210px !important;
    }

    .sub-container {
        width: 40% !important;
    }

    .page-header .header-content-container {
        width: 40% !important;
    }

    .first-section,
    .mini-container-1,
    .mini-container-2,
    .mini-container-3,
    .platform,
    .container-1,
    .testimonial-wrapper,
    .security-section,
    .integration-section {
        width: 40%;
        margin: auto;
    }

    .sections {
        gap: 2rem !important;

        justify-content: space-between;
    }

    .testimonial-content p {
        max-width: clamp(320px, 85vw, 450px);
    }

    .certification-logo {
        width: 70px;
    }

    .viedo-section {
        width: 25% !important;
    }

    ul,
    li {
        font-size: clamp(20px, 3vw, 34px) !important;
        line-height: 2rem !important;
    }

    .mini-container-1 .header1 h2 {
        font-size: clamp(28px, 5vw, 55px) !important;
    }

    .content-section h3 {
        font-size: clamp(24px, 4vw, 38px);
    }

    .client-heading {
        font-size: clamp(30px, 5.3vw, 55px);
    }

    .container-1 .sections .left-section h3 {
        font-size: clamp(22px, 3.5vw, 42px) !important;
    }

    .container-1 .sections .right-section h3 {
        font-size: clamp(22px, 3.5vw, 42px) !important;
    }

    .testimonial-section h2 {
        font-size: clamp(30px, 5.5vw, 65px) !important;
    }

    .security-section h2 {
        font-size: clamp(28px, 5vw, 38px) !important;
    }

    .security-section h3 {
        font-size: clamp(18px, 2.4vw, 35px);
    }



    .svg-text-overlay p {
        font-size: clamp(20px, 3vw, 35px) !important;
    }

    .svg-button,
    .text-overlay p {
        font-size: 1.2rem !important;
    }

    .testimonial-content h3 {
        font-size: clamp(18px, 2.5vw, 45px) !important;
    }

    h2 {
        font-size: 55px !important;
    }

    p {
        font-size: 38px !important;
    }

    .viedo-section {
        padding-left: 24% !important;
    }
}


@media (max-width:1200px) {
    .text-cell {
        background-color: white;
        padding: 3.25rem 1.75rem;
        border-radius: 0.75rem;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        font-size: clamp(0.95rem, 1.1vw, 1.05rem);
        line-height: 1.5;
    }

}

@media (min-width:4500px) {
    .viedo-section {
        width: 30% !important;
    }
}

@media (min-width:5500px) {
    .testimonial-content p {
        max-width: clamp(320px, 85vw, 1160px);
    }

    .image-section,
    .left-section,
    .right-section {
        width: 35% !important;
    }
}

@media (min-width:6500px) {
    .testimonial-content p {
        max-width: clamp(320px, 85vw, 1500px);
    }
}


@media (max-width: 900px) {
    .testimonial-content h3 {
        font-size: 0.9rem;
    }

    .testimonial-content p {
        max-width: clamp(320px, 80vw, 400px) !important;
    }
}

@media (min-width:5000px) {

    .viedo-section {
        width: 30% !important;
    }
}

@media (min-width:2100px) {
    .right-section {
        width: 35%;
    }

    .viedo-section {
        width: 30% !important;
    }
}

.first-section .left-section h1 {
    margin-bottom: 20px;
}

.dropdown-wrapper.auto-height {
    height: auto;
}

.page-header {
    color: white !important;
    font-size: 1.2rem !important;
}

.first-section .left-section p {
    margin-bottom: 31px !important;
}

.first-section .left-section .feature-list p {
    margin-bottom: 12px !important;
}

.first-section .right-section {
    display: flex !important;
}

.main-section {
    background: #FFFFFF;
    padding: 0;
}

.client-heading {
    font-size: clamp(30px, 5.3vw, 53px);
    margin-bottom: 1.5rem !important;
}

.testimonial-wrapper {
    width: 100% !important;
    background: transparent linear-gradient(180deg, #F3FAFF 0%, #FBFDFF 100%) 0% 0% no-repeat padding-box !important;
}

.security-div {
    max-width: 92%;
    margin: auto;
}

.mini-footer .signup-demo-buttons {
    text-align: center;
}

.tail-image-column {
    margin-left: -4%;
}



.viedo-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.svg-text-overlay {
    margin: auto;
}

mask {
    mask-type: luminance;
}

.arrow-icon-circle {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 72px !important;
    height: 72px !important;
}

.arrow-icon {
    width: 75px;
    height: 75px;
}


@media (max-width:1250px) {
    .logo-container {
        gap: 40px;
    }

    .text-cell {
        padding: 1rem 1.75rem;
        font-size: clamp(18px, 1.5vw + 0.5rem, 17px);
        line-height: 1.5;
        margin-left: 1.2rem;
    }
}


@media (min-width: 992px) and (max-width: 1500px) {
    .name {
        line-height: 0.5rem !important;
        margin: 0;
        padding: 0;
    }

    .quote {
        line-height: 1rem !important;
        margin: 0;
        padding: 0;
    }

    .author {
        margin-left: 0;
    }

    .first-section .left-section h1 {
        font-size: clamp(32px, 6vw, 40px) !important;
        line-height: 3rem;
    }

    .subtext {
        margin-bottom: 0rem !important;
    }

    .mini-footer {
        gap: 0;
    }

    .content-section,
    p {
        font-size: clamp(15px, 3vw, 15px);
        line-height: 2.5rem !important;
    }

    .alignment-icons {
        margin-bottom: 9px;
    }

    ul,
    li {
        font-size: clamp(20px, 3vw, 20px) !important;
        line-height: 2rem !important;
    }

    .platform h2 {
        font-size: clamp(24px, 4vw, 33px) !important;
    }

    .mini-container-1 .header1 h2 {
        font-size: clamp(28px, 5vw, 40px) !important;
    }

    .content-section h3 {
        font-size: clamp(24px, 4vw, 28px);
    }

    .client-heading {
        font-size: clamp(30px, 5.3vw, 40px);
    }

    .container-1 .sections .left-section h3 {
        font-size: clamp(22px, 3.5vw, 30px) !important;
    }

    .container-1 .sections .right-section h3 {
        font-size: clamp(22px, 3.5vw, 30px) !important;
    }

    .testimonial-section h2 {
        font-size: clamp(30px, 5.5vw, 40px) !important;
    }

    .security-section h2 {
        font-size: clamp(28px, 5vw, 28px) !important;
    }

    .security-section h3 {
        font-size: clamp(18px, 2.4vw, 20px);
    }

    .svg-text-overlay p {
        font-size: clamp(20px, 3vw, 20px) !important;
    }

    .svg-button,
    .text-overlay p {
        font-size: 1.2rem !important;
    }
}

@media (min-width: 700px) and (max-width: 900px) {}

@media (max-width: 1600px) {
    .text-cell {
        padding: 1.9rem 1.75rem;
        font-size: clamp(18px, 1.5vw + 0.5rem, 20px);
        line-height: 1.5;
        margin-left: 1rem;
    }
}


@media (min-width:6000px) {
    video {
        margin-top: 3% !important;
    }
}



@media (max-width: 576px) {
    .first-section .left-section h1 {
        text-align: center !important;
    }
    .first-section p {
    margin-bottom: 31px !important;
}
    .first-section .left-section p {
    text-align: center !important;
}


    .content-section,
    .image-section,
    .left-section,
    .right-section {
        width: 92%;
        margin: auto;
    }
    .right-section {
        width: 92%;
        margin: auto !important;
    }
    .left-section,
    .right-section {
        width: 90%;
    }
}

@media (min-width: 1200px) and (max-width: 1500px) {
    .image-section img {
        width: 87% !important;
    }
}

@media (min-width: 992px) and (max-width: 1200px) {
    .image-section img {
        width: 100% !important;
    }
}

@media (min-width: 2540px) {

    .sections .left-section ul,
    .sections .right-section ul {
        list-style: none;
        padding: 17px !important;
    }

    .btn.color-freesignup {
        height: 3rem !important;
    }
}

@media (min-width: 476px) and (max-width: 767px) {
    .page-header .header-navbar {
        margin-left: -9% !important;
    }
        .page-header .header-navbar ul.complete-list>li {
        position: relative;
        margin: 10px 0;
        margin-left: 9%;
    }
}
@media (min-width: 767px) and (max-width: 1022px) {
    .page-header .header-navbar {
        width: 100%;
        margin-left: -10% !important;
    }
    .page-header .header-navbar ul.complete-list>li
 {
        position: relative;
        margin: 10px 0;
        margin-left: 12%;
    }
    .page-header .header-navbar ul.complete-list>li {
        margin-left: 47px !important;
    }

}
@media (min-width: 993px) and (max-width: 1022px) {
    .page-header .header-navbar {
        width: 100%;
        margin-left: -15% !important;
    }
    .page-header .header-navbar ul.complete-list>li {
        margin-left: 98px !important;
    }
}

@media (min-width: 1920px) {
    .page-header li.drop-down-menu .mega-content-holder {
        max-width: 85%;
    }
}
@media (max-width: 800px) {
    .page-header .header-navbar ul.complete-list>li {
        margin-left: 30px !important;
    }
}
@media (min-width: 601px) and (max-width: 750px) {
.page-header .header-navbar ul.complete-list>li {
        margin-left: 15px !important;
    }
}
@media (max-width: 600px) {
    .page-header .header-navbar ul.complete-list>li {
        margin-left: 5px !important;
    }
}
@media (max-width: 500px) {
    .page-header .header-navbar ul.complete-list>li {
        margin-left: -15px !important;
    }
    .main-section-2{
    width: 92%;
}
}
