/* @import url('https://fonts.googleapis.com/css2?family=Bitcount+Grid+Double:wght@100..900&family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=JetBrains+Mono:ital,wght@0,100..800;1,100..800&family=Manrope:wght@200..800&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Sans+Mende+Kikakui&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Outfit:wght@100..900&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Bitcount+Grid+Double:wght@100..900&family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=JetBrains+Mono:ital,wght@0,100..800;1,100..800&family=Manrope:wght@200..800&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Sans+Mende+Kikakui&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Outfit:wght@100..900&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
}

body {
    font-size: 14px;
    color: var(--black-color);
    background-color: var(--body-color);
    line-height: 24px;
    /* font-family: "Plus Jakarta Sans", sans-serif; */
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 400;
}

:root {
    --primary-color: #146c94;
    --black-color: #292929;
    --white-color: #ffffff;
    --body-color: #ffffff;
    --gray-color: #6c6c6c;
    --btn-bg: #f3f3f3;
    --btn-line: #dfdfdf;
    --border-color: #dfdedb;
    --success-color: #25b978;
    --danger-color: #bb2124;
    --blue-color: #2563eb;
}

.container {
    max-width: 84% !important;
}

.web-header {
    /* background-image: url('../images/banner.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover; */
    position: relative;
}

.web-header::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 1620px;
    height: 100vh;
    background: linear-gradient(190deg,
            rgba(255, 255, 255, 0.9),
            rgba(220, 220, 220, 0.5));
    clip-path: polygon(100% 0, 100% 100%, 0 0);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    pointer-events: none;
    z-index: -1;
}

.web-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 620px;
    height: 100vh;
    background: linear-gradient(45deg,
            rgba(255, 255, 255, 0.9),
            rgba(220, 220, 220, 0.5));
    clip-path: polygon(0 0,
            100% 0,
            0 100%);
    pointer-events: none;
    z-index: -1;
}

/* .web-header::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.938);
    pointer-events: none;
    z-index: -1;
} */



.logo {
    width: 190px;
}

.nav-link {
    color: var(--black-color) !important;
    transition: color 0.3s ease;
}

.nav-link.active {
    color: var(--primary-color) !important;
    font-weight: 600;
}

.navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 20px;
    padding-left: 20px;
}

.fixd-header {
    position: relative;
    width: 100%;
    z-index: 9999;
}

.fixd-header.scrolled {
    position: fixed;
    top: 0px;
    left: 0;
    width: 100%;
    background: rgb(255 255 255 / 37%);
    backdrop-filter: blur(18px) saturate(160%);
    -webkit-backdrop-filter: blur(18px) saturate(160%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.7);
    box-shadow:
        0 10px 35px rgba(0, 0, 0, 0.08),
        0 2px 10px rgba(0, 0, 0, 0.04);
    animation: heroHeaderSlideDown 0.45s ease-out both;
}

@keyframes heroHeaderSlideDown {

    from {
        opacity: 0;
        transform: translateY(-100%);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

.fixd-header .navbar {
    background: transparent !important;
    padding: 10px 0;
}

.hero-section-one {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: var(--black-color);
    padding: 40px 0 60px;
    box-shadow: 0 40px 50px #f5f5f5e8;
}

.hero-section-one::before {
    content: "";
    position: absolute;
    width: 550px;
    height: 550px;
    right: 5%;
    top: 10%;
    background: radial-gradient(circle,
            rgba(91, 150, 217, 0.1) 0%,
            rgba(91, 150, 217, 0.04) 35%,
            transparent 70%);
    pointer-events: none;
}

.hero-section-one-container {
    position: relative;
    z-index: 2;
}

.hero-section-one-content {
    position: relative;
    z-index: 3;
    padding-right: 30px;
}

.hero-section-one-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px 14px;
    border: 1px solid var(--border-color);
    border-radius: 50px;
    background: #f7f8fa;
    color: #4f5e75;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.hero-section-one-badge::before {
    content: "";
    width: 6px;
    height: 6px;
    flex: 0 0 6px;
    background: var(--primary-color);
    border-radius: 50%;
}

.hero-section-one-title {
    margin: 0;
    max-width: 720px;
    font-size: clamp(40px, 4.5vw, 70px);
    line-height: 1;
    font-weight: 800;
    color: var(--black-color);
}

.hero-section-one-title .hero-section-one-gold-text {
    color: var(--primary-color);
}

.hero-section-one-description {
    max-width: 590px;
    margin-top: 32px;
    margin-bottom: 30px;
    color: var(--gray-color);
    font-size: 15px;
    line-height: 1.65;
    font-weight: 400;
}

.hero-section-one-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
}

.hero-section-one-btn-start {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 44px;
    padding: 0 20px;
    border: 1px solid var(--primary-color);
    border-radius: 30px;
    background: var(--primary-color);
    color: var(--white-color);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: heroButtonBlink 2s ease-in-out infinite;
}

.hero-section-one-btn-start i {
    font-size: 15px;
    transition: transform 0.3s ease;
}

.hero-section-one-btn-start:hover {
    background: var(--white-color);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.hero-section-one-btn-start:hover i {
    transform: translateX(4px);
}

@keyframes heroButtonBlink {

    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }

    50% {
        opacity: 0.82;
        box-shadow: 0 0 0 6px rgba(0, 0, 0, 0.12);
    }
}

.hero-section-one-btn-demo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 44px;
    padding: 0 20px;
    border: 1px solid var(--border-color);
    border-radius: 30px;
    background: var(--white-color);
    color: var(--black-color);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-section-one-btn-demo i {
    font-size: 15px;
}

.hero-section-one-btn-demo:hover {
    background: #f2f5f3;
    border-color: var(--border-color);
    color: var(--black-color);
}

.hero-section-one-trust {
    border-top: 1px solid var(--border-color);
    padding-top: 25px;
    overflow: hidden;
}

.hero-section-one-trust-label {
    margin-bottom: 12px;
    color: var(--gray-color);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.brand-logo-slider {
    overflow: hidden;
}

.brand-logo-track {
    display: flex;
    align-items: center;
    gap: 14px;
    width: max-content;
    animation: brandLogoSlide 18s linear infinite;
}

.brand-logo-slider:hover .brand-logo-track {
    animation-play-state: paused;
}

.brand-logo-item {
    /* flex: 0 0 55px; */
    width: 100px;
    border-radius: 10px;
    overflow: hidden;
}

.brand-logo-item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.brand-logo-item:hover img {
    transform: scale(1.05);
}

@keyframes brandLogoSlide {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-50% - 7px));
    }
}

.hero-section-one-scroll {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-section-one-scroll a {
    color: var(--gray-color);
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    white-space: nowrap;
    text-decoration: none;
    font-weight: 600;
}


.hero-section-one-scroll::after {
    content: "";
    width: 32px;
    height: 1px;
    background: #b8b4ad;
}

.hero-section-one-visual {
    position: relative;
    z-index: 2;
    padding-left: 15px;
}

.hero-section-one-visual::before {
    content: "";
    position: absolute;
    width: 410px;
    height: 410px;
    top: -15%;
    right: -5%;
    background-color: rgb(225, 240, 253);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 100%;
    pointer-events: none;
    z-index: 0;
    animation: badgeRipple 2s ease-out infinite;
}

.hero-section-one-image-card {
    position: relative;
    width: 100%;
    margin-left: auto;
    overflow: hidden;
    border-radius: 15px;
    /* box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.10),
        0 5px 20px rgba(0, 0, 0, 0.05); */
}

.hero-section-one-image {
    display: block;
    aspect-ratio: 1.35 / 1;
    filter: blur(1px);
}

.hero-section-one-image-card::after {
    content: "";
    position: absolute;
    inset: 0;
    /* background: linear-gradient(180deg,
            rgba(0, 0, 0, 0.02),
            rgba(0, 0, 0, 0.12)); */
    pointer-events: none;
}

.hero-section-one-image-badge {
    position: absolute;
    z-index: 5;
    min-width: 145px;
    padding: 10px 13px;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    background: rgb(255 255 255 / 40%);
    backdrop-filter: blur(14px) saturate(140%);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.45);
    color: var(--black-color);
}

.hero-section-one-image-badge small {
    display: block;
    margin-bottom: 3px;
    color: var(--gray-color);
    font-size: 10px;
    font-weight: 500;
    line-height: normal
}

.hero-section-one-image-badge strong {
    color: var(--black-color);
    font-size: 14px;
    line-height: 1.2;
}

.hero-section-one-image-badge-top-left {
    top: 18px;
    left: 18px;
}

.hero-section-one-image-badge-top-right {
    top: 18px;
    right: 18px;
}

.hero-section-one-image-badge-bottom-left {
    bottom: 18px;
    left: 18px;
}

.hero-section-one-image-badge-bottom-right {
    bottom: 18px;
    right: 18px;
}

.hero-section-one-badge-gold {
    color: var(--primary-color) !important;
}

.hero-section-one-badge-cleck {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    color: var(--primary-color) !important;
    animation: badgePulse 2s ease-in-out infinite;
}

.hero-section-one-badge-cleck::before {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid var(--primary-color);
    border-radius: 50%;
    opacity: 0;
    animation: badgeRipple 2s ease-out infinite;
}

.hero-section-one-badge-cleck i {
    position: relative;
    z-index: 1;
}

@keyframes badgePulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.09);
    }
}

@keyframes badgeRipple {
    0% {
        transform: scale(0.8);
        opacity: 0.6;
    }

    70% {
        transform: scale(1.5);
        opacity: 0;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.hero-section-one-live-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    margin-right: 5px;
    margin-bottom: 1px;
    border-radius: 50%;
    background: var(--success-color);
    transition: all 0.3s ease;
    animation: herolive 2s ease-in-out infinite;
}

@keyframes herolive {

    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(124, 182, 137, 0.719);
    }

    50% {
        opacity: 0.82;
        box-shadow: 0 0 0 6px rgba(163, 202, 158, 0.795);
    }
}

.workflow-section-one {
    position: relative;
    width: 100%;
    padding: 80px 0 80px;
    overflow: hidden;
    background: #fcfcfc;
    background-image: url('../images/key-bg.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    color: var(--black-color);
    z-index: 0;
}

.workflow-section-one::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.932);
    z-index: -1;
}

.workflow-section-one-container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.workflow-section-one-header {
    max-width: 850px;
    margin: 0 auto 55px;
}

.workflow-section-one-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 5px 14px;
    border: 1px solid var(--border-color);
    border-radius: 50px;
    background: #faf9f7;
    color: var(--primary-color);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.workflow-section-one-badge-icon {
    font-size: 13px;
    line-height: 1;
    color: var(--primary-color);
}

.workflow-section-one-title {
    margin: 28px 0 0;
    color: var(--black-color);
    font-size: 48px;
    line-height: 0.98;
    font-weight: 800;
}

.workflow-section-one-title span {
    color: var(--primary-color);
}

.workflow-section-one-description {
    max-width: 700px;
    margin: 22px auto 0;
    color: var(--gray-color);
    font-size: 14px;
    line-height: 1.65;
}

.workflow-section-one-grid {
    position: relative;
}

.workflow-section-one-card {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 200px;
    padding: 25px 20px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    border-radius: 14px;
    background: var(--white-color);
    box-shadow:
        0 3px 15px rgba(0, 0, 0, 0.025);
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease,
        background 0.35s ease;
}

.workflow-section-one-card:hover {
    transform: translateY(-4px);
    border-color: rgba(91, 156, 217, 0.45);
    background: #f9fcff;
    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.07);
}

.workflow-section-one-card-highlight {
    border-color: #c5d3e5;
    background:
        radial-gradient(circle at 75% 35%,
            rgba(91, 146, 217, 0.1),
            transparent 55%),
        #ffffff;
}

.workflow-section-one-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    min-height: 35px;
}

.workflow-section-one-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    color: var(--primary-color);
    font-size: 17px;
    background-color: #265eb314;
    border-radius: 6px;
}

.workflow-section-one-label {
    color: var(--primary-color);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.03em;
}

.workflow-section-one-card-title {
    margin: 8px 0 10px;
    color: var(--black-color);
    font-size: 16px;
    line-height: 1.2;
    font-weight: 700;
}

.workflow-section-one-card-text {
    margin: 0;
    color: var(--gray-color);
    font-size: 12px;
    line-height: 1.65;
    font-weight: 400;
}

/* .workflow-section-one-tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 17px;
}

.workflow-section-one-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 25px;
    padding: 3px 10px;
    border: 1px solid #e5e1db;
    border-radius: 50px;
    background: #faf9f6;
    color: #55504a;
    font-size: 9px;
    font-weight: 500;
    white-space: nowrap;
    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        color 0.3s ease;
} */

.workflow-section-one-card-large {
    min-height: 200px;
}

.image-slider-section {
    width: 100%;
    padding-top: 50px;
    overflow: hidden;
}

.image-slider {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    overflow: hidden;
    padding: 0 20px;
}

.image-slider-track {
    display: flex;
    align-items: center;
    gap: 25px;
    transition: transform 0.8s ease;
    will-change: transform;
}

.image-slide {
    flex: 0 0 calc((100% - 50px) / 3);
    opacity: 0.35;
    transform: scale(0.92);
    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}

.image-slide img {
    width: 100%;
    display: block;
    /* object-fit: cover; */
}

.image-slide.active {
    opacity: 1;
    transform: scale(1);
}

.image-slide.side {
    opacity: 0.10;
    transform: scale(0.92);
}

.image-slide.side img {
    width: 100% !important;
    max-width: 320px !important;
    height: 220px !important;
    margin: 0 auto;
}

.jewelry-dna-section-one {
    position: relative;
    width: 100%;
    padding: 80px 0 80px;
    overflow: hidden;
    z-index: 0;
    background: var(--white-color);
    color: var(--black-color);
}

.jewelry-dna-section-one::before {
    content: "";
    position: absolute;
    width: 700px;
    height: 700px;
    top: 5%;
    right: -15%;
    background: radial-gradient(circle,
            rgba(91, 146, 217, 0.07) 0%,
            rgba(91, 135, 217, 0.025) 35%,
            transparent 70%);
    pointer-events: none;
}

.jewelry-dna-section-one-container {
    position: relative;
    z-index: 2;
}

.jewelry-dna-section-one-visual {
    position: relative;
    width: 100%;
    padding: 15px;
}

.jewelry-dna-section-one-image-card {
    position: relative;
    width: 100%;
    margin: 0 auto;
    overflow: visible;
    border-radius: 16px;
    background: #ebeff5;
    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.10);
}

.jewelry-dna-section-one-image-card img {
    filter: blur(1px);
}

.jewelry-dna-section-one-image-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 16px;
    background: linear-gradient(180deg,
            rgba(255, 255, 255, 0.02),
            rgba(0, 0, 0, 0.08));
    pointer-events: none;
}

.jewelry-dna-section-one-stat {
    position: absolute;
    z-index: 5;
    display: flex;
    flex-direction: column;
    padding: 13px 15px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    background: rgb(255 255 255 / 40%);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow:
        0 12px 35px rgba(0, 0, 0, 0.12);
    color: var(--black-color);
}

.jewelry-dna-section-one-stat-top {
    top: -15px;
    left: -15px;
    min-width: 125px;
}

.jewelry-dna-section-one-stat-bottom {
    right: -15px;
    bottom: -15px;
    min-width: 180px;
}

.jewelry-dna-section-one-stat-label {
    margin-bottom: 3px;
    color: var(--gray-color);
    font-size: 9px;
    line-height: 1.3;
}

.jewelry-dna-section-one-stat strong {
    display: block;
    margin: 2px 0;
    color: var(--primary-color);
    font-size: 20px;
    line-height: 1.1;
    font-weight: 700;
}

.jewelry-dna-section-one-stat small {
    color: var(--gray-color);
    font-size: 8px;
    line-height: 1.4;
}

.jewelry-dna-section-one-live {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 4px;
    color: var(--gray-color);
    font-size: 9px;
}

.jewelry-dna-section-one-live span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--success-color);
    box-shadow:
        0 0 0 3px rgba(39, 173, 118, 0.10);
    animation: herolive 2s ease-in-out infinite;
}

.jewelry-dna-section-one-content {
    position: relative;
    width: 100%;
}

.jewelry-dna-section-one-eyebrow {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 22px;
    color: var(--primary-color);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.jewelry-dna-section-one-eyebrow span {
    display: block;
    width: 30px;
    height: 1px;
    background:
        var(--primary-color);
}

.jewelry-dna-section-one-title {
    max-width: 650px;
    margin: 0;
    color: var(--black-color);
    font-size: 48px;
    line-height: 0.98;
    font-weight: 800;
}

.jewelry-dna-section-one-title span {
    color: var(--primary-color);
}

.jewelry-dna-section-one-description {
    max-width: 650px;
    margin: 22px 0 28px;
    color: var(--gray-color);
    font-size: 14px;
    line-height: 1.65;
}

.jewelry-dna-section-one-features {
    position: relative;
}

.jewelry-dna-section-one-feature-card {
    position: relative;
    height: 100%;
    min-height: 145px;
    padding: 20px 15px;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    background: var(--white-color);
    box-shadow:
        0 3px 15px rgba(0, 0, 0, 0.025);
    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;
}

.jewelry-dna-section-one-feature-card:hover {
    transform: translateY(-3px);
    border-color: #9dbedc;
    background: #f9fcff;
    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.07);
}

.jewelry-dna-section-one-feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    margin-bottom: 12px;
    color: var(--primary-color);
    font-size: 22px;
}

.jewelry-dna-section-one-feature-card h3 {
    margin: 0 0 7px;
    color: var(--black-color);
    font-size: 14px;
    line-height: 1.3;
    font-weight: 700;
}

.jewelry-dna-section-one-feature-card p {
    margin: 0;
    color: var(--gray-color);
    font-size: 10.5px;
    line-height: 1.55;
}

.ai-analytics-section-one {
    position: relative;
    width: 100%;
    padding: 80px 0 80px;
    overflow: hidden;
    background: var(--white-color);
    color: var(--black-color);
    z-index: 0;
}

.ai-analytics-section-one::before {
    content: "";
    position: absolute;
    width: 700px;
    height: 700px;
    top: -180px;
    left: 50%;
    transform: translateX(-50%);
    background: radial-gradient(circle,
            rgba(91, 167, 217, 0.07) 0%,
            rgba(91, 146, 217, 0.025) 35%,
            transparent 70%);
    pointer-events: none;
}

.ai-analytics-section-one-container {
    position: relative;
    z-index: 2;
}

.ai-analytics-section-one-header {
    max-width: 850px;
    margin: 0 auto 42px;
}

.ai-analytics-section-one-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 4px 14px;
    border: 1px solid var(--border-color);
    border-radius: 50px;
    background: #f7f8fa;
    color: var(--primary-color);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.ai-analytics-section-one-badge span {
    color: var(--primary-color);
    font-size: 12px;
}

.ai-analytics-section-one-title {
    margin: 24px 0 0;
    color: var(--black-color);
    font-size: 48px;
    line-height: .98;
    font-weight: 800;
}

.ai-analytics-section-one-title span {
    color: var(--primary-color);
}

.ai-analytics-section-one-description {
    max-width: 700px;
    margin: 20px auto 0;
    color: var(--gray-color);
    font-size: 13px;
    line-height: 1.65;
}

.ai-analytics-section-one-tabs-wrapper {
    width: 100%;
    margin-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
    overflow-x: auto;
    scrollbar-width: none;
}

.ai-analytics-section-one-tabs-wrapper::-webkit-scrollbar {
    display: none;
}

.ai-analytics-section-one-tabs {
    display: flex;
    flex-wrap: nowrap;
    min-width: max-content;
}

.ai-analytics-section-one-tabs .nav-item {
    flex: 0 0 auto;
}

.ai-analytics-section-one-tabs .nav-link {
    position: relative;
    border: 0 !important;
    border-radius: 0 !important;
    padding: 0 0 10px;
    margin-right: 30px;
    background: transparent !important;
    color: var(--gray-color);
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    transition: color .3s ease;
}

.ai-analytics-section-one-tabs .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 2px;
    background: var(--primary-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s ease;
}

.ai-analytics-section-one-tabs .nav-link:hover {
    color: var(--black-color);
}

.ai-analytics-section-one-tabs .nav-link.active {
    color: var(--black-color);
}

.ai-analytics-section-one-tabs .nav-link.active::after {
    transform: scaleX(1);
}

.ai-analytics-section-one-tab-content {
    padding-top: 0;
}

.ai-analytics-section-one-tab-content .tab-pane {
    animation: aiAnalyticsTabFade .35s ease;
}

@keyframes aiAnalyticsTabFade {

    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

.ai-analytics-section-one-dashboard {
    text-align: right;
}

.ai-analytics-section-one-dashboard img {
    max-width: 640px;
    filter: blur(1px);
}

.ai-analytics-section-one-insights {
    height: 100%;
    padding: 3px 0 0 8px;
}


.ai-analytics-section-one-insights h3 {
    margin: 0;
    color: var(--black-color);
    font-size: 22px;
    line-height: 1.1;
    font-weight: 750;
}

.ai-analytics-section-one-insights-intro {
    margin: 10px 0 27px;
    color: var(--gray-color);
    font-size: 13px;
    line-height: 1.6;
}

.ai-analytics-section-one-insight-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 12px;
    padding: 15px 14px;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    background: var(--white-color);
    box-shadow:
        0 5px 18px rgba(0, 0, 0, .025);
    transition:
        transform .3s ease,
        border-color .3s ease,
        box-shadow .3s ease;
}

.ai-analytics-section-one-insight-card:hover {
    transform: translateX(3px);
    border-color: #9fc1dc;
    box-shadow:
        0 10px 25px rgba(0, 0, 0, .06);
}

.ai-analytics-section-one-insight-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 25px;
    width: 25px;
    height: 25px;
    color: var(--primary-color);
    font-size: 22px;
}

.ai-analytics-section-one-insight-card h4 {
    margin: 0 0 4px;
    color: var(--black-color);
    font-size: 12px;
    font-weight: 700;
}

.ai-analytics-section-one-insight-card p {
    margin: 0;
    color: var(--gray-color);
    font-size: 10px;
    line-height: 1.55;
    font-style: italic;
}

.ai-analytics-section-one-web-stat-grid,
.ai-analytics-section-one-mobile-dashboard {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.ai-analytics-section-one-web-stat-grid>div,
.ai-analytics-section-one-mobile-dashboard>div {
    padding: 18px;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    background: var(--white-color);
}

.ai-analytics-section-one-web-stat-grid small,
.ai-analytics-section-one-mobile-dashboard small {
    display: block;
    margin-bottom: 8px;
    color: var(--gray-color);
    font-size: 9px;
}

.ai-analytics-section-one-web-stat-grid strong,
.ai-analytics-section-one-mobile-dashboard strong {
    display: block;
    color: var(--black-color);
    font-size: 22px;
    line-height: 1;
    margin-bottom: 5px;
}


.ai-analytics-section-one-web-stat-grid span,
.ai-analytics-section-one-mobile-dashboard span {
    color: var(--success-color);
    font-size: 9px;
}

.ai-analytics-section-one-large-stat {
    margin-top: 14px;
    padding: 20px;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    background: var(--white-color);
}

.ai-analytics-section-one-large-stat small {
    display: block;
    margin-bottom: 7px;
    color: var(--gray-color);
    font-size: 9px;
}

.ai-analytics-section-one-large-stat strong {
    display: block;
    margin-bottom: 12px;
    color: var(--black-color);
    font-size: 32px;
}

.ai-analytics-section-one-progress {
    width: 100%;
    height: 7px;
    overflow: hidden;
    border-radius: 10px;
    background: #eeeae4;
}

.ai-analytics-section-one-progress span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: var(--primary-color);
}

.experience-counter-section-one {
    width: 100%;
    padding: 20px 0;
    background: #f2f7fc;
    color: var(--black-color);
    z-index: 0;
}

.experience-counter-section-one-inner {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 175px;
}

.experience-counter-section-one-years {
    flex: 0 0 185px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.experience-counter-section-one-number-wrap {
    display: flex;
    align-items: flex-start;
    line-height: 1;
}

.experience-counter-section-one-number {
    display: inline-block;
    color: var(--black-color);
    font-size: 110px;
    line-height: .85;
    font-weight: 700;
}

.experience-counter-section-one-number-wrap sup {
    position: relative;
    top: -8px;
    margin-left: 4px;
    color: var(--black-color);
    font-size: 32px;
    font-weight: 600;
}

.experience-counter-section-one-years::after {
    content: "";
    display: block;
    width: 2px;
    height: 130px;
    margin-left: 0;
    background: #e8f2fb;
}

.experience-counter-section-one-content {
    padding-left: 20px;
}

.experience-counter-section-one-content h3 {
    margin: 0 0 10px;
    color: var(--black-color);
    font-size: 30px;
    line-height: 1.2;
    font-weight: 700;
    text-transform: uppercase;
}

.experience-counter-section-one-content p {
    max-width: 270px;
    margin: 0;
    color: var(--black-color);
    font-size: 13px;
    line-height: 1.45;
    font-weight: normal;
}

.experience-counter-section-one-stat {
    margin-left: auto;
}

.experience-counter-section-one-stat+.experience-counter-section-one-stat {
    margin-left: 35px;
}

.gat-btn {
    color: var(--black-color);
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 600;
}

.gat-btn:hover {
    color: var(--black-color);

}

.counter-bg {
    display: flex;
    align-items: center;
    margin-left: auto;
    padding: 10px;
    gap: 16px;
    border-radius: 8px;
}

.experience-counter-section-one-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    color: var(--black-color);
    font-size: 40px;
}

.experience-counter-section-one-icon i {
    line-height: 1;
}

.experience-counter-section-one-stat-content {
    display: flex;
    flex-direction: column;
}

.experience-counter-section-one-stat-content strong {
    color: var(--black-color);
    font-size: 30px;
    line-height: 1;
    font-weight: 700;
}

.experience-counter-section-one-stat-content>span {
    margin-top: 5px;
    color: var(--black-color);
    font-size: 11px;
    line-height: 1;
    text-transform: uppercase;
}

.experience-counter-section-one .counter {
    display: inline-block;
    font-variant-numeric: tabular-nums;
}

.testimonial-section-one {
    position: relative;
    width: 100%;
    padding: 80px 0 80px;
    overflow: hidden;
    background: var(--white-color);
    color: var(--black-color);
    z-index: 0;
}

.testimonial-section-one-container {
    position: relative;
    z-index: 2;
}

.testimonial-section-one-heading {
    margin-bottom: 42px;
}

.testimonial-section-one-heading h2 {
    margin: 24px 0 0 0;
    color: var(--black-color);
    font-size: 48px;
    line-height: 1.02;
    font-weight: 750;
}

.testimonial-section-one-heading h2 span {
    color: var(--primary-color);
}

.testimonial-section-one-slider {
    position: relative;
    padding-bottom: 38px;
}

.testimonial-section-one-card {
    height: 100%;
/*    min-height: 225px;*/
    padding: 17px 18px;
    border: 1px solid var(--border-color);
    border-radius: 11px;
    background: var(--white-color);
    box-shadow:
        0 8px 25px rgba(0, 0, 0, .035);
    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;
}

.testimonial-section-one-card:hover {
    border-color: var(--primary-color);
}

.testimonial-section-one-stars {
    margin-bottom: 12px;
    color: var(--primary-color);
    font-size: 11px;
    line-height: 1;
    letter-spacing: 2px;
}

.testimonial-section-one-text {
    min-height: 46px;
    margin: 0 0 17px;
    color: var(--gray-color);
    font-size: 10px;
    line-height: 1.55;
    font-weight: 500;
}

.testimonial-section-one-result {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 53px;
    margin-bottom: 15px;
    padding: 9px 11px;
    border: 1px solid #a5bbd9;
    border-radius: 9px;
    background: #eff4f8;
}

.testimonial-section-one-result strong {
    color: var(--primary-color);
    font-size: 16px;
    line-height: 1;
    font-weight: 700;
}

.testimonial-section-one-result span {
    margin-top: 4px;
    color: var(--gray-color);
    font-size: 8px;
    line-height: 1;
}

.testimonial-section-one-author {
    display: flex;
    align-items: center;
    gap: 9px;
}

.testimonial-section-one-avatar {
    flex: 0 0 29px;
    width: 29px;
    height: 29px;
    overflow: hidden;
    border-radius: 50%;
    background: #eeeae4;
}

.testimonial-section-one-avatar img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.testimonial-section-one-author-info {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.testimonial-section-one-author-info strong {
    color: var(--black-color);
    font-size: 9px;
    line-height: 1.2;
    font-weight: 700;
}

.testimonial-section-one-author-info span {
    margin-top: 3px;
    overflow: hidden;
    color: var(--gray-color);
    font-size: 7px;
    line-height: 1.2;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.testimonial-section-one-slider .carousel-item {
    transition:
        transform .65s ease-in-out,
        opacity .4s ease;
}

.testimonial-section-one-dots {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin: 0;
    padding: 0;
    z-index: 5;
}

.testimonial-section-one-dots button {
    width: 7px !important;
    height: 7px !important;
    margin: 0 !important;
    padding: 0;
    border: 0 !important;
    border-radius: 50% !important;
    background: #dadada !important;
    opacity: 1;
    transition:
        width .3s ease,
        background .3s ease,
        transform .3s ease;
}

.testimonial-section-one-dots button.active {
    border-radius: 10px;
    background: var(--primary-color) !important;
}

.testimonial-section-one-text {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    margin-bottom: 5px;
}

    .testimonial-section-one-text.expanded {
        display: block;
        -webkit-line-clamp: unset;
        overflow: visible;
    }



    .contact-section-one {
        position: relative;
        width: 100%;
        padding: 80px 0;
        overflow: hidden;
        background: var(--white-color);
        color: var(--black-color);
        z-index: 0;
    }


.contact-section-one::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    top: -250px;
    right: -150px;
    background: radial-gradient(circle,
            rgba(82, 134, 201, 0.08),
            transparent 68%);
    pointer-events: none;
}

.contact-section-one-left {
    position: relative;
    z-index: 2;
    height: 100%;
    padding: 25px 35px 25px 0;
}

.contact-section-one-label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: var(--primary-color);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.contact-section-one-label span {
    display: inline-block;
    width: 30px;
    height: 1px;
    background: var(--primary-color);
}

.contact-section-one-title {
    max-width: 480px;
    margin: 0 0 20px;
    color: var(--black-color);
    font-size: 48px;
    line-height: 1.02;
    font-weight: 750;
}

.contact-section-one-title span {
    display: block;
    color: var(--primary-color);
}

.contact-section-one-description {
    max-width: 520px;
    margin: 0 0 35px;
    color: var(--gray-color);
    font-size: 13px;
    line-height: 1.7;
    font-weight: 400;
}

.contact-section-one-details {
    display: flex;
    flex-direction: column;
    gap: 23px;
}

.contact-section-one-detail {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-section-one-icon {
    flex: 0 0 45px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    background: #f3f7fb;
    color: var(--primary-color);
    font-size: 17px;
    transition: all .3s ease;
}

.contact-section-one-detail:hover .contact-section-one-icon {
    color: var(--white-color);
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.contact-section-one-detail-content {
    display: flex;
    flex-direction: column;
    padding-top: 2px;
}

.contact-section-one-detail-label {
    margin-bottom: 5px;
    color: var(--black-color);
    font-size: 12px;
    line-height: 1;
    font-weight: 700;
}

.contact-section-one-detail-content a {
    width: fit-content;
    margin-bottom: 2px;
    color: var(--gray-color);
    font-size: 11px;
    line-height: 1.5;
    text-decoration: none;
    transition: color .25s ease;
}

.contact-section-one-detail-content a:hover {
    color: var(--primary-color);
}

.contact-section-one-detail-content p {
    margin: 0;
    color: var(--gray-color);
    font-size: 11px;
    line-height: 1.6;
}

.contact-section-one-detail-content p strong {
    color: var(--black-color);
    font-size: 11px;
}

.contact-section-one-form-wrapper {
    position: relative;
    z-index: 2;
    height: 100%;
    padding: 24px;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    background: #f7f8fa;
    box-shadow:
        0 15px 45px rgba(0, 0, 0, .045);
}

.contact-section-one-field {
    width: 100%;
}

.contact-section-one-field label {
    display: block;
    margin: 0 0 8px;
    color: var(--black-color);
    font-size: 11px;
    line-height: 1.2;
    font-weight: 650;
}


.contact-section-one-field label sup {
    color: var(--primary-color);
    font-size: 10px;
}

.contact-section-one-field input,
.contact-section-one-field textarea {
    width: 100%;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    outline: none;
    background: var(--white-color);
    color: var(--black-color);
    font-family: inherit;
    font-size: 11px;
    transition:
        border-color .25s ease,
        box-shadow .25s ease,
        background .25s ease;
}

.contact-section-one-field input {
    height: 46px;
    padding: 0 14px;
}

.contact-section-one-field textarea {
    min-height: 105px;
    padding: 13px 14px;
    resize: vertical;
}

.contact-section-one-field input::placeholder,
.contact-section-one-field textarea::placeholder {
    color: var(--gray-color);
}

.contact-section-one-field input:focus,
.contact-section-one-field textarea:focus {
    border-color: var(--primary-color);
    background: var(--white-color);
    box-shadow:
        0 0 0 3px rgba(200, 150, 84, .10);
}

.contact-section-one-field select {
    width: 100%;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    outline: none;
    background: var(--white-color);
    color: var(--black-color);
    font-family: inherit;
    font-size: 11px;
    transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
    height: 46px;
    padding: 0 12px;
}

.contact-section-one-field select:focus {
    border-color: var(--border-color);
}

.contact-section-one-field select option {
    color: var(--black-color);
}







.contact-section-one-field .form-label {
    display: block;
    margin-bottom: 12px;
    font-size: 16px;
    font-weight: 500;
    color: var(--black-color);
}

.contact-section-one-field .form-label sup {
    color: var(--danger-color);
}

.business-type-options {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.business-option {
    position: relative;
}

.business-option .btn-check {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.business-option-label {
    display: flex !important;
    align-items: center;
    gap: 6px;
    min-height: 34px;
    padding: 7px 10px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    background: var(--white-color);
    color: var(--gray-color);
    font-size: 13px;
    font-weight: 400;
    line-height: 1;
    cursor: pointer;
    user-select: none;
    transition: all 0.25s ease;
    margin: 0 !important;
}

.business-option-label>i:first-child {
    font-size: 14px;
}

.business-option-label .check-icon {
    display: none;
    font-size: 14px;
    margin-left: 2px;
}

.business-option-label:hover {
    border-color: var(--primary-color);
    background: #f5f7f8;
    color: var(--primary-color);
}

.business-option .btn-check:checked+.business-option-label {
    background: #f5f7f8;
    border-color: var(--primary-color);
    color: var(--primary-color);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.business-option .btn-check:checked+.business-option-label .check-icon {
    display: inline-block;
}

.business-option .btn-check:focus-visible+.business-option-label {
    outline: 2px solid rgba(84, 103, 120, 0.25);
    outline-offset: 2px;
}









.contact-section-one-captcha {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    height: 46px;
    margin-top: 19px;
    padding: 0 12px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background:
        repeating-linear-gradient(135deg,
            #e7ecf1 0px,
            #e7ecf1 3px,
            #f5f7fa 3px,
            #f5f7fa 6px);
    user-select: none;
}

.contact-section-one-captcha span {
    color: var(--black-color);
    font-size: 18px;
    font-weight: 700;
    font-style: italic;
    transform: rotate(var(--captcha-rotate, 0deg));
}

.contact-section-one-captcha span:nth-child(1) {
    transform: rotate(-8deg);
}

.contact-section-one-captcha span:nth-child(2) {
    transform: rotate(6deg);
}

.contact-section-one-captcha span:nth-child(3) {
    transform: rotate(-5deg);
}

.contact-section-one-captcha span:nth-child(4) {
    transform: rotate(8deg);
}

.contact-section-one-captcha button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    margin-left: auto;
    border: 0;
    border-radius: 50%;
    background: var(--white-color);
    color: var(--primary-color);
    cursor: pointer;
    transition: all .25s ease;
}

.contact-section-one-captcha button:hover {
    color: var(--white-color);
    background: var(--primary-color);
    transform: rotate(180deg);
}

.contact-section-one-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-width: 155px;
    height: 46px;
    margin-top: 3px;
    padding: 0 20px;
    border: 1px solid var(--primary-color);
    border-radius: 30px;
    background: var(--primary-color);
    color: var(--white-color);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .05em;
    cursor: pointer;
    transition:
        background .3s ease,
        transform .3s ease,
        box-shadow .3s ease;
}

.contact-section-one-submit i {
    font-size: 14px;
    transition: transform .3s ease;
}

.contact-section-one-submit:hover {
    background: var(--white-color);
    color: var(--primary-color);
}

.contact-section-one-submit:hover i {
    transform: translateX(4px);
}

.faq-section-one {
    position: relative;
    width: 100%;
    padding: 80px 0;
    overflow: hidden;
    background: var(--white-color);
    color: var(--white-color);
    z-index: 0;
}

.faq-section-one-header {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto 55px;
    text-align: center;
}

.faq-section-one-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: var(--primary-color);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.faq-section-one-label span {
    display: block;
    width: 30px;
    height: 1px;
    background: var(--primary-color);
}

.faq-section-one-title {
    margin: 24px 0 17px;
    color: var(--black-color);
    font-size: 48px;
    line-height: 1;
    font-weight: 750;
}


.faq-section-one-title span {
    color: var(--primary-color);
}

.faq-section-one-description {
    max-width: 590px;
    margin: auto;
    color: var(--gray-color);
    font-size: 13px;
    line-height: 1.7;
}

.faq-section-one-accordion {
    position: relative;
    z-index: 2;
}

.faq-section-one-item {
    position: relative;
    margin-bottom: 12px;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    background: #f7f8fa;
    transition:
        border-color .3s ease,
        box-shadow .3s ease,
        background .3s ease;
}

.faq-section-one-item:has(.collapse.show) {
    border-color: var(--primary-color);
    background: var(--white-color);
    box-shadow:
        0 10px 35px rgba(0, 0, 0, .045);
}

.faq-section-one-question {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 72px;
    padding: 18px 22px;
    border: 0;
    background: transparent;
    color: var(--black-color);
    text-align: left;
    cursor: pointer;
}

.faq-section-one-number {
    flex: 0 0 42px;
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .04em;
}

.faq-section-one-question-text {
    flex: 1;
    padding-right: 20px;
    color: var(--black-color);
    font-size: 13px;
    line-height: 1.45;
    font-weight: 650;
    transition: color .25s ease;
}

.faq-section-one-icon {
    flex: 0 0 32px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    background: var(--white-color);
    color: var(--primary-color);
    font-size: 14px;
    transition:
        background .3s ease,
        color .3s ease,
        transform .3s ease;
}

.faq-section-one-question:not(.collapsed) .faq-section-one-icon {
    color: var(--white-color);
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: rotate(45deg);
}

.faq-section-one-question:not(.collapsed) .faq-section-one-question-text {
    color: var(--primary-color);
}

.faq-section-one-answer {
    max-width: 790px;
    padding: 0 70px 25px 64px;
    color: var(--gray-color);
    font-size: 12px;
    line-height: 1.75;
}

.faq-section-one-question:hover .faq-section-one-question-text {
    color: var(--primary-color);
}

.faq-section-one-question:hover .faq-section-one-icon {
    border-color: var(--primary-color);
}

.faq-section-one-item .collapsing {
    transition: height .4s ease;
}

.latest-blog-section-one {
    position: relative;
    width: 100%;
    padding: 80px 0 80px;
    overflow: hidden;
    background: #fcfcfc;
    color: var(--black-color);
    z-index: 0;
}

.latest-blog-section-one-header {
    position: relative;
    z-index: 2;
    max-width: 720px;
    margin: 0 auto 50px;
    text-align: center;
}

.latest-blog-section-one-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 17px;
    color: var(--primary-color);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.latest-blog-section-one-label span {
    display: block;
    width: 28px;
    height: 1px;
    background: var(--primary-color);
}

.latest-blog-section-one-title {
    margin: 0 0 17px;
    color: var(--black-color);
    font-size: 48px;
    line-height: 1;
    font-weight: 750;
}

.latest-blog-section-one-title span {
    color: var(--primary-color);
}

.latest-blog-section-one-description {
    max-width: 600px;
    margin: 0 auto;
    color: var(--gray-color);
    font-size: 13px;
    line-height: 1.7;
}

.latest-blog-section-one-slider {
    position: relative;
    z-index: 2;
    padding: 0 10px 0px;
}

.latest-blog-section-one-card {
    height: 100%;
    overflow: hidden;
    border: 1px solid var(--border-color);
    border-radius: 15px;
    background: #f7f9fa;
    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;
}

.latest-blog-section-one-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 18px 45px rgba(0, 0, 0, .08);
    transform: translateY(-6px);
}

.latest-blog-section-one-image {
    position: relative;
    display: block;
    width: 100%;
    height: 235px;
    overflow: hidden;
    background: #eee;
}

.latest-blog-section-one-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition:
        transform .6s ease;
}

.latest-blog-section-one-card:hover .latest-blog-section-one-image img {
    transform: scale(1.06);
}

.latest-blog-section-one-category {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 0px 12px;
    border: 1px solid var(--border-color);
    border-radius: 30px;
    background: rgba(30, 25, 20, .72);
    color: var(--white-color);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
}

.latest-blog-section-one-content {
    padding: 22px;
}

.latest-blog-section-one-meta {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 12px;
    color: var(--primary-color);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .08em;
}

.latest-blog-section-one-meta i {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--primary-color);
}

.latest-blog-section-one-content h3 {
    margin: 0 0 11px;
    font-size: 17px;
    line-height: 1.3;
    font-weight: 700;
}

.latest-blog-section-one-content h3 {
    color: var(--black-color);
    text-decoration: none;
    transition: color .25s ease;
}

.latest-blog-section-one-content p {
    margin: 0 0 19px;
    color: var(--gray-color);
    font-size: 11px;
    line-height: 1.7;
}

.latest-blog-section-one-read {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--black-color);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .08em;
    text-decoration: none;
    transition: color .25s ease;
}

.latest-blog-section-one-read i {
    font-size: 12px;
    transition: transform .25s ease;
}

.latest-blog-section-one-read:hover {
    color: var(--primary-color);
}

.latest-blog-section-one-read:hover i {
    transform: translateX(4px);
}

.latest-blog-section-one-prev,
.latest-blog-section-one-next {
    top: 50%;
    width: 42px;
    height: 42px;
    opacity: 1;
    transform: translateY(-50%);
}

.latest-blog-section-one-prev {
    left: -50px;
}

.latest-blog-section-one-next {
    right: -50px;
}

.latest-blog-section-one-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    background: var(--white-color);
    color: var(--black-color);
    font-size: 13px;
    box-shadow:
        0 5px 15px rgba(0, 0, 0, .06);
    transition:
        background .3s ease,
        color .3s ease,
        border-color .3s ease;
}

.latest-blog-section-one-prev:hover .latest-blog-section-one-arrow,
.latest-blog-section-one-next:hover .latest-blog-section-one-arrow {
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: var(--white-color);
}

.latest-blog-section-one-dots {
    position: absolute;
    right: 0;
    bottom: 10px;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin: 0;
    padding: 0;
}

.latest-blog-section-one-dots button {
    width: 7px;
    height: 7px;
    margin: 0 !important;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #d6d0c8;
    opacity: 1;
    transition:
        width .3s ease,
        background .3s ease,
        border-radius .3s ease;
}

.latest-blog-section-one-dots button.active {
    width: 24px;
    border-radius: 10px;
    background: var(--primary-color);
}

.pricing-section-one {
    position: relative;
    width: 100%;
    padding: 80px 0 80px;
    overflow: hidden;
    background: var(--white-color);
    color: var(--black-color);
    z-index: 0;
}

.pricing-section-one::before {
    content: "";
    position: absolute;
    width: 1050px;
    height: 1050px;
    top: -300px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 50%;
    background: radial-gradient(circle,
            rgba(77, 137, 194, 0.08) 0%,
            rgba(77, 137, 194, 0) 70%);
    pointer-events: none;
}

.pricing-section-one-header {
    position: relative;
    z-index: 2;
    max-width: 750px;
    margin: 0 auto 43px;
    text-align: center;
}

.pricing-section-one-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    padding: 6px 14px;
    border: 1px solid var(--border-color);
    border-radius: 30px;
    background: #f7f9fa;
    color: var(--primary-color);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .1em;
    line-height: 1;
    text-transform: uppercase;
}

.pricing-section-one-label span {
    color: var(--primary-color);
    font-size: 10px;
}

.pricing-section-one-title {
    margin: 0;
    color: var(--black-color);
    font-size: 48px;
    line-height: 1.02;
    font-weight: 750;
}

.pricing-section-one-title span {
    display: block;

    color: var(--primary-color);
}

.pricing-section-one-subtitle {
    margin: 18px auto 0;
    color: var(--gray-color);
    font-size: 13px;
    line-height: 1.6;
}

.pricing-section-one-row {
    position: relative;
    z-index: 2;
    max-width: 980px;
    margin: 0 auto;
}

.pricing-section-one-card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 345px;
    padding: 22px 21px 20px;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    background: #faf9f7;
    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;
}

.pricing-section-one-card:hover {
    border-color: var(--primary-color);
    box-shadow:
        0 16px 40px rgba(0, 0, 0, .07);
    transform: translateY(-5px);
}

.pricing-section-one-card-popular {
    border-color: var(--primary-color);
    background:
        linear-gradient(145deg,
            #fcfaf6 0%,
            #f5eee4 100%);
}

.pricing-section-one-popular {
    position: absolute;
    top: -9px;
    left: 50%;
    transform: translateX(-50%);
    padding: 5px 14px;
    border-radius: 20px;
    background: var(--primary-color);
    color: var(--white-color);
    font-size: 8px;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
}

.pricing-section-one-plan {
    margin-bottom: 8px;
    color: var(--primary-color);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .1em;
}

.pricing-section-one-description {
    min-height: 45px;
    margin: 0 0 14px;
    color: var(--black-color);
    font-size: 13px;
    line-height: 1.55;
}

.pricing-section-one-features {
    display: flex;
    flex-direction: column;
    gap: 9px;
    margin: 0 0 18px;
    padding: 0;
    list-style: none;
}

.pricing-section-one-features li {
    display: flex;
    align-items: flex-start;
    align-items: center;
    gap: 8px;
    font-size: 10.5px;
    line-height: 1.35;
}

.pricing-section-one-features li i {
    color: var(--primary-color);
}

.pricing-section-one-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 37px;
    margin-top: auto;
    padding: 8px 15px;
    border: 1px solid var(--border-color);
    border-radius: 25px;
    background: #f0eded;
    color: var(--black-color);
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    transition:
        background .3s ease,
        border-color .3s ease,
        color .3s ease,
        transform .3s ease;
}

.pricing-section-one-button:hover {
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: var(--white-color);
    transform: translateY(-1px);
}

.pricing-section-one-button-primary {
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: var(--white-color);
}

.pricing-section-one-button-primary:hover {
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: var(--white-color);
}

.pricing-section-one-note {
    position: relative;
    z-index: 2;
    margin-top: 38px;
    text-align: center;
}

.pricing-section-one-note p {
    margin: 0 0 4px;
    color: var(--gray-color);
    font-size: 9px;
    line-height: 1.5;
}

.analytics-section-two {
    width: 100%;
    padding: 80px 0;
    background: var(--white-color);
    overflow: hidden;
    z-index: 0;
}

.analytics-section-two-heading {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 55px;
}

.analytics-section-two-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 14px;
    border: 1px solid var(--border-color);
    border-radius: 30px;
    background: #f7f8fa;
    color: var(--primary-color);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
}

.analytics-section-two-badge i {
    font-size: 12px;
}

.analytics-section-two-heading h2 {
    margin: 20px 0 14px;
    color: var(--black-color);
    font-size: 48px;
    font-weight: 700;
    line-height: 1.03;
    letter-spacing: -2px;
}

.analytics-section-two-heading h2 span {
    color: var(--primary-color);
}

.analytics-section-two-heading p {
    max-width: 720px;
    margin: 0 auto;
    color: var(--black-color);
    font-size: 15px;
    line-height: 1.65;
}

.analytics-section-two-dashboard {
    width: 100%;
    padding: 18px;
    border: 1px solid var(--border-color);
    border-radius: 14px;
    background: #fafafa;
    box-shadow: 0 12px 40px rgba(40, 32, 20, 0.08);
}

.analytics-section-two-browser {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
}

.analytics-section-two-browser-dots {
    display: flex;
    gap: 6px;
}

.analytics-section-two-browser-dots span {
    width: 9px;
    height: 9px;
    display: block;
    border-radius: 50%;
}

.analytics-section-two-browser-dots span:nth-child(1) {
    background: var(--danger-color);
}

.analytics-section-two-browser-dots span:nth-child(2) {
    background: #e4bd0e;
}

.analytics-section-two-browser-dots span:nth-child(3) {
    background: var(--success-color);
}

.analytics-section-two-browser-url {
    flex: 1;
    padding: 7px 14px;
    border-radius: 20px;
    background: #eeeeee;
    color: var(--gray-color);
    font-size: 10px;
}

.analytics-section-two-stat {
    min-height: 76px;
    padding: 8px 12px;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    background: var(--white-color);
}

.analytics-section-two-stat small {
    display: block;
    color: var(--gray-color);
    font-size: 10px;
}

.analytics-section-two-stat strong {
    display: block;
    color: var(--black-color);
    font-size: 18px;
    line-height: 1.2;
}

.analytics-section-two-positive {
    display: block;
    color: var(--success-color);
    font-size: 9px;
}

.analytics-section-two-chart {
    margin-top: 18px;
    padding: 14px;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    background: var(--white-color);
}

.analytics-section-two-chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 13px;
}

.analytics-section-two-chart-header strong {
    color: var(--gray-color);
    font-size: 10px;
}

.analytics-section-two-chart-header span {
    color: var(--gray-color);
    font-size: 9px;
}

.analytics-section-two-chart-bars {
    height: 85px;
    display: flex;
    align-items: flex-end;
    gap: 7px;
    padding: 0 3px;
}

.analytics-section-two-bar {
    flex: 1;
    min-width: 8px;
    border-radius: 5px 5px 3px 3px;
    background: var(--primary-color);
    transition: height 0.4s ease;
}

.analytics-section-two-chart-months {
    display: flex;
    justify-content: space-between;
    margin-top: 7px;
    color: var(--gray-color);
    font-size: 9px;
}

.analytics-section-two-insights {
    padding-left: 10px;
}

.analytics-section-two-insights h3 {
    margin: 0 0 8px;
    color: var(--black-color);
    font-size: 24px;
    font-weight: 650;
    line-height: 1.2;
}

.analytics-section-two-description {
    max-width: 520px;
    margin: 0 0 28px;
    color: var(--gray-color);
    font-size: 13px;
    line-height: 1.65;
}

.analytics-section-two-insight-card {
    display: flex;
    align-items: center;
    gap: 17px;
    width: 100%;
    margin-bottom: 12px;
    padding: 17px 18px;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    background: var(--white-color);
    box-shadow:
        0 5px 18px rgba(30, 25, 20, 0.04);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.analytics-section-two-insight-card:hover {
    transform: translateY(-2px);
    border-color: var(--border-color);
    box-shadow:
        0 9px 25px rgba(30, 25, 20, 0.08);
}

.analytics-section-two-insight-icon {
    flex: 0 0 25px;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 15px;
}

.analytics-section-two-insight-text {
    flex: 1;
}

.analytics-section-two-insight-text h4 {
    margin: 0 0 5px;
    color: var(--black-color);
    font-size: 12px;
    font-weight: 650;
}

.analytics-section-two-insight-text p {
    margin: 0;
    color: var(--gray-color);
    font-size: 10px;
    line-height: 1.55;
}

.footer-section-one {
    position: relative;
    width: 100%;
    background: #146c9408;
    border-top: 1px solid #146c9412;
    color: var(--black-color);
    z-index: 0;
}

.footer-section-one-inner {
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.footer-section-one-logo {
    flex: 0 0 auto;
}

.footer-section-one-logo a {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.footer-section-one-logo img {
    display: block;
    width: 145px;
    object-fit: contain;
}

.footer-section-one-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-left: auto;
    margin-right: auto;
}

.footer-section-one-nav a {
    position: relative;
    color: var(--black-color);
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 500;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    transition:
        color .25s ease;
}

.footer-section-one-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 1px;
    background: var(--primary-color);
    transition:
        width .3s ease;
}

.footer-section-one-nav a:hover {
    color: var(--primary-color);
}

.footer-section-one-nav a:hover::after {
    width: 100%;
}

.nav-link:focus,
.nav-link:hover {
    color: var(--primary-color) !important;
}

.footer-section-one-right {
    display: flex;
    align-items: center;
    gap: 23px;
    flex: 0 0 auto;
}

.footer-section-one-social {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-section-one-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    color: var(--black-color);
    font-size: 13px;
    text-decoration: none;
    transition: color .25s ease, transform .25s ease;
}

.footer-section-one-social a:hover {
    transform: translateY(-2px);
    color: var(--primary-color);
}

.footer-section-one-legal {
    display: flex;
    align-items: center;
    gap: 13px;
}

.footer-section-one-legal a,
.footer-section-one-legal span {
    color: var(--black-color);
    font-size: 12px;
    font-weight: 400;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
}

.footer-section-one-legal a {
    transition:
        color .25s ease;
}

.footer-section-one-legal a:hover {
    color: var(--primary-color);
}

.back-to-top-one {
    position: fixed;
    right: 25px;
    bottom: 25px;
    z-index: 9999;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: var(--black-color);
    font-size: 16px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition:
        opacity .3s ease,
        visibility .3s ease,
        transform .3s ease,
        background .3s ease,
        color .3s ease;
}

.back-to-top-one.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top-one:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white-color);
    transform: translateY(-3px);
}

.back-to-top-one i {
    line-height: 1;
    transition: transform .3s ease;
}

.back-to-top-one:hover i {
    transform: translateY(-2px);
}

.seo-content-section {
    width: 100%;
    z-index: 0;
}

.seo-accordion .accordion-item {
    margin-bottom: 10px;
    border: none;
    border-radius: 0px !important;
    overflow: hidden;
    background: var(--white-color);
}

.seo-accordion .accordion-button {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    padding-left: 0;
    border: 0;
    background: var(--white-color);
    color: var(--black-color);
    font-size: 16px;
    font-weight: 500;
    box-shadow: none;
}

.seo-accordion .accordion-button::after {
    display: none;
}

.seo-content-wrapper {
    max-width: 950px;
    margin: 0 auto;
}

.seo-accordion .accordion-button:not(.collapsed) .seo-plus {
    transform: rotate(45deg);
}

.seo-accordion .accordion-body {
    padding: 22px 22px;
}

.seo-accordion .accordion-body h5 {
    font-size: 15px;
    margin-top: 20px;
}

.seo-accordion .accordion-body p {
    margin: 0;
    font-size: 13px;
    line-height: 1.8;
    color: var(--gray-color);
}


@media (max-width: 1400px) {

    .latest-blog-section-one-content {
        padding: 10px;
    }

    .logo {
        width: 135px;
    }

}


@media (max-width: 1199px) {

    .analytics-section-two {
        padding: 80px 0;
    }

    .analytics-section-two-dashboard {
        padding: 15px;
    }

    .analytics-section-two-insights h3 {
        font-size: 22px;
    }

    .ai-analytics-section-one-dashboard img {
        max-width: 100%;
    }

    .experience-counter-section-one-stat-content strong {
        font-size: 20px;
    }

    .counter-bg {
        padding: 10px 0;
        gap: 10px;
    }

    .experience-counter-section-one-number {
        font-size: 82px;
    }

    .experience-counter-section-one-content {
        padding-left: 0;
    }

    .experience-counter-section-one-content h3 {
        font-size: 20px;
    }

    .experience-counter-section-one-content p {
        font-size: 11px;
    }

    .experience-counter-section-one-years {
        flex: 0 0 165px;
    }

    .experience-counter-section-one-icon {
        width: 30px;
        height: 30px;
        font-size: 30px;
    }

}

@media (min-width: 992px) {

    .jewelry-dna-section-one-visual {
        transform: translateY(8px);
    }

    .ai-analytics-section-one-header {
        margin-bottom: 35px;
    }

    .ai-analytics-section-one-title {
        font-size: 48px;
    }

    .ai-analytics-section-one-dashboard {
        min-height: auto;
    }

    .ai-analytics-section-one-insights {
        padding-left: 0;
    }

    .hero-section-one-content {
        transform: translateY(-10px);
    }

}


@media (max-width: 991.98px) {
    .hero-section-one {
        min-height: auto;
        padding: 40px 0;
    }

    .hero-section-one-content {
        padding-right: 0;
        margin-bottom: 55px;
    }

    .hero-section-one-title {
        max-width: 700px;
        font-size: 42px;
    }

    .hero-section-one-description {
        max-width: 650px;
    }

    .hero-section-one-visual {
        padding-left: 0;
    }

    .hero-section-one-image-card {
        max-width: 700px;
        margin: 0 auto;
    }

    .fixd-header.scrolled {
        top: 8px;
        width: calc(100% - 20px);
        left: 10px;
        border-radius: 13px;
    }

    .fixd-header .navbar-collapse {
        margin-top: 12px;
        padding: 15px;
        background: rgba(255, 255, 255, 0.90);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        border-radius: 12px;
        border: 1px solid rgba(0, 0, 0, 0.06);
    }

    .fixd-header .navbar-nav {
        gap: 2px;
    }

    .fixd-header .nav-link {
        padding: 10px 8px !important;
    }

    .fixd-header .nav-link::after {
        left: 8px;
        right: auto;
        width: 25px;
        bottom: 4px;
    }

    .fixd-header form {
        width: 100%;
    }

    .fixd-header .hero-section-one-buttons {
        width: 100%;
        margin-top: 12px !important;
    }

    .fixd-header .hero-section-one-btn-demo,
    .fixd-header .hero-section-one-btn-start {
        flex: 1;
    }

    .workflow-section-one-card {
        min-height: 200px;
    }

    .workflow-section-one-header {
        margin-bottom: 40px;
    }

    .workflow-section-one-description {
        font-size: 14px;
    }

    .workflow-section-one-card {
        min-height: 190px;
    }

    .jewelry-dna-section-one-visual {
        margin-bottom: 30px;
    }

    .jewelry-dna-section-one-content {
        max-width: 700px;
        margin: 0 auto;
    }

    .jewelry-dna-section-one-title {
        font-size: 42px;
    }

    .jewelry-dna-section-one-description {
        max-width: 650px;
    }

    .jewelry-dna-section-one-feature-card {
        min-height: 145px;
    }

    .experience-counter-section-one-inner {
        min-height: 110px;
    }

    .experience-counter-section-one-years {
        flex: 0 0 110px;
        gap: 12px;
    }

    .experience-counter-section-one-number {
        font-size: 52px;
    }

    .experience-counter-section-one-content {
        padding-left: 0;
    }

    .counter-bg {
        padding: 10px 0;
        gap: 3px
    }

    .experience-counter-section-one-number-wrap sup {
        font-size: 25px;
    }

    .experience-counter-section-one-years::after {
        height: 115px;
    }

    .experience-counter-section-one-content h3 {
        font-size: 14px;
    }

    .experience-counter-section-one-content p {
        font-size: 9px;
    }

    .experience-counter-section-one-stat {
        min-width: auto;
        gap: 10px;
    }

    .experience-counter-section-one-stat+.experience-counter-section-one-stat {
        margin-left: 25px;
    }

    .experience-counter-section-one-icon {
        width: 35px;
        height: 35px;
        font-size: 30px;
    }

    .experience-counter-section-one-stat-content strong {
        font-size: 18px;
    }

    .latest-blog-section-one-title {
        font-size: 42px;
    }

    .testimonial-section-one {
        padding: 70px 0 65px;
    }

    .testimonial-section-one-heading {
        margin-bottom: 35px;
    }

    .testimonial-section-one-heading h2 {
        font-size: 42px;
    }

    .testimonial-section-one-card {
        min-height: 235px;
    }

    .contact-section-one-left {
        padding: 0px 0px 15px 0;
    }

    .contact-section-one-title {
        font-size: 42px;
    }

    .faq-section-one-header {
        margin-bottom: 40px;
    }

    .faq-section-one-title {
        font-size: 42px;
    }

    .latest-blog-section-one-image {
        height: 220px;
    }

    .analytics-section-two-heading h2 {
        font-size: 42px;
    }

    .analytics-section-two-heading p {
        font-size: 14px;
    }

    .workflow-section-one-title {
        font-size: 42px;
    }

    .latest-blog-section-one-content h3 {
        font-size: 15px;
    }

    .latest-blog-section-one-prev {
        left: -8px;
    }

    .latest-blog-section-one-next {
        right: -8px;
    }

    .pricing-section-one {
        padding: 75px 0 60px;
    }

    .pricing-section-one-title {
        font-size: 42px;
    }

    .pricing-section-one-header {
        margin-bottom: 38px;
    }

    .pricing-section-one-card {
        min-height: 350px;
    }

    .footer-section-one-inner {
        min-height: auto;
        padding-top: 25px;
        padding-bottom: 25px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-section-one-nav {
        margin: 0;
        gap: 20px;
    }

    .image-slider-track {
        gap: 20px;
    }

    .image-slide {
        flex: 0 0 calc((100% - 40px) / 3);
    }

    .analytics-section-two-heading {
        margin-bottom: 40px;
    }

    .analytics-section-two-insights {
        padding-left: 0;
        padding-top: 15px;
    }

    .analytics-section-two-description {
        max-width: 700px;
    }

    .brand-logo-track {
        gap: 12px;
        animation-duration: 16s;
    }

    .brand-logo-item {
        flex-basis: 100px;
        width: 100px;
        height: 53px;
    }

    .container {
        max-width: 98% !important;
    }

    .navbar-toggler {
        padding-right: 0 !important;
    }

    .navbar-toggler:focus {
        box-shadow: none;
    }

    .brand-logo-item img {
        width: auto;
    }

    .jewelry-dna-section-one,
    .workflow-section-one,
    .analytics-section-two,
    .ai-analytics-section-one,
    .testimonial-section-one,
    .contact-section-one,
    .faq-section-one,
    .latest-blog-section-one {
        padding: 50px 0;
    }

    .hero-section-one-title {
        font-size: 50px;
    }

}


@media (max-width: 767.98px) {

    .workflow-section-one {
        padding: 60px 0 60px;
    }

    .workflow-section-one-header {
        margin-bottom: 32px;
        padding: 0 10px;
    }

    .workflow-section-one-badge {
        font-size: 9px;
        padding: 6px 11px;
    }

    .workflow-section-one-title {
        margin-top: 22px;
        font-size: 42px;
        line-height: 1;
    }

    .workflow-section-one-description {
        margin-top: 18px;
        font-size: 13px;
        line-height: 1.6;
    }

    .workflow-section-one-card {
        min-height: auto;
        padding: 21px 18px;
        border-radius: 12px;
    }

    .workflow-section-one-card-title {
        font-size: 16px;
    }

    .workflow-section-one-card-text {
        font-size: 12px;
        line-height: 1.6;
    }

    /* .workflow-section-one-tags {
        margin-top: 15px;
        gap: 5px;
    }

    .workflow-section-one-tags span {
        font-size: 8px;
        min-height: 23px;
        padding: 3px 8px;
    } */

    .jewelry-dna-section-one {
        padding: 60px 0 60px;
    }

    .jewelry-dna-section-one-visual {
        padding: 12px;
        margin-bottom: 25px;
    }

    .jewelry-dna-section-one-image {
        aspect-ratio: auto;
    }

    .jewelry-dna-section-one-stat-top {
        top: -8px;
        left: -4px;
    }

    .jewelry-dna-section-one-stat-bottom {
        right: -4px;
        bottom: -8px;
    }

    .jewelry-dna-section-one-stat {
        padding: 10px 11px;
        border-radius: 9px;
    }

    .jewelry-dna-section-one-stat-top {
        min-width: 105px;
    }

    .jewelry-dna-section-one-stat-bottom {
        min-width: 145px;
    }

    .jewelry-dna-section-one-stat strong {
        font-size: 17px;
    }

    .jewelry-dna-section-one-stat small {
        font-size: 7px;
    }

    .jewelry-dna-section-one-eyebrow {
        margin-bottom: 18px;
        font-size: 9px;
    }

    .jewelry-dna-section-one-title {
        font-size: clamp(38px, 10.5vw, 52px);
        line-height: 1;
    }

    .jewelry-dna-section-one-description {
        margin: 18px 0 25px;
        font-size: 13px;
        line-height: 1.6;
    }

    .jewelry-dna-section-one-feature-card {
        min-height: auto;
        padding: 18px 15px;
        border-radius: 10px;
    }

    .jewelry-dna-section-one-feature-icon {
        margin-bottom: 10px;
    }

    .jewelry-dna-section-one-feature-card h3 {
        font-size: 13px;
    }

    .jewelry-dna-section-one-feature-card p {
        font-size: 10px;
        line-height: 1.55;
    }

    .ai-analytics-section-one {
        padding: 60px 0 60px;
    }

    .ai-analytics-section-one-title {
        font-size: 42px;
        line-height: 1;
    }

    .ai-analytics-section-one-description {
        font-size: 12px;
        padding: 0 8px;
    }

    .ai-analytics-section-one-tabs .nav-link {
        margin-right: 24px;
        font-size: 12px;
        padding-bottom: 9px;
    }

    .ai-analytics-section-one-dashboard {
        padding: 14px;
        border-radius: 10px;
    }

    .ai-analytics-section-one-insights {
        padding-top: 5px;
    }

    .ai-analytics-section-one-insights h3 {
        font-size: 20px;
    }

    .ai-analytics-section-one-insights-intro {
        font-size: 12px;
        margin-bottom: 20px;
    }

    .ai-analytics-section-one-insight-card {
        padding: 13px 11px;
        gap: 10px;
    }

    .ai-analytics-section-one-insight-card p {
        font-size: 8.5px;
    }

    .ai-analytics-section-one-web-stat-grid,
    .ai-analytics-section-one-mobile-dashboard {
        gap: 8px;
    }

    .ai-analytics-section-one-web-stat-grid>div,
    .ai-analytics-section-one-mobile-dashboard>div {
        padding: 13px;
    }

    .ai-analytics-section-one-web-stat-grid strong,
    .ai-analytics-section-one-mobile-dashboard strong {
        font-size: 18px;
    }

    .experience-counter-section-one {
        padding: 15px 0;
    }

    .experience-counter-section-one-inner {
        flex-wrap: wrap;
        gap: 0;
        min-height: auto;
        padding: 25px 0px;
    }

    .experience-counter-section-one-number {
        font-size: 70px;
    }

    .experience-counter-section-one-number-wrap sup {
        top: -4px;
        font-size: 22px;
    }

    .experience-counter-section-one-years::after {
        height: 95px;
        margin-left: 15px;
    }

    .experience-counter-section-one-content h3 {
        margin-bottom: 7px;
        font-size: 13px;
    }

    .footer-section-one-nav {
        width: auto;
    }

    .experience-counter-section-one-content p {
        max-width: 100%;
        font-size: 9px;
        line-height: 1.5;
    }

    .experience-counter-section-one-stat {
        width: 33%;
        margin: 28px 0 0 !important;
        min-width: 0;
        gap: 10px;
    }

    .experience-counter-section-one-stat+.experience-counter-section-one-stat {
        padding-left: 15px;
    }

    .experience-counter-section-one-icon {
        width: 32px;
        height: 32px;
        font-size: 27px;
    }

    .experience-counter-section-one-stat-content strong {
        font-size: 24px;
    }

    .experience-counter-section-one-stat-content>span {
        font-size: 9px;
    }

    .testimonial-section-one {
        padding: 60px 0 55px;
    }

    .testimonial-section-one-heading {
        margin-bottom: 30px;
    }

    .testimonial-section-one-heading h2 {
        font-size: 42px;
    }

    .testimonial-section-one-card {
        min-height: 230px;

        padding: 16px;
    }

    .testimonial-section-one-text {
        min-height: auto;
        font-size: 10px;
    }

    .testimonial-section-one-result strong {
        font-size: 15px;
    }

    .contact-section-one {
        padding: 55px 0;
    }

    .contact-section-one-left {
        padding: 0;
    }

    .contact-section-one-title {
        font-size: 32px;
    }

    .contact-section-one-description {
        font-size: 12px;
        line-height: 1.65;
    }

    .contact-section-one-details {
        gap: 20px;
        margin-bottom: 10px;
    }

    .contact-section-one-form-wrapper {
        padding: 20px;
        border-radius: 13px;
    }

    .contact-section-one-field input {
        height: 44px;
    }

    .contact-section-one-submit {
        width: 100%;
    }

    .faq-section-one {
        padding: 60px 0;
    }

    .faq-section-one-header {
        margin-bottom: 35px;
    }

    .faq-section-one-title {
        font-size: 32px;
        line-height: 1.05;
    }

    .faq-section-one-description {
        padding: 0 15px;
        font-size: 11px;
    }

    .faq-section-one-question {
        min-height: 65px;
        padding: 15px;
    }

    .faq-section-one-number {
        flex-basis: 32px;
        font-size: 9px;
    }

    .faq-section-one-question-text {
        font-size: 11px;
        padding-right: 10px;
    }

    .faq-section-one-icon {
        flex-basis: 29px;
        width: 29px;
        height: 29px;
        font-size: 12px;
    }

    .faq-section-one-answer {
        padding: 0 20px 20px 47px;
        font-size: 11px;
        line-height: 1.7;
    }

    .latest-blog-section-one {
        padding: 60px 0 65px;
    }

    .latest-blog-section-one-header {
        margin-bottom: 35px;
    }

    .latest-blog-section-one-title {
        font-size: 32px;
    }

    .latest-blog-section-one-description {
        padding: 0 12px;
        font-size: 11px;
    }

    .latest-blog-section-one-image {
        height: 240px;
    }

    .latest-blog-section-one-content {
        padding: 20px;
    }

    .latest-blog-section-one-dots {
        bottom: 8px;
    }

    .pricing-section-one {
        padding: 60px 0 50px;
    }

    .pricing-section-one-header {
        padding: 0 15px;
        margin-bottom: 35px;
    }

    .pricing-section-one-title {
        font-size: 32px;
    }

    .pricing-section-one-subtitle {
        font-size: 11px;
    }

    .pricing-section-one-row {
        padding: 0 10px;
    }

    .pricing-section-one-card {
        min-height: auto;
        padding: 22px 20px;
    }

    .pricing-section-one-description {
        min-height: auto;
    }

    .pricing-section-one-note {
        padding: 0 20px;
        margin-top: 30px;
    }

    .image-slider-section {
        padding-top: 30px;
    }

    .image-slider {
        padding: 0 20px;
    }

    .image-slider-track {
        gap: 15px;
    }

    .image-slide {
        flex: 0 0 100%;
        opacity: 0.35;
        transform: scale(0.94);
    }

    .image-slide.active {
        opacity: 1;
        transform: scale(1);
    }

    .analytics-section-two {
        padding: 60px 0;
    }

    .analytics-section-two-heading {
        margin-bottom: 35px;
    }

    .analytics-section-two-heading h2 {
        margin-top: 17px;
        font-size: 36px;
        letter-spacing: -1.2px;
    }

    .analytics-section-two-heading p {
        font-size: 13px;
    }

    .analytics-section-two-dashboard {
        padding: 12px;
        border-radius: 12px;
    }

    .analytics-section-two-stat {
        min-height: 72px;
        padding: 11px;
    }

    .analytics-section-two-stat strong {
        font-size: 16px;
    }

    .analytics-section-two-chart-bars {
        gap: 4px;
    }

    .analytics-section-two-insights {
        padding-top: 10px;
    }

    .analytics-section-two-insights h3 {
        font-size: 22px;
    }

    .analytics-section-two-description {
        margin-bottom: 20px;
        font-size: 12px;
    }

    .analytics-section-two-insight-card {
        gap: 10px;
        padding: 14px;
    }

    .container {
        max-width: 98% !important;
    }

    .navbar-toggler {
        padding-right: 0 !important;
    }

    .navbar-toggler:focus {
        box-shadow: none;
    }

    .logo {
        width: 165px;
    }

    .brand-logo-item {
        flex-basis: 90px;
        width: 90px;
        height: 48px;
        border-radius: 8px;
    }

    .web-header::after {
        width: 100%;
        height: 100vh;
    }

    .web-header::before {
        width: 100%;
        height: 100vh;
    }

    .hero-section-one {
        min-height: auto;
        padding: 30px 0;
    }

}


@media (max-width: 575.98px) {

    .container {
        max-width: 98% !important;
    }

    .navbar-toggler {
        padding-right: 0 !important;
    }

    .navbar-toggler:focus {
        box-shadow: none;
    }

    .logo {
        width: 165px;
    }

    .brand-logo-item {
        flex-basis: 90px;
        width: 90px;
        height: 48px;
        border-radius: 8px;
    }

    .web-header::after {
        width: 100%;
        height: 100vh;
    }

    .web-header::before {
        width: 100%;
        height: 100vh;
    }

    .hero-section-one {
        padding: 10px 0 35px;
    }

    .hero-section-one-badge {
        margin-bottom: 22px;
        font-size: 8px;
        padding: 2px 10px;
    }

    .hero-section-one-visual::before {
        width: 200px;
        height: 200px;
        top: -15%;
        right: 0%;
    }

    .hero-section-one-title {
        font-size: 32px;
        line-height: 1.2;
    }

    .brand-logo-item img {
        display: block;
        width: auto;
    }

    .hero-section-one-description {
        margin-top: 25px;
        margin-bottom: 25px;
        font-size: 12px;
        line-height: 1.6;
    }
    .jewelry-dna-section-one-live {
        line-height: normal;
    }

    .hero-section-one-buttons {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
            margin-bottom: 18px;
    }

    .hero-section-one-trust {
        display: block;
        padding-top: 10px;
    }

    .hero-section-one-trust-logos {
        gap: 12px 20px;
    }

    .hero-section-one-trust-logo {
        font-size: 10px;
    }

    .hero-section-one-scroll {
        display: none;
    }

    .hero-section-one-visual {
        margin-top: 5px;
    }

    .hero-section-one-image-card {
        border-radius: 12px;
    }

    .hero-section-one-image {
        aspect-ratio: auto;
    }

    .hero-section-one-image-badge {
        min-width: auto;
        padding: 7px 9px;
        border-radius: 8px;
    }

    .hero-section-one-image-badge small {
        font-size: 7px;
    }

    .hero-section-one-image-badge strong {
        font-size: 10px !important;
    }

    .jewelry-dna-section-one-stat strong {
        font-size: 10px;
    }

    .hero-section-one-image-badge-top-left {
        top: 10px;
        left: 10px;
    }

    .hero-section-one-image-badge-top-right {
        top: 10px;
        right: 10px;
    }

    .hero-section-one-image-badge-bottom-left {
        bottom: 10px;
        left: 10px;
    }

    .hero-section-one-image-badge-bottom-right {
        bottom: 10px;
        right: 10px;
    }

    .fixd-header.scrolled {
        top: 6px;
        width: calc(100% - 12px);
        left: 6px;
    }

    .fixd-header .logo img {
        max-width: 125px;
    }

    .fixd-header .navbar .container-fluid {
        padding-left: 12px;
        padding-right: 12px;
    }

    .workflow-section-one {
        padding: 40px 0;
    }

    .workflow-section-one-title {
        font-size: 32px;
    }

    .workflow-section-one-description {
        font-size: 12px;
    }

    .workflow-section-one-description {
        padding: 0 5px;
    }

    .workflow-section-one-card {
        padding: 20px 16px;
    }

    .workflow-section-one-icon {
        width: 25px;
        height: 25px;
        font-size: 15px;
    }

    .analytics-section-two-heading p {
        font-size: 12px;
    }

    .analytics-section-two-insights h3 {
        font-size: 18px;
    }

    .ai-analytics-section-one-dashboard img {
        max-width: 100%;
    }

    .contact-section-one-submit {
        width: inherit;
    }

    .workflow-section-one-card-title {
        font-size: 15px;
        margin-top: 6px;
    }

    .workflow-section-one-card-text {
        font-size: 11px;
    }

    .jewelry-dna-section-one {
        padding: 40px 0;
    }

    .jewelry-dna-section-one-title {
        font-size: 32px;
    }

    .jewelry-dna-section-one-description {
        font-size: 12px;
    }

    .jewelry-dna-section-one-feature-card {
        padding: 17px 14px;
    }

    .jewelry-dna-section-one-stat-bottom {
        min-width: 135px;
    }

    .ai-analytics-section-one {
        padding: 40px 0 40px;
    }

    .ai-analytics-section-one-title {
        font-size: 32px;
    }

    .ai-analytics-section-one-badge {
        font-size: 9px;
        padding: 6px 11px;
    }

    .experience-counter-section-one-inner {
        padding: 22px 0px;
        justify-content: center;
    }

    .experience-counter-section-one-number {
        font-size: 65px;
    }

    .experience-counter-section-one-number-wrap sup {
        font-size: 18px;
    }

    .experience-counter-section-one-content {
        padding-left: 0px;
        text-align: center;
    }

    .experience-counter-section-one-content h3 {
        font-size: 13px;
    }

    .counter-bg {
        justify-content: center;
    }

    .experience-counter-section-one-stat {
        width: 100%;
    }

    .experience-counter-section-one-stat+.experience-counter-section-one-stat {
        padding-left: 0;
    }

    .experience-counter-section-one-content p {
        font-size: 8px;
    }

    .contact-section-one {
        padding: 40px 0;
    }

    .experience-counter-section-one-stat {
        gap: 7px;
    }

    .experience-counter-section-one-icon {
        font-size: 23px;
    }

    .testimonial-section-one {
        padding: 40px 0;
    }

    .testimonial-section-one-heading h2 {
        font-size: 32px;
    }

    .testimonial-section-one-card {
        min-height: 225px;
    }

    .testimonial-section-one-author-info span {
        white-space: normal;
    }

    .testimonial-section-one-slider {
        padding-bottom: 35px;
    }

    .latest-blog-section-one-description {
        font-size: 12px;
    }

    .seo-accordion .accordion-button {
        font-size: 13px;
    }

    .seo-accordion .accordion-body {
        padding: 0px;
    }

    .faq-section-one {
        padding: 40px 0;
    }

    .faq-section-one-description {
        font-size: 12px;
    }

    .latest-blog-section-one {
        padding: 40px 0;
    }

    .contact-section-one-title {
        font-size: 32px;
    }

    .contact-section-one-description {
        font-size: 12px;
    }

    .contact-section-one-form-wrapper {
        padding: 16px;
    }

    .contact-section-one-detail-content a,
    .contact-section-one-detail-content p {
        font-size: 10px;
    }

    .contact-section-one-icon {
        flex-basis: 40px;
        width: 40px;
        height: 40px;
    }

    .faq-section-one-title {
        font-size: 32px;
    }

    .faq-section-one-question {
        align-items: flex-start;
        padding: 14px 12px;
    }

    .faq-section-one-number {
        padding-top: 3px;
        flex-basis: 28px;
    }

    .faq-section-one-question-text {
        font-size: 10.5px;
        line-height: 1.5;
    }

    .faq-section-one-icon {
        flex-basis: 27px;
        width: 27px;
        height: 27px;
    }

    .faq-section-one-answer {
        padding-left: 40px;
        padding-right: 15px;
        font-size: 10.5px;
    }

    .latest-blog-section-one-title {
        font-size: 32px;
    }

    .latest-blog-section-one-image {
        height: 210px;
    }

    .latest-blog-section-one-content h3 {
        font-size: 16px;
    }

    .latest-blog-section-one-content p {
        font-size: 10.5px;
    }

    .pricing-section-one-title {
        font-size: 32px;
    }

    .pricing-section-one-label {
        font-size: 8px;
    }

    .pricing-section-one-card {
        border-radius: 10px;
    }

    .footer-section-one-nav {
        gap: 13px;
    }

    .footer-section-one-nav a {
        font-size: 10px !important;
        padding-right: 10px;
    }

    .footer-section-one-legal a,
    .footer-section-one-legal span {
        font-size: 12px;
    }

    .footer-section-one-logo img {
        width: 132px;
    }

    .footer-section-one-nav {
        flex-wrap: wrap;
        gap: 14px 20px;
    }

    .footer-section-one-nav a {
        font-size: 10px;
    }

    .contact-section-one-submit {
        height: 38px;
        font-size: 12px;
    }

    .footer-section-one-inner {
        gap: 14px;
        padding-bottom: 12px;
        padding-top: 12px;
    }

    .hero-section-one-btn-start {
        min-height: 38px;
        font-size: 12px;
    }

    .footer-section-one-nav {
        display: inline;
    }

    .footer-section-one-right {
        gap: 14px;
    }

    .footer-section-one-social {
        gap: 6px;
    }

    .footer-section-one-legal {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px 14px;
    }

    .back-to-top-one {
        right: 15px;
        bottom: 15px;
        width: 42px;
        height: 42px;
        font-size: 14px;
    }

    .business-type-options {
        gap: 8px;
    }

    .business-option-label {
        min-height: 36px;
        padding: 7px 9px;
        font-size: 12px;
    }

    .business-option-label>i:first-child,
    .business-option-label .check-icon {
        font-size: 13px;
    }

    .analytics-section-two {
        padding: 40px 0;
    }

    .analytics-section-two-heading h2 {
        font-size: 32px;
    }

    .analytics-section-two-browser-url {
        font-size: 8px;
    }

    .analytics-section-two-stat small {
        font-size: 9px;
    }

    .ai-analytics-section-one-header {
        margin: 0 auto 25px;
    }

    .ai-analytics-section-one-insights h3 {
        font-size: 18px;
    }

    .analytics-section-two-stat strong {
        font-size: 14px;
    }

    .analytics-section-two-positive {
        font-size: 8px;
    }

    .analytics-section-two-chart-bars {
        height: 70px;
    }

    .analytics-section-two-insight-text p {
        font-size: 9px;
    }

    .brand-logo-slider-section {
        padding: 15px 0;
    }

    .brand-logo-track {
        gap: 10px;
        animation-duration: 12s;
    }

}
.blog-details .blog-banner .blog-box{
    margin-bottom: 20px;
}
.blog-details .blog-banner .blog-box img{
    width: 100%;
    height: 100%;
    border-radius: 10px;
}


.testimonial-section-one .testimonial-read-more {
    border: none;
    background-color: transparent;
    display: inline-flex!important;
    align-items: center;
    gap: 9px;
    color: var(--black-color);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .08em;
    text-decoration: none;
    transition: color .25s ease;
    text-transform: uppercase;
    margin-bottom: 15px;
}
.testimonial-section-one .testimonial-read-more:hover {
    color: var(--primary-color);
}
    .testimonial-section-one .testimonial-read-more:hover i {
        transform: translateX(4px);
        transition: all .25s ease-in-out;
    }