:root {
    --shadow: 0 .125rem .25rem rgba(0, 0, 0, .055);
    --darkColor: rgb(9, 9, 11);
    --primaryColor: #6610f2;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #f5f5f5;
    color: #60697b;
    /* cursor: none; */
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #2E3A46;
}




/* general container  */
.general_container {
    padding: 0;
    background-color: whitesmoke;
    position: relative;
    width: 100%;
    overflow: hidden;
}

.general_container section {
    position: relative;
}

/* mouse effect animation  */
.ripple-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.ripple {
    position: absolute;
    width: 5px;
    height: 5px;
    background: var(--primaryColor);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: ripple 1s linear infinite;
    pointer-events: none;
    z-index: 9;
}

@keyframes ripple {
    0% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) scale(4);
        opacity: 0;
    }
}

/* end of mouse animation  */

/* sleek line animation  */
.sleek_line_container {
    display: flex;
    justify-content: space-between;

}

.sleek-line {
    position: fixed;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, #ff4e50, var(--primaryColor));
    animation: moveDown 5s linear infinite;
    opacity: 0.3;
}

.line1 {
    left: 10%;
}

.line2 {
    left: 30%;
}

.line3 {
    left: 50%;
}

.line4 {
    left: 70%;
}

.line5 {
    left: 90%;
}

@keyframes moveDown {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(100%);
    }
}

/* end of sleek line animation  */














/*hero header*/

.welcome_wrapper {
    /*min-height: 90vh;*/
    background-color: #191a1b;
    position: relative;
    /*overflow: hidden;*/
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
    padding-bottom: 10px;
}

header {
    backdrop-filter: blur(10px);
    /* color: white; */
    padding: 10px 11.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 999;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
}

header .logo img {
    width: 100px;
}


nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

nav ul {
    display: flex;
    list-style: none;
    align-items: center;
}

nav ul li {
    margin: 0 1.1rem;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    position: relative;
}

nav ul li a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primaryColor);
    transition: width 0.3s ease;
}

nav ul li a:hover:after {
    width: 100%;
}



/* Dropdown Styling */
nav ul li {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 220px;
    background: white;
    border-radius: 12px;
    padding: 0.8rem 0;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    z-index: 100;
}

nav ul li:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown_card .title {
    color: #fff !important;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid white;
}

.dropdown-menu li {
    margin: 0 !important;
    width: 100%;
}

.dropdown-menu li a {
    color: #333 !important;
    padding: 0.7rem 1.5rem !important;
    display: block;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
    text-align: left;
}

.dropdown-menu li a:hover {
    background-color: rgba(103, 61, 230, 0.05);
    color: #673de6 !important;
    padding-left: 1.8rem !important;
}

.dropdown-menu li a:after {
    display: none;
}

/* Dropdown indicator */
.nav_dropdown_cover::after,
.has-dropdown > a::after {
    font-family: "Font Awesome 6 Free";
    content: '\f078'; /* fa-chevron-down */
    font-weight: 900;
    font-size: 0.6rem;
    margin-left: 0.3rem;
    display: inline-block;
    transition: transform 0.3s ease;
}


/* Add this new rule to rotate the arrow when hovering over dropdown items */
.nav_dropdown_cover:hover::after,
.has-dropdown:hover>a::after {
    transform: rotate(180deg);
}

/* .has-dropdown:hover>a::after {
    transform: rotate(180deg);
} */

/* Mobile dropdown adjustments */
.mobile-nav ul li.has-dropdown {
    position: relative;
}

.mobile-nav .dropdown-menu {
    position: static;
    transform: none;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: none;
    border-radius: 8px;
    margin-top: 10px;
    margin-bottom: 10px;
    padding: 0.5rem 0;
    max-height: 0;
    overflow: hidden;
    opacity: 1;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-nav .dropdown-menu.active {
    max-height: 500px;
    visibility: visible;
    padding: 0.5rem 0;
}

.mobile-nav .dropdown-menu::before {
    display: none;
}

.mobile-nav .dropdown-menu li a {
    color: white !important;
    padding: 0.7rem 2rem !important;
    font-size: 15px;
}

.mobile-nav .dropdown-menu li a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: white !important;
}



.header-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.login-btn {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    padding: 0.6rem 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 5px;
    transition: all 0.3s ease;
    background: linear-gradient(var(--bg-color, #000), var(--bg-color, #000)) padding-box,
                conic-gradient(from 0deg, #00ffff, #ff00ff, #ffff00, #00ff00, #0080ff, #ff0080, #00ffff) border-box;
    animation: neon-rotate 12s linear infinite;
}

.login-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.get-started-btn {
    background-color: var(--primaryColor);
    color: #fff;
    padding: 0.6rem 1.5rem;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.get-started-btn:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Hamburger Menu */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
    z-index: 1000;
}

.hamburger-menu span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #fff;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -900px;
    width: 300px;
    height: 100%;
    background-color: #5a35c8;
    z-index: 999;
    padding: 4rem 2rem 2rem;
    transition: right 0.3s ease;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
    overflow-y: auto;
}

.mobile-nav.active {
    right: 0;
}

.close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 30px;
    height: 30px;
    cursor: pointer;
}

.close-menu::before,
.close-menu::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: white;
    top: 50%;
    left: 0;
}

.close-menu::before {
    transform: rotate(45deg);
}

.close-menu::after {
    transform: rotate(-45deg);
}

.mobile-nav ul {
    list-style: none;
    margin-bottom: 2rem;
}

.mobile-nav ul li {
    margin: 1.5rem 0;
}

.mobile-nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    display: block;
    padding: 0.5rem 0;
}

.mobile-nav-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}


.nav_dropdown_cover {
    position: relative;
    transition: 0.5s;
}

.nav_dropdown_cover:hover .nav_dropdown_item {
    visibility: visible;
    opacity: 1;
}

nav ul li a:hover::after {
    width: 100%;
}

.header_actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header_actions button {
    font-size: 30px;
    border: none;
    color: rgb(82, 82, 91);
    background: transparent;
    cursor: pointer;
}

.nav_dropdown_item {
    position: absolute;
    top: 23px;
    left: -200px;
    background-color: #222;
    padding: 0;
    width: 1000px;
    align-items: flex-start;
    z-index: 99;
    box-shadow: var(--shadow);
    border-radius: 5px;
    visibility: hidden;
    opacity: 0;
    transition: 0.5s;
    gap: 0;
    /* justify-content: center; */
}

#about_nav {
    display: flex;
    align-items: center;
    justify-content: center;
}

#about_nav .nav_dropdown_item {
    max-width: 600px;
    margin-top: 10px;
}
.nav_dropdown_item a{
    color: #fff;
}
.dropdown_card {
    width: 400px;
    /* background-color: whitesmoke; */
    /* padding: 10px; */
    display: flex;
    flex-direction: column;
    /* gap:30px; */
    padding: 30px;
    padding-bottom: 0 !important;
    height: 100%;
}

.dropdown_card li {
    padding-bottom: 30px;
    width: fit-content;
    color: #fff !important;
    opacity: 1;
}

.dropdown_card:last-child li {
    padding-bottom: 0;
}

.dropdown_card:first-child {
    border-right: 1px solid lightgray;
}

.dropdown_card:last-child {
    background-color: whitesmoke;
} 
.dropdown_card img {
    height: 200px;
    width: 100%;
    border-radius: 10px;
    border: 1px solid lightgray;
}

.dropdown_card .desc {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.6;
    margin-top: 20px;
}

.dropdown_card .desc.light {
    color: #fff;
    font-family: 'Italianno', cursive;
    font-size: 21px;
}

.dropdown_card .desc.dark {
    color: var(--textColor);
}

.dropdown_card .hero_tagline {
    font-size: 15px;
}


.hero {
    padding: 30px 10%;
    margin-top: 30px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 19;
    margin-bottom: 40px;
}

.hero-content {
    display: flex;
    width: 100%;
    align-items: center;
    gap: 3rem;
    flex-direction: column;
    justify-content: center;
}

.hero-text {
    text-align: center;
}

.hero_tagline {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 1rem;
    /* background: rgba(255, 255, 255, 0.15); */
    background: #242424;
    display: inline-flex;
    padding: 0.8rem 1rem;
    border-radius: 50px;
    align-items: center;
    gap: 10px;
}

.hero_tagline img{
    width: 30px;
}

.hero-text h1 {
    font-size: 3rem;
    line-height: 1.3;
    font-weight: 800;
    font-family: inter-web, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
    max-width: 1000px;
    margin: 0 auto;
    margin-bottom: 1.5rem;
    color:#fff;
}

.hero-text p {
    font-size: 1.2rem;
    margin: 0 auto;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    max-width: 900px;
    color:#fff;
}

.hero-cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.hero-cta-buttons a{
    padding: 1rem 2rem;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: fit-content; 
}

.hero-cta-buttons a:first-child {
    background-color: var(--primaryColor) !important;
    color: #fff;
    border: 2px solid transparent;
} 

.hero-cta-buttons a:last-child { 
    border: 2px solid transparent;
    background: linear-gradient(var(--bg-color, #000), var(--bg-color, #000)) padding-box,
                conic-gradient(from 0deg, #00ffff, #ff00ff, #ffff00, #00ff00, #0080ff, #ff0080, #00ffff) border-box;
    animation: neon-rotate 12s linear infinite;
    position: relative;
    color: #fff;
}
 

.secondary-cta svg {
    margin-right: 0.5rem;
}


.shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.09);
    border-radius: 50%;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: 10%;
}

.shape-2 {
    width: 200px;
    height: 200px;
    bottom: 10%;
    left: 5%;
}

.shape-3 {
    width: 150px;
    height: 150px;
    top: 30%;
    left: 15%;
}


/* code for hero overview  */

/* code for hero overview  */
.hero-overview {
    width: 100%;
    background-color: #ffffff17;
    backdrop-filter: blur(5px);
    margin-top: 60px;
    border-radius: 20px;
    padding: 20px;
}

.hero-overview-tab {
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: space-between;
    padding: 0 50px;
    margin-bottom: 10px;
    overflow-x: auto;
    scrollbar-width: none;
}

.hero-overview-tab button {
    padding: 5px;
    background-color: transparent;
    border: none;
    cursor: pointer;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    font-size: 15px;
    transition: 0.7s;
    white-space: nowrap;
}

.hero-overview-tab button i {
    font-size: 23px;
}

.hero-overview-tab button:hover {
    color: var(--primaryColor);
}

.hero-overview-active-tab {
    color: var(--primaryColor) !important;
}


.img-overview-media {
    position: relative;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.img-overview-media:hover .overview-overlay {
    visibility: visible;
    opacity: 1;
}

.img-overview-media img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    transition: opacity 0.5s ease-in-out;
    opacity: 0;
    z-index: 1;
}

.img-overview-media img.img-back {
    opacity: 1;
    z-index: 0;
}

.overview-overlay {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, .5);
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    z-index: 99;
}

.overview-cta {
    padding: 10px 30px;
    background-color: #111;
    color: #fff;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    transition: 0.7s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
}

.overview-cta:hover {
    background-color: #000;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}


@media (max-width: 1350px) {
    header{
        padding: 10px 3.5rem;
    }
    nav ul li{
        margin: 0 1rem;
    }
    .get-started-btn, .login-btn{
        font-size: 14px;
        padding: 0.5rem 1rem;
    }
    .hero{
        padding: 30px 3%;
    }
}
@media (max-width: 1100px) {
    header{
        padding: 10px 1.5rem;
    }
    .hero-text h1 {
        font-size: 3rem;
    }
}

@media (max-width: 900px) {
    .hero-content {
        flex-direction: column;
    }

    .hero-text {
        text-align: center;
        margin-bottom: 3rem;
    }

    .hero-cta-buttons {
        justify-content: center;
    }

    nav ul li {
        margin: 0 1rem;
    }
}

@media (max-width: 760px) {
    header {
        padding: 1.2rem 5%;
    }

    nav,
    .header-buttons {
        display: none;
    }

    .hamburger-menu {
        display: flex;
    }
    .get-started-btn, .login-btn{
        padding: 0.8rem 1.5rem;
        font-size: 18px;
        text-align: center;
        border: none;
    }

    .hero {
        padding: 0 5%;
        margin-top: 80px;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-overview-tab{
        padding: 0;
    }
    .hero-overview-tab button{
        font-size: 14px;
    }
    .hero-overview-tab button i{
        font-size: 19px;
    }


}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 1.6rem;
    }
    .hero_tagline{
        font-size: 14px;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .hero-cta-buttons {
        flex-direction: column;
    }
    .hero-overview{
        margin-top: 0;
    }
}




/* audit modal style  */
.audit-trigger-btn {
    background: var(--primaryColor);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.audit-trigger-btn:hover {
    background: #6d28d9;
}

.audit-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    transition: all 0.3s ease;
}

.audit-modal {
    background: #f8f9fa;
    border-radius: 12px;
    max-width: 1300px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transform: scale(0.9);
    transition: all 0.3s ease;
    position: relative;
    padding: 20px;
}

.audit-modal-overlay.audit-active .audit-modal {
    transform: scale(1);
}

/* Header Card */
.audit-header-card {
    background: white;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 30px;
}

.audit-nav-tabs {
    display: flex;
    gap: 8px;
}

.audit-nav-tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px;
    border-radius: 8px;
    font-size: 18px;
    font-family: sans-serif;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    width: calc(100% / 3);
    justify-content: center;
    background: #f3f4f6;
    color: #374151;
}

.audit-nav-tab.audit-active-tab {
    background: var(--primaryColor) !important;
    color: white !important;
}

.audit-nav-tab:not(.audit-seo):hover {
    background: #e5e7eb;
}

.audit-nav-icon {
    width: 16px;
    height: 16px;
    display: inline-block;
}

/* Content Card */
.audit-content-card {
    background: white;
    padding: 60px 40px;
    text-align: center;
    border-bottom: 1px solid #e5e7eb;
}

.audit-title {
    font-size: 36px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 24px;
    line-height: 1.2;
}

.audit-description {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.audit-input-container {
    display: flex;
    gap: 12px;
    max-width: 600px;
    margin: 0 auto;
}

.audit-input {
    flex: 1;
    padding: 16px 20px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 16px;
    outline: none;
    transition: all 0.2s ease;
}

.audit-input:focus {
    border-color: var(--primaryColor);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

.audit-input::placeholder {
    color: #9ca3af;
}

.audit-submit-btn {
    background: var(--primaryColor);
    color: white;
    border: none;
    padding: 16px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    display: flex;
    align-items: center;
}

.audit-submit-btn:hover {
    background: #6d28d9;
}


@media (max-width: 768px) {
    .audit-modal {
        margin: 20px;
        width: calc(100% - 40px);
    }

    .audit-header-card,
    .audit-content-card,
    .audit-benefits-card {
        padding: 24px;
    }

    .audit-nav-tabs {
        flex-direction: column;
        gap: 8px;
    }

    .audit-nav-tab {
        justify-content: center;
    }

    .audit-input-container {
        flex-direction: column;
    }

    .audit-title {
        font-size: 28px;
    }

}

/* end of style for audit modal  */








/* style for audit preview / scanner  */


.audprev-modal-container {
    background-color: rgba(0, 0, 0, 0.6);
    height: 100vh;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999;
}

.audprev-modal-wrapper {
    height: 93%;
    width: 80%;
    background-image: linear-gradient(-180deg, #0a2540 50%, #f8f9fc 40%, #f8f9fc 100%);
    border-radius: 10px;
    overflow: hidden;
}

.audprev-modal-content {
    width: 70%;
    margin: 0 auto;
}

.audprev-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
}

.audprev-logo {
    width: 100px;
}

.audprev-modal-form {
    display: flex;
    align-items: center;
    /* gap: 10px; */
    background-color: rgba(255, 255, 255, 0.3);
    padding: 2px;
    height: 40px;
    width: 300px;
    padding: 0 5px;
    border-radius: 40px;
    justify-content: space-between;
}

.audprev-modal-form svg {
    color: #fff;
}

.audprev-modal-form input {
    border: none;
    background-color: transparent;
    display: block;
    height: 100%;
    width: 220px;
    border: none;
    outline: none;
    color: #fff;
}

.audprev-modal-form div {
    height: 33px;
    width: 33px;
    border-radius: 50%;
    background-color: lightgray;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-family: sans-serif;
}

.audprev-modal-form i {
    font-size: 20px;
}

.audprev-content-info {
    /* height: 210px; */
    width: 100%;
    background-color: #fff;
    margin-top: 15px;
    border-radius: 10px;
    padding: 20px;
}






.audprev-content-row {
    display: flex;
    align-items: center;
    gap: 40px;
    justify-content: space-between;
}

.audprev-content-row .audprev-content-col:last-child {
    flex-grow: 2;
}

.audprev-scanner-container {
    position: relative;
    width: 300px;
    height: 200px;
}

.audprev-scanner {
    width: 100%;
    height: 100%;
    background: #fff;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.audprev-scanner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 10;
    background-color: rgba(0, 0, 0, 0.4);
}

/* Corner brackets for QR scanner effect */
.audprev-scanner-overlay::before,
.audprev-scanner-overlay::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    border: 3px solid #fff;
    z-index: 11;
}

.audprev-scanner-overlay::before {
    top: 10px;
    left: 10px;
    border-right: none;
    border-bottom: none;
}

.audprev-scanner-overlay::after {
    bottom: 10px;
    right: 10px;
    border-left: none;
    border-top: none;
}

/* Additional corners */
.audprev-corner-tr,
.audprev-corner-bl {
    position: absolute;
    width: 30px;
    height: 30px;
    border: 3px solid #fff;
    z-index: 11;
}

.audprev-corner-tr {
    top: 10px;
    right: 10px;
    border-left: none;
    border-bottom: none;
}

.audprev-corner-bl {
    bottom: 10px;
    left: 10px;
    border-right: none;
    border-top: none;
}

/* Scanning line */
.audprev-scan-line {
    position: absolute;
    left: 10px;
    right: 10px;
    height: 3px;
    background: linear-gradient(90deg,
            transparent 0%,
            #3b82f6 20%,
            #60a5fa 50%,
            #3b82f6 80%,
            transparent 100%);
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.8);
    animation: audprev-scan-vertical 2s ease-in-out infinite;
    z-index: 12;
}

@keyframes audprev-scan-vertical {
    0% {
        top: 10px;
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        top: calc(100% - 13px);
        opacity: 0;
    }
}

/* Pulse effect on corners */
.audprev-scanner-overlay::before,
.audprev-scanner-overlay::after,
.audprev-corner-tr,
.audprev-corner-bl {
    animation: audprev-corner-pulse 2s infinite;
}

@keyframes audprev-corner-pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.6;
    }
}

/* Grid overlay for more scanner-like effect */
.audprev-scanner-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(59, 130, 246, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 130, 246, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.3;
    z-index: 9;
}

.audprev-animation-col h4 {
    font-size: 24px;
    color: #1f2937;
    margin-bottom: 10px;
    font-weight: 600;
}

.audprev-animation-col p {
    font-size: 16px;
    color: #6b7280;
    margin-bottom: 24px;
}

.audprev-shimmer-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 20px;
}

.audprev-shimmer-text {
    margin-top: 30px;
}


/* Status indicator */
.audprev-status {
    position: absolute;
    top: -30px;
    right: 0;
    background: #3b82f6;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    animation: audprev-blink 1s infinite;
}

@keyframes audprev-blink {

    0%,
    50% {
        opacity: 1;
    }

    51%,
    100% {
        opacity: 0.7;
    }
}

@media (max-width: 768px) {
    .audprev-content-row {
        flex-direction: column;
        gap: 20px;
    }

    .audprev-scanner-container {
        width: 100%;
        max-width: 300px;
    }
}




.audprev-card {
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.07);
}

.audprev-section-title {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.audprev-title-text {
    display: flex;
    align-items: center;
    gap: 8px;
}

.audprev-loading-indicator {
    width: 16px;
    height: 16px;
    border: 2px solid #e3e8ed;
    border-top: 2px solid #3498db;
    border-radius: 50%;
    animation: audprev-spin 1s linear infinite;
}

@keyframes audprev-spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.audprev-header-shimmer {
    position: relative;
    height: 16px;
    background: #dbeafe;
    border-radius: 8px;
    width: 120px;
    overflow: hidden;
}

.audprev-shimmer-line {
    position: relative;
    height: 16px;
    background: #dbeafe;
    border-radius: 8px;
    margin-bottom: 12px;
    overflow: hidden;
}

.audprev-line-with-circle {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.audprev-shimmer-circle {
    position: relative;
    width: 24px;
    height: 24px;
    background: #dbeafe;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.audprev-shimmer-line:last-child {
    margin-bottom: 0;
}

.audprev-shimmer-line--wide {
    width: 100%;
}

.audprev-shimmer-line--medium {
    width: 75%;
}

.audprev-shimmer-line--narrow {
    width: 60%;
}

.audprev-shimmer-line--short {
    width: 45%;
}

.audprev-shimmer-line::before,
.audprev-header-shimmer::before,
.audprev-shimmer-circle::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(72, 139, 247, 0.6), transparent);
    animation: audprev-shimmer 2s infinite;
}

@keyframes audprev-shimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.audprev-shimmer-group {
    margin-bottom: 16px;
}

.audprev-shimmer-group:last-child {
    margin-bottom: 0;
}

@media (max-width: 1200px) {
    .audprev-modal-wrapper {
        width: 90%;
    }

    .audprev-modal-content {
        width: 90%;
    }
}

@media (max-width: 900px) {
    .audprev-modal-wrapper {
        width: 100%;
        height: 95vh;
    }

    .audprev-modal-content {
        width: 95%;
    }
}







/* how it works  */
#howitworks {
    margin-top: 100px;
    /* background-image: url('../assets/image/trial2.png'); */
    background-image: url('/assets/image/how -it-works-shape2.png');
    /* background-size: 640.80px 400px; */
    background-position: top right;
    background-repeat: no-repeat;
    width: 80%;
    padding: 50px;
    border: 1px solid lightgray;
    border-radius: 10px;
}

#howitworks .overlay {
    position: absolute;
    border-radius: inherit;
    bottom: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-repeat: repeat;
    background-position: center;
    background-size: 40.80px auto;
    background-image: url(../assets/image/overlay_bg.svg);
    border: 0;
    height: 150px;
    width: 100%;
    opacity: 0.3;
}

#howitworks .col {
    width: 32%;
}

#howitworks .icon {
    background-color: var(--primaryColor);
    padding: 15px 20px;
    border-radius: 30px;
    color: white;
}

.shape_how_it_works {
    top: 0;
    right: 0 !important;
    height: 400px !important;
    width: 400px !important;
    opacity: 0.2 !important;
}

/* end code for how it works  */


/* clients  */
.client_section {
    padding: 0 50px;
    /* background-color: #f4f4f4; */
    text-align: center;
    width: 95%;
    margin: 50px auto;
}

.client_section h2 {
    margin-bottom: 20px;
    font-size: 19px;
    color: #333;
}

.slider {
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 100px;
}

.slide_track {
    display: flex;
    width: calc(250px * 10);
    /* Adjust based on the number of clients */
    animation: scroll 20s linear infinite;
    gap: 20px;
}

.slide {
    width: 250px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slide img {
    width: 100%;
    height: 100px;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-250px * 5));
        /* Adjust based on the number of clients */
    }
}

/* end of clients  */


/* code for marque text  */
.marque {
    margin: 0 auto;
    width: 100%;
    /* padding: 20px; */
}

.marquee_effect {
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
    width: 100%;
}

.marquee_effect div {
    font-size: 9rem;
    font-family: arial black;
    padding-left: 100%;
    display: inline-block;
    animation: animate 20s linear infinite;
    color: #000 !important;
}

@keyframes animate {
    100% {
        transform: translate(-100%, 0);
    }
}

/* end code for marque text  */


/* code for video  */
.video {
    /*height: 800px;*/
    width: 100%;
    margin: 0 auto;
    position: relative;
    padding: 20px;
    padding-top: 80px;
    background-color: #5b23d11c;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    /*border-radius: 10px;*/
}

.video iframe {
    height: 750px !important;
    width: 100%;
    border-radius: 10px;
}

/* end of code for video  */



/* features slide  */
.features_caption {
    padding: 20px;
}
.features_slide_wrapper {
    /* height: calc(100vh * 14); */
    position: relative;
}


.features_slide {
    border: 1px solid lightgray;
    border-radius: 10px;
    background-color: #fafafa; /* Removed invalid color combination */
    width: 80%;
    margin: 20px auto;
    padding: 50px 20px;
    box-shadow: var(--shadow);
    /* height: 100vh; */

    
    transform: scale(0.8); /* Default scaled down */
    transition: transform 0.6s ease, opacity 0.6s ease;
    opacity: 0; /* Default fully transparent */
    visibility: hidden; /* Make it invisible */
}

.features_slide.active {
    transform: scale(1); /* Full size for the active div */
    opacity: 1; /* Fully visible */
    visibility: visible; /* Make it visible */
    z-index: 1; /* Ensures it's on top */
}

.features_slide.previous,
.features_slide.next {
    opacity: 0.7; /* Less transparent */
    visibility: visible; /* Ensure they are visible */
    z-index: 0; /* Lower z-index */
}




.overlay_bg {
    position: absolute;
    border-radius: inherit;
    bottom: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-repeat: repeat;
    background-position: center;
    background-size: 40.80px auto;
    background-image: url('../assets/image/overlay_bg.svg');
    border: 0;
    height: 100px;
    width: 100%;
    opacity: 0.1;
}

/* first features_slidecol  */
.slide_caption {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 900;
    font-size: 16.9px;
}

.slide_title {
    font-size: 40px;
    margin-top: 30px;
    line-height: 1.3;
}

/* last features_slidecol  */
.features_slide .col:nth-child(2) {
    /*height: 600px; */
    /*position: relative;*/
    /*overflow: hidden;*/
    border-radius: 10px;
    padding: 20px;
    /*box-shadow: var(--shadow);*/
}


.feature_img_overlay{
    /*height: 100%;*/
    width: 100%;
    object-fit: contain;
    /*position: absolute;*/
    top: 0;
    left: 0;
}

.overlay {
    -webkit-mask: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%) add;
    background: linear-gradient(180deg, rgba(8, 8, 10, 0) 0%, rgb(9, 9, 11) 100%);
    bottom: 0;
    flex: none;
    left: 0;
    mask: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%) add;
    position: absolute;
    right: 0;
    z-index: 0;
    height: 100%;
    width: 100%;
}

.overlay_profile {
    background-color: whitesmoke;
    padding: 10px;
    padding-right: 15px;
    border-radius: 30px;
    width: fit-content;
    margin-left: auto;
    transition: 0.5s;
    box-shadow: var(--shadow);
}

.overlay_profile img {
    height: 40px;
    width: 40px;
    border-radius: 50%;
}

.overlay_content {
    position: absolute;
    bottom: 40px;
    left: 40px;
}

.overlay_content h4 {
    font-size: 30px;
    font-style: normal;
    font-weight: 600;
    font-weight: 700;
    letter-spacing: -.04em;
    line-height: 1.4em;
    color: whitesmoke;
    max-width: 350px;
    transition: 0.5s;
}




.weviy-new-features {
  margin-bottom: 48px;
  /*padding: 24px;*/
  border-radius: 12px;
  /*background-color: #fff;*/
  /*box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);*/
}

.weviy-new-features h3 {
  font-size: 24px;
  margin-bottom: 8px;
  color: #222;
}


.weviy-new-features p {
  font-size: 16px;
  color: #444;
  margin-bottom: 16px;
  line-height: 1.5;
}

.weviy-new-features-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.weviy-new-features-list li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1;
  color: #333;
  /*background-color: #f9f9f9;*/
  border-radius: 8px;
  padding: 6px 8px 6px 40px;
  /*box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);*/
}

.weviy-new-features-list li::before {
  content: '✅';
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #28a745;
  font-size: 18px;
  font-weight: bold;
}

.weviy-new-features-list strong {
  font-weight: 600;
  color: #555;
}


.weviy-new-features em {
  display: block;
  margin-bottom: 16px;
  font-style: italic;
  color: #666;
  font-size: 16px;
}




/* end for features slides  */


/* use cases  */
.use-case-card-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    padding: 20px 0;
    /* flex-wrap: wrap; */
}

.use-case-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding: 20px;
    /* max-width: 300px; */
    width: calc(100% / 4);
    transition: transform 0.3s ease;
}

.use-case-card:hover {
    transform: translateY(-10px);
    background-color: var(--primaryColor);

    * {
        color: white;
    }
}

.use-case-card-icon {
    margin-bottom: 20px;
}

.use-case-card-icon i {
    font-size: 40px;
    color: var(--primaryColor);
    /* Use a theme-matching color */
}

.use-case-card h3 {
    font-size: 1.2em;
    margin: 10px 0;
    font-weight: bold;
    font-family: sans-serif;
    margin-top: 20px;
}

.use-case-card p {
    font-size: 1em;
    color: #666;
    line-height: 1.7;
    font-weight: 500;
    margin-top: 30px;
}

.translate_Y {
    transform: translateY(50px);
}

/* end code for use cases  */

/* code for template gallery  */
.template_gallery {
    width: min(1900px, 100vw);
    margin: auto;
    position: relative;
    padding-top: 100px;
}

.slider {
    width: 100%;
    height: 400px;
    overflow: hidden;
    mask-image: linear-gradient(to right,
            transparent,
            #000 10% 90%,
            transparent);

}

.slider_list {
    display: flex;
    width: 100%;
    min-width: calc(350px * var(--quantity));
    position: relative;
    height: 100%;
}

.slider_item {
    width: 480px;
    height: 100%;
    position: absolute;
    left: 100%;
    animation: autoRun 30s linear infinite;
    transition: filter 0.5s;
    animation-delay: calc((30s / var(--quantity)) * (var(--position) - 1) - 30s) !important;
    box-shadow: var(--shadow);
    border-radius: 15px;
    background-color: white;
    /*padding: 5px;*/
}

.slider_item img {
    width: 100%;
    display: block;
    height: 100%;
    object-fit: contain;
    border-radius: 10px;
}

@keyframes autoRun {
    from {
        left: 100%;
    }

    to {
        left: calc(350px * -1);
    }
}

.slider:hover .slider_item {
    animation-play-state: paused !important;
    /* filter: grayscale(1); */
}

.slider_item:hover {
    /* filter: grayscale(0); */
}

.slider[reverse="true"] .slider_item {
    animation: reversePlay 30s linear infinite;
}

@keyframes reversePlay {
    from {
        left: calc(350px * -1);
    }

    to {
        left: 100%;
    }
}



.sliderModal-container {
    background-color: rgba(138, 43, 226, 0.4);
    backdrop-filter: blur(10px);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    visibility: hidden;
    opacity: 0;
    transition: 0.5s;
}

.sliderModal-wrapper {
    width: 100%;
    background-color: white;
    background-color: rgba(0, 0, 0, 0.5);
    border-top: 5px solid blueviolet;
    border-top-right-radius: 5px;
    padding: 0 20px 20px 0;
    overflow: hidden;
    color: white;
    padding-top: 5px;
}

.close-sliderModalBtn {
    display: block;
    text-align: right;
    color: white;
    font-size: 19px;
    padding: 5px 10px;
    border-radius: 30px;
    width: fit-content;
    margin: 10px;
    margin-left: auto;
    transition: 0.5s;
    cursor: pointer;
    margin-right: -10px;
}

.close-sliderModalBtn:hover {
    background-color: lightgray;
    color: white;

}

.sliderModal-content {
    /* border: 2px solid lightgray; */
    border-radius: 10px;
    border-left: none;
    padding: 5px 20px;

    margin-left: -5px;
    text-align: center;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.sliderModal-content h3 {
    color: white;
    font-size: 16px;
}

.sliderModal-content h2 {
    font-size: 22px;
    margin-top: 5px;
    margin-bottom: 15px;
    color: white;
}

.sliderModal-content h5 {
    font-size: 14px;
    color: white;
}

.sliderModal-profile {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 30px;
}

.sliderModal-profile img {
    height: 35px;
    width: 35px;
    border-radius: 50%;
    object-fit: cover;
}

.sliderModal-profile h4 {
    color: white;
    display: flex;
    gap: 5px;

    span {
        color: whitesmoke;
    }
}

.sliderModal-btn {
    margin-top: 20px;
    background-color: blueviolet;
    color: white;
    padding: 12px 35px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
    border-radius: 30px;
    text-decoration: none;
    border: 2px solid blueviolet;
    transition: 0.5s;
}

.sliderModal-btn:hover {
    background-color: transparent;
    border-color: white;
    color: white;
}

.sliderModal-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    margin-top: 20px;
}

.sliderModal-list li {
    display: flex;
    gap: 5px;
    font-size: 15px;

    i {
        color: blueviolet;
    }
}

.slider_item:hover .sliderModal-container {
    visibility: visible;
    opacity: 1;
}

/* end code for template gallery  */

/* code for pricing  */
.pricing {
    width: 80%;
    padding: 20px 0;
    margin: 20px auto;
}

.pricing_toggle p {
    font-size: 14px;
    font-weight: 300;
}

.pricing_toggle span {
    color: var(--primaryColor);
}

/* * code for the toggle switch */

.pricing_toggle_wrapper {
    display: inline-block;
    position: relative;
    width: 40px;
    height: 20px;
}

/* Hide the default checkbox */
.pricing_toggle_wrapper input[type="checkbox"] {
    opacity: 0;
    width: 0;
    height: 0;
}

/* Style for the label */
.pricing_toggle_label {
    position: absolute;
    cursor: pointer;
    background-color: #ccc;
    border-radius: 15px;
    width: 100%;
    height: 100%;
    transition: background-color 0.3s;
}

/* Toggle button */
.pricing_toggle_btn {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 14px;
    height: 14px;
    background-color: #fff;
    border-radius: 50%;
    transition: transform 0.3s;
}

/* Checked state */
.pricing_toggle_wrapper input[type="checkbox"]:checked+.pricing_toggle_label {
    background-color: var(--primaryColor);
}

.pricing_toggle_input[type="checkbox"]:checked+.pricing_toggle_label .pricing_toggle_btn {
    transform: translateX(18.5px);
}

/* .pricing .col:nth-child(3) {
    width: 40%;
}

.pricing .col:nth-child(4) {
    width: 30%;
}

.pricing .col:nth-child(5) {
    width: 30%;
} */

.pricing_title {
    line-height: 1.3;
    margin-top: 8rem;
    margin-bottom: 20px;
    font-size: 1.8rem;
    font-weight: 700;
}

.pricing_subtitle {
    font-size: 1.05rem;
    line-height: 1.6;
    font-weight: 500;
    margin-bottom: 1rem;
}

.pricing_desc {
    margin-bottom: 1rem;
    font-size: 0.8rem;
}

/* 2nd col  */
.pricing_card {
    background-color: #fff;
    box-shadow: 0 0 0 .05rem rgba(8, 60, 130, .06), 0 0 1.25rem rgba(30, 34, 40, .04);
    padding: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.pricing .price {
    font-size: 2.4rem;

    small {
        font-size: 17.9px;
        font-weight: 500;
        color: #60697b;
        margin-top: auto;
        margin-bottom: .25rem;
    }

    sup {
        display: inline-block;
        margin-right: -5px;
    }

    sub {
        display: inline-block;
        margin-left: -12px;

        small {
            font-size: 17px;
        }
    }
}

.price_name {
    margin-top: 8px;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

.price_list {
    list-style: none;
}

.price_list li i {
    padding: 5px 10px;
    background-color: whitesmoke;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primaryColor);
    font-size: 15px;
}

/* end code for pricing  */

/* faq code  */
.faq {
    padding: 20px 0;
    width: 80%;
    margin: 20px auto;
}

.faq_title {
    font-size: 35px;
    color: rgb(9, 9, 11);
}

.faq .desc {
    font-size: 17px;
    color: rgb(67, 67, 68);
}

.faq_content {
    border-bottom: 1px solid lightgray;
    padding-bottom: 30px;
    transition: 0.5s;
}

.faq_ques {
    cursor: pointer;
}

.faq_ques:hover {
    .ques_title {
        color: gray !important;
    }

    i {
        color: gray !important;
    }
}

.ques_title {
    color: rgb(9, 9, 11);
    font-size: 19px;
    transition: 0.7s;
}

.faq_ques span {
    transition: 0.5s;
}

.faq_ques i {
    color: rgb(9, 9, 11);
    transition: 0.7s;
}

.faq_ans,
.faq_ques {
    transition: 0.5s;
}

/* 2nd col  */
.faq .col:last-child {
    height: 800px;
  background-size: contain;
  background-position: center;
  padding: 20px;
  border-radius: 10px;
  overflow: hidden;
  transition: 0.5s;
  background-repeat: no-repeat;
  background-color: #0a0224;
}

/* end of code for faq  */



/* code for contact  */
.contact {
    background-color: var(--primaryColor);
    padding: 50px 150px;
}

.contact img {
    height: 300px;
}

.contact .col:nth-child(2) {
    text-align: left;
    padding-left: 70px;
}

.contact .title,
.contact .desc {
    color: #fff;
    text-align: left;
    margin-left: 0;
    line-height: 2;
}







/* CTA Container */
.cta-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 3rem 1.5rem;
    background: var(--primaryColor);
    color: white;
    /* min-height: 85vh; */
    position: relative;
    padding-bottom: 0;
    /* overflow: hidden; */
}

/* Decorative Elements */
.cta-bg-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    background-color: #ffffff;
}

.circle-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    left: -100px;
}

.circle-2 {
    width: 200px;
    height: 200px;
    bottom: 10%;
    right: 5%;
}

.circle-3 {
    width: 150px;
    height: 150px;
    bottom: 30%;
    left: 10%;
}

/* Content Container */
.cta-content {
    /* max-width: 1000px; */
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
    /* margin-top: 2rem; */
    gap: 50px;
}

/* Text Content */
.cta-text {
    flex: 1;
    padding-left: 11rem;
}

.cta-heading {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: #fff;
}

.cta-subheading {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Button Styles */
.cta-button {
    display: inline-block;
    background-color: #ff4d8f;
    color: white;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 77, 143, 0.4);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 77, 143, 0.6);
}

/* Free Trial Text */
.free-trial-text {
    font-size: 0.85rem;
    margin-top: 1rem;
    opacity: 0.8;
}

/* Image Container */
.cta-image {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
    margin: -120px -2.4% -60px -5%;
}

.cta-image img{
    width: 100%;
    height: auto;
}

/* Logo */
.company-logo {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 3rem;
    align-self: flex-start;
}

.logo-highlight {
    color: #ff4d8f;
}

/* Media Queries */
@media (max-width: 1300px) {
    .cta-container{
        padding-bottom: 30px;
    }
}
@media (max-width: 1200px) {
    .cta-text {
        padding-left: 5rem;
    }
    
    .cta-heading {
        font-size: 2.5rem;
    }
}
@media (max-width: 992px) {
    .cta-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-text {
        padding-left: 0;
        margin-bottom: 3rem;
    }
    
    .company-logo {
        align-self: center;
    }
    
    .cta-heading {
        font-size: 2.5rem;
    }
    .cta-image{
        margin: 0 !important;
    }
}

@media (max-width: 576px) {
    .cta-heading {
        font-size: 1.5rem;
    }
    
    .cta-subheading {
        font-size: 1rem;
    }
    
    .device-mockup {
        width: 70%;
    }
}

 /* Main Content */
 .int_container {
    width: 80%;
    margin: 0 auto;
    padding: 4rem 2rem;
}

/* integration Section */
.integration {
    text-align: center;
    margin-bottom: 3rem;
}

.integration-title {
    font-size: 2.8rem;
    color: #2d3748;
    margin-bottom: 1rem;
    font-weight: 700;
}

.integration-subtitle {
    font-size: 1.2rem;
    color: #718096;
    max-width: 700px;
    margin: 0 auto;
}

/* Integrations Grid */
.integrations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.integration-card {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.integration-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    border-color: #cbd5e0;
}

.integration-icon {
    width: 48px;
    height: 48px;
    margin-right: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.integration-icon img {
    max-width: 100%;
    max-height: 100%;
}

.integration-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
    color: #2d3748;
}

.integration-content p {
    font-size: 0.9rem;
    color: #718096;
}

/* Call to Action Section */
.cta-section {
    background-color: var(--darkColor);
    border-radius: 12px;
    padding: 3rem;
    text-align: center;
    color: white;
    margin-top: 2rem;
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #fff;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button {
    background-color: white;
    color: #5a67d8;
    padding: 0.8rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #f8fafc;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Media Queries */
@media (max-width: 992px) {
    .int_container{
        width: 100%;
    }
    .nav-menu {
        display: none;
    }
    
    .integrations-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .header {
        padding: 1rem 5%;
    }
    
    .auth-buttons {
        display: none;
    }
    
    .integration-title {
        font-size: 2.2rem;
    }
    
    .integrations-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-section {
        padding: 2rem 1.5rem;
    }
}

/* Mobile Menu Button (visible only on mobile) */
.mobile-menu-button {
    display: none;
    cursor: pointer;
}

@media (max-width: 992px) {
    .mobile-menu-button {
        display: block;
    }
}



/* code for btn box animation  */
.btn-box a {
    position: relative;
    display: inline-block;
    overflow: hidden;
    font-size: 15px;
    height: 50px;
    padding: 12px 77px 12px 32px;
    background: transparent;
    line-height: 26px;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 30px;
    text-transform: capitalize;
    transition: all 500ms ease;
    z-index: 1;
    font-family: sans-serif;
    font-weight: 600;
}

.btn-box a:before {
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    height: 100%;
    width: 100%;
    content: "";
    background-color: #fff;
    border-radius: 30px;
    -webkit-transform: scale(0, 1);
    -ms-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: top right;
    -ms-transform-origin: top right;
    transform-origin: top right;
    -webkit-transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -moz-transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -o-transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -webkit-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -moz-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -o-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
}

.btn-box a i {
    position: absolute;
    top: -1px;
    right: -1px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    background: #fff;
    font-size: 15px;
    color: #4527a4;
    border-radius: 50%;
    transition: all 900ms ease;
}

.btn-box a:hover {
    color: #4527a4;
}

.btn-box a:hover:before {
    background: #fff;
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: bottom left;
    -ms-transform-origin: bottom left;
    transform-origin: bottom left;
}

.btn-box a:hover i {
    background: #fff;
    color: #4527a4;
}

/* end code for button box animation   */

/* end of code for contact  */


/*template carousel */
.cs_container {
  max-width: 1900px;
  margin: 0 auto;
}

.cs_carousel_wrapper {
  position: relative;
  padding: 20px 0;
  mask-image: linear-gradient(to right, transparent, #000 2% 90%, transparent);
}

.cs_swiper {
  width: 100%;
  overflow: hidden;
}

.cs_card {
  position: relative;
  border-radius: 8px;
  background-color: #fff;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  cursor: grab;
  height: 500px;
}

.cs_card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.cs_card_image {
  width: 100%;
  height: 75%;
  object-fit: cover;
}

.cs_card_footer {
  padding: 10px 15px;
  background-color: #fff;
  border-top: 1px solid whitesmoke;
  margin-top: 15px;
  padding-bottom: 20px;
}

.cs_card_footer p:first-child {
  margin-bottom: 10px;
}

.cs_card_footer_row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cs_template_name {
  font-size: 18px;
  font-weight: 600;
  color: #333;
}

.cs_template_category {
  font-size: 14px;
  color: #666;
  text-align: right;
}

.cs_hover_buttons {
  position: absolute;
  bottom: 60px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding:0 15px;
  gap: 10px;
  transform: translateY(-50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}

.cs_card:hover .cs_hover_buttons {
  opacity: 1;
}

.cs_preview_btn, .cs_use_template_btn {
  padding: 10px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cs_preview_btn {
  background-color: #ff9800;
  color: white;
  width: 45px;
  height: 45px;
}

.cs_use_template_btn {
  background-color: #6200ea;
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  gap: 5px;
}


/* Swiper customization */
.swiper-slide {
  height: fit-content;
}

/* Direction indicator labels */
.direction-label {
  text-align: center;
  margin: 10px 0;
  font-weight: bold;
  color: #333;
}


/* testimony  */


.testimonies {
    width: 100%;
    background-color: #f8f9fa;
    text-align: center;
}

.swiper {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
    position: relative;
    margin-top: 20px;
}

.swiper-slide {
    background-position: center;
    background-size: cover;
    width: 500px;
    /* height: 300px; */
}

.swiper-slide img {
    display: block;
    width: 100%;
}

.testimony-slider {
    min-height: 300px !important;
    width: 100% !important;
    background-color: white;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    padding-bottom: 20px;
    border-radius: 5px;
}

.testimony-slider p {
    color: #06112a;
    padding: 20px;
    text-align: left;
}

.testimony-profile {
    display: flex;
    width: 90%;
    justify-content: flex-start;
    align-items: center;
    background-color: transparent;
}

.testimony-profile img {
    height: 80px;
    width: 80px !important;
    border-radius: 50%;
}

.text-div-1 {
    text-align: left;
    margin-left: 40px;
}

.text-div-1 h4 {
    font-size: 20px;
    font-style: italic;
}

.text-div-1 span {
    color: var(--primaryColor);
    font-size: 14px;
    font-style: italic;
}

.review-icon {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    background-color: var(--primaryColor);
    position: absolute;
    top: -7%;
    left: 5%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.review-icon h2 {
    font-size: 50px;
    color: white;
    margin-top: -25px !important;
}

@media(max-width:935px) {
    .text-div-1 h4 {
        font-size: 16px;
    }

    .text-div-1 span {
        font-size: 14px;
    }
}

@media(max-width:500px) {
    .testimonies {
        padding: 80px 20px;
    }
}

/* end of testimony  */

/* code for blog  */
.blog {
    width: 80%;
    padding: 20px 0;
    margin: 20px auto;
    background-color: whitesmoke;
}

.blog_row {
    margin-top: 130px !important;
    flex-wrap: wrap;
    justify-content: flex-start !important;
}

.blog_col {
    border: 1px solid lightgray;
    box-shadow: var(--shadow);
    padding: 10px;
    width: calc((100% / 3) - 2%);
    border-radius: 10px;
    transition: 0.5s;
    margin-bottom: 100px;
}

.blog_col:hover {
    border-color: var(--primaryColor);
}

.blog_col img {
    max-height: 350px;
    width: 100%;
    border-radius: 10px;
    /*margin-top: -80px;*/
    display: block;
}

.blog_content {
    padding: 30px;
    padding-bottom: 20px;
}

.blog_info a:last-child {
    color: #2E3A46;
}

.blog_title a {
    color: #06112a;
    font-size: 22px;
    line-height: 1.5;
    font-weight: 700;
    font-family: sans-serif;
}

/* end code for blog  */




/* code for footer  */

footer {
    background: #06112a;
    color: rgba(255, 255, 255, 0.7);
    /* height: 500px; */
    width: 100%;
}

.cta {
    background-image: url('../assets/image/footer_bg.png');
    background-size: cover;
    background-position: center;
    padding-top: 100px;
    padding-bottom: 40px;
}

.footer-contentsRow {
    width: 80%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap !important;
}

.footer-content-col {
    width: 16%;
    text-align: left;
    color: #999999;
    background-color: transparent;
}

.first-footer-col {
    background-color: transparent;
    padding: none;
    width: 22%;
}

.first-footer-col a {
    text-decoration: none;
}

.first-footer-col h2,
.second-footer-col h2 {
    color: #fff;
    font-size: 30px;
    line-height: 1;
}

.footer-text1 {
    color: #fff;
    /* font-size: 13px; */
}

.footer-text2 {
    margin-top: 40px;
    /* font-size: 15px; */
    line-height: 2;
}

.footer-icon {
    padding: 10px;
    border-radius: 50%;
    background-color: var(--primaryColor) !important;
    color: white;
    display: inline-block;
    font-size: 20px;
    margin-top: 20px;
}

.newsletter_form input {
    height: 40px;
    border-radius: 5px;
    padding: 15px;
    display: block;
    border: 1px solid lightgray;
    box-shadow: var(--shadow);
    max-width: 300px;
    width: 80%;
    background-color: lightgray;
    font-weight: 700;
    outline-color: var(--primaryColor);
}

.newsletter_form button {
    border: none;
    height: 40px;
    font-weight: 700;
}

.second-footer-col h2 {
    color: #fff;
    font-size: 20px;
}

.second-footer-col a {
    text-decoration: none;
    color: #999999;
    font-weight: bold;
    margin-top: 50px;
    display: flex;
    align-items: flex-end;
    background-color: transparent;
    text-transform: capitalize;
}

.second-footer-col a p {
    /* font-size: 15px; */
}

.second-footer-col a .arrow-footer {
    font-size: 25px;
}

.footer-linkText {
    margin-top: 20px !important;
}

.last-footer-col {
    background: transparent;
    width: 24%;
}

.footer-green {
    font-size: 25px;
    color: var(--primaryColor);
}

.footer-green-1 {
    font-size: 35px;
    color: var(--primaryColor);
    margin-bottom: 10px;
}

.last-itemDiv {
    position: relative;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999999;
    background: #050d21 !important;
    margin-top: 100px;
}

.last-itemDiv p a {
    color: var(--primaryColor);
    text-decoration: none;
}


.footer-content-col a:hover {
    color: var(--primaryColor);
    transition: 0.5s;
}

@media(max-width:565px) {
    .footer-green-1 {
        font-size: 35px;
        margin-bottom: 10px;
    }
}

/* end code for footer  */






/* genocide */
/* utility classes  */
.btn {
    background-color: var(--primaryColor);
    padding: 10px 20px;
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #f4f4f5;
    text-decoration: none;
    transition: background-color 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
    cursor: pointer;
    border: none;
}

.nobg_btn {
    background-color: transparent;
    color: #2E3A46;
    font-weight: 600;
    border: 1px solid lightgray;
    font-family: sans-serif;
}

.bg_white {
    background-color: #fff;
}

.bg_dark {
    background-color: #2E3A46 !important;
}

.btn:hover,
.plain_btn:hover {
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

.plain_btn {
    text-decoration: none;
    border: 1px solid lightgray;
    box-shadow: var(--shadow);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #fff;
    padding: 17px 30px;
    border-radius: 10px;
    font-size: 18px;
    cursor: pointer;
    transition: 0.6s;
}

.btn_left {
    display: block;
    width: fit-content;
}

.mr_auto {
    margin-left: unset !important;
    margin-right: auto !important;
    text-align: left !important;
}

.rounded {
    border-radius: 30px;
}

.rounded_10 {
    border-radius: 10px;
}

.rounded_bottom_none {
    border-bottom-right-radius: unset;
    border-bottom-left-radius: unset;
}

.relative {
    position: relative;
    z-index: 9;
}

.line_height_15 {
    line-height: 1.9;
}

.w_50 {
    width: 50%;
}

.w_70 {
    width: 70%;
}

.w_60 {
    width: 60%;
}

.w_30 {
    width: 30%;
}

.w_40 {
    width: 40%;
}

.sm_btn {
    padding: 5px 10px;
    font-size: 15px;
}

.lg_btn {
    padding: 15px 25px;
}

.fnt_600 {
    font-weight: 600 !important;
}

.mb_0 {
    margin-bottom: 0 !important;
}

.mb_10 {
    margin-bottom: 10px !important;
}

.mb_50 {
    margin-bottom: 50px;
}

.mt_200 {
    margin-top: 150px;
}

.mt_10 {
    margin-top: 10px;
}

.mt_20 {
    margin-top: 20px;
}

.mt_30 {
    margin-top: 30px;
}

.mgl_auto {
    margin-left: auto;
}

.margin_center {
    margin: 10px auto !important;
}

.justify_end {
    justify-content: flex-end;
}

.align_start {
    align-items: start !important;
}

.bg_none {
    background-color: transparent;
}

.border_none {
    border: none;
}

.text_dark {
    color: var(--darkColor) !important;
}

.no_bg {
    background: transparent;
}

.fnt_20px {
    font-size: 20px;
}

.fnts_40 {
    font-size: 40px !important;
}

.desc {
    font-size: 18px;
    color: rgb(82, 82, 91);
    line-height: 1.5;
    margin: 20px 0;
}

.max_width_700px {
    max-width: 700px;
    margin: 10px auto;
}

.fnts_16 {
    font-size: 16px;
}

.fnts_13 {
    font-size: 14px !important;
}

.row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.col_49 {
    width: 49%;
}

.d_flex {
    display: flex;
    align-items: center;
}

.flex_column {
    flex-direction: column;
}

.d_block {
    display: block !important;
}

.d_none {
    /* display: none !important; */
    height: 0 !important;
    overflow: hidden;
    padding: 0 !important;
}

.flex_wrap {
    flex-wrap: wrap;
}

.justify_center {
    justify-content: center;
}

.justify_start {
    justify-content: flex-start;
}

.w_100 {
    width: 100%;
}

.max_width_unset {
    max-width: unset !important;
}

.gap_30 {
    gap: 20px;
}

.gap_10 {
    gap: 10px;
}

.gap_20 {
    gap: 20px;
}

.gap_50 {
    gap: 50px;
}

.ul_list {
    display: flex;
    gap: 20px;
    list-style-type: none;
}

.ul_list a {
    text-decoration: none;
}

.text_white {
    color: white !important;
}

.text_whitesmoke {
    color: whitesmoke;
}

.text_primary {
    color: var(--primaryColor);
}

.text_center {
    text-align: center;
}

.text_left {
    text-align: left !important;
}

.margin_left {
    margin-left: auto !important;
}

.decoration_none {
    text-decoration: none;
}

.star {
    font-size: 70px;
    animation: rotate 5s linear infinite;
    position: absolute;
}

.container {
    padding-top: 100px !important;
}

/* card design  */
.card {
    text-align: center;
    padding: 50px 0;
    width: 80%;
    margin: 0 auto;
    /* background-color: red; */
}

.tagline {
    /* color: #aab0bc; */
    color: var(--primaryColor);
    letter-spacing: .02rem;
    font-size: 45px;
    text-transform: uppercase;
    line-height: 1.35;
    word-spacing: .01rem;
    font-weight: 900 !important;
    display: block;
    font-family: sans-serif;
    opacity: .3;
}

.title {
    color: #333;
    font-size: 1.8rem;
    margin: 15px auto;
    max-width: 500px;
    text-align: center;
    font-weight: 900;
    font-family: sans-serif;
    text-transform: capitalize;
}

.sub_title {
    font-size: 1.2rem;
    font-weight: 600;
    font-family: sans-serif;
    color: #333;

}

.mt_50 {
    margin-top: 50px;
}

.card .row {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.card_shape1 {
    position: absolute;
    background-image: radial-gradient(var(--primaryColor) 2px, transparent 2.5px);
    top: -2.5rem;
    left: -2rem;
    transform: translate3d(0px, 14px, 0px);
    background-size: .75rem .75rem;
    opacity: 0.5;
    height: 8rem;
    width: 8rem;
}

.card_shape2 {
    position: absolute;
    background-image: radial-gradient(var(--primaryColor) 2px, transparent 2.5px);
    bottom: -2.5rem;
    right: -2rem;
    transform: translate3d(0px, 14px, 0px);
    background-size: .75rem .75rem;
    opacity: 0.5;
    height: 8rem;
    width: 8rem;
}

.card_shape3 {
    position: absolute;
    background-image: radial-gradient(var(--primaryColor) 2px, transparent 2.5px);
    bottom: -1rem;
    right: -1.5rem;
    transform: translate3d(0px, 14px, 0px);
    background-size: .75rem .75rem;
    opacity: 0.5;
    height: 8rem;
    width: 8rem;
}

.card_shape4 {
    position: absolute;
    background-image: repeating-linear-gradient(-55deg,
            rgba(102, 16, 242, 0) 0.8px,
            /* Transparent purple */
            rgba(102, 16, 242, 1) 1.6px,
            /* Solid purple */
            rgba(102, 16, 242, 1) 3px,
            /* Solid purple */
            rgba(102, 16, 242, 0) 3.8px,
            /* Transparent purple */
            rgba(102, 16, 242, 0) 10px
            /* Repeat */
        );
    top: -2rem;
    right: 54rem;
    transform: translate3d(0px, 3px, 0px);
    background-size: .75rem .75rem;
    opacity: 0.5;
    height: 8rem;
    width: 8rem;
    border-radius: 50%;

}

.card .col {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.02);
    width: calc(25% - 15px);
    padding: 20px;
    text-align: center;
    transition: transform 0.3s;
    border: 2px solid whitesmoke;
}

.card .col:hover {
    transform: translateY(-10px);
}

.card .col img {
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
}

.card .col .title {
    color: #333;
    font-size: 1.05em;
    margin-bottom: 15px;
}

.card .col .desc {
    color: #777;
    font-size: 0.9em;
    margin-bottom: 20px;
}

.card .col a {
    color: #ff6600;
    text-decoration: none;
    font-weight: bold;
}

.card .col a:hover {
    text-decoration: underline;
}

/* hover effect  */
.card .col::after,
.card .col::before {
    position: absolute;
    content: "";
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    z-index: 0;
}

.card .col::after {
    width: 0%;
    height: 100%;
    left: 50%;
    top: 0;
    border-bottom: 2px solid var(--primaryColor);
    border-top: 2px solid var(--primaryColor);
}

.card .col::before {
    width: 100%;
    height: 0%;
    top: 50%;
    left: 0;
    border-left: 2px solid var(--primaryColor);
    border-right: 2px solid var(--primaryColor);
}

.card .col:hover::after {
    left: 0;
    width: 100%;
    border-radius: 7px;
}

.card .col:hover::before {
    top: 0;
    height: 100%;
    border-radius: 7px;
}

/* Responsive design */
@media (max-width: 768px) {
    .card .col {
        width: calc(50% - 20px);
    }
}

@media (max-width: 480px) {
    .card .col {
        width: 100%;

    }
}

.icon-svg {
    width: 2.6rem;
    height: 2.6rem;
}

.text_yellow {
    color: #fab758 !important;
}





/* media query  */

@media (max-width: 1500px) {
    .header_brand {
        padding: 20px 120px;
    }

    header {
        width: 87%;
    }

    .hero .col:first-child,
    .pages_hero {
        padding-left: 100px !important;
    }

    .hero h1 {
        font-size: 50px;
    }

    /* marque  */
    .marquee_effect div {
        font-size: 8rem;
    }

    /* faq  */
    .faq_title {
        font-size: 35px;
    }

    #howitworks,
    .card,
    .video,
    .features_slide,
    .pricing,
    .faq,
    .blog,
    .footer-contentsRow,
    .company_about,
    .features_details,
    .contact,
    .map,
    .blog_container {
        width: 84% !important;
    }
    
    
    .video {
        width: 100% !important;
    }

    .contact {
        padding: 50px 100px;
    }
}

@media (max-width: 1250px) {
    .header_brand {
        flex-wrap: wrap;
        padding: 20px 30px;
    }

    .header_brand .row {
        flex-wrap: wrap;
    }

    header {
        width: 100%;
        margin-top: 0;
        border-radius: 0;
        padding: 20px;
    }

    .hero {
        gap: 20px;
    }

    .hero .col:first-child,
    .pages_hero {
        padding-left: 40px !important;
        padding-left: 0 !important;
        padding-top: 50px;
    }

    .hero h1 {
        font-size: 40px;
    }

    .title {
        font-size: 1.5rem;
    }

    /* card  */
    .card .row {
        gap: 10px;
    }

    .marquee_effect div {
        font-size: 7rem;
    }

    /* video  */
    .video iframe {
        width: 100% !important;
        height: 450px !important;
    }

    /* features  */
    .features_slide {
        padding: 20px;
        height: unset;
    }

    .slide_title {
        font-size: 35px;
    }

    .features_slide .col:nth-child(2) {
        height: 500px;
    }

    /* use cases  */
    .use-case-card-row {
        flex-wrap: wrap;
    }

    .use-case-card {
        width: 49%;
    }

    /* faq  */
    .faq_title {
        font-size: 30px;
    }

    /* contact  */
    .contact {
        padding: 50px 100px;
    }

    /* blog  */
    .blog_content {
        padding: 15px;
    }

    .blog_title a {
        font-size: 20px;
    }

    /* cta  */
    .cta_title {
        font-size: 35px !important;
    }


    #howitworks,
    .card,
    .video,
    .features_slide,
    .pricing,
    .faq,
    .blog,
    .footer-contentsRow,
    .company_about,
    .features_details,
    .contact,
    .map,
    .blog_container {
        width: 93% !important;
    }

    .contact {
        padding: 50px 30px;
    }


}

@media (max-width: 1100px) {
    .hero h1 {
        font-size: 40px;
    }

    .desc {
        font-size: 16px !important;
    }

    .title {
        font-size: 1.3rem;
    }

    /* card  */
    .card .col .title {
        font-size: 1.3rem;
    }

    /* marque  */
    .marquee_effect div {
        font-size: 5rem;
    }

    /* features  */
    .features_slide_wrapper {
        height: unset;
        margin-top: 50px !important;
    }

    .slide_title {
        font-size: 30px;
    }

    /* faq  */
    .faq_title {
        font-size: 25px;
    }

    /* contact  */
    .contact {
        padding: 50px;
    }

    /* blog  */
    .blog_title a {
        font-size: 18px;
    }

    .blog_content {
        padding: 10px;
    }

    /* cta  */
    .cta_title {
        font-size: 30px !important;
    }

}


.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    width: 100%;
    border-radius: unset;
    padding: 10px;
    margin-top: 0;
    backdrop-filter: blur(20px);
    background-color: rgba(0, 0, 0, 0.5);
    border-color: transparent;
    padding: 0 40px !important;
    .menu_toggle_btn{
        color: #fff !important;
    }
}

.sticky-header .nav_link {
    color: #fff !important;
}


@media (max-width: 980px) {

    .header_brand {
        display: none;
    }

    header {
        border: none;
        box-shadow: unset;
        padding-top: 5px;
    }

    nav .logo img {
        height: 35px;
        width: 100px;
    }

    nav ul {
        /* min-height: 50vh; */
        position: absolute;
        top: 4.5rem;
        left: 0;
        background-color: whitesmoke;
        width: 100%;
        z-index: 99;
        /* border: 1px solid lightgray; */
        box-shadow: var(--shadow);
        border-top: unset;
        flex-direction: column;
        padding: 20px;
        gap: 30px;
        padding-left: 25px;
        padding-top: 30px;
        transition: 0.7s;
    }

    nav ul li a {
        padding: 10px;
        border-radius: 10px;
        display: block;
        color: #000 !important;
    }

    nav ul li a:hover {
        background-color: lightgray;
    }

    .collapse_menu {
        height: 0;
        overflow: hidden;
        padding: 0;
        margin: 0;
        /* position: relative; */
        width: 100%;
    }

    .hero {
        flex-direction: column;
        padding: 30px;
        /* padding-top: ; */
    }

    .hero .col {
        width: 100% !important;
        margin-bottom: 30px;
    }

    .hero .col:first-child,
    .pages_hero {
        padding-left: 0;
    }

    .hero h1 {
        font-size: 35px;
    }


    .mobile_dNone {
        display: none !important;
    }

    .mobile_dBlock {
        display: block !important;
        text-align: center;
    }

    .sleek_line_container {
        opacity: 0.6;
    }

    .star_1,
    .star_2,
    .star_3 {
        display: none;
    }


    #howitworks {
        padding: 50px 20px;
    }

    .container {
        padding-top: 80px !important;
    }

    /* card  */
    .card .row {
        flex-wrap: wrap;
        width: 100%;
    }

    .card .col {
        width: 49%;
    }

    /* marque  */
    .marquee_effect div {
        font-size: 4rem;
    }

    /* video  */
    .video iframe {
        width: 100% !important;
        height: 350px !important;
    }

    /* features  */
    .row {
        flex-direction: column;
    }

    .row .col {
        width: 100% !important;
    }

    .slide_title,
    .overlay_content h4 {
        font-size: 25px;
    }

    .overlay_profile {
        flex-direction: row;
    }

    /* use cases  */
    .use-case-card {
        width: 100%;
        margin-bottom: 20px;
        transform: unset;
    }

    /* faq  */
    .faq_title {
        font-size: 22px;
    }

    .faq_ques.row {
        flex-direction: row !important;
    }

    .faq .col:last-child {
        height: 500px;
    }

    /* contact  */
    .contact .col:nth-child(2) {
        padding-left: 0;
    }

    /* blog  */
    .blog.container {
        /* padding: 10px; */
        padding-top: 0 !important;
    }

    .blog_row {
        margin-top: 40px !important;
    }

    .blog_col {
        margin-bottom: 0;
    }

    .blog_col img {
        margin-top: 0;
    }

    .blog_info.row {
        flex-direction: row;
    }

    .blog_content {
        padding: 20px 10px;
    }


    /* footer  */
    footer {
        height: unset;
        /* padding-bottom: 100px; */
    }

    /* cta  */
    .cta_title {
        font-size: 25px !important;
    }

    .footer-contentsRow {
        padding: 0 20px;
        margin-top: 100px !important;
    }

    .footer-content-col {
        width: 50%;
        margin-bottom: 50px;
    }

    .footer-green-1 {
        margin-bottom: 0;
        font-size: 25px;
    }

    .last-itemDiv {
        padding: 0 10px;
        margin-top: 70px;
        padding-bottom: 20px;
    }

    .features_details {
        padding: 10px 0;
    }
}



@media (max-width: 560px) {
    .hero {
        /* min-height: 72vh; */
        padding: 20px;
    }

    .hero h1 {
        font-size: 25px;
    }

    .hero_slide {
        width: 100%;
    }

    .star {
        display: none;
    }

    .hero .lg_btn {
        padding: 0px 12px !important;
        font-size: 15px;
        font-weight: 600;
    }

    /* .hero_media {
        height: 450px;
    } */

    .sleek_line_container {
        opacity: 0.4;
    }

    .container {
        padding-top: 50px !important;
    }

    /* card  */
    .card {
        padding: 50px 10px;
    }

    .card .col {
        width: 100%;
    }

    /* marque  */
    .marquee_effect div {
        font-size: 3rem;
    }

    /* video  */
    .video {
        padding: 20px 10px;
    }

    .video {
        height: 600px;
    }

    /* features  */
    .slide_title,
    .overlay_content h4 {
        font-size: 22px;
    }

    .features_slide .col:nth-child(2) {
        height: 400px;
        display: none;
    }

    .overlay_content {
        left: 20px;
        bottom: 20px;
    }

    /* pricing  */
    .pricing {
        padding: 10px;
    }

    .pricing .row.relative {
        margin-top: -50px !important;
    }

    /* faq  */
    .faq {
        padding: 10px;
    }

    .faq .col:last-child {
        height: 400px;
        display: none;
    }

    /* contact  */
    .contact {
        padding: 40px 20px;
    }

    .blog_title a {
        font-size: 16px;
    }

    /* footer  */
    .footer-content-col {
        width: 100%;
    }

    /* cta  */
    .cta_desc {
        font-size: 16px !important;
    }

    .newsletter_form {
        flex-direction: column;
        align-items: flex-start;
    }

    .newsletter_form button {
        width: 130px;
        font-size: 16px;
    }
    
    .video iframe {
        width: 100% !important;
        height: 220px !important;
     }

}

@media (max-width: 414px) {
    /* .hero_media {
        height: 350px;
    } */

    .sleek_line_container {
        opacity: 0.2;
    }

    .swiper-slide {
        width: 100%;
    }
    
    .video iframe {
        width: 100% !important;
        height: 220px !important;
     }
}




.pricing_table_wrapper{
    margin-top: 50px;
}
.pricing_table_wrapper table{
    width: 100%;
    line-height: 1.25;
    background-color: rgb(237, 236, 236);
    border-radius: 5px;
}
.pricing .title{
    text-align: center;
    font-size: 40px;
    margin-bottom: 20px;
}
.pricing_cycle_btns{
    display: flex;
    align-items: center;
    gap: 1px;
    justify-content: center;
}
.pricing_cycle_btns a{
    text-decoration: none;
    background-color: rgb(224, 224, 224);
    padding:10px 20px;
    font-weight: 600;
    font-size: 17px;
    /* border-right: 1px solid lightgray; */
    color: #000;
}
.pricing_cycle_btns a:hover{
    background-color: lightgray;
}
.pricing_cycle_btns a:nth-child(1){
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}
.pricing_cycle_btns a:nth-child(3){
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}
.pricing_cycle_active_btn{
    background-color: #9c62fb!important;
}

.pricing_table_wrapper table th,
.pricing_table_wrapper table td{
    border-right: 1px solid lightgray;
    padding: 15px;
}
.table_price_details h4{
    color: #6d6e70;
    margin-bottom: 10px;
}
.table_price_details p{
    font-weight: 600;
    margin-bottom: 2px;
    font-size: 17px;
}
.table_price_details p:nth-child(2){
    font-size: 20px;
    letter-spacing: 1px;
    word-spacing: 2px;
}
.table_price_details h5{
    text-decoration: line-through;
    font-weight: 500;
    font-size: 18px;
    color: gray;
}
.pricing_get_started{
    padding:12px 45px;
    border-radius: 10px;
    background-color: var(--primaryColor);
    color: white ;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin-top: 15px;
    font-size: 18px;
    transition: 0.5s;
}
.pricing_get_started:hover{
    background-color: #230257;
}

.table_tr_linethrough th{
    background-color: gray;
    height: 50px;
}
.table_tr_linethrough th div{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding:15px 20px;
    color: lightgray;
}

.pricing_table_wrapper table td{
    padding: 20px 35px;
    border-bottom: 1px solid lightgray;
}
.tr_title{
    font-weight: 600;
    width: 100%;
    display: flex;
    justify-content: space-between;
    font-size: 18px;
}
.tr_desc{
    font-weight: 300;
    text-align: center;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}
.text_red{
    color: red !important;
}
.text_green{
    color: green;
}


@media (max-width: 1200px) {
    
    .pricing .title{
        font-size: 30px;
    }
    .pricing_table_wrapper{
        width: 100vw;
        overflow-x: scroll;
    }
    .pricing_get_started{
        padding:10px 25px;
        font-size: 16px;
    }
}


.design-title{
    font-family: 'Dancing Script', cursive;
    margin-top: -30px;
    line-height: 1;
    
}

/* #use_cases{
    margin-top: 280px;
} */







.weviy-cd-sliderModal-content {
  border-radius: 10px;
  border-left: none;
  text-align: center;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  padding: 10px;
    padding-top: 10px;
  padding-top: 4rem;
  width: 90%;
}


.weviy-cd-sliderModal-content h3{
    /* line-height: 1; */
    color: #fff;
    font-size: 15px;
    max-width: 100%;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}
.weviy-cd-sliderModal-content h2{
    color: #fff;
    font-size: 18px;
    max-width: 100%;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    /* margin-top: 5px; */
    /* margin-bottom: 15px; */
}
.weviy-cd-sliderModal-content h5{
    color: #fff;
    font-size: 13px;
    max-width: 100%;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    /* font-weight: 500; */
}


.weviy-cd-carousel-container {
      width: 100%;
      overflow: hidden;
      position: relative;
      padding: 40px 0;
    }

    .weviy-cd-carousel-track {
      display: flex;
      gap: 20px;
      transition: transform 0.3s ease;
      will-change: transform;
    }

    .weviy-cd-carousel-item {
      flex: 0 0 auto;
      width: 500px;
      background: white;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
      position: relative;
      height: 420px;
    }

    .weviy-cd-carousel-item img {
      width: 100%;
      height: auto;
      object-fit: cover;
    }

    .weviy-cd-item-body {
      padding: 10px;
      /*text-align: center;*/
    }

    .weviy-cd-item-body h4 {
      margin: 5px 0;
      font-size: 16px;
    }

    .weviy-cd-item-body p {
      margin: 2px 0;
      font-size: 14px;
      color: #555;
    }

    .weviy-cd-item-overlay {
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: rgba(0, 0, 0, 0.5);
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      opacity: 0;
      transition: opacity 0.3s;
    }

    .weviy-cd-carousel-item:hover .weviy-cd-item-overlay {
      opacity: 1;
    }

    .weviy-cd-item-overlay button {
      margin: 5px;
      padding: 10px 20px;
      border: none;
      background: #007bff;
      color: white;
      border-radius: 5px;
      cursor: pointer;
    }

    .weviy-cd-item-overlay button:hover {
      background: #0056b3;
    }
    
    
    
    
    
    
.pagecta_section {
    padding: 80px 0;
    min-height: 100vh;
}

.pagecta_row {
    display: flex;
    max-width: 1500px;
    margin: 0 auto;
    height: calc(100vh - 160px);
    padding: 0 40px;
}

.pagecta_col {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pagecta_col:first-child {
    max-width: 500px;
}

.pagecta_scrollable_col {
    overflow-y: auto;
    padding-right: 20px;
    justify-content: flex-start !important;
    padding-top: 40px;
    scrollbar-width: none;
}

.pagecta_scrollable_col::-webkit-scrollbar {
    width: 8px;
}

.pagecta_scrollable_col::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.pagecta_scrollable_col::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}

.pagecta_scrollable_col::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.3);
}

.pagecta_brand_tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.8);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
    width: fit-content;
}

.pagecta_main_heading {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 24px;
}

.pagecta_main_description {
    font-size: 1.2rem;
    color: #fff;
    line-height: 1.6;
    margin-bottom: 40px;
}

.pagecta_cta_button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #000;
    color: white;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    width: fit-content;
}

.pagecta_cta_button:hover {
    background: #333;
    transform: translateY(-2px);
}

.pagecta_cta_button::before {
    content: "↗";
    font-size: 18px;
}

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

.pagecta_content_image {
    width: 100%;
    border-radius: 12px;
    margin: 0 auto;
    display: block;
    transition: transform 0.3s ease;
}

.pagecta_content_image:hover {
    transform: scale(1.02);
}

.pagecta_grid_container {
    margin-top: 90px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-bottom: 180px;
}

.pagecta_card {
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    background: #fff;
}


.pagecta_card_icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #222;
    font-size: 20px;
}

.pagecta_card_title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 12px;
    line-height: 1.3;
}

.pagecta_card_description {
    color: #64748b;
    line-height: 1.6;
    font-size: 0.95rem;
}

@media (max-width: 1024px) {
    .pagecta_row {
        flex-direction: column;
        height: auto;
        gap: 40px;
    }

    .pagecta_col:first-child {
        max-width: none;
    }

    .pagecta_scrollable_col {
        overflow-y: visible;
        padding-right: 0;
        padding-top: 0;
        height: auto;
    }

    .pagecta_main_heading {
        font-size: 3rem;
    }

    .pagecta_grid_container {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .pagecta_row {
        padding: 0 20px;
    }

    .pagecta_grid_container {
        margin: 30px 0;
    }

    .pagecta_content {
        padding: 0;
    }

    .pagecta_main_heading {
        font-size: 2.5rem;
    }

    .pagecta_content_title {
        font-size: 2.5rem;
    }

    .pagecta_content_description {
        font-size: 1.1rem;
    }

    .pagecta_content_image {
        height: 300px;
    }

    .pagecta_card {
        padding: 24px;
    }

}

@media (max-width: 480px) {
    .pagecta_section {
        padding: 50px 0;
    }

    .pagecta_main_heading {
        font-size: 2rem;
    }

    .pagecta_content_title {
        font-size: 2rem;
    }

    .pagecta_content_description {
        font-size: 1rem;
    }

    .pagecta_content_image {
        height: 250px;
    }

    .pagecta_card {
        padding: 20px;
    }

    .pagecta_card_icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}



/*new testimonial*/
.weviypricing_testimonial_section {
    max-width: 1300px;
    margin: 0 auto;
    text-align: center;
    padding: 60px 0;
}

.weviypricing_header {
    margin-bottom: 60px;
}

.weviypricing_title {
    font-size: 48px;
    font-weight: 600;
    color: #1a202c;
    line-height: 1.2;
    margin-bottom: 20px;
}

.weviypricing_subtitle {
    font-size: 48px;
    font-weight: 600;
    color: #1a202c;
    line-height: 1.2;
    margin-bottom: 40px;
}

.weviypricing_trustpilot_container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.weviypricing_rating {
    font-size: 18px;
    font-weight: 600;
    color: #1a202c;
}

.weviypricing_trustpilot_logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.weviypricing_star {
    color: var(--primaryColor);
    font-size: 20px;
}

.weviypricing_trustpilot_text {
    font-size: 18px;
    font-weight: 600;
    color: var(--primaryColor);
}

.weviypricing_review_count {
    font-size: 16px;
    color: #718096;
}

.weviypricing_testimonials_container {
    position: relative;
    margin-top: 80px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.weviypricing_testimonial_left{
    margin-top: 30px;
    flex: 0 0 25%;
    max-width: 25%;
    padding-right: 20px;
    position: relative;
}
.weviypricing_quote_icon {
    position: absolute;
    left: 0;
    top: -20px;
    font-size: 120px;
    color: #e2e8f0;
    font-family: serif;
    z-index: 1;
}

.weviypricing_section_title {
    text-align: left;
    z-index: 2;
    position: relative;
    margin-top: 80px;
}

.weviypricing_section_heading {
    font-size: 32px;
    font-weight: 600;
    color: #1a202c;
    line-height: 1.3;
    max-width: 250px;
    padding-top: 20px;
}

.weviypricing_testimonial_action_btns {
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 2;
    margin-top: 30px;
}

.weviypricing_nav_btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #e2e8f0;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.weviypricing_nav_btn:hover {
    background: #f1f5f9;
}

.weviypricing_progress_line {
    width: 150px;
    height: 4px;
    background: #e2e8f0;
    border-radius: 2px;
    overflow: hidden;
}

.weviypricing_progress_fill {
    height: 100%;
    width: 30%;
    background: var(--primaryColor);
    transition: width 0.3s ease;
}

.weviypricing_slider_container {
    position: relative;
    padding: 20px 10px;
    flex: 0 0 75%;
    max-width: 75%;
}

.weviypricing_testimonial_card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 -4px 22px -1px rgba(0, 0, 0, 0.05), 0 -2px 4px -1px rgba(0, 0, 0, 0.01);
    text-align: left;
    border: 1px solid #e2e8f0;
    border-bottom: 0;
    position: relative;
    border-bottom-left-radius: 0;
    height: auto;
}

.weviypricing_testimonial_text {
    font-size: 15px;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 25px;
}

.weviypricing_stars_container {
    display: flex;
    gap: 2px;
    margin-top: 20px;
}

.weviypricing_star_filled {
    color: var(--primaryColor);
    font-size: 16px;
}

.weviypricing_shape_trian {
    position: absolute;
    bottom: -50px;
    height: 50px;
    width: 50px;
    left: -1px;
    background-color: #fff;
    clip-path: polygon(0 0, 0% 100%, 100% 0);
    border-left: 1px solid #e2e8f0;
}

.weviypricing_customer_info {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 10px;
    margin-left: 50px;
}

.weviypricing_customer_avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
}

.weviypricing_customer_avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.weviypricing_customer_details h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 2px;
}

.weviypricing_customer_details p {
    font-size: 14px;
    color: #718096;
}

/* Swiper customization */
.swiper {
    width: 100%;
    padding: 10px 5px;
}

.swiper-slide {
    height: auto;
}

.swiper-pagination {
    position: relative;
    margin-top: 30px;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #cbd5e0;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: var(--primaryColor);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .weviypricing_testimonial_left {
        flex: 0 0 30%;
        max-width: 30%;
    }
    
    .weviypricing_slider_container {
        flex: 0 0 70%;
        max-width: 70%;
    }
}

@media (max-width: 992px) {
    .weviypricing_testimonial_left {
        flex: 0 0 100%;
        max-width: 100%;
        padding-right: 0;
        margin-bottom: 40px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .weviypricing_slider_container {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .weviypricing_section_title {
        margin-top: 40px;
        text-align: center;
    }
    
    .weviypricing_section_heading {
        max-width: 100%;
        text-align: center;
    }
    
    .weviypricing_quote_icon {
        position: relative;
        top: 0;
        margin-bottom: -30px;
    }
}

@media (max-width: 768px) {
    .weviypricing_title,
    .weviypricing_subtitle {
        font-size: 32px;
    }
    
    .weviypricing_header {
        margin-bottom: 40px;
    }
    
    .weviypricing_testimonials_container {
        margin-top: 40px;
    }
    
    .weviypricing_testimonial_card {
        padding: 20px;
    }
    
    .weviypricing_customer_info {
        margin-left: 30px;
    }
}

@media (max-width: 576px) {
    .weviypricing_title,
    .weviypricing_subtitle {
        font-size: 28px;
    }
    
    .weviypricing_trustpilot_container {
        flex-direction: column;
        gap: 8px;
    }
    
    .weviypricing_progress_line {
        width: 100px;
    }
    
    .weviypricing_testimonial_text {
        font-size: 15px;
    }
    
    .weviypricing_customer_info {
        flex-direction: column;
        text-align: center;
        margin-left: 0;
    }
    
    .weviypricing_customer_details {
        text-align: center;
    }
}
        
        
        
        
