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

html {
    scroll-behavior: smooth;
}

:root {
    --white-color: #FFFFFF;
    --black-color: #000000;
    --theme-color: #6e4ff7;
    --gray-color: #363636;
}

body {
    font-family: "Work Sans", sans-serif;
}

.para {
    font-size: 18px;
    font-weight: 400;
    color: var(--black-color);
    line-height: 30px;
    letter-spacing: -0.58px;
}

.theme-big-heading {
    font-size: 48px;
    font-weight: 600;
    color: var(--black-color);
    letter-spacing: -1.55px;
}

.theme-small-heading {
    font-size: 32px;
    font-weight: 600;
    color: var(--black-color);
    letter-spacing: -1.55px;
}

/* header css start */
.header {
    box-shadow: 0px 4px 6px -1px rgba(0, 0, 0, 0.10196078431372549);
    background-color: var(--white-color);
}

.header .nav-item .nav-link {
    color: var(--black-color);
    font-size: 12px;
    font-weight: 600;
    transition: all ease 0.3s;
    padding: 0;
}

.header .nav-item .nav-link:hover {
    color: var(--theme-color);
}

.header .header-right {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 30px;
}

.header .header-right .phone-header {
    font-size: 14px;
    color: var(--black-color);
    text-decoration: none;
    font-weight: 500;
    transition: all ease 0.3s;
}

.header .header-right .phone-header:hover {
    color: var(--theme-color);
}

.header .header-right .sign-in {
    font-size: 15px;
    color: var(--white-color);
    background-color: var(--gray-color);
    text-decoration: none;
    font-weight: 500;
    padding: 12px 20px;
    border-radius: 50px;
    transition: all ease 0.3s;
}

.header .header-right .sign-in:hover {
    background-color: var(--theme-color);
}

.header .navbar-nav {
    gap: 20px;
}

/* header css end */

/* home banner css start */
.purple-btn {
    color: var(--white-color) !important;
    text-decoration: none !important;
    background-color: var(--theme-color);
    font-size: 15px;
    font-weight: 600;
    padding: 14px 34px;
    border-radius: 50px;
    transition: all ease 0.3s;
}

.home-banner {
    /* padding: 65px 59px; */
    padding: 51px 59px 85px 59px;
}

.home-banner-content h2 {
    font-size: 31px;
    font-weight: 600;
    letter-spacing: -2px;
    color: var(--gray-color);
}

.home-banner-content h1 {
    font-size: 52px;
    font-weight: 600;
    letter-spacing: -2.81px;
    margin: 3px 0px;
}

.home-banner-content p {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: -0.48px;
    color: var(--black-color);
}

.home-banner-buttons {
    display: flex;
    align-items: center;
    margin-top: 25px;
    gap: 15px;
}

.home-banner-card {
    box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.09019607843137255);
    background-color: var(--white-color);
    padding: 16px 16px 32px;
    border-radius: 60px;
    /* margin-top: 22px; */
}

.home-banner-card img {
    width: 100%;
}

.home-banner-card .image-1 {
    margin-bottom: 30px;
}

.home-banner-card .image-1 img {
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
}

.home-banner-card .image-2 img {
    width: 70%;
}

.home-banner-card .image-2 {
    text-align: center;
}

/* home banner css end */

/* support-cta css start */
.support-cta {
    background-color: var(--gray-color);
    padding: 45px 0px 60px;
    margin-top: -120px;
}

.support-cta-content h3 {
    font-size: 32px;
    font-weight: 600;
    color: var(--white-color);
    letter-spacing: -1.55px;
}

.support-cta-content p {
    letter-spacing: -0.48px;
    color: var(--white-color);
    font-size: 18px;
    font-weight: 400;
}

.support-cta-btn {
    display: flex;
    align-items: center;
    gap: 8px;
}

.bordered-anchor {
    background-color: #6E4FF700;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: -0.4px;
    padding: 13px 30px;
    color: var(--white-color) !important;
    border: 4px solid var(--white-color);
    text-decoration: none !important;
    border-radius: 100px;
    transition: all ease 0.3s;
}

.bordered-anchor:hover {
    color: var(--black-color) !important;
    background-color: var(--white-color);
}

.text-decor-anchor {
    color: var(--white-color) !important;
    text-decoration: underline;
    transition: all ease 0.3s;
    border-radius: 100px;
    padding: 13px 30px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: -0.4px;
}

.text-decor-anchor:hover {
    background-color: var(--white-color);
    color: var(--black-color) !important;
}

/* support-cta css end */

/* success sec css start */
.success-sec {
    padding: 94px 0px 60px;
}

.success-sec-content h2 {
    color: var(--black-color);
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 25px;
    letter-spacing: -1.55px;
}

.success-sec-content h4 {
    color: var(--black-color);
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: -1.55px;
}

/* success sec css end */

/* why sec css start */
.why-sec {
    background-image: linear-gradient(109deg, #FFFFFF 73%, #6E4FF7 0%);
}

.why-sec img {
    transition-duration: .3s;
    transition-property: transform;
    transform-origin: 0 100%;
}

.why-sec img:hover {
    transform: skew(-10deg);
}

.why-sec-content h2 {
    font-size: 32px;
    font-weight: 600;
    color: var(--black-color);
}

.why-sec-content p {
    font-size: 18px;
    font-weight: 400;
    color: var(--black-color);
    font-style: italic;
}

.why-sec-content .why-sec-box h4 {
    font-size: 24px;
    font-weight: 600;
    color: var(--black-color);
    line-height: 56px;
    letter-spacing: -1.55px;
    margin-bottom: 0;
}

.why-sec-content .why-sec-box p {
    font-size: 18px;
    font-weight: 400;
    color: var(--black-color);
    line-height: 30px;
    letter-spacing: -0.48px;
    margin-bottom: 0;
    font-style: unset;
}

.why-sec-content {
    border-bottom: 6px solid var(--black-color);
    padding-bottom: 20px;
}

/* why sec css end */

/* launch sec css end */
.launch-sec {
    padding: 80px 0px 50px;
}

.launch-sec .launch-heading {
    text-align: center;
    margin-bottom: 50px;
}

.launch-sec-right .launch-btn {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.launch-sec-form form {
    display: flex;
    align-items: center;
    gap: 10px;
}

.launch-sec-form form select {
    width: 55%;
    height: 46px;
    border: 1px solid var(--theme-color);
    border-radius: 8px;
    outline: none;
    padding: 10px;
}

.launch-sec-form form button {
    padding: 12px 14px;
    border-radius: 8px;
    outline: none;
    border: none;
    font-size: 16px;
    font-weight: 500;
    color: var(--white-color);
    background-color: var(--theme-color);
}

.launch-sec-left-box img {
    width: 85%;
    height: 100%;
    transform: scaleX(-1);
}

.launch-sec-left-box-inner img {
    width: unset;
}

.launch-sec-left-box {
    position: relative;
}

.launch-sec-left-box-inner {
    background-color: #FFFFFF;
    padding: 16px 16px 1px 16px;
    box-shadow: 10px 10px 10px 0px rgba(0, 0, 0, 0.10196078431372549);
    position: absolute;
    top: 0;
    right: 0;
    width: 52%;
}

.launch-sec-left-box-inner p {
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: 0.16px;
    color: var(--black-color);
    margin-top: 15px;
}

.launch-sec-right span {
    display: flex;
}

.outline-btn {
    background-color: transparent;
    border: 2px solid #C6CCD5;
    background-color: #6E4FF700;
    color: var(--black-color) !important;
    padding: 14px 34px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none !important;
    transition: all ease 0.3s;
}

.launch-sec-right-box img {
    width: 85%;
    height: 100%;
}

.launch-sec-right-box-inner img {
    width: unset;
}

.launch-sec-right-box {
    position: relative;
    text-align: end;
}

.launch-sec-right-box-inner {
    background-color: #FFFFFF;
    padding: 16px 16px 1px 16px;
    box-shadow: 10px 10px 10px 0px rgba(0, 0, 0, 0.10196078431372549);
    position: absolute;
    top: 0;
    left: 0;
    width: 52%;
    text-align: start;
}

.launch-sec-right-box-inner p {
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    letter-spacing: 0.16px;
    color: var(--black-color);
    margin-top: 15px;
}

.launch-btn-flex {
    display: flex;
    gap: 15px;
    align-items: center;
}

.launch-sec-left-box2 img {
    transform: scaleX(1);
    height: 336px;
    object-fit: cover;
}

.launch-sec-left-box2 .launch-sec-left-box-inner img {
    height: unset;
}

/* launch sec css end */

/* business-owner sec css start */
.business-owner-boxes img {
    width: 100%;
}

.business-owner-boxes-content {
    padding: 21px 21px 22px 21px;
    background-color: #F4F6F8;
    height: 310px;
    position: relative;
    border: 1px dashed #a6a6a6;
    border-radius: 10px;
}

.business-owner-boxes-content p {
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: -1.28px;
    color: #000000;
}

.business-owner-boxes-content h4 {
    font-size: 24px;
    font-weight: 600;
    line-height: 56px;
    letter-spacing: -1.55px;
    color: #000000;
}

.business-owner-sec {
    padding: 60px 0px;
}

.business-owner-boxes-content span {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -1.55px;
    color: #545A64;
}

.business-owner-para-box {
    margin: 50px 0px 22px;
}

.business-owner-para-box p {
    margin: 0;
    font-size: 14px;
    font-weight: 400;
    color: #545A64;
    line-height: 25px;
}

/* business-owner sec css end */

/* footer sec css start */
.footer {
    background-color: #363636;
    padding: 60px 0px 20px;
}

.footer-top h4 {
    text-align: center;
    font-size: 18px;
    font-weight: 400;
    color: var(--white-color);
    margin-bottom: 15px;
}

.footer-top h3 {
    font-size: 24px;
    font-weight: 700;
    line-height: 55.2px;
    color: var(--white-color);
    text-align: center;
}

.footer-top form {
    position: relative;
    width: 60%;
    margin: 30px auto 0 auto;
}

.footer-top form button {
    position: absolute;
    right: 0;
    background-color: transparent;
    border: none;
    outline: none;
    bottom: 15px;
    font-size: 18px;
    font-weight: 600;
    color: var(--white-color);
}

.footer-top form input {
    width: 100%;
    height: 50px;
    border-left: unset;
    border-right: unset;
    border-top: unset;
    border-bottom: 2px solid var(--white-color);
    background-color: transparent;
    outline: none;
    color: var(--white-color);
}

.footer-top form input::placeholder {
    color: #898f99;
}

.footer-linking h4 {
    font-size: 18px;
    font-weight: 700;
    line-height: 27px;
    letter-spacing: -0.4px;
    color: var(--white-color);
    margin-bottom: 20px;
}

.footer-linking ul {
    list-style-type: none;
    line-height: 32px;
}

.footer-linking ul li a {
    color: var(--white-color);
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    transition: all ease 0.3s;
}

.footer-linking ul li a:hover {
    color: var(--theme-color);
}

.footer-linking-social {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.footer-linking-social ul {
    margin-top: 20px;
    display: flex;
    align-items: center;
}

.footer-linking-social ul li a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    transition: all ease 0.3s;
    color: var(--white-color);
}

.footer-linking-social ul li a:hover {
    color: var(--white-color);
    background-color: var(--theme-color);
}

.footer-all-right {
    border-top: 1px solid #6F7782;
    padding-top: 40px;
    margin-top: 40px;
}

.footer-all-right span {
    color: var(--white-color);
    font-size: 15px;
    font-weight: 400;
}

.footer-all-right p {
    color: var(--white-color);
    font-size: 15px;
    font-weight: 400;
    margin: 25px 0 40px;
}

.footer-all-right a {
    text-decoration: underline;
    color: var(--white-color);
    font-size: 15px;
    font-weight: 400;
}

.footer-all-right-chat {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.footer-all-right-chat a {
    background: #252424;
    border-radius: 100px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    text-decoration: none;
}

.footer-all-right-chat a i {
    color: #fff;
}

.go-to-top {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -100px;
}

.go-to-top a {
    width: 90px;
    display: flex;
    height: 90px;
    background: var(--theme-color);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    font-size: 18px;
    font-weight: 600;
    color: var(--white-color);
    text-decoration: none;
}

.footer-top {
    margin-top: 40px;
}

/* footer sec css end */
.purple-btn:hover {
    background-color: #363636;
}

.outline-btn:hover {
    background-color: #C6CCD5;
}

/* Comapny */

.home-banner-card.company img {
    width: 418px;
}

.home-banner-card.company {
    padding: 0;
    width: fit-content;
}

.biz {
    margin: 0;
    padding: 0;
    font-family: "Work Sans", sans-serif;
    background-color: #363636;
    color: #fff;
}

.bizturo-section {
    padding: 40px 20px;
    display: flex;
    justify-content: center;
}

.bizturo-container {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    width: 100%;
}

.bizturo-block {
    flex: 1;
    background-color: transparent;
    padding: 20px;

}

.bizturo-title {
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #fff;
}

.bizturo-text {
    font-size: 16px;
    line-height: 1.6;
    color: #fff;
}

.space {
    background-color: #fff;
    height: 108px;
}

.clientForm {
    margin: 0;
    padding: 0;
    font-family: "Work Sans", sans-serif;
    background-color: #363636;
    color: #fff;
    margin-bottom: 90px;

}

.clientForm .form-container {
    max-width: 1200px;
    margin: auto;
    padding: 80px 20px;
}

.clientForm h1 {
    text-align: center;
    font-size: 45px;
    margin-bottom: 40px;
    font-weight: 600;
}

.clientForm h2 {
    margin-top: 0px;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.clientForm form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.clientForm .form-section {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.clientForm .form-group {
    flex: 1 1 45%;
    display: flex;
    flex-direction: column;
}

.clientForm label {
    margin-bottom: 8px;
    font-weight: bold;
}

.clientForm input[type="text"],
.clientForm input[type="email"],
.clientForm input[type="number"],
.clientForm textarea {
    padding: 10px;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
}

.clientForm input[type="submit"] {
    width: 200px;
    padding: 12px;
    font-size: 1rem;
    background-color: #6a5acd;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

.clientForm input[type="submit"]:hover {
    background-color: #5741c3;
}

@media (max-width: 768px) {
    .clientForm .form-group {
        flex: 1 1 100%;
    }
}

.clientForm .form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    resize: vertical;
}

/* packaegs */
.packageSec {
    font-family: "Work Sans", sans-serif;
    background: #fff;
    color: #222;
    margin: 0;
    padding: 80px 20px;
}

.packageSec h1 {
    text-align: center;
    font-size: 48px;
    font-weight: 600;
}

.packageSec p.subtitle {
    text-align: center;
    margin-bottom: 40px;
    font-size: 18px;
}

.packageSec .highlight {
    font-weight: bold;
}

.packages {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.package {
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 30px;
    width: 366px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.package h2 {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 15px;
}

.package ul {
    list-style: none;
    padding: 0;
}

.package li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.package li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #333;
}

.sub-list {
    margin-left: 20px;
    list-style: circle;
}

.premium {
    border: 2px solid #7a5af5;
}

@media (max-width: 1000px) {
    .packages {
        flex-direction: column;
        align-items: center;
    }
}

/* faq */
.faqSec {
    font-family: "Work Sans", sans-serif;
    background: #fff;
    margin: 40px;
    margin-bottom: 60px;
}

.faq-wrapper {
    /* max-width: 1100px; */
    margin: auto;
    display: flex;
    gap: 40px;
}

.faq-title {
    flex: 1;
    font-size: 36px;
    font-weight: 700;
    color: #212121;
}

.faq-container {
    flex: 2;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
}

.faq-item {
    border-top: 1px solid #e5e7eb;
    background: #fff;
}

.faq-item:first-child {
    border-top: none;
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #111827;
}

.faq-answer {
    padding: 20px;
    display: none;
    font-size: 16px;
    color: #374151;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item .icon {
    font-size: 20px;
    color: #6b7280;
    transition: transform 0.2s;
}

.faq-item.active .icon {
    transform: rotate(180deg);
}

/* about */

section.home-banner.about {
    padding: 37px 59px;
}

.team-section {
    background-color: #2d2d2d;
    color: #ffffff;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    height: 306px;
    margin-bottom: 80px;
}

.team-image {
    flex: 1;
    max-width: 600px;
    z-index: 4;
    bottom: 38px;
}

.team-image img {
    width: 100%;
    /* height: auto; */
    /* display: block; */
    /* z-index: 10; */
    position: relative;
    margin-bottom: 97px;
}

.team-text {
    flex: 1;
    max-width: 1083px;
    font-size: 18px;
    line-height: 1.8;
}

@media (max-width: 992px) {
    .team-section {
        flex-direction: column;
        text-align: center;
    }

    .team-text {
        padding-top: 20px;
    }
}

img.img-fluid.men {
    transform-origin: 0;
    transition: none;
    transform: none;
    height: 430px;
}

.service {
    font-family: "Work Sans", sans-serif;
    line-height: 1.6;

    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.services-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    flex: 1;
    min-width: 300px;
    padding: 30px;

}

.stat-number {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 10px;
    font-family: "Work Sans", sans-serif;
}


.service h2 {
    font-size: 24px;
    margin-top: 0;
    margin-bottom: 20px;
    font-weight: 600;
    font-family: "Work Sans", sans-serif;
}

.service p {
    font-size: 18px;
    color: #555;
    font-weight: 400;
    font-family: "Work Sans", Sans-serif;
}

@media (max-width: 768px) {
    .services-container {
        flex-direction: column;
    }

    .service-card {
        min-width: 100%;
    }
}

/* incorporate form */

.launch-sec-form.homeForm form select {
    width: 35%;
}

.launch-sec-form.homeForm form a {
    padding: 12px 14px;
    border-radius: 8px;
    outline: none;
    border: none;
    font-size: 16px;
    font-weight: 500;
    color: var(--white-color);
    background-color: var(--theme-color);
}

.incorporate {
    font-family: 'Segoe UI', sans-serif;
    background-color: #f5f7ff;
    margin: 0;
    padding: 2rem;
}


.incorporate .selector {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.incorporate .selector div {
    flex: 1;
}

.incorporate label {
    font-weight: bold;
    display: block;
    margin-bottom: 0.5rem;
}

.incorporate select {
    width: 100%;
    padding: 0.7rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.incorporate .features {
    margin-bottom: 2rem;
}

.incorporate .features h3 {
    margin-bottom: 1rem;
}

.incorporate .features ul {
    list-style: none;
    padding-left: 0;
}

.incorporate .features li {
    background: #f0f4ff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    margin: 0.3rem 0;
    display: inline-block;
    font-size: 0.9rem;
}

.incorporate .packages {
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    flex-wrap: wrap;
}

.incorporate .card {
    background: white;
    flex: 1;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    position: relative;
    min-width: 280px;
}

.incorporate .card h4 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.incorporate .card .price {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.2rem;
}

.incorporate .card .tag {
    font-size: 0.8rem;
    font-weight: bold;
    color: white;
    background: #6e4ff7;
    padding: 0.2rem 0.5rem;
    border-radius: 12px;
    position: absolute;
    top: -10px;
    right: -10px;
}

.incorporate .card.premium .tag {
    background: #ff3d00;
}

.incorporate .card .desc {
    font-size: 0.9rem;
    margin: 1rem 0;
}

.incorporate .card a {
    width: 100%;
    padding: 0.7rem;
    border: none;
    background-color: #6e4ff7;
    color: white;
    font-size: 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.incorporate .card.premium button {
    background-color: #ff3d00;
}

.incorporate .card button:hover {
    background-color: #6e4ff7;
}

.incorporate .card.premium button:hover {
    background-color: #cc3200;
}

/* compliance */
.business {
    background-color: var(--gray-color);
    padding: 45px 0px 60px;
}

.business .container {
    background-color: #fff;
    padding: 30px;
    border-radius: 15px;
}

.home-banner-content h6 {
    font-size: 22px;
    font-weight: 600;
    letter-spacing: -2px;
    color: var(--gray-color);
}

.why-sec-content h6 {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: -2px;
    color: var(--gray-color);
    margin: 20px 0px;
    font-family: "Work Sans", Sans-serif;
}

.why-sec-box ul {
    margin-left: 40px;
    line-height: 27px;
}

.tax-box {
    font-size: 18px;
    color: var(--black-color);
}

section.business.tax .container {
    background-color: #fff;
    padding: 40px;
    border-radius: 15px;
}

/* Reach Form */

.reachform {
    margin: 0;
    padding: 41px 0px;
    background-color: var(--gray-color);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #fff;
}

.reachform .form-container {
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 20px;
}

.reachform h1 {
    text-align: center;
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 40px;
}

.reachform form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.reachform .form-row {
    width: 100%;
}

.reachform .two-column {
    display: flex;
    gap: 20px;
}

.reachform .two-column input {
    flex: 1;
}

.reachform input,
textarea {
    width: 100%;
    padding: 10px 0;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #ccc;
    color: #fff;
    font-size: 1.1rem;
    outline: none;
}

.reachform textarea {
    resize: vertical;
    min-height: 100px;
}

.reachform button {
    background-color: #6c4eff;
    color: white;
    padding: 12px 40px;
    font-size: 1.2rem;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.reachform button:hover {
    background-color: #563bdb;
}

.reachform .center {
    display: flex;
    justify-content: center;
}

/* contact */
.contactMap {
    padding: 105px 168px;
    background: #fff;
}

.contactMap .contact-info-section {
    display: flex;
    flex-wrap: wrap;
    padding: 40px 60px;
    gap: 40px;
    align-items: flex-start;
}

.contactMap .info-content {
    flex: 1;
    min-width: 300px;
}

.contactMap .map-container {
    flex: 1;
    min-width: 300px;
}

.contactMap h2 {
    font-size: 57px;
    font-weight: 600;
    margin-bottom: 30px;
    color: #333;
    font-family: 'Work Sans';
}

.contactMap .info-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.contactMap .info-column {
    flex: 1;
    min-width: 250px;
}

.contactMap .info-block {
    margin-bottom: 30px;
}

.contactMap .info-block h4 {
    font-size: 23px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: #333;
    line-height: 22px;
}

.contactMap .info-block p {
    font-size: 1rem;
    color: #000;
    margin: 0;
}

.contactMap .social-icons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.contactMap .social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background-color: #6c4eff;
    color: #fff;
    border-radius: 50%;
    text-decoration: none;
    transition: background 0.3s ease;
    font-size: 1rem;
}

.contactMap .social-icons a:hover {
    background-color: #563bdb;
}

/* Checkout */


.header__title {
    margin-bottom: 30px;
    font-size: 2.1rem;
}

.content {
    width: 95%;
    margin: 0 auto 50px;
}

.content__title {
    margin-bottom: 40px;
    font-size: 20px;
    text-align: center;
}

.content__title--m-sm {
    margin-bottom: 10px;
}

.multisteps-form__progress {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
}

.multisteps-form__progress-btn {
    transition-property: all;
    transition-duration: 0.15s;
    transition-timing-function: linear;
    transition-delay: 0s;
    position: relative;
    padding-top: 20px;
    color: rgba(108, 117, 125, 0.7);
    text-indent: -9999px;
    border: none;
    background-color: transparent;
    outline: none !important;
    cursor: pointer;
}

@media (min-width: 500px) {
    .multisteps-form__progress-btn {
        text-indent: 0;
    }
}

.multisteps-form__progress-btn:before {
    position: absolute;
    top: 0;
    left: 50%;
    display: block;
    width: 13px;
    height: 13px;
    content: '';
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    transition: all 0.15s linear 0s, -webkit-transform 0.15s cubic-bezier(0.05, 1.09, 0.16, 1.4) 0s;
    transition: all 0.15s linear 0s, transform 0.15s cubic-bezier(0.05, 1.09, 0.16, 1.4) 0s;
    transition: all 0.15s linear 0s, transform 0.15s cubic-bezier(0.05, 1.09, 0.16, 1.4) 0s, -webkit-transform 0.15s cubic-bezier(0.05, 1.09, 0.16, 1.4) 0s;
    border: 2px solid currentColor;
    border-radius: 50%;
    background-color: #fff;
    box-sizing: border-box;
    z-index: 3;
}

.multisteps-form__progress-btn:after {
    position: absolute;
    top: 5px;
    left: calc(-50% - 13px / 2);
    transition-property: all;
    transition-duration: 0.15s;
    transition-timing-function: linear;
    transition-delay: 0s;
    display: block;
    width: 100%;
    height: 2px;
    content: '';
    background-color: currentColor;
    z-index: 1;
}

.multisteps-form__progress-btn:first-child:after {
    display: none;
}

.multisteps-form__progress-btn.js-active {
    color: #6e4ff7;
}

.multisteps-form__progress-btn.js-active:before {
    -webkit-transform: translateX(-50%) scale(1.2);
    transform: translateX(-50%) scale(1.2);
    background-color: currentColor;
}

.multisteps-form__form {
    position: relative;
}

.multisteps-form__panel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    opacity: 0;
    visibility: hidden;
}

.multisteps-form__panel.js-active {
    height: auto;
    opacity: 1;
    visibility: visible;
}

.multisteps-form__panel[data-animation="fade"] {
    -webkit-animation: fadeInRight 0.6s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
    animation: fadeInRight 0.6s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}

.multisteps-form__panel[data-animation="fade"].js-active {
    -webkit-animation: fadeInLeft 0.6s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
    animation: fadeInLeft 0.6s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}

.fadeInRight {
    -webkit-animation: fade-in-right 0.6s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
    animation: fade-in-right 0.6s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}

@-webkit-keyframes fadeInRight {
    0% {
        -webkit-transform: translateX(50px);
        transform: translateX(50px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeInRight {
    0% {
        -webkit-transform: translateX(50px);
        transform: translateX(50px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1;
    }
}

.fadeInLeft {
    -webkit-animation: fade-in-left 0.6s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
    animation: fade-in-left 0.6s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}

@-webkit-keyframes fadeInLeft {
    0% {
        -webkit-transform: translateX(-50px);
        transform: translateX(-50px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeInLeft {
    0% {
        -webkit-transform: translateX(-50px);
        transform: translateX(-50px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1;
    }
}

.header__title {
    margin-bottom: 30px;
    font-size: 2.1rem;
    max-width: 600px;
    margin: 50px auto;
    text-align: center;
}

.home-banner-content .btn {
    padding: 12px 14px;
    border-radius: 8px;
    outline: none;
    border: none;
    font-size: 16px;
    font-weight: 500;
    color: var(--white-color);
    background-color: var(--theme-color);
}

.home-banner-content .btn:hover {
    color: var(--white-color);
    background-color: var(--theme-color);
}

.tick {
    font-size: 80px;
    text-align: center;
    color: var(--theme-color);

}

.multisteps-form__progress-btn {
    pointer-events: none;
}

.error {
    color: red;
    font-size: 14px;
    margin-top: 3px;
}

.orderSum {
    border: 1px solid #6e4ff7;
    /* width: fit-content; */
    background-color: #e9e5fe;
    padding: 12px 15px;
    margin-bottom: 11px;
    line-height: 7px;
}

.orderSum h6 {
    font-size: 21px;
    font-weight: 500;
}

.orderSum p {
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.orderSum h5 {
    border-top: 1px solid black;
    padding-top: 6px;
    font-size: 17px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* login */
.loginSec {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 70vh;
    /* Background gradasi futuristik */
}

.login-container {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 330px;

}

.login-form {
    padding: 20px;
    box-sizing: border-box;
}

.input-field {
    width: 100%;
    padding: 12px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-bottom: 20px;
    background-color: #fff;
    color: #333;
    outline: none;
    transition: border-color 0.3s, background-color 0.3s;
}

.input-field:hover,
.input-field:focus {
    border-color: #6861ce;
}

.button-container {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

.login-button,
.register-button {
    flex: 1;
    padding: 12px;
    box-sizing: border-box;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s, border-color 0.3s;
}

.login-button {
    background-color: #6861ce;
    color: #fff;
    margin-left: 5px;
}

.login-button:hover {
    background-color: #6861ce;
}


@media screen and (max-width: 600px) {
    .login-container {
        width: 90%;
    }
}


.loginLogo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 30px;
}


/* user Dashboard */

#vertical-tab {
    padding: 60px 0;
}

#vertical-tab .vertical-tab-wrapper {
    box-shadow: 0px 4px 6px -1px rgba(0, 0, 0, 0.10196078431372549);
    background: #f6f6f6;
}

#vertical-tab .vertical-tab-wrapper .vertical-tab .each-tab {
    padding: 18px 30px;
    background-color: #6e4ff7;
    border-bottom: 1px solid #fff;
    position: relative;
    cursor: pointer;
    font-size: 0;
}

#vertical-tab .vertical-tab-wrapper .vertical-tab .each-tab .title {
    font-size: 16px;
    font-family: inherit;
    font-weight: 600;
    display: inline-block;
    vertical-align: middle;
    width: 70%;
    color: #f6f6f6;
}

#vertical-tab .vertical-tab-wrapper .vertical-tab .each-tab.active {
    background-color: #f6f6f6;
}

#vertical-tab .vertical-tab-wrapper .vertical-tab .each-tab.active .title {
    color: #363636;
}

#vertical-tab .vertical-tab-wrapper .vertical-tab-content {
    display: none;
    padding: 35px 45px 15px 25px;
}

#vertical-tab .vertical-tab-wrapper .vertical-tab-content h3 {
    font-size: 2.25rem;
    font-weight: 500;
    line-height: 1;
    color: #363636;
    margin: 0 0 30px;
}

#vertical-tab .vertical-tab-wrapper .vertical-tab-content p {
    font-size: 1.125rem;
    font-weight: 400;
    color: #363636;
    line-height: 1.4;
    font-size: 1rem;
    color: #333333;
    margin: 0 0 30px;
}

#vertical-tab .vertical-tab-wrapper .vertical-tab-content.active {
    display: block;
}

#vertical-tab .mobile-vertical-tab {
    display: none;
    position: relative;
    box-shadow: 0px 0px 5.88px 0.12px rgba(0, 0, 0, 0.14);
}

#vertical-tab .mobile-vertical-tab .vertical-tab-header .each-tab-header .each-tab {
    padding: 16px;
    background-color: #6e4ff7;
    border-bottom: 1px solid #fff;
    position: relative;
    text-align: center;
}

#vertical-tab .mobile-vertical-tab .vertical-tab-header .each-tab-header .each-tab .title {
    font-size: 1.375rem;
    font-weight: 600;
    line-height: 1.1;
    color: #f7dd4b;
}

section#vertical-tab h4 {
    text-align: center;
    padding-bottom: 13px;
    font-size: 52px;
    font-weight: 600;
    color: #363636;
}

.profile-card {
    max-width: 800px;
    margin: auto;
    border-radius: 0.5rem;
    box-shadow: 0 0 0 1px #e5e7eb;
    padding: 1.5rem;
}

.top-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #e5e7eb;

}

.avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.user-details {
    flex-grow: 1;
    /* margin-left: 1rem; */
}

.user-details h2 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.role,
.location {
    color: #6b7280;
    font-size: 0.875rem;
}

.edit-btn {
    background: #f3f4f6;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    cursor: pointer;
    color: #374151;
}

.edit-btn:hover {
    background-color: #e5e7eb;
}

.personal-info {
    padding-top: 1rem;
}

.info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
}

.info-header h3 {
    font-size: 1rem;
    font-weight: 600;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.25rem;
}

.label {
    font-size: 0.75rem;
    color: #6b7280;
    margin-bottom: 0.25rem;
}

p.role {
    margin-bottom: 0px !important;
}

p.label {
    margin-bottom: 0px !important;
}


.multisteps-form {
    position: relative;
    /* So loader is positioned relative to this container */
}

#formLoader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.6);
    /* semi-transparent white */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    /* make sure it's on top */
}

#formLoader .spinner {
    font-size: 3rem;
    color: #6e4ff7;
}

#package {
    position: relative;
}

#loaderPack {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.6);
    /* semi-transparent white */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

#loaderPack .spinner {
    font-size: 3rem;
    color: #6e4ff7;
}

/* folder */

.folderBtn {
    padding: 12px 14px;
    border-radius: 8px;
    outline: none;
    border: none;
    font-size: 16px;
    font-weight: 500;
    color: var(--white-color);
    background-color: var(--theme-color);
    float: right;
}

.folderBtn:hover {
    color: #fff;
}

.folder_listing {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 13px;
    flex-wrap: wrap;
}

.folderName {
    padding: 20px;
    border-radius: 10px;
    width: 100px;
    background-color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 90px;
}

.folderName i {
    color: #f8bb3f;
    font-size: 24px;
}

.folderName p {
    text-decoration: none;
    color: black;
    padding-top: 7px;
}

.subBtn {
    padding: 7px 11px;
    border-radius: 5px;
    outline: none;
    border: none;
    font-size: 16px;
    font-weight: 500;
    color: var(--white-color);
    background-color: var(--theme-color);
}

.subBtn:hover {
    color: #fff;
}

.bck {
    text-decoration: none;
    color: #000;
}

.bck:hover {
    text-decoration: none;
    color: var(--theme-color);
}

.add {
    text-decoration: none;
    color: var(--theme-color);
    cursor: pointer;
}

.add:hover {
    text-decoration: none;
    color: #000
}

.headFile {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

.attorneys-team-section {
    height: auto;
}

.attorneys-team-section ul li {
    font-size: 16px;
    list-style: none;
    line-height: 2;
}

.attorneys-team-section ul li:before {
    content: '✓';
    position: absolute;
    left: 0;
    font-weight: 700;
}

.attorneys-business-plan {
    background-color: #6E4FF7;
}

.legalZoom-business .e-fas-money-check-alt {
    width: 10%;
    fill: green;
}

.legalZoom-business .e-fas-thumbs-up {
    width: 10%;
    fill: #FF976A;
}

.legalZoom-business .e-fas-user {
    width: 10%;
    fill: #11BBC2;
}

.attorneys-faq {
    display: block;
}

.pricing-section {
    /* max-width: 1175px; */
    /* margin: 50px auto; */
    /* padding: 20px; */
    text-align: center;
}

.pricing-section .cards-container {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.pricing-section .card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    padding: 25px 20px;
    width: 324px;
    position: relative;
    text-align: left;
}

.pricing-section .card h2 {
    font-size: 22px;
    margin-bottom: 10px;
}

.pricing-section .price {
    font-size: 28px;
    font-weight: 700;
    margin: 0;
}

.pricing-section .price span {
    font-size: 14px;
    color: #555;
}

.pricing-section .note {
    color: #777;
    font-size: 13px;
    margin-bottom: 10px;
}

.pricing-section .process-time {
    background-color: #eee;
    border-radius: 6px;
    padding: 8px;
    font-size: 13px;
    margin-bottom: 15px;
}

.pricing-section .process-time.lightning {
    background-color: #f2f7ff;
    color: #1a73e8;
}

.pricing-section ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.pricing-section ul li {
    margin: 8px 0;
    font-size: 15px;
}

.pricing-section .disabled {
    color: #aaa;
    text-decoration: line-through;
}

.pricing-section .outline-btn {
    background-color: #f3f3f3;
    border: none;
    padding: 12px;
    border-radius: 5px;
    font-size: 15px;
    width: 100%;
    cursor: pointer;
}

.pricing-section .outline-btn.dark {
    background-color: #000;
    color: #fff !important;
}

.pricing-section .popular {
    border: 2px solid #6a5acd;
    position: relative;
}

.pricing-section .popular .badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #6a5acd;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    padding: 4px 10px;
    border-radius: 12px;
}

/* copy */


.headingCopy {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 2rem;
    text-align: center;
    color: #fff;
}

.copy {
    margin: 0 auto;
    display: table;
}

.copy .card {
    background-color: white;
    color: #333;
    border-radius: 12px;
    padding: 2rem;
    max-width: 531px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.copy .card h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.copy .price {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 1.2rem;
}

.copy .small {
    font-size: 0.9rem;
    color: #666;
    font-weight: normal;
}

.copy .card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.copy .card li {
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.4;
    display: flex;
    align-items: flex-start;
}

/* steps */

.steps-section {
    padding: 60px 20px;
    text-align: center;
}



.steps-section h1 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #363636;
}

.subtitle {
    /* max-width: 750px; */
    margin: 0 auto 50px;
    font-size: 1rem;
    line-height: 1.6;
    color: #444;
}

.steps {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.step {
    flex: 1 1 30%;
    min-width: 250px;
}

.step-number {
    color: #363636;
    margin-bottom: 10px;
    font-size: 80px;
    font-weight: 400;
    text-align: justify;
}

.step h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    text-align: left;
    color: #363636;
}

.step p {
    font-size: 16px;
    color: #555;
    line-height: 1.5;
    text-align: left;
}

.image-1.trade img {
    border-radius: 0px;
    height: 485px;
    width: 429px;
}

.image-1.biz img {
    border-radius: 0px;
    height: 330px;
    width: 430px;
}

.legalHead {
    font-family: "Work Sans", Sans-serif;
    font-size: 40px;
    font-weight: 600;
    color: #363636;
    text-align: center;

}

img.trustpilot-img {
    width: 120px;
    height: 80px;
    margin-top: -10px;
    margin-left: -7px;
}

.trustpilot-link {
    display: inline-block;
    position: absolute;
    bottom: 5px;
    left: 20px;
}

.business-owner-content {
    margin-bottom: 20px;
}

.search-overlay {
    position: fixed;
    top: 90px;
    left: 0;
    width: 100%;
    height: calc(100% - 90px);
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: flex-start;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.search-container {
    width: 100%;
    border-radius: 0px 0px 10px 10px;
    box-shadow: 0 11px 10px rgba(0, 0, 0, 0.3);
    transform: translateY(-20px);
    transition: transform 0.3s ease;
    background: white;
    border-top: 1px solid #adadad;
}

.search-overlay.active .search-container {
    transform: translateY(0);
}

.search-container input {
    border: 0;
    outline: 0;
    font-size: 16px;
    width: 100%;
    padding: 15px 20px;
    height: 90px;
    background: transparent;
}