@import url('https://fonts.googleapis.com/css2?family=Encode+Sans:wght@100..900&display=swap');

@font-face {
    font-family: 'MarsCondensed';
    src: url('../font/marscondensed-regular-TRIAL.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

body{
      font-family: "Encode Sans", sans-serif !important ;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

h1 {
    font-family: "Encode Sans", sans-serif;
    font-weight: 700 !important;
    text-transform: uppercase !important;
}

.btn {
    border-radius: 2px !important;
}

.web-heading {
    margin-bottom: 1rem;
}

.web-heading h2 {
    font-size: 3rem;
    font-weight: 700;
}

.web-heading h3 {
    text-transform: uppercase;
    font-weight: 700;
}

.web-heading h4 {
    font-weight: 700;
    font-size: 1.5rem;
}

.web-heading h5 {
    font-weight: 700;
    font-size: 1.875rem;
}

.web-heading p {
    color: var(--bs-secondary);
}

.book-appointment {
    position: fixed;
    -webkit-transform: rotate(-90deg);
    left: -100px;
    z-index: 1000;
    top: 50%;
}


.book-appointment .btn {
    border-radius: 0;
    padding: 10px 40px;
    color: var(--bs-primary-1);
}
.app-navbar {
    position: sticky;
    top: 0;
}

/* app-navbar */
.app-navbar .connect-btn {
    display: flex;
    gap: 0.625rem;
}

.app-navbar .connect-btn .btn {
    border-radius: 2px;
    text-wrap: nowrap;
    color: var(--bs-primary-1);
    font-size: 14px;
        border-color: var(--bs-primary-1);
    display: flex ;
    font-weight: 500;
    align-items: center;
    padding: 0.5rem 1rem;
}


.app-navbar form .form-control {
    border-radius: 2px !important;
}

.app-navbar form .form-control:focus {
    box-shadow: none !important;
}

.app-navbar .navbar-nav .nav-item .nav-link {
    color: var(--bs-primary-1);
    font-weight: 500;
    font-size: 14px;
}

/* DROPDOWN BUTTON */
.app-navbar .navbar .navbar-nav .dropdown button {
    background: none;
    border: none;
    display: flex;
    font-size: 14px;
    align-items: center;
    font-weight: 500;
}

.app-navbar .navbar .navbar-nav .dropdown button i {
    font-size: 1.5rem;
}

/* MAIN DROPDOWN */
.app-navbar .navbar .navbar-nav .dropdown {
    position: relative;
}

.app-navbar .navbar .dropdown-content {
    display: none;
    position: absolute;
    top: 25px;
    left: 0;
    background: var(--bs-white);
    box-shadow: var(--bs-box-shadow-sm);
    z-index: 1000;
    min-width: 260px;
    border-radius: 6px;
    padding: 4px 0;
}

/* SHOW MAIN DROPDOWN */
.app-navbar .navbar .dropdown:hover .dropdown-content,
.app-navbar .navbar .dropdown-content:hover {
    display: block;
}

/* SUB-DROPDOWN (LEVEL 1) */
.app-navbar .navbar .dropdown-content .sub-dropdown {
    position: relative;
    border-radius: 6px;
    /* Ensure radius applies */
    transition: background 0.2s ease;
}

.app-navbar .navbar .dropdown-content .sub-dropdown a {
    text-decoration: none;
    color: var(--bs-dark);
}

.app-navbar .navbar .dropdown-content .sub-dropdown>span {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
    cursor: pointer;
    color: var(--bs-dark);
    font-size: 14px;
    text-wrap: nowrap;
    border-radius: 6px;
    /* Ensure span corners round on hover */
}

.app-navbar .navbar .dropdown-content .sub-dropdown:hover {
    background-color: var(--bs-light);
}

/* SUB-DROPDOWN CONTENT (LEVEL 2) */
.app-navbar .navbar .dropdown-content .sub-dropdown-content {
    display: none;
    position: absolute;
    left: 100%;
    top: 0;
    background: var(--bs-white);
    box-shadow: var(--bs-box-shadow-sm);
    z-index: 1000;
    min-width: 240px;
    border-radius: 6px;
    padding: 4px 0;
}

/* SHOW ON HOVER */
.app-navbar .navbar .dropdown-content .sub-dropdown:hover>.sub-dropdown-content,
.app-navbar .navbar .dropdown-content .sub-dropdown-content:hover {
    display: block;
}

/* LINKS INSIDE SUB-DROPDOWN */
.app-navbar .navbar .dropdown-content .sub-dropdown-content a {
    display: block;
    padding: 10px 16px;
    text-decoration: none;
    color: var(--bs-dark);
    font-size: 14px;
    border-bottom: 1px solid #eee;
    text-wrap: nowrap;
    transition: background 0.2s ease;
}

.app-navbar .navbar .dropdown-content .sub-dropdown-content a:last-child {
    border-bottom: none;
}

.app-navbar .navbar .dropdown-content .sub-dropdown-content a:hover {
    background: var(--bs-light);
    border-radius: 0;
    /* Keep hover shape consistent */
}

/* marquee */
.news-marquee {
    background-color: var(--bs-primary-1);
    padding: 5px 0;
}

.news-marquee marquee {
    color: var(--bs-white);
    font-size: 14px;
    padding: 0;
    margin: 0;
}

/* end */
/* hero-section */
.hero-section {
    background-image: url(../img/hero-banner.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 3rem 0;
    position: relative;
}

.advisor-button {
    background-color: var(--bs-warning);
    margin: 1rem 0;
    border-radius: 30px;
    padding: 2px 25px 2px 2px;
    display: inline-flex;
    align-items: center;
    color: var(--bs-primary-1);
    text-decoration: none;
}

.advisor-button:hover {
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
}

.advisor-button .circle {
    width: 40px;
    height: 40px;
    margin-right: 10px;
    background-color: var(--bs-primary-1);
    border-radius: 50%;
}

.hero-section .carousel,
.hero-section .carousel-inner {
    position: unset !important;
}

.hero-section .carousel-indicators {
    transform: rotate(90deg);
    left: 300px;
    bottom: 300px !important;
}

.hero-section .carousel-indicators [data-bs-target] {
    height: 2px !important;
    width: 50px !important;
}

.hero-section .carousel-indicators .active {
    background-color: var(--bs-primary-1);
}

.hero-section .talk {
    display: flex;
    align-items: center;
}

.hero-section .talk a {
    border-radius: 30px;
    text-decoration: none;
    align-items: center;
    display: inline-block;
    color: var(--bs-primary-1);
    background-color: var(--bs-warning);
}

.hero-section .talk a span {
    width: 50px;
    height: 50px;
    display: inline-block;
    background-color: var(--bs-primary-1);
    border-radius: 50%;
}

.hero-section .card {
    border: 0 !important;
    border-radius: 0;
}

.hero-section .card .card-body {
    padding: 2rem;
}

.hero-section .card .card-body form p {
    color: var(--bs-secondary);
    text-decoration: line-through;
    margin-bottom: 0;
    font-size: 12px;
}

.hero-section .card .card-body form h5 {
    margin: 0;
    color: var(--bs-primary-1);
    font-weight: 700;
}

.hero-section .card .card-body form .form-check .form-check-input:focus {
    box-shadow: none;
    border-color: var(--bs-primary-1);
}

.hero-section .card .card-body form .form-check .form-check-input[type=checkbox] {
    border-color: var(--bs-primary-1);
    border-radius: 2px !important;
    border-width: 2px;
}

.hero-section .card .card-body .card-title {
    color: var(--bs-primary-1);
    margin-bottom: 0;
    text-transform: capitalize;
    font-weight: 700;
}

.hero-section .card .card-body .card-text {
    margin: 1rem 0;
    font-weight: 400;
}

.hero-section .card .card-body form .form-control {
    border-radius: 0 !important;
    background-color: #EBF0F5;
}

.hero-section .card .card-body form .form-control:focus {
    box-shadow: none;
    border-color: var(--bs-primary-1);
}

.hero-section .card .card-body form .form-check-label {
    color: var(--bs-secondary);
}

.hero-section .card .card-body form .btn {
    width: 100%;
    border-radius: 0px;
}

.hero-section h1 {
    color: var(--bs-primary-1);
    font-size: 4rem;

}

.hero-section ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0px;
    gap: 10px;
    display: flex;
}

.hero-section ul li a {
    color: var(--bs-secondary);
    border: 1px solid var(--bs-secondary);
    padding: 5px;
    font-size: 14px;
    text-decoration: none;
    border-radius: 2px;
}

.hero-section .input-simple {
    font-size: 16px;
    line-height: 1.5;
    border: none;
    background: var(--bs-white);
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'><path fill='%23838D99' d='M13.22 14.63a8 8 0 1 1 1.41-1.41l4.29 4.29a1 1 0 1 1-1.41 1.41l-4.29-4.29zm-.66-2.07a6 6 0 1 0-8.49-8.49 6 6 0 0 0 8.49 8.49z'></path></svg>");
    background-repeat: no-repeat;
    background-position: 10px 10px;
    background-size: 20px 20px;
    border: 1px solid var(--bs-secondary);
    width: 100%;
    border-radius: 2px;
    padding: .5em 1em .5em 2.5em;
}

/* counter-section */
.counter-section {
    padding: 2rem 0;
    background-color: var(--bs-primary-1);
}

.counter-section ul {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 10px;
    padding: 0;
}

.counter-section ul li {
    color: var(--bs-white);
    font-size: 18px;
    text-transform: capitalize;
    font-weight: 600;
}

/* end */
/* our-services */
.our-services {
    margin: 3rem 0;
}

.our-services .web-heading h2 {
    text-align: center;
}

.our-services .nav-pills {
    justify-content: center;
    margin: 1.5rem 0;
    gap: 10px;
}

.our-services .nav-pills .nav-link {
    border: 1px solid var(--bs-secondary);
    color: var(--bs-dark);
    border-radius: 2px;
    text-wrap: nowrap !important;
}

.our-services .tab-content .tab-pane .sub-tab .nav-pills {
    justify-content: start !important;
}

.our-services .tab-content .tab-pane .sub-tab .tab-content .tab-pane .card {
    border: 0;
    transition: all ease .5s;
}

.our-services .tab-content .tab-pane .sub-tab .tab-content .tab-pane .card:hover {
    box-shadow: 0px 4px 20px 0px #00000040;
}

.our-services .tab-content .tab-pane .sub-tab .tab-content .tab-pane .card .card-body ul {
    display: flex;
    padding: 0;
    list-style: none;
    gap: 10px;
    align-items: center;
}

/* .our-services .tab-content .tab-pane .sub-tab .tab-content .tab-pane .card .card-body .card-text {
    font-size: 12px;
} */

.our-services .tab-content .tab-pane .sub-tab .tab-content .tab-pane .card .card-body p strong {
    color: var(--bs-primary-1);
    font-weight: 600;
}

.our-services .tab-content .tab-pane .sub-tab .tab-content .tab-pane .card .card-body ul li img {
    width: 70px;
    height: 70px;
}

.our-services .tab-content .tab-pane .sub-tab .tab-content .tab-pane .card .card-body ul li p {
    margin: 0;
    color: var(--bs-secondary);
}

.our-services .tab-content .tab-pane .sub-tab .tab-content .tab-pane .card .card-body p:last-of-type {
    font-size: 12px;
}

.our-services .tab-content .tab-pane .sub-tab .tab-content .tab-pane .card .card-body span {
    text-decoration: line-through;
    font-size: 12px;
}

.our-services .tab-content .tab-pane .sub-tab .tab-content .tab-pane .card .card-body ul li .card-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--bs-primary-1);
      display: -webkit-box;
  -webkit-line-clamp: 2;   /* max 2 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
    text-transform: capitalize;
}
.our-services .tab-content .tab-pane .sub-tab .tab-content .tab-pane .card .card-body .card-text{
    display: -webkit-box;
  -webkit-line-clamp: 4;   /* max 4 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* .our-services .tab-content .tab-pane .sub-tab .tab-content .tab-pane .card {
    padding: 1rem;
} */

.our-services .tab-content .tab-pane .sub-tab .tab-content .tab-pane .card .card-footer {
    background-color: transparent;
    padding: 1rem;
    display: flex;
    border: 0;
    gap: 10px;
}

.our-services .tab-content .tab-pane .sub-tab .tab-content .tab-pane .card .card-footer .btn {
    width: 50%;
    border-radius: 2px;
}

.our-services .tab-content .tab-pane .sub-tab .tab-content .tab-pane .card .card-body .offer-batch {
    border: 1.5px dotted var(--bs-primary-1);
    display: inline-flex;
    padding: 10px;
}

.our-services .tab-content .tab-pane .sub-tab .tab-content .tab-pane .card .card-body .offer-batch p {
    margin: 0;
    color: var(--bs-primary-1);
    font-weight: 500;
}

/* trusted-business */
.trusted-business {
    padding: 3rem 0 5rem 0;
}

.trusted-business .web-heading {
    text-align: center;
}

.trusted-business h6 {
    font-size: 14px;
    font-weight: 500;
    margin: 0;
}

.trusted-business h5 {
    font-weight: 700;
    margin: 0;
}

.trusted-business h6 {
    font-weight: 600;
    font-size: 1rem;
}

.trusted-business span {
    font-size: 14px;
    color: var(--bs-secondary);
}

.trusted-business .reviews-star i {
    color: var(--bs-warning);
}

.trusted-business .carousel .carousel-inner .carousel-item .card {
    border: 0;
}

.trusted-business .carousel .carousel-inner .carousel-item .card .card-body .card-title {
    margin: .5rem 0;
}

.trusted-business .carousel .carousel-inner .carousel-item .card .card-body p {
    color: var(--bs-secondary);
    display: -webkit-box;
  -webkit-line-clamp: 5;   /* max 4 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.trusted-business .carousel .carousel-inner .carousel-item .card .card-body ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.trusted-business .carousel .carousel-inner .carousel-item .card .card-body ul li:first-of-type {
    background-color: var(--bs-primary);
    font-weight: 600;
    padding: 5px;
    border-radius: 2px;
    color: var(--bs-white);
}

.trusted-business .carousel-indicators {
    bottom: -50px !important;
}

.trusted-business .carousel-indicators [data-bs-target] {
    width: 60px !important;
    background-color: var(--bs-primary-1);
}

/* end */
.what-you-find {
    padding: 3rem 0;
}

.what-you-find h3 {
    font-weight: 700;
    text-transform: capitalize;
}

.what-you-find form .form-control {
    border-radius: 2px;
    border-color: var(--bs-primary-1);
}

.what-you-find form .form-control:focus {
    box-shadow: none;
}

.what-you-find .input-simple {
    font-size: 16px;
    line-height: 1.5;
    border: none;
    background: var(--bs-white);
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'><path fill='%23838D99' d='M13.22 14.63a8 8 0 1 1 1.41-1.41l4.29 4.29a1 1 0 1 1-1.41 1.41l-4.29-4.29zm-.66-2.07a6 6 0 1 0-8.49-8.49 6 6 0 0 0 8.49 8.49z'></path></svg>");
    background-repeat: no-repeat;
    background-position: 10px 10px;
    background-size: 20px 20px;
    border: 1px solid var(--bs-secondary);
    width: 100%;
    border-radius: 2px;
    padding: .5em 1em .5em 2.5em;
}

/* start-operate */
.start-oprate {
    background-image: url(../img/Vector.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    padding: 4rem 0 4rem 0;
}

.start-oprate h1 {
    font-size: 30px;
    font-weight: 700;
}

.start-oprate .card {
    border: 0;
}

.start-oprate .card .card-body {
    padding: 2rem;
}

.start-oprate .card .card-body h2 {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 2.5rem;
}

.start-oprate .card .card-body .card-text {
    color: var(--bs-secondary);
}

.start-oprate .card .card-body .btn {
    border-radius: 0px;
    padding: 8px 30px;
}

/* our-happy-client */
.our-happy-client {
    margin: 3rem 0 4rem 0;
}

.our-happy-client .web-heading h2 {
    text-align: center;
    text-transform: uppercase;
}

.our-happy-client .carousel-indicators {
    bottom: -50px !important;
}

.our-happy-client .carousel-indicators [data-bs-target] {
    width: 60px !important;
    border-radius: 0 !important;
    background-color: var(--bs-primary-1) !important;
}

.our-happy-client .carousel-control-next,
.our-happy-client .carousel-control-prev {
    width: 3rem !important;
    height: 3rem !important;
    top: 50%;
}

.our-happy-client ul {
    list-style: none;
    padding: 0;
}

.our-happy-client .owl-carousel .owl-stage .owl-item .card {
    border: 0;
}

.our-happy-client .owl-carousel .owl-stage .owl-item .card .card-body {
    display: flex;
    justify-content: center;
    align-items: center;
}

.our-happy-client .owl-carousel .owl-stage .owl-item .card .card-body ul li {
    text-align: center;
}

.our-happy-client .owl-carousel .owl-stage .owl-item .card .card-body ul li img {
    box-shadow: 5px 4px 0px var(--bs-primary-1);
    height: 150px !important;
    width: 150px !important;
}

.our-happy-client .owl-carousel .owl-stage .owl-item .card .card-body .card-title {
    margin-top: 1rem;
    font-weight: 700;
    text-transform: capitalize;
    font-size: 1.5rem;
}

/* our-team */
.our-team {
    padding: 3rem 0;
}

.our-team .web-heading {
    text-align: center;
}

.our-team .card {
    border: 0;
}

.our-team .card .card-body .card-img img {
    box-shadow: 6px 5px 0px var(--bs-primary-2);
    height: 310px;
    width: 310px;
}

.our-team .card .card-body .card-title {
    margin-top: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.our-team .card .card-body .card-sub-title {
    color: var(--bs-primary);
    font-size: 1rem;
    font-weight: 700;
}

.our-team .card .card-body .card-text {
    color: var(--bs-secondary);
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.our-team .card .card-body .social-icon {
    display: flex;
    gap: 10px;
}

.our-team .card .card-body .social-icon img {
    height: 24px;
    width: 24px;
}

.our-team .owl-stage-outer {
    padding: 0 !important;
}

.our-team .apply-for-open {
    margin-top: 4rem;
    text-align: center;
}

/* annual-filing */
.annual-filing {
    background-image: url(../img/bg.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 5rem 0 3rem 0;
}

.annual-filing h2 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--bs-white);
    text-transform: uppercase;
}

.annual-filing ul {
    padding: 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    list-style: none;
}

.annual-filing ul li h1 {
    color: var(--bs-white);
}

.annual-filing ul li p {
    color: var(--bs-white);
}

/* not-sure-applicable */
.not-sure-applicable {
    margin: 3rem 0;
}

.not-sure-applicable .not-sure-text {
    padding: 2rem;
}

.not-sure-applicable .not-sure-text h2 {
    font-size: 2rem;
    font-weight: 700;
}

.not-sure-applicable .not-sure-text h3 {
    font-size: 38px;
    font-weight: 700;
}

.not-sure-applicable .not-sure-text p {
    color: var(--bs-secondary);
}

.not-sure-applicable .not-sure-text .btn {
    margin-top: 1.5rem;
}

/* msmes-startup */
.msmes-startup {
    padding: 3rem 0 5rem 0;
}

.msmes-startup .web-heading {
    text-align: center;
    margin-bottom: 2rem;
}

.msmes-startup .web-heading h2 {
    font-size: 3rem;
    font-weight: 700;
    text-transform: uppercase;
}

.msmes-startup .nav-pills {
    justify-content: center;
    gap: 10px;
}

.msmes-startup .nav-pills .nav-link {
    border: 1px solid var(--bs-secondary);
    color: var(--bs-dark);
    border-radius: 2px;
    font-weight: 500;
    border-width: .5px;
    text-wrap: nowrap;
}

.msmes-startup .carousel-control-next {
    right: -60px;
}

.msmes-startup .carousel-control-next,
.msmes-startup .carousel-control-prev {
    width: 3rem !important;
    height: 3rem !important;
    top: 50% !important;
}

.msmes-startup .carousel-control-prev {
    left: -60px !important;
}

.msmes-startup .carousel-indicators {
    bottom: -60px !important;
}

.msmes-startup .carousel-dark .carousel-indicators [data-bs-target] {
    width: 60px !important;
    background-color: var(--bs-primary-1);
}
.msmes-startup .card{
  display: flex;
  flex-direction: column;
  height: 100%; 
}


.msmes-startup .card .card-body .card-title {
   margin-top: 1rem;
   text-transform: capitalize;
   display: -webkit-box;
  -webkit-line-clamp: 2;   /* max 2 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.msmes-startup .card .card-body .card-text{
   display: -webkit-box;
  -webkit-line-clamp: 5;   /* max 4 lines */
  -webkit-box-orient: vertical;
   overflow: hidden;
   text-overflow: ellipsis;
}

.msmes-startup .owl-stage {
    display: flex;
}

.msmes-startup .owl-item {
    display: flex;
    height: auto;
    /* Ensure flexible height */
}

.msmes-startup .card {
    flex: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.msmes-startup .card .card-body .card-text {
    font-size: 16px !important;
    color: var(--bs-secondary);
}

.msmes-startup .card .card-body a {
    text-decoration: none;
}

/* lastent-regulatory */
.lastent-regulatory {
    background-color: var(--bs-primary-2);
    padding: 2rem 0;
}

.lastent-regulatory h4 {
    font-size: 30px;
    font-weight: 700;
    text-transform: capitalize;
}

.lastent-regulatory form .form-control {
    border-radius: 0;
}

.lastent-regulatory form .form-control:focus {
    box-shadow: none;
}

.nav-pills::-webkit-scrollbar-thumb {
    background: red !important;
}

/* faqs */
.faqs {
    margin: 3rem 0;
}

.faqs .web-heading {
    text-align: center;
}

.faqs .web-heading h3 {
    font-size: 40px;
    text-transform: capitalize;
    font-weight: 700;
}

.faqs h4 {
    margin-top: 2rem;
    font-size: 30px;
    text-transform: capitalize;
    font-weight: 700;
}

.faqs .accordion {
    margin-top: .5rem;
}

.faqs .accordion .accordion-button {
    font-weight: 700;
    font-size: 24px;
    border-bottom: 1px solid var(--bs-primary-1) !important;
}

.faqs .accordion .accordion-button:focus {
    box-shadow: none;
}

/* footer */
.footer {
    padding: 3rem 0 2rem 0;
    background-color: var(--bs-primary-1);
    color: var(--bs-white);
}

.footer h5 {
    font-weight: 700;
    font-size: 18px;
}

.footer .footer-top h3 {
    font-weight: 600;
}

.footer .footer-top form .form-control {
    border-radius: 0px;
}

.footer .footer-top form .form-control:focus {
    box-shadow: none !important;

}

.footer .footer-top ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer .footer-top ul li {
    margin: .75rem 0;
}

.footer .footer-top ul li a {
    color: var(--bs-white);
    text-decoration: none;
    font-size: 14px;
}

.footer .footer-top ul li a:hover {
    color: var(--bs-warning);
}

.footer .footer-top ul li a i {
    margin-right: 10px;
}

.footer .footer-bottom ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer .footer-bottom ul li {
    margin: .5rem 0;
}

.footer .footer-bottom ul li a {
    color: var(--bs-white);
    text-decoration: none;
    font-size: 14px;
}

.footer .footer-bottom ul li a:hover {
    color: var(--bs-warning);
}

.footer .footer-copy-right p {
    margin: 0 !important;
}

.footer .footer-copy-right ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    justify-content: end;
    gap: 20px;
}

.footer .footer-copy-right ul li a {
    color: var(--bs-white);
    font-size: 14px;
}

.footer .footer-copy-right ul li a:hover {
    color: var(--bs-warning);
}

.blog-hero {
    padding: 3rem 0;
}

.blog-hero .blog-bg {
    background-color: #F3F6FB;
    padding: 3rem;
}

.blog-hero .blog-bg a {
    text-decoration: none;
}

.blog-hero .blog-bg .breadcrumb .breadcrumb-item a {
    color: var(--bs-primary-1);
    text-decoration: none;
}

.blog-hero .blog-bg h1 {
    margin: 1rem 0;
    font-weight: 700;
}

.blog-hero .blog-bg span {
    color: var(--bs-secondary);
}

.blog-hero .blog-bg p {
    margin: 1rem 0;
    color: var(--bs-primary-1);
}

/* msmes-blog */
.msmes-blog {
    padding: 2rem 0 5rem 0;
}

.msmes-blog .web-heading {
    text-align: center;
}

.msmes-blog .web-heading h2 {
    font-size: 3rem;
    font-weight: 700;
}

.msmes-blog .nav-pills {
    justify-content: center;
    gap: 10px;
}

.msmes-blog .nav-pills .nav-link {
    border: 1px solid var(--bs-secondary);
    color: var(--bs-dark);
    border-radius: 2px;
}

.msmes-blog .card {
    width: 100%;
}


.msmes-blog .card .card-body .card-title {
    font-size: 18px;
    font-weight: 600;
    margin-top: 1rem;
}

.msmes-blog .card .card-body .card-text:first-of-type {
    color: var(--bs-primary-1);
    font-size: 12px;
}

.msmes-blog .card .card-body a {
    text-decoration: none;
}

/* .blog-hero-details */
.blog-hero-details {
    padding: 3rem 0;
}

.blog-hero-details h1 {
    font-size: 3rem;
    font-weight: 600;
    margin: 1rem 0;
}

.blog-hero-details span {
    color: var(--bs-secondary);
}

.blog-hero-details p {
    margin: 1rem 0;
    color: var(--bs-primary-1);
}

.blog-hero-details ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    gap: 20px;
}

.blog-hero-details ul li a {
    color: var(--bs-secondary);
}

.blog-hero-details ul li a:hover {
    color: var(--bs-primary-1);
}

.blog-hero-details .breadcrumb .breadcrumb-item a {
    color: var(--bs-primary-1);
    text-decoration: none;
}

.service-details .nav-pills .nav-link {
    border: 1px solid var(--bs-secondary);
    color: var(--bs-dark);
    margin-bottom: 1rem;
    border-radius: 2px;
    font-weight: 500;
    text-wrap: nowrap;
}

.service-details .nav-pills {
    gap: 10px;
}

.blog-text,
.service-details {
    margin: 3rem 0;
}

.blog-text .card,
.service-details .card {
    border: 0;
}

.blog-text .card:hover,
.service-details .card:hover {
    box-shadow: var(--bs-box-shadow-lg);
}

.blog-text .card .card-body ul,
.service-details .card .card-body ul {
    display: flex;
    padding: 0;
    list-style: none;
    gap: 10px;
    align-items: center;
}

.blog-text .card .card-body p strong,
.service-details .card .card-body p strong {
    color: var(--bs-primary-1);
    font-weight: 600;
}

.blog-text .card .card-body ul li p,
.service-details .card .card-body ul li p {
    margin: 0;
    color: var(--bs-secondary);
}

.blog-text .card .card-body span,
.service-details .card .card-body span {
    text-decoration: line-through;
}

.blog-text .card .card-body ul li .card-title,
.service-details .card .card-body ul li .card-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--bs-primary-1);
}

.blog-text .card .card-footer,
.service-details .card .card-footer {
    background-color: transparent;
    padding: 1rem;
    display: flex;
    border: 0;
    gap: 10px;
}

.blog-text .card .card-footer .btn,
.service-details .card .card-footer .btn {
    width: 50%;
    border-radius: 2px;
}

.blog-text .card .card-body .offer-batch,
.service-details .card .card-body .offer-batch {
    border: 1.5px dotted var(--bs-primary-1);
    display: inline-flex;
    padding: 10px;
}

.blog-text .card .card-body .offer-batch p,
.service-details .card .card-body .offer-batch p {
    margin: 0;
    color: var(--bs-primary-1);
    font-weight: 500;
}

.blog-text h3 {
    font-weight: 600;
}

.service-details h3 {
    font-weight: 700;
    font-size: 32px;
    margin-bottom: 1rem;
}

.service-details h5 {
    font-weight: 700;
    font-size: 24px;
}

.blog-text p,
.service-details p {
    color: var(--bs-secondary);
    margin: 1rem 0;
}

.blog-text ol,
.service-details ol {
    margin: 0;
    list-style-type: upper-alpha;
}

.blog-text ol li,
.service-details ol li {
    color: var(--bs-secondary);
}

.blog-text h4,
.service-details h4 {
    font-weight: 600;
    margin: 1rem 0;
}

.blog-text ul,
.service-detail ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    gap: 20px;
}

.blog-text ul li a,
.service-detail ul li a {
    color: var(--bs-secondary);
}

.blog-text .related-articles h3 {
    font-weight: 600;
}

.service-details .related-articles h6 {
    font-size: 18px;
    font-weight: 600;
}

.service-details .related-articles a {
    font-weight: 500;
}

.blog-text .related-articles .card-1 .card-body .btn,
.service-details .related-articles .card-1 .card-body .btn {
    margin: 1rem 0;
}

.blog-text .related-articles .card-1 .card-body a,
.service-details .related-articles .card-1 .card-body a {
    text-decoration: none;
}

.blog-text .related-articles h4,
.service-details .related-articles h4 {
    margin-top: 1rem;
    font-size: 20px;
    font-weight: 600;
    text-transform: capitalize;
}

.blog-text .related-articles .card-2,
.service-details .related-articles .card-2 {
    border: 4px solid;
    border-image: linear-gradient(to right, #7fb39a, #073a8c) 1;
    border-radius: 2px;
}

.blog-text .related-articles .card-2 .card-body,
.service-details .related-articles .card-2 .card-body {
    padding: 1rem;
}

.blog-text .related-articles .card-2 .card-body .card-title,
.service-details .related-articles .card-2 .card-body .card-title {
    font-size: 14px;
    font-weight: 600;
}

.blog-text .related-articles .card-2 .card-body .card-text,
.service-details .related-articles .card-2 .card-body .card-text {
    font-size: 14px;
    margin: .5rem 0;
}

.blog-text .related-articles .card-2 .card-body span,
.service-details .related-articles .card-2 .card-body span {
    text-decoration: line-through;
    font-size: 12px;
}

.blog-text .related-articles .card-2 .card-body .card-sub-text span,
.service-details .related-articles .card-2 .card-body .card-sub-text span {
    text-decoration: none !important;
}

.blog-text .related-articles .card-2 .card-body .card-sub-text,
.blog-text .related-articles .card-2 .card-body .card-sub-text {
    color: var(--bs-primary-1);
}

/* about-us */
.about-us {
    padding: 3rem 0;
}

.about-us h1 {
    font-size: 70px;
    font-weight: 700;
    margin: 1rem 0;
}

.about-us h1 span {
    color: #004BBC !important;
}

.about-us ul {
    margin-top: 1rem;
}

.since-2019 {
    background-color: #004BBC;
    padding: 3rem 0;
}

.since-2019 p {
    color: var(--bs-white);
    font-weight: 500;
    padding-left: 10px;
    font-size: 20px;
    border-left: 2px solid var(--bs-white);
}

/* our-vision */
.our-vision {
    margin: 3rem 0;
}

.our-vision h4 {
    font-size: 30px;
    font-weight: 700;
    margin: 2rem 0;
}

.our-vision .card {
    border: 0;
    background: linear-gradient(135deg, #F9B384, #71AAFF);

}

.our-vision .card .card-body {
    padding: 2rem;
}

.our-vision .card .card-body .card-title {
    margin-top: 1rem;
    font-weight: 600;
}

.our-vision ul {
    padding: 0;
    align-items: start;
    margin: 0;
    display: flex;
    gap: 10px;
    list-style: none;
}

.our-vision ul li h5 {
    font-weight: 700;
    font-size: 24px;
}

.our-vision ul li p {
    color: var(--bs-secondary);
}

/* service-we-provide */
.service-we-provide {
    padding: 3rem 0;
}

.service-we-provide .card {
    border: 0;
}

.service-we-provide .card .card-body img {
    height: 3rem;
    margin-bottom: 1rem;
}

.service-we-provide .card .card-body .card-title {
    font-weight: 600;
    color: var(--bs-primary-1);
}

.service-we-provide .card .card-body ul {
    margin: 0;
}

.service-we-provide .card .card-body ul li {
    color: var(--bs-secondary);
}

.service-we-provide .card .card-body a {
    text-decoration: none;
    margin-left: 1rem;
    font-size: 14px;
    text-wrap: nowrap;
}

/* join-our-team */
.join-our-team {
    margin: 3rem 0;
}

.join-our-team h3 {
    font-weight: 700;
    color: var(--bs-primary-1);
    font-size: 32px;
    text-transform: capitalize;
}

.join-our-team .btn {
    text-transform: capitalize;
    font-weight: 500;
}

.join-our-team .card {
    border: 0;
    border-left: 3px solid #82E9CE;
    border-radius: 0;
}

.join-our-team .card .card-body .card-title {
    color: var(--bs-primary-1);
}

.join-our-team .card .card-body .card-text {
    color: var(--bs-secondary);
}


/* hero-section */
.service-hero {
    background-image: url(../img/service-hero-bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 3rem 0;
}

.service-hero .breadcrumb {
    margin: 1rem 0;
}

.service-hero .breadcrumb .breadcrumb-item a {
    color: var(--bs-white);
    text-decoration: none;
}

.service-hero .breadcrumb .breadcrumb-item.active {
    color: var(--bs-white);
}

.service-hero .talk {
    display: flex;
    align-items: center;
}

.service-hero .talk a {
    border-radius: 30px;
    text-decoration: none;
    align-items: center;
    display: inline-block;
    color: var(--bs-primary-1);
    background-color: var(--bs-warning);
}

.service-hero .talk a span {
    width: 50px;
    height: 50px;
    display: inline-block;
    background-color: var(--bs-primary-1);
    border-radius: 50%;
}

.service-hero .card {
    border: 0 !important;
    border-radius: 0;
    position: relative;
}

.service-hero .card .card-offer {
    position: absolute;
    right: 335px;
    top: -10px;
}

.service-hero .card .card-body {
    padding: 2rem;
}

.service-hero .card .card-body form p {
    color: var(--bs-secondary);
    text-decoration: line-through;
    margin-bottom: 0;
    font-size: 12px;
}

.service-hero .card .card-body form h5 {
    margin: 0;
    color: var(--bs-primary-1);
    font-weight: 700;
}

.service-hero .card .card-body form .form-check .form-check-input:focus {
    box-shadow: none;
    border-color: var(--bs-primary-1);
}

.service-hero .card .card-body .card-title {
    color: var(--bs-primary-1);
    margin-bottom: 0;
    font-weight: 700;
    font-size: 24px;
}

.service-hero .card .card-body form .form-control {
    border-radius: 0 !important;
    background-color: #EBF0F5;
    border-color: var(--bs-text-primary);
    border-width: .5px;
}

.service-hero .card .card-body form .form-control:focus {
    box-shadow: none;
    border-color: var(--bs-primary-1);
}

.service-hero .card .card-body form .form-check-label {
    color: rgba(10, 28, 64, 1);
    font-weight: 400;

}

.service-hero .card .card-body form .btn {
    width: 100%;
    border-radius: 0px;
    font-weight: 500;
}

.service-hero h1 {
    font-size: 70px;
    color: var(--bs-white);
    margin-top: 1rem;
}

.service-hero p {
    color: var(--bs-white);
}

.service-hero ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0px;
    gap: 10px;
    display: flex;
}

.service-hero ul li {
    color: var(--bs-secondary);
    border: 1px solid var(--bs-secondary);
    padding: 5px;
    font-size: 14px;
    border-radius: 2px;
}

.service-hero .input-simple {
    font-size: 16px;
    line-height: 1.5;
    border: none;
    background: var(--bs-white);
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'><path fill='%23838D99' d='M13.22 14.63a8 8 0 1 1 1.41-1.41l4.29 4.29a1 1 0 1 1-1.41 1.41l-4.29-4.29zm-.66-2.07a6 6 0 1 0-8.49-8.49 6 6 0 0 0 8.49 8.49z'></path></svg>");
    background-repeat: no-repeat;
    background-position: 10px 10px;
    background-size: 20px 20px;
    border: 1px solid var(--bs-secondary);
    width: 100%;
    border-radius: 2px;
    padding: .5em 1em .5em 2.5em;
}

.service-marqee {
    background-color: #7FB8A9;
    padding: 5px 0;
}

.service-hero .over-rating {
    margin-bottom: 1rem;
}

.service-hero .over-rating h6 {
    font-size: 14px;
    font-weight: 500;
    margin: 0;
    color: var(--bs-white);
}

.service-hero .over-rating h5 {
    font-weight: 700;
    margin: 0;
    color: var(--bs-white);
}

.service-hero .over-rating span {
    font-size: 14px;
    color: var(--bs-white);
}

.service-hero .over-rating .reviews-star i {
    color: var(--bs-warning);
}

.service-hero form label {
    color: var(--bs-white);
    font-weight: 500;
    text-transform: capitalize;
    margin-bottom: .5rem;
}

/* service-counter */
.service-counter {
    padding: 2rem 0;
    background-color: #7FB8A9;
}

.service-counter ul {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 10px;
    padding: 0;
}

.service-counter ul li {
    color: var(--bs-primary-1);
    font-weight: 600;
    font-size: 18px;
}

/* offer-heading */
.offer-heading {
    padding: 3rem 0;
}

.offer-heading h4 {
    font-weight: 700;
    font-size: 1.875rem;
    text-transform: capitalize;
}

.offer-heading h5 {
    font-size: 24px;
    font-weight: 700;
}

.offer-heading p {
    color: var(--bs-text-primary);
}

.offer-heading img {
    height: 200px;
    width: 200px;
}

.offer-heading ol {
    margin: 0;
    align-items: center;
    padding: 0;
    gap: 30px;
    display: flex;
    list-style: none;
}

.offer-heading .card {
    border: 0;
    border-radius: 2px;
    background: linear-gradient(180deg, #7fb39a 0%, #00428F 100%);
}

.offer-heading .card .card-body {
    padding: 2rem;
}

.offer-heading .card .card-body .card-title {
    font-size: 30px;
    font-weight: 600;
    color: var(--bs-white);
}

.offer-heading .card .card-body .card-text {
    color: var(--bs-white);
    font-weight: 600;
}

.offer-heading .card .card-body .card-sub-title {
    margin: 0;
    color: var(--bs-white);
}

.offer-heading .card .card-body ul li {
    color: var(--bs-white);
}

.offer-heading .card .card-body h6 {
    border: 1px dotted var(--bs-white);
    display: inline-flex;
    color: var(--bs-white);
    margin: 1rem 0;
    padding: 12px;
}

.offer-heading .card .card-body span {
    text-decoration: line-through;
    color: var(--bs-white);
}

.offer-heading .card .card-body h2 {
    font-size: 24px;
    margin-bottom: 1rem;
    color: var(--bs-white);
    font-weight: 600;
}

.offer-heading .card .card-body h2 span {
    text-decoration: none !important;
    font-size: 12px;
    font-weight: normal;
}

.offer-heading h4 {
    text-transform: capitalize;
    margin-bottom: 1rem;
    font-weight: 600;
}

.offer-heading .card-2 {
    border: 4px solid;
    border-image: linear-gradient(to right, #7fb39a, #073a8c) 1;
    border-radius: 2px;
}

.offer-heading .card-2 .card-body {
    padding: 1rem;
}

.offer-heading .card-2 .card-body .card-title {
    font-size: 18px;
    font-weight: 600;
}

.offer-heading .card-2 .card-body .card-text {
    font-size: 14px;
    margin: .5rem 0;
}

.offer-heading .card-2 .card-body span {
    text-decoration: line-through;
    font-size: 12px;
}

.offer-heading .card-2 .card-body .card-sub-text span {
    text-decoration: none !important;
    font-weight: 400 !important;
}

.offer-heading .card-2 .card-body .card-sub-text {
    color: var(--bs-primary-1);
}

/* hero-section */
.service-details-hero {
    background-image: url(../img/service-details.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 3rem 0;
}

.service-details-hero .breadcrumb {
    margin: 1rem 0;
}

.service-details-hero .breadcrumb .breadcrumb-item {
    font-size: 12px;
}

.service-details-hero .breadcrumb .breadcrumb-item a {
    color: var(--bs-white);
    text-decoration: none;
}

.service-details-hero .breadcrumb-item+.breadcrumb-item::before {
    color: var(--bs-white) !important;
}

.service-details-hero .breadcrumb .breadcrumb-item.active {
    color: var(--bs-white);
}

.advisor-button .circle {
    width: 40px;
    height: 40px;
    margin-right: 10px;
    background-color: var(--bs-primary-1);
    border-radius: 50%;
}

.service-details-hero .talk {
    display: flex;
    align-items: center;
}

.service-details-hero .talk a {
    border-radius: 30px;
    text-decoration: none;
    align-items: center;
    display: inline-block;
    color: var(--bs-primary-1);
    background-color: var(--bs-warning);
}

.service-details-hero .talk a span {
    width: 50px;
    height: 50px;
    display: inline-block;
    background-color: var(--bs-primary-1);
    border-radius: 50%;
}


.service-details-hero .card {
    border: 0 !important;
    border-radius: 0;
    position: relative;
}


.service-details-hero .card .super-deal img {
     position: absolute;
     top: 75px;
    left: -50px;
    transform: translate(-50%, -50%);
    height: 150px;
}

.service-details-hero .card .card-body {
    padding: 2rem;
}

.service-details-hero .card .card-body form p {
    color: var(--bs-secondary);
    font-size: 12px;
    text-decoration: line-through;
    margin-bottom: 0;
}

.service-details-hero .card .card-body form h5 {
    margin: 0;
    font-weight: 700;
    color: var(--bs-primary-1);
}

.service-details-hero .card .card-body form .form-check .form-check-input {
    border: 2px solid var(--bs-text-primary);
}

.service-details-hero .card .card-body form .form-check .form-check-input:focus {
    box-shadow: none;
    border-color: var(--bs-primary-1);
}

.service-details-hero .card .card-body .card-title {
    color: var(--bs-primary-1);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 0;
}

.service-details-hero .card .card-body .card-text {
    color: var(--bs-dark);
}

.service-details-hero .card .card-body form .form-control {
    border-radius: 0 !important;
    background-color: #EBF0F5;
    border-color: var(--bs-text-primary);
    border-width: .5px;
}

.service-details-hero .card .card-body form .form-control:focus {
    box-shadow: none;
    border-color: var(--bs-primary-1);
}

.service-details-hero .card .card-body form .btn {
    width: 100%;
    font-weight: 500;
}

.service-details-hero h1 {
    font-size: 70px;
    font-weight: 700;
    color: var(--bs-white);
    margin-top: 1rem;
}

.service-details-hero p {
    color: var(--bs-white);
}

.service-details-hero ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0px;
    gap: 10px;
    display: flex;
}

.service-details-hero ul li {
    color: var(--bs-secondary);
    border: 1px solid var(--bs-secondary);
    padding: 5px;
    font-size: 14px;
    border-radius: 2px;
}

.service-details-hero .over-rating {
    margin-bottom: 1rem;
}

.service-details-hero .over-rating h6 {
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--bs-white);
}

.service-details-hero .over-rating h5 {
    font-weight: 700;
    margin: 0;
    font-size: 30px;
    color: var(--bs-white);
}

.service-details-hero .over-rating span {
    font-size: 14px;
    color: var(--bs-white);
}

.service-details-hero .over-rating .reviews-star i {
    color: var(--bs-warning);
    font-size: 30px;
}

.service-details-hero form label {
    color: var(--bs-white);
    text-transform: capitalize;
    margin-bottom: .5rem;
    color: var(--bs-text-primary);
}

.service-details-marqee {
    background-color: var(--bs-primary-1);
    padding: 5px 0;
}

.service-details-marqee marquee {
    color: var(--bs-white);
    font-size: 14px;
    padding: 0;
    margin: 0;
}

.service-details-hero .applicable-fees span {
    color: var(--bs-white);
    font-size: 14px;
}

.service-details-hero .applicable-fees h5 {
    font-weight: 700;
    font-size: 30px;
    color: var(--bs-white);
}

.service-details-hero .applicable-fees h5 span {
    font-weight: normal !important;
    font-size: 12px;
}

.service-details-hero .what-included {
    margin-top: 1rem;
}

.service-details-hero .what-included h6 {
    color: var(--bs-white);
    font-weight: 700;
}

.service-details-hero .card-text {
    color: var(--bs-white);
    list-style: none;
    display: inline-block;
    padding: 8px;
    border: 1px dotted var(--bs-white);
}

/* your-price */
.your-price {
    padding: 3rem 0;
}

.your-price .web-heading {
    text-align: center;
}

.your-price .web-heading h2 {
    font-size: 48px;
    font-weight: 700;
    text-transform: uppercase;
}

.your-price .select-your-state {
    background-color: #F3F6FB;
    padding: 1rem 2rem;
}

.your-price .select-your-state h5 {
    font-size: 16px;
    font-weight: 500;
}

.your-price .select-your-state p {
    font-size: 14px;
    color: var(--bs-secondary);
    margin: 0;
}

.your-price .select-your-state .form-select {
    border-radius: 1px;
    border-color: var(--bs-dark);
}

.your-price .select-your-state .form-select:focus {
    box-shadow: none;
}

.your-price .card {
    border-color: var(--bs-dark);
    border-radius: 0;
}

.your-price .card .card-header {
    background-image: url(../img/card-head.svg);
    background-size: cover;
    background-position: center;
    border: 0 !important;
    background-repeat: no-repeat;
    border-radius: 0;
    text-align: center;
    padding: 3rem 0 2rem;
}

.your-price .card .card-header h4 {
    color: var(--bs-white);
    font-weight: 700;
    margin: 0;
    font-size: 30px;
}

.your-price .card .card-header h5 {
    color: var(--bs-white);
    font-size: 24px;
    text-transform: uppercase;
    font-weight: 700;
}

.your-price .card .card-header span {
    color: var(--bs-white);
    font-size: 12px;
}

.your-price .card .card-body .card-title {
    font-size: 1rem;
    font-weight: 600;
}

.your-price .card .card-body .card-text {
    font-size: 1rem;
}

.your-price .card .card-body .card-sub-title {
    font-size: 1rem;
    font-weight: 600;
}


.your-price .card .card-body ul {
    margin: 0;
    list-style: none;
    padding: 0;
}

.your-price .card .card-footer {
    text-align: center;
    background-color: transparent;
    padding-bottom: 1.5rem;
    border: 0;
}

.your-price .card .card-footer .btn {
    font-weight: 500;
}

.not-sure {
    background-color: var(--bs-primary-1);
}

.not-sure h4 {
    color: var(--bs-white);
    font-size: 30px;
    font-weight: 600;
}

.not-sure p {
    color: var(--bs-white);
}

.business-setup {
    margin: 3rem 0;
}

.business-setup .sub-tab .nav-pills {
    justify-content: start !important;
    overflow-x: scroll;
    width: 100%;
    margin-top: 1rem;
    gap: 10px;
}

.business-setup .sub-tab .nav-pills .nav-link {
    border: 1px solid var(--bs-secondary);
    color: var(--bs-dark);
    border-radius: 2px;
}

.business-setup .sub-tab .nav-pills .nav-link.active {
    color: var(--bs-white);
}

.business-setup .sub-tab .tab-content .tab-pane .card {
    border: 0;
}

.business-setup .sub-tab .tab-content .tab-pane .card:hover {
    box-shadow: var(--bs-box-shadow-lg);
}

.business-setup .sub-tab .tab-content .tab-pane .card .card-body ul {
    display: flex;
    padding: 0;
    list-style: none;
    gap: 10px;
    align-items: center;
}

.business-setup .sub-tab .tab-content .tab-pane .card .card-body p strong {
    color: var(--bs-primary-1);
    font-weight: 600;
}

.business-setup .sub-tab .tab-content .tab-pane .card .card-body ul li p {
    margin: 0;
    color: var(--bs-secondary);
}

.business-setup .sub-tab .tab-content .tab-pane .card .card-body span {
    text-decoration: line-through;
}

.business-setup .sub-tab .tab-content .tab-pane .card .card-body ul li .card-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--bs-primary-1);
}

.business-setup .sub-tab .tab-content .tab-pane .card {
    padding: 1rem;
}

.business-setup .sub-tab .tab-content .tab-pane .card .card-footer {
    background-color: transparent;
    padding: 1rem;
    display: flex;
    border: 0;
    gap: 10px;
}

.business-setup .sub-tab .tab-content .tab-pane .card .card-footer .btn {
    width: 50%;
    border-radius: 2px;
}

.business-setup .sub-tab .tab-content .tab-pane .card .card-body .offer-batch {
    border: 1.5px dotted var(--bs-primary-1);
    display: inline-flex;
    padding: 10px;
}

.business-setup .sub-tab .tab-content .tab-pane .card .card-body .offer-batch p {
    margin: 0;
    color: var(--bs-primary-1);
    font-weight: 500;
}

.ating-bar {
    width: 200px;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.arc {
    stroke-width: 5;
    stroke: #e0e0e0;
    fill: none;
}

.arc-progress {
    stroke-width: 5;
    stroke: #007bff;
    fill: none;
    stroke-dasharray: 365.33;
    stroke-dashoffset: 25.13;
    animation: progress 1s ease-out forwards;
}

@keyframes progress {
    to {
        stroke-dashoffset: 0;
    }
}

.trusted-business .trusted .feedback {
    display: flex;
}

.trusted-business h1 {
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
    margin: 1rem 0;
}

.trusted-business .text {
    margin-top: -30px;
}

.trusted-business .text h6 {
    font-size: 14px;
}

.trusted-business .text p {
    color: var(--bs-secondary);
    font-size: 14px;
    margin: 0;
}

.rating-bar {
    text-align: center;
}

.getting-started {
    background-image: url(../img/getting-started.png);
    background-repeat: no-repeat;
    background-position: center;
    /* background-size: cover; */
    padding: 3rem 0;
}

.getting-started .web-heading h2 {
    text-transform: uppercase;
}

.getting-started .web-heading {
    text-align: center;
}

.getting-started .card {
    border: 0;
    background-color: transparent;
}

/* akash css */
.geeting-row {
    position: relative;
    padding: 7rem 0 8rem 0;
}

.geeting-row hr {
    border: 0.99px solid var(--bs-dark);
    opacity: 1;
}

.geeting-row .getting-list {
    display: flex;
    list-style: none;
    padding: 0;
    position: absolute;
    text-align: center;
    margin: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    gap: 5rem;
}

.geeting-row .getting-list li .number-digit {
    height: 4rem;
    width: 4rem;
    margin: 0 auto;
    background-color: var(--bs-dark);
    color: var(--bs-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    border-radius: var(--bs-border-radius-pill);
    font-weight: 500;
    position: relative;
    margin-bottom: 2rem;
}

.geeting-row .getting-list li .number-digit::before {
    content: '';
    position: absolute;
    border: 0.99px solid var(--bs-dark);
    height: 2rem;
    top: 100%;
}

.geeting-row .getting-list li h5 {
    font-weight: 600;
}

.geeting-row .getting-list li p {
    margin-bottom: 0;
}

.geeting-row .getting-list li img {
    height: 2rem;
    border-radius: var(--bs-border-radius-pill);
    border: 1px solid var(--bs-dark);
    padding: 0.35rem;
    margin-bottom: 1rem;
}

/* new-updates */
.new-updates {
    padding: 3rem 0;
    background: url('../img/blog_bg_1.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.new-updates .web-heading,
.testimonials .web-heading {
    margin-bottom: 0;
}

.new-updates .card {
    border: 0;
    border-radius: 2px;
    width: 100%;
    overflow: hidden;
}

.new-updates .card .card-img-top {
    border-radius: 0;
    height: 14rem;
}

.new-updates .card .card-img-top,
.new-updates .card .card-body .card-link {
    transition: all .4s ease-in-out;
}

.new-updates .card .card-body {
    padding: 2rem;
}

.new-updates .card .card-body ul {
    list-style: none;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
    color: var(--bs-secondary);
    text-transform: capitalize;
}

.new-updates .card .card-body ul li {
    display: flex;
    align-items: center;
    gap: 0.50rem;
    text-transform: capitalize;
    font-weight: 500;
    font-style: italic;
}

.new-updates .card .card-body ul li i {
    font-size: 20px;
}

.new-updates .card .card-body .card-text {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    color: var(--bs-secondary);
}

.new-updates .card .card-body .card-title {
    text-transform: capitalize;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.new-updates .card .card-body .card-link {
    display: flex;
    align-items: center;
    gap: 0.50rem;
    text-decoration: none;
    color: var(--bs-warning);
    font-weight: 500;
    text-transform: capitalize;
}

.new-updates .card:hover .card-img-top {
    transform: scale(1.1);
}

.new-updates .card .card-body .card-link:hover {
    color: var(--bs-dark);
}

/*  owl-carousel */
.owl-carousel .owl-nav {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    width: 100%;
    left: 50%;
    justify-content: space-between;
}

.owl-carousel .owl-stage-outer {
    padding: 2rem 0;
}

.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next {
    width: 30px;
    height: 30px;
    background-color: var(--bs-warning) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--bs-box-shadow-sm);
}

.owl-carousel .owl-nav .owl-prev {
    margin-left: -40px;
}

.owl-carousel .owl-nav .owl-next {
    margin-right: -40px;
}

.owl-carousel .owl-nav span {
    font-size: 26px;
    height: 100%;
    line-height: 1;
    color: var(--bs-dark);
}

.owl-carousel .owl-dots {
    display: flex !important;
    gap: 1rem;
    justify-content: center;
}

.owl-carousel .owl-dots .owl-dot span {
    display: none;
}

.owl-carousel .owl-dots .owl-dot {
    width: 0.50rem;
    height: 0.50rem;
    background-color: var(--bs-dark);
    position: relative;
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
    border-radius: var(--bs-border-radius-pill);
}

.owl-carousel .owl-dots .owl-dot::before {
    content: "";
    position: absolute;
    inset: -5px;
    -webkit-transform: scale(0.2);
    transform: scale(0.2);
    border-radius: inherit;
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
}

.owl-carousel .owl-dots .owl-dot.active {
    background-color: var(--bs-warning);
}

.owl-carousel .owl-dots .owl-dot.active::before {
    -webkit-transform: scale(1);
    transform: scale(1);
    border: 2px solid var(--bs-warning);
}

/* Timeline header line and dots */
.service-we-provide .timeline-line {
    height: 2px;
    background: linear-gradient(90deg, #A1C877 0%, #72B1AD 65%, #5EA7C5 100%);
    position: relative;
    margin-top: 30px;
    /* Creates space for label above */
}

.service-we-provide .timeline-dot {
    position: absolute;
    top: -6px;
    width: 14px;
    height: 14px;
    background-color: #37a900;
    border-radius: 50%;
    border: 2px solid white;
    box-shadow: 0 0 0 2px #37a900;
}

.service-we-provide .dot-1 {
    left: 0%;
}

.service-we-provide .dot-2 {
    left: 25%;
    background-color: #58c048;
}

.service-we-provide .dot-3 {
    left: 50%;
    background-color: #58c048;
}

.service-we-provide .dot-4 {
    left: 75%;
    background-color: #58c048;
}

.service-we-provide .dot-5 {
    left: 100%;
    transform: translateX(-100%);
    background-color: #2779cd;
}

.service-we-provide .timeline-label {
    font-size: 1.2rem;
    color: #1a2a6c;
}
.error {
    color: #fd0808;
    font-size: 14px;
}