body {
    font-family: 'Montserrat', sans-serif !important;
}

.header {
    background-color: #ffffff;
    /* padding: 1rem; */
    /* box-shadow: 0 5px 4px #00000012; */
    /* position: fixed;
    top: 0; */
}

.navbar-container {
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 50px;
}

.navbar-logo {
    width: 16%;
    color: #2563eb;
}

.navbar-logo span {
    font-weight: 700;
    font-size: 1.875rem;
    letter-spacing: -0.025em;
}

.navbar-logo .globe-icon {
    color: #60a5fa;
    font-size: 1.875rem;
    margin-left: 0.25rem;
}

.mobile-menu-button-wrapper {
    display: none;
}

.mobile-menu-button {
    display: flex;
    align-items: center;
    padding: 0.75rem;
    border: 1px solid #9ca3af;
    border-radius: 0.25rem;
    color: #374151;
    cursor: pointer;
    background: none;
    outline: none;
}

.mobile-menu-button:hover {
    color: #111827;
    border-color: #111827;
}

.hamburger-icon {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
}

.hamburger-icon span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #647b92;
    transition: all 0.3s ease-in-out;
}

.hamburger-icon.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger-icon.open span:nth-child(2) {
    opacity: 0;
}

.hamburger-icon.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.navbar-links {
    display: flex;
    align-items: center;
    width: auto;
    gap: 25%;
}

.navbar-links-group {
    display: flex;
    font-size: 1rem;
    flex-grow: 1;
    margin-left: 2rem;
}

.navbar-links-group a,
.navbar-links-group .dropdown-button {
    display: inline-block;
    margin-top: 0;
    padding: 0.5rem 0;
    text-decoration: none;
    transition: color 0.2s ease-in-out;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 16px;
    color: #647b92;
    line-height: 24px;
    font-weight: 500;
    white-space: nowrap;
}

.navbar-links-group a:hover,
.navbar-links-group .dropdown-button:hover {
    color: #647b92;
}

.navbar-links-group .dropdown-button {
    background: none;
    border: none;
    cursor: pointer;
    outline: none;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    text-align: left;
    width: fit-content;
}

.navbar-links-group a:not(:last-child),
.navbar-links-group .dropdown-container:not(:last-child) {
    margin-right: 1.5rem;
}

.dropdown-container {
    position: relative;
    display: inline-block;
    text-align: left;
}

.dropdown-arrow::after {
    content: '▼';
    font-size: 0.75rem;
    margin-left: 0.3rem;
    vertical-align: middle;
    transition: transform 0.2s ease-in-out;
}

.dropdown-arrow.open::after {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    left: 0;
    margin-top: 0.5rem;
    width: 12rem;
    border-radius: 0.375rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    background-color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: none;
    z-index: 10;
}

.dropdown-menu.open {
    display: block;
}

.dropdown-menu-item-group {
    padding: 0.25rem 0;
}

.dropdown-menu-item {
    display: block;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    color: #374151;
    text-decoration: none;
}

.dropdown-menu-item:hover {
    background-color: #f3f4f6;
}

.navbar-buttons {
    margin-top: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    column-gap: 1rem;
    row-gap: 0;
    margin-left: 22px;
}

.button-common {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    padding: 0.5rem 1.5rem;
    text-align: center;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
    width: auto;
    box-sizing: border-box;
}

.button-try-free {
    color: #2563eb;
    border: 1px solid #2563eb;
    background-color: transparent;
    white-space: nowrap;
}

.button-try-free:hover {
    background: linear-gradient(90deg, #405b8d, #5c82bb);
    color: #ffffff;
}

.button-get-started {
    background: linear-gradient(90deg, #405b8d, #5c82bb);
    color: #ffffff;
    border: none;
    padding: 10px 1.5rem;
    overflow: hidden;
    white-space: nowrap;
    display: inline-block;
    position: relative;
}

.button-get-started span {
    display: inline-block;
    transition: none;
    position: relative;
    animation: none;
    color: white;
}


@keyframes marquee-left-right {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(200%);
    }
}

.button-get-started {
    display: inline-block;
    overflow: hidden;
    width: 200px;
    /* Adjust as needed */
    position: relative;
}

.button-get-started span {
    display: inline-block;
    white-space: nowrap;
    transition: none;
}

.button-get-started:hover span {
    animation: marquee-left-right 4s linear forwards;
}



@keyframes marquee-left-right {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(200%);
    }
}

@keyframes marquee-left-right-1 {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(0);
    }
}


.ctn-text {
    display: absolute;
    white-space: nowrap;
    transition: none;
    top: 0;
    left: -254%;
}

.ctn-text:hover {
    animation: marquee-left-right-1 4s linear forwards;

}

.button-get-started:hover span {
    animation: marquee-left-right 4s linear forwards;
}

.button-get-started svg {
    margin-left: -127px;
    margin-right: -0.25rem;
    width: 1rem;
    height: 1rem;
}

.border-svg {
    border-radius: 50%;
    background-color: #f3f4f6;
    padding: 4px;
    color: #2563eb;
}

/* .header{
    position:fixed;
    top:0;
    z-index: 999;
} */
#logoImage {
    max-width: 100%;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
}

.nav-links li {
    position: relative;
    margin-right: 20px;
    width: 100%;
}

.nav-links li a {
    text-decoration: none;
    color: #647b92;
    padding: 8px 12px;
    display: block;
    transition: color 0.3s ease;
}

.nav-links li a:hover {
    color: #007bff;
}

.try-for-free {
    border: 1px solid #007bff;
    border-radius: 5px;
    padding: 8px 15px !important;
    color: #007bff !important;
    margin-left: 20px;
    text-decoration: none;
}

.try-for-free:hover {
    background-color: #007bff;
    color: #fff !important;
}

.dropdown {
    position: relative;
}

.service-link {
    margin-right: 0px !important;
}

.dropbtn {
    cursor: pointer;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 900px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    left: 209%;
    transform: translateX(-50%);
    padding: 20px;
    border-radius: 8px;
    gap: 20px;
    /* top: calc(100% + 1px); */
        top: 100%;

}

.service-column {
    width: 181px;
    white-space: normal;
}

.dropdown:hover .dropdown-content {
    display: flex;
    gap: 0px;
}

.map-location {
    /* border: 1px solid #4285c5; */
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(66, 133, 197, 0.2);
}

.map-location img {
    max-width: 100%;
}

.service-column {
    flex: 1;
    padding: 15px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-column h3 {
    margin-top: 0;
    color: #333;
    font-size: 1.1em;
    font-weight: bold;
    margin-bottom: 15px;
    position: relative;
}

.service-column h3 span {
    background-color: #FFD700;
    color: #333;
    font-size: 0.7em;
    padding: 3px 8px;
    border-radius: 3px;
    margin-left: 10px;
    position: absolute;
    top: 0;
    right: 0;
}

.service-column.coming-soon h3 span {
    background-color: #FFA500;
    color: #fff;
    position: static;
    margin-left: 5px;
}

.service-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
}

.service-column ul li {
    margin-bottom: 8px;
    color: #555;
    font-size: 12px;
    line-height: 1.4;
    cursor: pointer;
}

.service-column .image-placeholder {
    margin-top: 20px;
    text-align: center;
    background-color: #f0f0f0;
    border-radius: 5px;
    overflow: hidden;
}

.service-column .image-placeholder img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.footer-icon {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    position: relative;
    gap: 25px;
}

.ftr-icon {
    position: relative;
    list-style: none;
    width: 50px;
    height: 50px;
    background: white;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.25), 0 0 12px rgba(0, 0, 0, 0.3);
    border-radius: 60px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.5s;
}

.fa-icon {
    padding: 14px;
    background: white;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.25), 0 0 12px rgba(0, 0, 0, 0.3);
    border-radius: 60px;
    margin-right: 20px;
}

.ftr-icon::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 60px;
    background: linear-gradient(45deg, var(--i), var(--j));
    opacity: 0;
    transition: 0.5s;
}

.ftr-icon::after {
    content: "";
    position: absolute;
    top: 10px;
    width: 100%;
    height: 100%;
    border-radius: 60px;
    background: linear-gradient(45deg, var(--i), var(--j));
    transition: 0.5s;
    filter: blur(15px);
    z-index: -1;
    opacity: 0;
}

.ftr-icon:hover {
    width: 180px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0);
}

.ftr-icon:hover::before {
    opacity: 1;
}

.ftr-icon:hover::after {
    opacity: 0.5;
}

.ftr-icon ion-icon {
    color: #777;
    font-size: 22px;
    transition: 0.5s;
    transition-delay: 0.25s;
}

.ftr-icon:hover ion-icon {
    transform: scale(0);
    color: #fff;
    transition-delay: 0s;
}

.ftr-icon span {
    position: absolute;
}

.ftr-icon .title {
    color: #fff;
    font-size: 13px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transform: scale(0);
    transition: 0.5s;
    transition-delay: 0s;
    margin-top: 38px;
}

.ftr-icon:hover .title {
    transform: scale(1);
    transition-delay: 0.25s;
}

#logoImage-1 {
    width: 100%;
    text-align: center;
    align-items: center;
    max-width: 100%;
    padding-top: 22px;
}

.ftr-list {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 15px;
    color: #647b92;
    line-height: 24px;
    font-weight: 500;
    white-space: nowrap;
    list-style: none;
    text-decoration: none;
    padding: 4px 0;
}

.ftr-heading {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 18px;
    color: #003366;
    line-height: 24px;
    font-weight: 500;
    white-space: nowrap;
    margin-left: 32px;
}

.ftr-heading-1 {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 18px;
    color: #003366;
    line-height: 24px;
    font-weight: 500;
    white-space: nowrap;
    margin-left: 108px;
}

.ftr-heading-2 {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 18px;
    color: #003366;
    line-height: 24px;
    font-weight: 500;
    white-space: nowrap;
    margin-left: 92px;
}

.footer-section {
    padding: 56px 30px 30px 30px;
    margin-bottom: 0px;
}

/* .bav-section-hero {
    padding: 0px 0 133px;
} */

.bav-section-hero::before {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    filter: blur(120px);
    height: 350px;
    width: 100%;
    content: "";
    background: linear-gradient(180deg, #65c4f5, #b5d4f2);
    max-width: 1020px;
    border-radius: 50%;

}

.bav-section-hero {
    background-color: #f9fafb !important;
    padding: 0px 0 90px;
    position: relative;
    background-repeat: no-repeat;
    background-position: center;
}

.hero-banner {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    /* background: linear-gradient(360deg, #e0f7fa 0%, #ffffff 100%); */
    padding: 20px;
    overflow: hidden;
}

#logoImage-bva {
    max-width: 100%;
    margin-top: -47px;
}

.pd-56 {
    padding: 64px 0 78px;
}

.main-title {
    font-size: 48px;
    line-height: 48px;
    font-weight: 500;
    background: linear-gradient(0deg, #242c5d 42.97%, #45a3fc 70.31%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    margin-bottom: 20px;
    z-index: 10;
}

.subtitle {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #647b92;
    font-family: 'Montserrat', sans-serif !important;
    max-width: 800px;
    margin-bottom: 50px;
    z-index: 10;
}

.initial-center-service {
    background: linear-gradient(90deg, #6C7EFF, #A4B0FF);
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    position: absolute;
    top: 44%;
    left: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
    opacity: 1;
    z-index: 20;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: opacity 0.6s ease;
    text-align: center;
    font-size: 11px;
}

/* Add transition for smooth effect */
.center-banner,
.services-container,
#animatedSection {
    transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Common hidden class */
.section-hidden {
    opacity: 0;
    transform: translateY(100px);
    pointer-events: none;
}

.initial-center-service.hide {
    opacity: 0;
    pointer-events: none;

}

.services-container {
    position: absolute;
    top: 36%;
    left: 0;
    width: 100%;
    height: 100%;
}

.center-banner {
    margin-top: 15%;
}

.service-box {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 15px;
    padding: 10px 20px;
    text-align: center;
    font-weight: 600;
    color: #647b92;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 12px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    opacity: 1;
    position: absolute;
    white-space: nowrap;
    /* transition: transform 0.5s ease, opacity 0.5s ease; */
    /* transform: translateY(0); */
}

/* 
.service-box.hide {
    opacity: 0;
    pointer-events: none;
    transform: translateX(-150px) translateY(100px);
} */

.service-box .icon {
    font-size: 1.3em;
}

.service-box:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}

.service-box[data-order="1"] {
    top: 1%;
    left: 9%;
    transform: translateY(0);
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.service-box[data-order="1"].hide {
    opacity: 0;
    pointer-events: none;
    transform: translateX(150px) translateY(100px);
}

.service-box[data-order="2"] {
    top: -22%;
    left: 28%;
    transform: translateY(0);
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.service-box[data-order="2"].hide {
    opacity: 0;
    pointer-events: none;
    transform: translateX(50px) translateY(300px);
}

.service-box[data-order="3"] {
    top: 1%;
    right: 7%;
    transform: translateY(0);
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.service-box[data-order="3"].hide {
    opacity: 0;
    pointer-events: none;
    transform: translateX(-150px) translateY(100px);
}

.service-box[data-order="4"] {
    bottom: 65%;
    right: 6%;
    transform: translateY(0);
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.service-box[data-order="4"].hide {
    opacity: 0;
    pointer-events: none;
    transform: translateX(-150px) translateY(100px);
}

.service-box[data-order="7"] {
    bottom: 65%;
    left: 4%;
    transform: translateY(0);
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.service-box[data-order="7"].hide {
    opacity: 0;
    pointer-events: none;
    transform: translateX(150px) translateY(100px);
}

.service-box[data-order="6"] {
    top: -22%;
    right: 23%;
    transform: translateY(0);
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.service-box[data-order="6"].hide {
    opacity: 0;
    pointer-events: none;
    transform: translateX(-50px) translateY(300px);
}

.image-here {
    position: relative;
    z-index: 1;
}

.image-here::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('./assets/images/logo-bg.png') no-repeat center center;
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    z-index: -1;
}

.desktop-ui-image {
    max-width: 68%;
    height: auto;
    margin: auto;
    padding: 12px;
    border: 2px solid white;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    opacity: 1;
    transform: translateY(0);
    display: block;
}

/* .desktop-ui-image {
    max-width: 68%;
    height: auto;
    margin: auto;
    padding: 12px;
    border: 2px solid white;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateY(100px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    display: block;
} */

.desktop-ui-section.show-image .desktop-ui-image {
    opacity: 1;
    transform: translateY(0);
}

.desktop-ui-section {
    position: relative;
    /* background: linear-gradient(180deg, #e0f7fa 0%, #ffffff 100%); */
    /* min-height: 100vh;*/
    padding: 15px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.desktop-ui-section::before {
    content: '';
    background: url('../images/1stclickslogo.png') no-repeat center center;
    background-size: 100%;
    opacity: 0.05;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

/* .ui-logo {
    width: 120px;
    margin-bottom: 30px;
    z-index: 2;
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.1));
} */

.desktop-ui-image-wrapper {
    position: relative;
    display: inline-block;
    z-index: 1;
}

.floating-image-wrapper {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 4;
}

.floating-image {
    width: 200px;
    height: auto;
    box-shadow: 0 24px 24px -12px #0c0e180f !important;
    border-radius: 8px !important;
    padding: 8px;
    background-color: #fff;
    transform: translateX(150px) translateY(100px);
    opacity: 0;
    transition: all 0.5s ease;
}

.nav-btn-code {
    display: none;
}

.floating-image-1 {
    width: 200px;
    height: auto;
    box-shadow: 0 24px 24px -12px #0c0e180f !important;
    border-radius: 8px !important;
    padding: 8px;
    background-color: #fff;
    transform: translateX(-150px) translateY(100px);
    opacity: 0;
    transition: all 0.5s ease;
}

.desktop-ui-section.show .floating-image-1 {
    border: 2px solid #ffffff;
    padding: 12px;
    border-radius: 12px;
    background-color: transparent;
}

.desktop-ui-section.show .floating-image-1,
.desktop-ui-section.show .animated-line {
    opacity: 1;
    transform: translateY(0)
}


.floating-image-2 {
    width: 200px;
    height: auto;
    box-shadow: 0 24px 24px -12px #0c0e180f !important;
    border-radius: 8px !important;
    padding: 8px;
    background-color: #fff;
    transform: translateX(150px) translateY(-100px);
    opacity: 0;
    transition: all 0.5s ease;
}

.desktop-ui-section.show .floating-image-2 {
    border: 2px solid #ffffff;
    padding: 12px;
    border-radius: 12px;
    background-color: transparent;
}

.desktop-ui-section.show .floating-image-2,
.desktop-ui-section.show .animated-line {
    opacity: 1;
    transform: translateY(0)
}


.floating-image-3 {
    width: 200px;
    height: auto;
    box-shadow: 0 24px 24px -12px #0c0e180f !important;
    border-radius: 8px !important;
    padding: 8px;
    background-color: #fff;
    transform: translateX(-150px) translateY(-100px);
    opacity: 0;
    transition: all 0.5s ease;
}

.desktop-ui-section.show .floating-image-3 {
    border: 2px solid #ffffff;
    padding: 12px;
    border-radius: 12px;
    background-color: transparent;
}

.desktop-ui-section.show .floating-image-3,
.desktop-ui-section.show .animated-line {
    opacity: 1;
    transform: translateY(0)
}


.animated-line {
    margin-top: 6px;
    opacity: 0;
    transform: scale(0.6);
    transition: all 0.7s ease;
}

.svg-tb-1 {
    position: absolute;
    top: -391px;
    left: 30px;
}

.svg-tb-2 {
    position: absolute;
    top: 0px;
    left: -11px;
}

.svg-tb-3 {
    position: absolute;
    top: -47px;
    left: 1%;
}

.svg-tb-4 {
    position: absolute;
    top: -225px;
    left: 30px;
}


.floating-tl {
    top: -71px;
    left: 79px;
}


.floating-tr {
    top: -63px;
    right: 87px;
}

.floating-bl {
    bottom: -44px;
    left: 78px;

}

.floating-br {
    bottom: -32px;
    right: 121px;
}

.desktop-ui-section.show .desktop-ui-image {
    opacity: 1;
    transform: translateY(0);
}

.desktop-ui-section.show .floating-image {
    border: 2px solid #ffffff;
    padding: 12px;
    border-radius: 12px;
    background-color: transparent;
}

.desktop-ui-section.show .floating-image,
.desktop-ui-section.show .animated-line {
    opacity: 1;
    transform: translateY(0)
}

.slogan {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}

.gradient-text {
    background: linear-gradient(to right, #0077ff, #00c6ff);
    -webkit-background-clip: text;
    color: transparent;
}

.normal-text {
    background: linear-gradient(to right, #003366, #005577);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.slider-wrapper {
    display: none;
}

.partner-carousel .item {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-top: 2px solid linear-gradient(269.48deg, #264196 5.79%, #FFFFFF 75.43%);
    padding: 10px;
}

.partner-carousel .item img {
    width: 150px;
    height: 100px;
    object-fit: contain;
    display: block;
}

.partner-wrapper {
    text-align: center;
}

.partner-text {
    background: linear-gradient(0deg, #242c5d 42.97%, #45a3fc 70.31%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    font-size: 36px;
    font-weight: 600;
    line-height: 32px;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.partner-smo {
    background: linear-gradient(0deg, #242c5d 42.97%, #45a3fc 70.31%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    font-size: 36px;
    font-weight: 600;
    /* line-height: 32px; */
    text-align: center;
    white-space: break-spaces;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.partner-text::before,
.partner-text::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 50px;
    height: 2px;
    background: linear-gradient(269.48deg, #264196 5.79%, #FFFFFF 75.43%);
}

.partner-text::before {
    left: -60px;
    transform: translateY(-50%);
}

.partner-text::after {
    right: -60px;
    transform: translateY(-50%);
}


.owl-nav {
    display: none;
}

/* .about-section {
    margin: 100px 0px;
} */

.top-linear-tagWrapContainer {
    padding: 6px;
    /* background: linear-gradient(180deg, #2a32460a, #2a334600); */
    max-width: fit-content;
    width: 100%;
    height: 100%;
    /* border-radius: 100px; */
    margin: 0 auto 20px;
    /* box-shadow: 0 3px 3px -1.5px #0020790d inset; */
}

.top-linear-tagWrapContainer .top-linearInner-wrap {
    display: flex;
    gap: 6px;
    align-items: center;
    background-color: #fdfeff;
    padding: 8px 10px;
    border-radius: 100px;
    border: 1px solid;
    background-image: linear-gradient(#fff, #fff), linear-gradient(129.39deg, #f2f3f8 61.22%, #b5d4f2 108.72%);
    box-shadow: 0 24px 24px -12px #0c0e180f;
    box-shadow: 0 0 0 1px #18181b14;
    border-color: transparent;
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

.top-linear-tagWrapContainer .top-linearInner-wrap p.top-linear-content {
    font-size: 18px;
    line-height: 15px;
    font-weight: 500;
    color: #0f172b;
}

.about-content {
    /* background: linear-gradient(to right, #003366, #005577);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    text-align: center; */
    font-weight: 600;
    color: #242c5d;
    font-size: 30px;
    line-height: 32px;
    margin-bottom: 20px;
    text-align: left !important;
}

.Services-wraper {
    padding: 6px;
    background: linear-gradient(180deg, #2a32460a, #2a334600);
    /* max-width: fit-content; */
    width: 28%;
    /* height: 100%; */
    border-radius: 100px;
    /* margin: 0 auto 20px; */
    box-shadow: 0 3px 3px -1.5px #0020790d inset;
}

.service-span {
    font-size: 16px;
    color: #647b92;
    font-family: 'Montserrat', sans-serif !important;
    text-align: center;
}

.service-content {
    background: linear-gradient(to right, #003366, #005577);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    margin-bottom: 60px;
}

.service-main {
    position: relative;

}

.service-section {
    /* position: relative; */
    background-blend-mode: overlay;
}

/* 
.service-section::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 30%;
    width: 400px;
    height: 400px;
    background-image: url('../images/1stclickslogo.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.3;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.service-section>* {
    position: relative;
    z-index: 1;
} */

.service-img {
    position: relative;
    width: max-content;
    margin: 0 auto;
    padding: 40px;
    width: 100%;
    height: auto;
    background-color: transparent;
    /* background: linear-gradient(180deg, #e0f7fa 0%, #ffffff 100%); */
    background-blend-mode: overlay;
    border-radius: 20px;

    overflow: hidden;
}

.service-main {
    width: 100%;
    /* max-width: 1200px; */
    border-radius: 16px;
    display: block;
    z-index: 1;
    /* position: relative; */
    overflow: hidden;
}

/* .service-img::after {

    content: "";
    position: absolute;
    background-image: url('../images/background-vector.webp');
      filter: blur(80px);
    top: -110px;
        width: 100%;
        height: 100%;
    } */
.floating-icon {
    position: absolute;
    width: 52px;
    height: 52px;
    padding: 8px;
    border: 1px solid transparent;
    border-radius: 16px;
    background:
        linear-gradient(white, white) padding-box,
        linear-gradient(90deg, #f2f3f8, #2757db) border-box;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    animation: float 4s ease-in-out infinite;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-fb {
    top: 29%;
    right: 35%;
    animation-delay: 0s;
}

.icon-pi {
    top: 28%;
    left: 28%;
    animation-delay: 0.5s;
}

.icon-yt {
    bottom: 46px;
    right: 12px;
    animation-delay: 0.5s;
}

.icon-li {
    top: 29%;
    right: 53px;
    animation-delay: 0.5s;
}

.icon-wa {
    bottom: 20%;
    right: 0;
    animation-delay: 1s;
}

.icon-sl {
    bottom: 38%;
    right: 11px;
    animation-delay: 1.5s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.scroll-section {
    position: relative;
}

.feature {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
    padding: 15px 0;
}

.feature.active {
    opacity: 1;
    transform: translateY(0);
}

.description-box {
    background-color: white;
    padding: 10px;
    border-radius: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: left;
    width: 100%;
}

.feature h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.feature p,
.feature {
    font-size: 1rem;
    color: #4b5563;
}

.feature {
    padding-left: 1rem;
}

.feature {
    list-style: disc;
}

svg.icon-svg {
    width: 2rem;
    height: 2rem;
    margin-right: 0.5rem;
    vertical-align: middle;
}

.heading {
    font-size: 2rem;
    font-weight: 800;
}

.box-header {
    display: flex;
    align-items: center;
}

.box-content {
    opacity: 1;
    overflow: hidden;
    transition: opacity 0.4s ease, max-height 0.4s ease;
}

.box-content.hidden {
    opacity: 0;
    max-height: 0;
    pointer-events: none;
}

.pill {
    display: inline-flex;
    align-items: center;
    background-color: #e8f0fe;
    border-radius: 20px;
    padding: 8px 16px;
    margin: 5px;
    font-size: 14px;
    color: #1a73e8;
    border: 1px solid #c2dafc;
    cursor: default;
}

.pill svg {
    width: 16px;
    height: 16px;
    margin-right: 8px;
    fill: #1a73e8;
}

.review-section {
    position: relative;
    width: 100%;
    background-image: url('../images/bg-v2.png');
    background-repeat: no-repeat;
    background-position: left center;
    align-items: center;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.review-section::before {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    filter: blur(120px);
    height: 350px;
    width: 100%;
    content: "";
    background: linear-gradient(180deg, #65c4f5, #b5d4f2);
    max-width: 1020px;
    border-radius: 50%;
}

.center-text {
    text-align: center;
    z-index: 2;

}

.testinomial-apart {
    width: 100%;
    height: 116vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.bg-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    box-shadow: 0 0 25px rgba(173, 216, 230, 0.6);
    border-radius: 50%;
    opacity: 0.1;
}

.center-text {
    position: absolute;
    top: 41%;
    left: 50%;
    transform: translateX(-50%);
}

.center-text .tag {
    background: #eef2fa;
    color: #3366cc;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    display: inline-block;
    margin-bottom: 10px;
}

.center-text h1 {
    font-size: 36px;
    font-weight: 600;
    line-height: 1.4;
}

.center-text .highlight {
    color: #2a5bd7;
}

.bubble {
    position: absolute;
    background: white;
    padding: 12px 16px;
    border-radius: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    font-size: 14px;
    animation: float 6s ease-in-out infinite;
    transition: transform 0.3s ease;
    white-space: nowrap;
}

.bubble img {
    border: 1px solid transparent;
    border-radius: 50px;
    background: linear-gradient(white, white) padding-box, linear-gradient(90deg, #f2f3f8, #2757db) border-box;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.bubble p {
    font-family: 'Montserrat', sans-serif !important;
    color: #45556c;
    font-size: 14px;
    line-height: 18px;
    font-weight: 500;
    display: block;
    margin-bottom: 8px;
}

.bubble:nth-child(even) {
    animation: floatAlt 7s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) translateX(0);
    }

    50% {
        transform: translateY(-10px) translateX(5px);
    }
}

@keyframes floatAlt {

    0%,
    100% {
        transform: translateY(0px) translateX(0);
    }

    50% {
        transform: translateY(10px) translateX(-5px);
    }
}

.testinomial-flex {
    display: flex;
}

.tab-section {
    text-align: center;
    padding: 0px 20px;
    width: 100%;
    /* min-height: 106vh; */
    background-image: url('../images/bg-v2.png');
    background-repeat: no-repeat;
    background-position: left center;
    align-items: center;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.title {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 40px;
}

.tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    background-color: #F8FAFC;
    box-shadow: 0 3.29px 5.75px #d9d9d9;
    padding: 15px;
    border-radius: 25px;
    margin-top: 20px;
    flex-wrap: wrap;
}

/* .tab {
    flex: 0 0 0 !important;
    padding: 10px 20px;
    border: none;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 14px;
} */

/* 
.tab.active {
background: linear-gradient(90deg, #405b8d, #5c82bb);
    box-shadow: 0 3.29px 3.29px #00000040;
    border-color: transparent;
    color: #fff;
} */

.tab-content-wrapper {
    max-width: 1100px;
    margin: auto;
    display: flex;
    justify-content: center;
}

.tab-content {
    display: none;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
    align-items: center;
    text-align: left;
}

.tab-content .text {
    flex: 1 1 40%;
}

.tab-content .text ul {
    list-style: none;
    padding-left: 0;
}

.tab-para {
    color: rgb(100, 123, 146);
    font-family: Montserrat, sans-serif !important;
    font-size: 15px;
}

.tab-content .text ul li {
    margin: 8px 0;
}

.tab-content .image {
    flex: 1 1 50%;
    text-align: center;
}

.tab-content .image img {
    max-width: 100%;
    border-radius: 16px;
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); */
    padding-right: 60px;
}

.services-maker-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    text-align: center;
    /* background: radial-gradient(circle at center, #d0e9ff 0%, transparent 80%); */

}

.stat-box {
    padding: 21px 20px;
    position: relative;
}

.stat-box::after {
    content: "";
    position: absolute;
    right: 0;
    top: 5px;
    bottom: 5px;
    width: 1px;
    background: linear-gradient(to bottom, #f9d423, #45a3fc);
}

.ml {
    margin-left: 64px;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    background: linear-gradient(304.38deg, #242c5d 12.97%, #45a3fc 70.31%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    margin-top: 10px;
    font-size: 1rem;
}

.animation-section {
    position: relative;
    width: 100%;
    padding: 20px 20px;
    background-image: url(../images/bg-v2.png);
    background-repeat: no-repeat;
    background-position: cover;
    align-items: center;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.left-contact-details {
    position: relative;
    padding-top: 280px;
}

.md-detail-card {
    box-sizing: border-box;
    display: flex;
    /* flex-direction: column; */
    align-items: flex-start;
    gap: 24px;
    width: 100%;
    height: auto;
    box-shadow: 0 0 0 1px #ebebeb, 0 1px 3px #8f8f8f33;
    border-radius: 20px;
    border: 1px solid transparent;
    background-image: linear-gradient(#fff, #fff), linear-gradient(130deg, #f2f3f8, #b5d4f2);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    padding: 24px;
    text-align: center;
    margin-bottom: 20px;
}

.md-detail-card .md-imageWrap {
    max-width: 60px;
    width: 100%;
    height: auto;
    margin: 0 auto;
}

.md-imageWrap img {
    max-width: 60px;
    width: 100%;
}

.main-title-1 {
    font-size: 20px;
    font-family: 'Montserrat', sans-serif;
    text-align: left;
    font-weight: 500;
}

.md-detailWrap .contact-btn {
    background-color: #242c5d;
    color: #fff;
    padding: 10px 6px 12px 10px;
    border-radius: 100px;
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
    display: flex;
    width: 38%;
    align-items: center;
    text-decoration: none;
    gap: 8px;
    border: none;
}

.md-detailWrap .contact-btn:hover {
    background: linear-gradient(110.65deg, #242c5d 36.31%, #2757db);
    border: none;
}

.svg-ctnt {
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
}

.main-article {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    max-width: 300px;
}

.form-bot {
    display: block;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--bs-body-color);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: transparent;
    background-clip: padding-box;
    border: var(--bs-border-width) solid var(--bs-border-color);
    border-radius: none;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    border-top: none;
    border-left: none;
    border-right: none;

}

.tag-btn {
    border: 1px solid #CAD5E2 !important;
    border-radius: 100px;
    background-color: transparent;
    background: linear-gradient(to right, #003366, #005577);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.right-contact-details {
    padding-top: 70px;
}

.btn-spc {
    display: inline-block;
    overflow: hidden;
    width: 111px !important;
    position: relative;
}

.btn-spc svg {
    margin-left: -62px !important;
}

.contact-section {
    background: #f9fbff;
    padding: 30px 0px;
    position: relative;
}

.overlay-div,
.overlay-div img {
    position: relative;
    width: 100%;
}

.overlay-div:before {
    position: absolute;
    content: "";
    background: linear-gradient(90deg, #65c4f5, #398cde 33%, #65c4f5);
    top: 20px;
    left: 0;
    width: 100%;
    height: 100%;
    filter: blur(80px);
    z-index: 0;
}

.ctn-text-1 {
    display: absolute;
    white-space: nowrap;
    transition: none;
    top: 0;
    left: -292%;
}

.contact-withme {
    text-align: center;
    position: absolute;
    top: 82px;
    left: 77%;
    white-space: nowrap;
}

.blog-section {
    padding: 80px 20px;
    background-image: url('../images/bg-v2.png');
    background-repeat: no-repeat;
    background-position: left center;
}

.card {
    background: white;
    border: 1px solid #dfe4ea;
    border-radius: 12px;
    max-width: 360px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.card img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 16px;
}

.card h3 {
    margin: 10px 0;
    font-size: 1.2em;
    background: linear-gradient(to right, #003366, #005577);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    text-align: center;
    text-align: left;
}

.card p {
    color: rgb(100, 123, 146);
    font-family: Montserrat, sans-serif !important;
    font-size: 0.95em;
    line-height: 1.5;
    text-align: left;
}

.card a {
    padding: 8px 12px;
    border-radius: 100px;
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
    width: fit-content;
    border: 1px solid #0284C7;
    display: flex;
    text-decoration: none;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #0284c7;
}

.card a:hover {
    text-decoration: underline;
}

.card-flex {
    display: flex;
    gap: 20px;
}

.faq-container {
    max-width: 700px;
    width: 100%;
    text-align: center;
    padding: 20px;
    margin: 0 auto !important;
}

.faq-container h1 {
    font-size: 2em;
    color: #1d1d1f;
    margin-bottom: 10px;
}

.faq-container h1 span {
    color: #2d7ff9;
}

.faq-container p {
    color: #5f6c7b;
    font-size: 1em;
    margin-bottom: 30px;
    line-height: 1.5;
}

.faq-item {
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    margin-bottom: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    padding: 18px 20px;
    font-size: 1em;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover {
    background-color: #f0f4ff;
}

.lb-1 {
    top: 8%;
    left: 26%;
}

.lb-2 {
    top: 22%;
    left: 7%;
}

.lb-3 {
    top: 5%;
    right: 26%;
}

.lb-4 {
    top: 18%;
    right: 9%;
}

.lb-5 {
    top: 42%;
    right: 5%;
}

.lb-6 {
    top: 44%;
    right: 6%;
}

.lb-7 {
    top: 77%;
    right: 24%;
}

.lb-8 {
    top: 60%;
    right: 10%;
}

.lb-9 {
    top: 65%;
    left: 8%;
}

.lb-10 {
    top: 43%;
    left: 7%;
}

.lb-11 {
    top: 77%;
    left: 34%;
}

.faq-answer {
    padding: 0 20px 20px;
    text-align: left;
    display: none;
    color: #333;
}

.faq-item.active .faq-answer {
    display: block;
}

.plus-icon {
    font-size: 1.2em;
    color: #aaa;
    transition: transform 0.3s ease;
}

.faq-item.active .plus-icon {
    transform: rotate(45deg);
    color: #2d7ff9;
}

.tag-btn :hover {
    background-color: #0077ff;
}

.checkbox-btn {
    display: inline-block;
    box-shadow: 0 3.29px 3.29px #00000040 !important;
    margin: 6px 6px 6px 0;
    cursor: pointer;
    font-weight: 500;
    color: #003366;
    border-radius: 40px;
    user-select: none;
    transition: all 0.3s ease;
    background-color: #f1f1f1;
}

.checkbox-btn:hover {
    border-color: #2563eb;
}

.checkbox-btn input[type="checkbox"] {
    display: none;
}

.checkbox-btn input[type="checkbox"]:checked+span {
    background: linear-gradient(90deg, #405b8d, #5c82bb);
    color: #fff;
    border-radius: 40px;

}

.checkbox-btn span {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 5px;
}

.privacy {
    margin-top: 20px;
    font-size: 14px;
    color: #1e3a8a;
}

.privacy a {
    color: #2563eb;
    text-decoration: none;
}

.privacy a:hover {
    text-decoration: underline;
}

.footer-hg {
    border-top: 1px solid #647b92;
    margin-top: 25px !important;
    padding: 20px;
}

#partner {
    max-width: 100%;
    margin-left: -28px;
}

#partner-bg {
    max-width: 100%;
    margin-top: 12px;
}

.sidebar {
    width: 60px;
    height: 500px;
    background: linear-gradient(to bottom, #ffffff, #e7edf6);
    border-radius: 30px;
    padding: 10px 0;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 50%;
    right: 20px;
    transform: translateY(-80%);
    z-index: 1000;
    display: none;
}

.menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    height: 100%;
    position: relative;
}

.menu-item {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.menu-item.active,
.menu-item:hover {
    color: #1a73e8;
}

.active-indicator {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(26, 115, 232, 0.1);
    position: absolute;
    left: 5px;
    z-index: 1;
    transition: top 0.3s ease;
}

.testinomial-section {
    padding: 100px 0;
    position: relative;
}

.testinomial-section::after {
    content: '';
    background: url('../images/1stclickslogo.png') no-repeat center center;
    background-size: 100%;
    opacity: 0.05;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.testinomial-section::before {
    content: "";
    position: absolute;
    width: 60%;
    height: 60%;
    left: 20%;
    top: 17%;
    background: linear-gradient(268.61deg, #65c4f5 -1.41%, #b5d4f2 107.91%);
    opacity: 0.6;
    filter: blur(160px);
    border-radius: 50%;
    z-index: 0;
}

.testinomial_heading {
    text-align: center;
    max-width: 500px;
    margin: 0 auto 40px;
    position: relative;
    z-index: 1;
}

.testinomial_heading h2 {
    font-size: 36px;
    color: #0f172b;
    font-weight: 600;
}

.review-container {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.about-content-service {
    font-weight: 600;
    color: #242c5d;
    font-size: 18px;
    line-height: 32px;
    margin-bottom: 20px;
    text-align: left !important;
}

.review-box {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background-color: #fff;
    border-radius: 100px;
    border: 1px solid #ddd;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.reveiw-test img {
    width: 24px;
    height: 24px;
}

.review-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.testinomial-card {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    width: 100%;
    max-width: 370px;
    position: relative;
}

.testinomial-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(90deg, #f2f3f8, #b5d4f2);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    z-index: -1;
}

.customers-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.customers-imageWrap {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #0284c7;
}

.customers-imageWrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.customers-inner-content h4 {
    font-size: 14px;
    margin-bottom: 4px;
    color: #314158;
    font-weight: 600;
}

.customers-inner-content p {
    font-size: 12px;
    margin: 0;
    color: #4a4a4a;
}

.card_desc {
    font-size: 12px;
    line-height: 18px;
    font-weight: 500;
    color: #314158;
    font-family: 'Montserrat', sans-serif !important;
    margin-bottom: 40px;
}

.card_coImgWrap img {
    width: 25%;
    height: auto;
    margin-top: 10px;
    border-radius: 12px;
}

.testinomial-card::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(90deg, #f2f3f8, #b5d4f2);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    z-index: -1;
}

/* 
@media screen and (max-width: 992px) {
    .review-grid {
        flex-direction: column;
        align-items: center;
    }

    .testinomial-card {
        width: 100%;
        max-width: 90%;
    }

    .testinomial-section::before {
        width: 80%;
        height: 80%;
        left: 10%;
    }
} */

.mt-898 {
    margin: 0px 0px !important;
}

.sidebar {
    width: 60px;
    height: 600px;
    background: linear-gradient(to bottom, #ffffff, #e7edf6);
    border-radius: 30px;
    padding: 10px 0;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    z-index: 1000;
    display: none;
}

.menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    height: 100%;
    position: relative;
}

.menu-item-xl {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.menu-item-xl.active,
.menu-item-xl:hover {
    color: #1a73e8;
}

#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.spinner {
    width: 72px;
    height: 72px;
    border: 8px solid #ccc;
    border-top: 8px solid #3498db;
    /* Blue */
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


.bottom_to_top_progress_wrap {
    position: fixed;
    right: 65px;
    bottom: 110px;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    box-shadow: inset 0 0 0 2px #0003;
    z-index: 10000;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: all .2s linear;
}

.bottom_to_top_progress_wrap::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 46px;
    width: 46px;
    cursor: pointer;
    z-index: 1;
    background-image: url(../images/download.svg);
    background-size: 26px;
    background-repeat: no-repeat;
    background-position: center;
}

.bottom_to_top_progress_wrap svg path {
    fill: none;
    stroke: #4285c5;
    stroke-width: 4;
    box-sizing: border-box;
    transition: all 0.2s linear;
}

#chat-icon-container {
    position: fixed;
    bottom: 25px;
    right: 83px;
    text-align: center;
    z-index: 999;
}

#chat-helper-text {
    margin-bottom: 5px;
    background: linear-gradient(90deg, #405b8d, #5c82bb);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    display: inline-block;
}

#chat-icon {
    background: linear-gradient(90deg, #405b8d, #5c82bb);
    color: white;
    font-size: 24px;
    padding: 15px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

#chatbox {
    position: fixed;
    bottom: 90px;
    right: 93px;
    width: 320px;
    background: white;
    border: 1px solid #ccc;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    display: none;
    flex-direction: column;
    z-index: 1000;
}

.chat-header {
    background: linear-gradient(90deg, #405b8d, #5c82bb);
    color: white;
    padding: 10px;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.chat-body {
    height: 250px;
    padding: 10px;
    overflow-y: auto;
    background: #f5f5f5;
}

.chat-footer {
    display: flex;
    padding: 10px;
    border-top: 1px solid #ddd;
}

.chat-footer input {
    flex: 1;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.chat-footer button {
    margin-left: 8px;
    padding: 8px 12px;
    background: linear-gradient(90deg, #405b8d, #5c82bb);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.bot-message,
.user-message {
    margin: 6px 0;
    padding: 8px 12px;
    border-radius: 20px;
    max-width: 80%;
    clear: both;
}

.bot-message {
    background: #e1e1e1;
    float: left;
}

.user-message {
    background: #007bff;
    color: white;
    float: right;
}

#chat-icon-container-1 {
    position: fixed;
    bottom: 34px;
    right: 145px;
    text-align: center;
    z-index: 999;
}

.fpows-list-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.fpows-list {
    padding: 8px 12px;
    border-radius: 96px;
    background-color: #fff;
    box-shadow: 0 1px 3px #253ea733, 0 0 0 1px #375dfb1a, inset 0 -2.4px #375dfb1f;
    margin-left: 1px;
}

.fpows-list {
    display: flex;
    gap: 6px;
}

.list-tickIcon {
    width: 20px;
    height: 20px;
    display: block;
}

.fpows-list span {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
}


/* .fpows-left-wrap, .left-wrap-imagesWrap {
        height: 100vh;
        display: block;
    } */
.left-wrap-imagesWrap:before {
    position: absolute;
    content: "";
    background-image: url(../images/background-vector.webp);
    background-repeat: no-repeat;
    width: 960px;
    height: 500px;
    width: 100%;
    left: -21%;
    filter: blur(80px);
}

.cikv_animated_videos-wrap {
    display: flex;
    flex-flow: wrap;
    gap: 64px;
    margin-top: 25px;
}

/* .cikv_animated_videos-wrap .before-video{
    width: 50%;
     margin-top:25px;
    overflow: hidden;
}
.cikv_animated_videos-wrap .after-video{
    width: 50%;
     margin-top:25px;
    overflow: hidden;
} */
.video {
    border: none;
    outline: none;
    box-shadow: none;
    width: 100%;
    height: auto;
    clip-path: fill-box;
    pointer-events: none;
}

.video-buddy {
    width: 100% !important;
}

.mt-svg {
    margin-left: 48%;
}

.pd-89{
    padding-top: 81px !important;
}

.important-services-crom-section {
    position: relative;
    padding-top: 20px;
    padding-bottom: 122px;
    z-index: 1;
    padding-left: 20px;
    padding-right: 20px;
    background-color: #f9fafb;
}

.title-header-important-service .important-service-subtitle {
    text-align: center;
    font: 20px/1.3 Montserrat;
    letter-spacing: 0px;
    color: #647b92;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    gap: 25px;
}

.title-header-important-service .important-service-subtitle:before {
    content: "";
    flex: 1;
    height: 2px;
    background: transparent linear-gradient(270deg, #4285c5 0%, #ffffff00 100%) 0% 0% no-repeat padding-box;
}

.title-header-important-service .important-service-subtitle:after {
    content: "";
    flex: 1;
    height: 2px;
    background: transparent linear-gradient(270deg, #fae2c500 0%, #4285c5 100%) 0% 0% no-repeat padding-box;
}

.title-header-important-service .important-service-subtitle strong {
    display: contents;
}

.title-header-important-service {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px 25px;
}

.title-header-important-service .title {
    font-family: Montserrat;
    font-size: 36px;
    line-height: 1.2;
    background: linear-gradient(0deg, #242c5d 42.97%, #45a3fc 70.31%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    text-align: center;
    font-weight: 400;
    max-width: 500px;
    margin: 5px auto 0;
}

.crome-pining-tab-wrap {
    position: relative;
    padding-right: calc((100% - 1280px) / 2);
}

.crome-pining-tab-wrap .core-pining-tab {
    display: flex;
    flex-flow: wrap;
}

.crome-pining-tab-wrap .tab-right-col {
    width: 100%;
    max-width: 40%;
    position: relative;
    padding-right: 34px;
}

.crome-pining-tab-wrap .tab-left-col {
    width: 100%;
    max-width: 60%;
    position: relative;
    cursor: pointer;
    left: -1.9%;
    top: 90px;
    height: fit-content;
}

.crome-pining-tab-wrap ul.tabs-list-wrap {
    max-height: 500px;
    overflow: auto;
    /* scrollbar-width: thin; */
}

.crome-pining-tab-wrap ul.tabs-list-wrap {
    scrollbar-color: #4285c5 #ccc !important;
    scrollbar-width: thin !important;
    scroll-snap-type: y;
}

.crome-pining-tab-wrap ul.tabs-list-wrap::-webkit-scrollbar-track {
    /* -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3); */
    background-color: #ccc;
    border-radius: 5px;
}

.crome-pining-tab-wrap ul.tabs-list-wrap::-webkit-scrollbar {
    width: 5px;
    background-color: #4285c5;
}

.crome-pining-tab-wrap ul.tabs-list-wrap::-webkit-scrollbar-thumb {
    background-color: #4285c5;
}

.important-services-tabs-list .important-services-wrap .important-services-col:before,
.important-services-tabs-list .important-services-wrap .important-service-name,
.tabs-list-wrap .tab-title,
.tabs-list-wrap .tab-short-content {
    transition: all 0.3s;
}

.tab-link-list-col .pining-important-service-content-col {
    position: absolute;
    inset: 0;
    /* background: #fff; */
    /* opacity: 0; */
    /* visibility: hidden; */
    z-index: -9;
    left: -10px;
    position: relative;
    left: 0;
    padding-left: 25px;
    display: none;
    margin-top: 10px;
}

.tab-link-list-col.active .pining-important-service-content-col {
    /* opacity: 1;
  visibility: visible;
  z-index: 2; */
    display: block;
}

.pining-important-service-content-col .pining-important-service-title {
    font-family: Montserrat;
    font-size: 26px;
    line-height: 1.2;
    color: #4285c5;
    margin-bottom: 10px;
    display: none;
}

.pining-important-service-content-col .description {
    color: #707070;
    font-size: 16px;
    line-height: 1.5;
}

.pining-important-service-content-col .buttongroun {
    display: block;
    margin-top: 30px;
    background: transparent linear-gradient(110deg, #4285c5 0%, #e8eff9 100%) 0% 0% no-repeat padding-box;
    border-radius: 100px;
    opacity: 1;
    width: fit-content;
    padding: 2px;
}

.pining-important-service-content-col .buttongroun .button-link {
    font: normal normal bold 16px/14px Open Sans;
    letter-spacing: 0px;
    color: #4285c5;
    opacity: 1;
    background: #fff;
    border-radius: 60px;
    padding: 23px 44px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.pining-important-service-content-col .buttongroun .button-link:after {
    content: "";
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24.774' height='12' viewBox='0 0 24.774 12'%3E%3Cpath id='Path_18613' data-name='Path 18613' d='M24.49,137.315h0l-5.057-5.032a.968.968,0,0,0-1.365,1.372l3.4,3.379H.968a.968.968,0,0,0,0,1.935H21.462l-3.395,3.379a.968.968,0,0,0,1.365,1.372l5.057-5.032h0A.969.969,0,0,0,24.49,137.315Z' transform='translate(0 -132)' fill='%23d9e5f4'/%3E%3C/svg%3E");
    width: 24px;
    height: 12px;
}

.tabs-list-wrap .tab-title {
    text-align: left;
    font: normal normal bold 20px/1.2 Montserrat;
    letter-spacing: 0px;
    /* color: #707070; */
    color: #000;
    opacity: 1;
    display: block;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.tabs-list-wrap .tab-link-list-col.active .tab-title:after,
.tabs-list-wrap .tab-link-list-col:hover .tab-title:after {
    content: "";
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24.774' height='12' viewBox='0 0 24.774 12'%3E%3Cpath id='Path_18613' data-name='Path 18613' d='M24.49,137.315h0l-5.057-5.032a.968.968,0,0,0-1.365,1.372l3.4,3.379H.968a.968.968,0,0,0,0,1.935H21.462l-3.395,3.379a.968.968,0,0,0,1.365,1.372l5.057-5.032h0A.969.969,0,0,0,24.49,137.315Z' transform='translate(0 -132)' fill='%23d9e5f4'/%3E%3C/svg%3E");
    width: 24px;
    height: 12px;
}

.tabs-list-wrap .tab-short-content {
    text-align: left;
    font: normal normal normal 16px/1.3 Open Sans;
    letter-spacing: 0px;
    color: #707070;
    opacity: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    position: relative;
}

.tabs-list-wrap .tab-link-list-col {
    /* margin-bottom: 25px; */
    margin-bottom: 20px;
}

.tabs-list-wrap .tab-link-list-col:last-child {
    margin-bottom: 0;
}

.tabs-list-wrap .tab-link-list-col .important-service-list-box {
    position: relative;
    padding-left: 25px;
    display: block;
    cursor: pointer;
}

.tabs-list-wrap .tab-link-list-col .important-service-list-box:before {
    content: "";
    width: 2px;
    height: 100%;
    background: #707070;
    display: block;
    min-height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    opacity: 0.1;
}

.tabs-list-wrap .tab-link-list-col.active .tab-title,
.tabs-list-wrap .tab-link-list-col.active .tab-short-content,
.tabs-list-wrap .tab-link-list-col:hover .tab-title,
.tabs-list-wrap .tab-link-list-col:hover .tab-short-content {
    color: #647b92;
}

.tabs-list-wrap .tab-link-list-col.active .important-service-list-box:before,
.tabs-list-wrap .tab-link-list-col:hover .important-service-list-box:before {
    background: #647b92;
    opacity: 1;
}

.important-services-tabs-list.important-service-1 .svg-wrap {
    position: relative;
    background: transparent linear-gradient(155deg, #4385c5 0%, #1c1c48 100%) 0% 0% no-repeat padding-box;
    box-shadow: 30px 20px 60px #00000026;
    border: 6px solid #4385c5;
    opacity: 1;
    width: 150px;
    height: 150px;
    border-radius: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 8;

}

.tab-left-col-box {
    width: 600px;
    margin: 0 auto;
    position: relative;
    height: 600px;
}

.important-services-tabs-list.important-service-1 .pining-bg-icon-col {
    border: 100px solid rgb(67 133 197 / 9%);
    width: fit-content;
    border-radius: 100%;
    position: relative;
    z-index: 9999;
    top: 47px;
}

.important-services-tabs-list.important-service-1:after {
    border-radius: 100%;
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: calc(100% + 200px);
    height: calc(100% + 200px);
    left: -100px;
    top: -100px;
    background: transparent radial-gradient(closest-side at 50% 50%, #eef4fa 0%, #eef4fa00 100%) 0% 0% no-repeat padding-box;
    opacity: 1;
    z-index: -9;
    background: #eef4fa;
    opacity: 0.3;
}

.tabs-list-wrap .tab-link-list-col.active:not(:first-child) span.tab-short-content {
    display: none;
}

.important-services-tabs-list.important-service-1 {
    width: fit-content;
    position: relative;
    margin: 0 auto;
}

.important-services-tabs-list .important-services-wrap .important-services-col {
    width: 159px;
    height: 148px;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    flex-flow: wrap;
    position: relative;
    align-items: flex-end;
    gap: 6px;
    z-index: 999999;
}

.important-services-tabs-list .important-services-wrap .important-service-name {
    /* position: absolute; */
    top: auto;
    bottom: 10px;
    font: normal normal bold 16px/18px Montserrat;
    letter-spacing: 0px;
    color: #4285c5;
    text-transform: uppercase;
    opacity: 1;
    text-align: center;
    position: relative;
    z-index: 9;
}

.important-services-tabs-list .important-services-wrap {
    width: fit-content;
    border: 26px solid #fff;
    border-radius: 100%;
    box-shadow: 0px 10px 20px #0000000f;
    position: relative;
}

.important-services-tabs-list .important-services-wrap .img-box {
    line-height: 0;
    position: relative;
    z-index: 9;
}

.important-services-tabs-list .important-services-wrap .lines {
    display: block;
    opacity: 0.07;
    transform: matrix(0.87, -0.5, 0.5, 0.87, 0, 0);
    width: 6px;
    height: 204px;
    position: absolute;
    inset: 0;
    z-index: -9;
}

.important-services-tabs-list {
    position: absolute;
    inset: 0;
    width: fit-content;
    height: fit-content;
}

.important-services-tabs-list.important-service-2 {
    top: -20%;
    left: 10%;
}

.important-services-tabs-list.important-service-2 .important-services-wrap .lines {
    left: 111%;
    top: 95%;
    transform: matrix(0.87, -0.5, 0.5, 0.87, 0, 0);
    background: transparent linear-gradient(180deg, #4285c5 0%, #4386c500 100%) 0% 0% no-repeat padding-box;
}

.important-services-tabs-list.important-service-3 {
    top: 18%;
    left: -10%;
}

.important-services-tabs-list.important-service-3 .important-services-wrap .lines {
    left: 180%;
    top: -10%;
    transform: matrix(0, 1, -1, 0, 0, 0);
    background: transparent linear-gradient(0deg, #4285c5 0%, #4386c500 100%) 0% 0% no-repeat padding-box;
}

.important-services-tabs-list.important-service-4 {
    top: auto;
    left: 10%;
    bottom: 15%;
}

.important-services-tabs-list.important-service-4 .important-services-wrap .lines {
    left: 122%;
    top: auto;
    transform: matrix(0.87, 0.5, -0.5, 0.87, 0, 0);
    background: transparent linear-gradient(0deg, #4285c5 0%, #4386c500 100%) 0% 0% no-repeat padding-box;
    bottom: 93%;
}

.important-services-tabs-list.important-service-5 {
    top: auto;
    left: auto;
    right: 10%;
    bottom: 15%;
}

.important-services-tabs-list.important-service-5 .important-services-wrap .lines {
    left: auto;
    top: -133%;
    transform: matrix(-0.84, 0.54, -0.54, -0.84, 0, 0);
    right: 115%;
    background: transparent linear-gradient(180deg, #4285c5 0%, #4386c500 100%) 0% 0% no-repeat padding-box;
}

.important-services-tabs-list.important-service-6 {
    top: 18%;
    left: auto;
    right: -10%;
}

.important-services-tabs-list.important-service-6 .important-services-wrap .lines {
    left: auto;
    top: -10%;
    transform: matrix(0, 1, -1, 0, 0, 0);
    right: 180%;
    background: transparent linear-gradient(180deg, #4285c5 0%, #4386c500 100%) 0% 0% no-repeat padding-box;
}

.important-services-tabs-list.important-service-7 {
    top: -20%;
    left: auto;
    right: 10%;
}

.important-services-tabs-list.important-service-7 .important-services-wrap .lines {
    left: auto;
    top: 95%;
    transform: matrix(-0.87, -0.5, 0.5, -0.87, 0, 0);
    right: 105%;
    background: transparent linear-gradient(0deg, #4285c5 0%, #4386c500 100%) 0% 0% no-repeat padding-box;
}

.important-services-tabs-list .important-services-wrap .important-services-col:before {
    content: "";
    background: #fff;
    position: absolute;
    inset: 0;
    width: calc(100% + 52px);
    height: calc(100% + 52px);
    border-radius: 100%;
    left: -26px;
    top: -26px;
    z-index: 0;
    box-shadow: 0 10px 20px #0000000f;
}

.important-services-tabs-list .important-services-wrap .important-services-col:after {
    content: "";
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: transparent linear-gradient(180deg, #4285c54d 0%, #4285c500 100%) 0% 0% no-repeat padding-box;
    border-radius: 100%;
    z-index: 0;
}

.important-services-tabs-list.active .important-services-wrap {
    border: 26px solid #4285c5;
}

.important-services-tabs-list.active .important-services-wrap .important-services-col:before {
    background: #4285c5;
}

.important-services-tabs-list.active .important-services-wrap .important-services-col:after {
    background: transparent linear-gradient(180deg, #ffffff4d 0%, #4285c500 100%) 0% 0% no-repeat padding-box;
    box-shadow: 0px 10px 20px #4285c55e;
}

.important-services-tabs-list.active .important-services-wrap .important-service-name {
    color: #fff;
}

.important-services-tabs-list:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 100%;
    z-index: 9999999;
    opacity: 0.6;
}

.important-services-tabs-list.active:before,
.important-services-tabs-list.important-service-1:before {
    display: none;
}

.important-services-tabs-list.important-service-1.active+.important-services-tabs-list:before,
.important-services-tabs-list.important-service-1.active+.important-services-tabs-list+.important-services-tabs-list:before,
.important-services-tabs-list.important-service-1.active+.important-services-tabs-list+.important-services-tabs-list+.important-services-tabs-list:before,
.important-services-tabs-list.important-service-1.active+.important-services-tabs-list+.important-services-tabs-list+.important-services-tabs-list+.important-services-tabs-list:before,
.important-services-tabs-list.important-service-1.active+.important-services-tabs-list+.important-services-tabs-list+.important-services-tabs-list+.important-services-tabs-list+.important-services-tabs-list:before,
.important-services-tabs-list.important-service-1.active+.important-services-tabs-list+.important-services-tabs-list+.important-services-tabs-list+.important-services-tabs-list+.important-services-tabs-list+.important-services-tabs-list:before {
    opacity: 0;
}

.important-services-tabs-list.active .important-services-wrap .lines {
    opacity: 1;
}

.important-services-tabs-list.important-service-7.active .important-services-wrap .lines {
    background: transparent linear-gradient(180deg, #4285c5 0%, #1c1c48 100%) 0% 0% no-repeat padding-box;
}

.important-services-tabs-list.important-service-2.active .important-services-wrap .lines {
    background: transparent linear-gradient(180deg, #4285c5 0%, #1c1c48 100%) 0% 0% no-repeat padding-box;
}

.important-services-tabs-list.important-service-3 .important-services-wrap .lines {
    background: transparent linear-gradient(0deg, #4285c5 0%, #1c1c48 100%) 0% 0% no-repeat padding-box;
}

.important-services-tabs-list.important-service-4 .important-services-wrap .lines {
    background: transparent linear-gradient(0deg, #4285c5 0%, #1c1c48 100%) 0% 0% no-repeat padding-box;
}

.important-services-tabs-list.important-service-5 .important-services-wrap .lines {
    background: transparent linear-gradient(180deg, #4285c5 0%, #1c1c48 100%) 0% 0% no-repeat padding-box;
}

.important-services-tabs-list.important-service-6 .important-services-wrap .lines {
    background: transparent linear-gradient(180deg, #4285c5 0%, #1c1c48 100%) 0% 0% no-repeat padding-box;
}

.important-services-tabs-list.important-service-7 .important-services-wrap .lines {
    background: transparent linear-gradient(0deg, #4285c5 0%, #1c1c48 100%) 0% 0% no-repeat padding-box;
}