/* ============================================
   10XDIGITAL - MASTER CSS
   Combined & Optimized for All Pages
   Includes: Home, About, Contact, Services, Team, Blog, Products, Team Member
   ============================================ */

@keyframes floatAnim {
    0%,to {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-12px)
    }
}

@keyframes rotateSlow {
    to {
        transform: rotate(360deg)
    }
}

@keyframes scrollLeft {
    to {
        transform: translateX(-50%)
    }
}

@keyframes scrollRight {
    0% {
        transform: translateX(-50%)
    }

    to {
        transform: translateX(0)
    }
}

@keyframes floatRobot {
    0%,to {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-12px)
    }
}

@keyframes scrollText {
    to {
        transform: translateX(-50%)
    }
}

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

body {
    font-family: "Rubik",sans-serif;
    font-size: 18px;
    line-height: 1.5;
    color: #4a4672;
    background: #fff;
    overflow-x: hidden;
    cursor: default
}

h1,h2,h3,h4,h5,h6 {
    font-family: "Nunito",sans-serif;
    font-weight: 800;
    color: #1f1a3e
}

@media (min-width:1025px) {
    .tenx-cursor,.tenx-pointer {
        position: fixed;
        border-radius: 50%;
        pointer-events: none
    }

    .tenx-cursor {
        width: 42px;
        height: 42px;
        border: 2px solid #6254e7;
        z-index: 9999;
        background: rgba(98,84,231,.08);
        transition: transform .12s cubic-bezier(.2,.9,.4,1.1)
    }

    .tenx-pointer {
        width: 8px;
        height: 8px;
        background: #6254e7;
        z-index: 10000;
        box-shadow: 0 0 6px rgba(98,84,231,.5);
        transition: transform .06s linear
    }
}

.tenx-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px
}

.tenx-section {
    padding: 80px 0
}

.tenx-bg-light {
    background-color: #f9f9ff
}

.tenx-hidden {
    opacity: 0;
    transform: translateY(35px);
    transition: all .7s ease
}

.tenx-visible {
    opacity: 1;
    transform: translateY(0)
}

.tenx-btn,.tenx-nav a {
    text-decoration: none;
    font-size: 16px
}

.tenx-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 40px;
    font-weight: 600;
    border: 1px solid #000;
    background: 0 0;
    color: #000;
    cursor: pointer;
    transition: all .3s ease
}

.tenx-btn:hover {
    transform: translateY(-3px);
    background: #000;
    color: #fff!important
}

.tenx-btn-outline {
    background: #fff;
    border: 2px solid #6254e7;
    color: #6254e7;
    box-shadow: none
}

.tenx-btn-primary {
    background: #6254e7;
    border-color: #6254e7;
    color: #fff
}

.tenx-btn-outline:hover,.tenx-btn-primary:hover {
    background: #ff7426;
    border-color: #ff7426;
    color: #fff
}

.tenx-header-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: 0 0;
    transition: all .3s
}

.tenx-header-wrapper.scrolled {
    background: #fff;
    box-shadow: 0 5px 20px rgba(0,0,0,.05)
}

.tenx-header {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 24px;
    justify-content: space-between
}

.tenx-header,.tenx-logo {
    display: flex;
    align-items: center
}

.tenx-logo img {
    height: 45px;
    width: auto;
    display: block
}

@media (max-width:768px) {
    .tenx-logo img {
        height: 30px
    }
}

.tenx-header-right,.tenx-nav ul {
    display: flex;
    align-items: center;
    gap: 16px
}

.tenx-header-right .tenx-btn {
    padding: 8px 20px;
    font-size: 14px;
    white-space: nowrap
}

.tenx-hamburger {
    display: none;
    font-size: 24px;
    cursor: pointer;
    background: 0 0;
    border: 0;
    color: #1f1a3e
}

.tenx-nav ul {
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0
}

.tenx-nav a {
    color: #1f1a3e;
    font-weight: 500;
    transition: .2s
}

.tenx-nav a:hover,.tenx-page-title .breadcrumbs a:hover {
    color: #6254e7
}

@media (min-width:1025px) {
    .tenx-nav {
        margin-left: auto;
        margin-right: 32px
    }
}

@media (max-width:1024px) {
    .tenx-hamburger {
        display: block
    }

    .tenx-nav {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: #fff;
        box-shadow: 0 20px 30px rgba(0,0,0,.1);
        max-height: 0;
        overflow: hidden;
        transition: max-height .3s;
        z-index: 1000
    }

    .tenx-nav.mobile-open {
        max-height: 400px
    }

    .tenx-nav ul {
        flex-direction: column;
        padding: 20px;
        gap: 20px;
        align-items: center
    }

    .tenx-header-right {
        gap: 12px
    }
}

.tenx-page-title {
    background: linear-gradient(135deg,#f5f0ff 0,#e8e0ff 100%);
    padding: 140px 0 60px;
    text-align: center;
    margin-bottom: 60px
}

.tenx-page-title h1 {
    font-size: 48px;
    margin-bottom: 15px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto
}

.tenx-page-title .breadcrumbs {
    font-size: 14px;
    color: #6254e7
}

.tenx-page-title .breadcrumbs a {
    color: #4a4672;
    text-decoration: none
}

@media (max-width:768px) {
    .tenx-page-title {
        padding: 120px 0 40px
    }

    .tenx-page-title h1 {
        font-size: 36px
    }
}

.post-meta-title {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 20px;
    font-size: 14px;
    color: #696687
}

.post-meta-title i {
    margin-right: 6px;
    color: #6254e7
}

.contact-section-title,.section-header,.service-section-title {
    text-align: center
}

.section-header {
    margin-bottom: 50px
}

.section-header h5,.service-section-title h5 {
    color: #6254e7;
    margin-bottom: 10px;
    font-size: 16px;
    letter-spacing: 1px
}

.section-header h2,.service-section-title h2 {
    font-size: 36px;
    margin-bottom: 15px
}

.section-header p {
    max-width: 600px;
    margin: 0 auto;
    color: #696687
}

.contact-section-title h2 {
    font-size: 36px;
    margin-bottom: 30px
}

@media (max-width:768px) {
    .contact-section-title h2,.section-header h2,.service-section-title h2 {
        font-size: 28px
    }
}

.progress-item {
    margin-bottom: 25px
}

.progress-header,.progress-title {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-weight: 600;
    color: #1f1a3e
}

.progress-bar,.progress-track {
    height: 8px;
    background: #e2e0f0;
    border-radius: 10px;
    overflow: hidden
}

.progress-fill {
    height: 100%;
    background: linear-gradient(96deg,#9289f1 0,#6254e7 100%);
    border-radius: 10px;
    width: 0;
    transition: width 1.5s ease-out
}

.progress-label,.progress-percent {
    font-weight: 600;
    font-size: 16px
}

.progress-percent,.team-social a:hover {
    color: #6254e7
}

.tenx-clients {
    background: #0c0a2b;
    padding: 40px 0;
    overflow: hidden
}

.client-logos {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    opacity: .7;
    transition: .3s
}

.client-logos:hover {
    opacity: 1
}

.client-logos img {
    height: 36px;
    width: auto
}

@media (max-width:768px) {
    .client-logos {
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 50px;
        padding: 0 24px;
        justify-content: flex-start;
        opacity: 1
    }

    .client-logos img {
        scroll-snap-align: start;
        flex-shrink: 0;
        height: 28px
    }

    .client-logos::-webkit-scrollbar {
        display: none
    }
}

.counters-row,.tenx-stats-grid {
    margin: 50px 0
}

.counters-row,.stats-row,.tenx-stats-grid {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap
}

.counter-item,.stat-item,.tenx-stat-item {
    display: flex;
    align-items: center;
    gap: 20px
}

.counter-number,.stat-number {
    font-size: 48px;
    font-weight: 800;
    font-family: "Nunito",sans-serif;
    color: #1f1a3e
}

.stats-row {
    background: #0c0a2b;
    padding: 60px 24px;
    margin: 0
}

.stats-row .stat-number {
    color: #fff
}

.stats-row .stat-item p {
    color: #b9b7d9
}

@media (max-width:768px) {
    .counters-row,.stats-row,.tenx-stats-grid {
        flex-direction: column;
        align-items: center;
        gap: 35px
    }

    .counter-item,.stat-item,.tenx-stat-item {
        width: 100%;
        justify-content: center
    }

    .counter-number,.stat-number {
        font-size: 42px
    }

    .tenx-stat-item img {
        width: 45px
    }
}

.features-grid,.offer-grid,.services-offer-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
    margin: 40px 0 60px
}

.feature-card,.offer-card {
    text-align: center;
    padding: 40px 25px;
    border-radius: 30px;
    background: #fff;
    transition: all .3s;
    box-shadow: 0 20px 35px rgba(0,0,0,.03);
    border: 1px solid #f0eefc
}

.feature-card:hover,.offer-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 40px rgba(98,84,231,.08)
}

.feature-card img,.offer-card img {
    width: 70px;
    margin-bottom: 20px;
    transition: filter .3s
}

.feature-card h6,.offer-card h6 {
    font-size: 20px;
    margin-bottom: 15px
}

.feature-card p,.offer-card p {
    font-size: 15px;
    color: #696687
}

.feature-link,.offer-link {
    color: #6254e7;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    margin-top: 15px;
    font-size: 14px;
    transition: all .3s
}

.offer-card:hover {
    background: #0a0820;
    border-color: #6254e7
}

.offer-card:hover h6,.offer-card:hover p {
    color: #fff
}

.offer-card:hover img {
    filter: brightness(0) invert(1)
}

.offer-link:hover {
    color: #ff7426;
    transform: translateX(5px)
}

@media (max-width:900px) {
    .features-grid,.offer-grid,.services-offer-grid {
        grid-template-columns: 1fr;
        gap: 25px
    }
}

.tenx-services-full {
    background: #f9f9ff;
    padding: 80px 24px
}

.tenx-services-inner {
    max-width: 1200px;
    margin: 0 auto
}

.tenx-services-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 35px;
    margin-top: 50px
}

.tenx-service-card {
    display: flex;
    gap: 20px;
    padding: 28px 24px;
    border-radius: 32px;
    background: #fff;
    box-shadow: 0 20px 35px rgba(0,0,0,.03);
    border: 1px solid #f0eefc;
    transition: all .3s
}

.tenx-service-card:nth-child(1) {
    background: linear-gradient(135deg,#abf6f7b3 0,#a4eb7eb3 100%)
}

.tenx-service-card:nth-child(2) {
    background: linear-gradient(135deg,#ffa9a9b3 0,#f3aee4b3 100%)
}

.tenx-service-card:nth-child(3) {
    background: linear-gradient(135deg,#8bd5f6b3 0,#c398f3b3 100%)
}

.tenx-service-card:nth-child(4) {
    background: linear-gradient(135deg,#ffbf9f 0,#ffe9a4 100%)
}

.tenx-service-icon {
    width: 70px;
    object-fit: contain
}

.service-link {
    color: #6254e7;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    margin-top: 12px
}

@media (max-width:900px) {
    .tenx-services-grid {
        grid-template-columns: 1fr;
        gap: 25px
    }

    .tenx-service-card {
        padding: 22px 20px;
        gap: 18px
    }

    .tenx-service-icon {
        width: 55px
    }
}

.case-studies-section,.tenx-case-studies {
    background: #0c0a2b;
    padding: 80px 0;
    overflow-x: hidden
}

.case-flex {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    align-items: flex-start
}

.case-left {
    flex: 1;
    min-width: 0
}

.case-left h2 {
    color: #fff;
    font-size: 36px;
    margin-bottom: 25px
}

.case-tags {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap
}

.case-tag {
    background: rgba(255,255,255,.08);
    padding: 6px 18px;
    border-radius: 40px;
    color: #ccc9ff;
    cursor: pointer;
    transition: .2s;
    font-size: 14px
}

.case-tag.active,.case-tag:hover,.contact-detail-item:hover .contact-icon {
    background: #6254e7;
    color: #fff
}

.tab-description {
    color: #b9b7d9;
    font-size: 14px;
    margin-bottom: 25px;
    max-width: 100%
}

.case-right {
    flex: 1.5;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 20px
}

.case-right::-webkit-scrollbar {
    height: 5px
}

.case-right::-webkit-scrollbar-track {
    background: #2a2648;
    border-radius: 10px
}

.case-right::-webkit-scrollbar-thumb {
    background: #6254e7;
    border-radius: 10px
}

.case-slider-track {
    display: flex;
    gap: 25px;
    width: max-content
}

.case-card {
    background: #1e1a3a;
    border-radius: 20px;
    overflow: hidden;
    transition: .3s;
    width: 280px;
    flex-shrink: 0
}

.case-card:hover {
    transform: translateY(-5px)
}

.case-card img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform .4s
}

.case-card .info {
    padding: 18px;
    color: #fff
}

.case-card .info h4 {
    font-size: 18px;
    margin-bottom: 8px
}

.case-card .info p {
    font-size: 13px;
    color: #ccc9ff
}

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

    .case-left {
        text-align: center
    }

    .case-tags {
        justify-content: center
    }

    .tab-description {
        text-align: center;
        margin: 15px auto
    }

    .case-left h2 {
        font-size: 32px
    }

    .case-right {
        width: 100%
    }

    .case-card {
        width: 260px
    }
}

.tenx-robot-marquee {
    background: linear-gradient(135deg,#8bd5f6b3 0,#c398f3b3 100%);
    position: relative;
    overflow: hidden;
    width: 100%;
    padding: 20px 0;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: center
}

.marquee-layer-top {
    position: relative;
    top: 180px;
    z-index: 1;
    white-space: nowrap;
    margin: 0;
    padding: 10px 0;
    overflow: hidden
}

.robot-layer {
    position: relative;
    z-index: 2;
    text-align: center;
    margin: -25px 0;
    filter: drop-shadow(0 30px 40px rgba(0,0,0,.35))
}

.robot-layer img {
    width: 750px;
    max-width: 70%;
    display: inline-block;
    animation: floatRobot 4s infinite ease-in-out
}

.marquee-layer-bottom {
    position: relative;
    z-index: 3;
    bottom: 210px;
    white-space: nowrap;
    margin: 0;
    padding: 10px 0;
    overflow: hidden
}

.marquee-content {
    display: inline-block;
    font-size: 65px;
    font-weight: 800;
    letter-spacing: 3px;
    white-space: nowrap;
    color: transparent;
    padding-right: 10.42vw;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #fff
}

.marquee-layer-top .marquee-content {
    animation: scrollLeft 22s linear infinite
}

.marquee-layer-bottom .marquee-content {
    animation: scrollRight 24s linear infinite
}

@media (max-width:900px) {
    .tenx-robot-marquee {
        min-height: 240px;
        padding: 10px 0
    }

    .marquee-layer-top {
        top: 50px
    }

    .marquee-layer-bottom {
        bottom: 95px
    }

    .robot-layer img {
        width: 280px;
        max-width: 70%
    }

    .marquee-content {
        font-size: 40px
    }
}

.tenx-hero-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 60px;
    padding: 140px 24px 80px;
    max-width: 1200px;
    margin: 0 auto
}

.hero-content {
    flex: 1
}

.hero-title {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 20px
}

.hero-inline-group {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 20px 0;
    flex-wrap: wrap
}

.hero-seo {
    color: #6254e7
}

.hero-ai-text,.hero-seo {
    font-size: 44px;
    font-weight: 800
}

.hero-desc {
    margin: 20px 0 28px;
    color: #5a5780;
    font-size: 16px
}

.tenx-subscribe-form {
    display: flex;
    max-width: 420px;
    border: 1px solid #e2e0f0;
    border-radius: 60px;
    overflow: hidden;
    background: #fff
}

.tenx-subscribe-form input {
    flex: 1;
    padding: 14px 18px;
    border: 0;
    outline: 0;
    font-size: 15px
}

.tenx-subscribe-form button {
    background: #6254e7;
    border: 0;
    color: #fff;
    padding: 0 24px 0 10px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap
}

.hero-image-area {
    flex: 1;
    position: relative;
    text-align: center
}

.hero-main-img {
    max-width: 100%;
    border-radius: 40px;
    width: 100%;
    height: auto
}

.floating-icon,.rotate-icon {
    position: absolute;
    animation: floatAnim 4s infinite ease-in-out
}

.rotate-icon {
    animation: rotateSlow 12s linear infinite
}

.hero-image-area .blue-star {
    width: 100px;
    top: -15px;
    left: -20px
}

.hero-image-area .tag-icon {
    width: 70px;
    bottom: 50%;
    right: -5px;
    animation-delay: .3s
}

.hero-image-area .megaphone-icon {
    width: 100px;
    top: 10%;
    right: 40px
}

.hero-image-area .mail-icon {
    width: 80px;
    bottom: 90%;
    left: 390px
}

.hero-image-area .branding-text-icon {
    width: 100px;
    top: 58%;
    right: 4%;
    z-index: 2
}

.hero-image-area .star-circle-icon {
    width: 180px;
    bottom: 50px;
    left: 70%;
    animation-duration: 20s;
    z-index: 1
}

.hero-image-area .heart-icon {
    width: 80px;
    top: 75%;
    left: 300px
}

@media (max-width:900px) {
    .tenx-hero-row {
        flex-direction: column;
        text-align: center;
        gap: 40px;
        padding: 120px 20px 60px
    }

    .hero-title {
        font-size: 38px
    }

    .hero-ai-text,.hero-seo {
        font-size: 32px
    }

    .hero-inline-group {
        justify-content: center
    }

    .tenx-subscribe-form {
        margin: 0 auto;
        max-width: 95%
    }

    .hero-image-area {
        margin-top: 20px
    }

    .hero-image-area .blue-star {
        width: 45px;
        top: -20px;
        left: -10px
    }

    .hero-image-area .tag-icon {
        width: 40px;
        bottom: 45%;
        right: 20px
    }

    .hero-image-area .megaphone-icon {
        width: 70px;
        top: 28px;
        right: 22px
    }

    .hero-image-area .mail-icon {
        width: 45px;
        bottom: 90%;
        left: 70%
    }

    .hero-image-area .branding-text-icon {
        width: 60px;
        top: 68%;
        right: 41px
    }

    .hero-image-area .star-circle-icon {
        width: 90px;
        bottom: 30px;
        left: 70%
    }

    .hero-image-area .heart-icon {
        width: 50px;
        top: 80%;
        left: 55%
    }
}

.scrolling-text {
    background: #f0eefc;
    padding: 20px 0;
    overflow: hidden;
    margin: 60px 0
}

.scrolling-text-track {
    display: flex;
    animation: scrollText 20s linear infinite;
    white-space: nowrap
}

.scrolling-text-item {
    font-size: 60px;
    font-weight: 800;
    font-family: "Nunito",sans-serif;
    color: transparent;
    -webkit-text-stroke: 1px #6254e7;
    padding: 0 30px;
    letter-spacing: 5px
}

@media (max-width:768px) {
    .scrolling-text-item {
        font-size: 40px;
        padding: 0 20px
    }
}

.tenx-about-full {
    background: #f9f9ff;
    padding: 80px 24px;
    text-align: center
}

.tenx-about-inner {
    max-width: 1200px;
    margin: 0 auto
}

.about-avatars {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap
}

.about-avatar {
    width: 60px;
    border-radius: 50%
}

.about-text {
    max-width: 800px;
    margin: 20px auto;
    font-size: 16px
}

@media (max-width:768px) {
    .tenx-about-full {
        padding: 60px 20px
    }

    .about-text {
        font-size: 15px
    }
}

.about-hero {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 60px;
    margin-bottom: 60px
}

.about-hero-content {
    flex: 1
}

.about-hero-content h5,.story-header h5,.team-header h5,.team-intro-content h5,.testimonials-section h5,.whyus-content h5 {
    color: #6254e7;
    margin-bottom: 15px;
    font-size: 16px;
    letter-spacing: 1px
}

.about-hero-content h2,.team-intro-content h2 {
    font-size: 42px;
    margin-bottom: 20px
}

.about-hero-content p,.team-intro-content p {
    margin-bottom: 20px;
    color: #5a5780
}

.about-hero-image {
    flex: 1;
    position: relative;
    text-align: center
}

.about-hero-image img,.team-intro-image img,.whyus-image img {
    max-width: 100%;
    border-radius: 30px
}

.about-hero-image .floating-ellipse {
    position: absolute;
    top: -30px;
    left: -30px;
    width: 120px;
    z-index: -1
}

@media (max-width:900px) {
    .about-hero,.team-intro,.whyus-section {
        flex-direction: column;
        text-align: center
    }

    .about-hero-content h2,.team-intro-content h2,.whyus-content h2 {
        font-size: 32px
    }

    .about-hero-image .floating-ellipse {
        width: 80px;
        top: -15px;
        left: -15px
    }
}

.digital-experience-section {
    background: #f9f9ff;
    text-align: center;
    padding: 80px 0
}

.digital-experience-section h2 {
    color: #1f1a3e;
    font-size: 36px;
    margin-bottom: 15px
}

.digital-experience-section p,.story-header p {
    color: #696687;
    max-width: 600px;
    margin: 0 auto
}

@media (max-width:768px) {
    .digital-experience-section {
        padding: 60px 0
    }

    .digital-experience-section h2 {
        font-size: 28px
    }
}

.story-section {
    background: #faf8ff;
    padding: 80px 0
}

.story-header {
    text-align: center;
    margin-bottom: 60px
}

.story-header h5,.team-header h5 {
    margin-bottom: 10px
}

.story-header h2,.team-header h2 {
    font-size: 36px;
    margin-bottom: 15px
}

.timeline-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    position: relative
}

.timeline-wrapper::before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom,#6254e7,#c398f3,#6254e7);
    opacity: .4
}

.timeline-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
    position: relative
}

.timeline-item:nth-child(odd) {
    flex-direction: row
}

.timeline-left {
    width: 45%;
    text-align: right;
    padding-right: 40px
}

.timeline-right {
    width: 45%;
    padding-left: 40px
}

.timeline-year {
    font-size: 22px;
    font-weight: 800;
    color: #6254e7;
    margin-bottom: 8px;
    letter-spacing: 1px
}

.timeline-card {
    background: #fff;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,.05);
    transition: all .3s
}

.team-member:hover,.timeline-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 45px rgba(98,84,231,.12)
}

.timeline-card h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #1f1a3e
}

.timeline-card p {
    color: #696687;
    font-size: 15px;
    margin: 0;
    line-height: 1.5
}

.timeline-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 16px;
    background: #6254e7;
    border-radius: 50%;
    top: 25px;
    border: 3px solid #fff;
    box-shadow: 0 0 0 3px rgba(98,84,231,.2);
    z-index: 2
}

@media (max-width:768px) {
    .timeline-wrapper::before {
        left: 20px
    }

    .timeline-item {
        flex-direction: column!important;
        margin-bottom: 40px
    }

    .timeline-left,.timeline-right {
        width: 100%;
        text-align: left;
        padding-left: 50px;
        margin-bottom: 15px
    }

    .timeline-left {
        padding-right: 0
    }

    .timeline-dot {
        left: 20px;
        top: 20px
    }

    .timeline-year {
        font-size: 18px
    }
}

.team-grid-section,.team-section {
    padding: 80px 0
}

.team-header {
    text-align: center;
    margin-bottom: 50px
}

.team-header p {
    max-width: 600px;
    margin: 0 auto;
    color: #696687
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 30px
}

.team-member {
    background: #fff;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 35px rgba(0,0,0,.03);
    transition: all .3s;
    text-align: center
}

.team-member:hover {
    box-shadow: 0 30px 40px rgba(98,84,231,.08)
}

.team-member img {
    width: 100%;
    height: auto;
    display: block
}

.team-info {
    padding: 20px
}

.team-info h4 {
    font-size: 18px;
    margin-bottom: 5px
}

.team-info p {
    color: #6254e7;
    font-size: 14px;
    margin-bottom: 12px
}

.team-social a {
    color: #b9b7d9;
    margin: 0 8px;
    font-size: 16px;
    transition: .2s;
    display: inline-block
}

@media (max-width:1024px) {
    .team-grid {
        grid-template-columns: repeat(2,1fr)
    }
}

@media (max-width:600px) {
    .team-grid {
        grid-template-columns: 1fr
    }
}

.team-detail {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    margin-bottom: 80px;
    background: #f9f9ff;
    border-radius: 30px;
    padding: 50px
}

.team-detail-image {
    flex: 1;
    text-align: center
}

.team-detail-image img {
    max-width: 100%;
    border-radius: 30px
}

.team-detail-info {
    flex: 1.5
}

.team-detail-info .team-position {
    color: #6254e7;
    margin-bottom: 10px;
    font-size: 16px;
    letter-spacing: 1px;
    font-weight: 600
}

.team-detail-info h2 {
    font-size: 42px;
    margin-bottom: 15px
}

.team-detail-info p {
    margin-bottom: 20px;
    color: #5a5780
}

.team-detail-info .info-row {
    margin: 15px 0
}

.team-detail-info .info-row strong {
    color: #1f1a3e;
    min-width: 100px;
    display: inline-block
}

.team-detail-info .info-row a {
    color: #6254e7;
    text-decoration: none
}

.team-detail-info .social-links {
    margin-top: 30px
}

.team-detail-info .social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: #fff;
    border-radius: 50%;
    color: #6254e7;
    margin-right: 12px;
    transition: .3s;
    box-shadow: 0 5px 15px rgba(0,0,0,.05)
}

.team-detail-info .social-links a:hover {
    background: #6254e7;
    color: #fff;
    transform: translateY(-3px)
}

@media (max-width:900px) {
    .team-detail {
        flex-direction: column;
        padding: 30px;
        text-align: center
    }

    .team-detail-info h2 {
        font-size: 32px
    }

    .team-detail-info .info-row strong {
        display: block;
        margin-bottom: 5px
    }
}

.experience-about-section {
    padding: 80px 0;
    background: #fff
}

.experience-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start
}

.section-label {
    color: #6254e7;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 15px;
    text-transform: uppercase
}

.section-title {
    font-family: "Nunito",sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: #1f1a3e;
    line-height: 1.2;
    margin-bottom: 20px
}

.section-desc {
    color: #696687;
    margin-bottom: 30px;
    line-height: 1.6
}

.about-column p,.experience-column p {
    color: #696687;
    margin-bottom: 20px;
    line-height: 1.6
}

@media (max-width:900px) {
    .experience-about-grid {
        grid-template-columns: 1fr;
        gap: 50px
    }

    .section-title {
        font-size: 28px
    }

    .experience-about-section {
        padding: 60px 0
    }
}

.whyus-section {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    align-items: center;
    margin: 80px 0
}

.whyus-image {
    flex: 1;
    text-align: center
}

.whyus-content {
    flex: 1
}

.whyus-content h2 {
    font-size: 36px;
    margin-bottom: 20px
}

.whyus-list {
    margin-top: 30px
}

.whyus-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    align-items: flex-start
}

.whyus-item img {
    width: 40px
}

.whyus-item p {
    color: #696687;
    margin: 0
}

@media (max-width:900px) {
    .whyus-item,.whyus-section {
        flex-direction: column;
        text-align: center
    }

    .whyus-item {
        align-items: center
    }
}

.services-hero {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 60px;
    margin-bottom: 60px
}

.services-hero-content {
    flex: 1
}

.services-hero-content h5 {
    color: #6254e7;
    margin-bottom: 15px;
    font-size: 16px;
    letter-spacing: 1px
}

.services-hero-content h2 {
    font-size: 42px;
    margin-bottom: 20px
}

.services-hero-content p {
    margin-bottom: 20px;
    color: #5a5780
}

.services-hero-image {
    flex: 1;
    text-align: center
}

.services-hero-image img {
    max-width: 100%;
    border-radius: 30px
}

@media (max-width:900px) {
    .services-hero {
        flex-direction: column;
        text-align: center
    }

    .services-hero-content h2 {
        font-size: 32px
    }
}

.team-intro {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 60px;
    margin-bottom: 60px
}

.team-intro-content {
    flex: 1
}

.team-intro-image {
    flex: 1;
    text-align: center
}

.testimonials-wrapper {
    position: relative;
    overflow: hidden;
    padding: 20px 0
}

.testimonial-slider {
    display: flex;
    transition: transform .5s ease-in-out;
    gap: 30px
}

.testimonial-card {
    flex: 0 0 calc(50% - 15px)
}

.testimonial-card-inner {
    background: #fff;
    border-radius: 36px;
    padding: 30px 25px;
    box-shadow: 0 20px 35px rgba(0,0,0,.05);
    height: 100%
}

.testimonial-card-inner i {
    font-size: 28px;
    color: #6254e7;
    margin-bottom: 15px;
    display: inline-block
}

.testimonial-card-inner p {
    font-size: 16px;
    margin: 15px 0;
    line-height: 1.5
}

.testimonial-card-inner img {
    width: 55px;
    border-radius: 50%;
    margin-top: 10px
}

.testimonial-card-inner h4 {
    margin-top: 12px;
    font-size: 18px
}

.testimonial-card-inner p:last-child {
    color: #6254e7;
    margin-top: 5px;
    font-size: 14px
}

.testimonials-section {
    background: #0c0a2b;
    padding: 80px 0;
    text-align: center
}

.testimonials-section h2 {
    color: #fff;
    font-size: 36px;
    margin-bottom: 40px
}

.testimonial-text {
    max-width: 800px;
    margin: 0 auto 30px;
    font-size: 22px;
    font-style: italic;
    color: #fff
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color: #b9b7d9
}

.testimonial-author img {
    width: 60px;
    border-radius: 50%
}

.testimonial-author h4 {
    font-size: 18px
}

.testimonial-author p {
    color: #6254e7;
    font-size: 14px
}

.dots,.testimonial-dots {
    text-align: center;
    margin-top: 40px
}

.dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    margin: 0 5px;
    cursor: pointer;
    transition: .3s
}

.dot.active {
    background: #6254e7;
    width: 24px;
    border-radius: 10px
}

@media (max-width:900px) {
    .testimonial-card {
        flex: 0 0 100%
    }

    .testimonial-card-inner {
        padding: 25px 20px
    }
}

@media (max-width:768px) {
    .testimonial-text {
        font-size: 18px
    }
}

.contact-page-section {
    padding: 60px 0
}

.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 50px
}

.contact-form-wrapper,.contact-info {
    flex: 1;
    min-width: 280px
}

.contact-form-container h2,.contact-info h2 {
    font-size: 36px;
    margin-bottom: 20px
}

.contact-info p {
    color: #696687;
    margin-bottom: 30px
}

.contact-details {
    margin: 40px 0
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 30px
}

.contact-icon {
    width: 55px;
    height: 55px;
    background: #f0eefc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6254e7;
    font-size: 22px;
    transition: .3s
}

.contact-detail-text h4 {
    font-size: 18px;
    margin-bottom: 5px
}

.contact-detail-text a,.contact-detail-text p {
    color: #696687;
    text-decoration: none;
    transition: .2s
}

.contact-detail-text a:hover,.post-title a:hover,.product-title a:hover,.recent-post-info h5 a:hover,.related-info h4 a:hover {
    color: #6254e7
}

.contact-form-wrapper {
    background: #f9f9ff;
    padding: 40px;
    border-radius: 30px
}

.contact-form-wrapper h3 {
    font-size: 28px;
    margin-bottom: 15px
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 25px
}

.contact-form input {
    border-radius: 60px
}

.contact-form input,.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #e2dcff;
    font-family: "Rubik",sans-serif;
    outline: 0;
    transition: .2s;
    background: #fff
}

.comment-form input:focus,.comment-form textarea:focus,.contact-form input:focus,.contact-form textarea:focus {
    border-color: #6254e7
}

.contact-form textarea {
    grid-column: span 2;
    border-radius: 30px;
    resize: vertical
}

.contact-form button,.newsletter-form button {
    border-radius: 60px;
    background: #6254e7;
    color: #fff;
    border: 0;
    font-weight: 600;
    cursor: pointer;
    transition: .3s
}

.contact-form button {
    grid-column: span 2;
    padding: 14px
}

.comment-form button:hover,.contact-form button:hover,.newsletter-form button:hover {
    background: #ff7426
}

.map-section {
    margin: 60px 0
}

.map-container {
    width: 100%;
    height: 400px;
    border-radius: 20px;
    overflow: hidden
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0
}

.newsletter-section {
    background: #0c0a2b;
    padding: 60px 0;
    margin-top: 60px;
    text-align: center
}

.newsletter-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 40px
}

.newsletter-content {
    flex: 1
}

.newsletter-content h3 {
    color: #fff;
    font-size: 28px;
    margin-bottom: 10px
}

.newsletter-content p {
    color: #b9b7d9
}

.newsletter-form {
    flex: 1;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    max-width: 500px;
    margin: 0 auto
}

.newsletter-form input {
    flex: 1;
    padding: 14px 20px;
    border-radius: 60px;
    border: 0;
    outline: 0;
    font-size: 15px;
    background: #fff
}

.newsletter-form button {
    padding: 14px 30px
}

@media (max-width:768px) {
    .contact-form-wrapper {
        padding: 25px
    }

    .contact-form,.contact-form button,.contact-form textarea {
        grid-template-columns: 1fr;
        grid-column: span 1
    }

    .newsletter-wrapper {
        flex-direction: column;
        text-align: center
    }

    .newsletter-form {
        width: 100%;
        flex-direction: column
    }

    .newsletter-form button {
        width: 100%
    }
}

@media (max-width:600px) {
    .newsletter-form {
        flex-direction: column
    }
}

.contact-section {
    padding: 80px 0;
    background: #f9f9ff
}

.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    align-items: center
}

.contact-form-container {
    flex: 1
}

.contact-image {
    flex: 1;
    text-align: center
}

.contact-image img {
    max-width: 100%;
    border-radius: 30px
}

@media (max-width:900px) {
    .contact-wrapper {
        flex-direction: column;
        text-align: center
    }

    .contact-image {
        order: 2;
        margin-top: 20px
    }

    .contact-form-container {
        order: 1
    }
}

.blog-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin: 60px 0
}

.blog-main {
    flex: 1;
    min-width: 0
}

.blog-sidebar {
    width: 320px;
    flex-shrink: 0
}

@media (max-width:992px) {
    .blog-sidebar {
        width: 100%
    }
}

.blog-post {
    margin-bottom: 60px;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 35px rgba(0,0,0,.03);
    transition: .3s
}

.blog-post:hover {
    transform: translateY(-3px);
    box-shadow: 0 25px 40px rgba(98,84,231,.08)
}

.post-media {
    position: relative
}

.post-media img {
    width: 100%;
    height: auto;
    display: block
}

.post-categories {
    position: absolute;
    bottom: 15px;
    left: 15px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap
}

.post-categories a {
    background: #6254e7;
    color: #fff;
    font-size: 12px;
    padding: 4px 12px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 500
}

.post-content {
    padding: 25px
}

.post-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 14px;
    color: #696687
}

.post-meta i {
    margin-right: 5px;
    color: #6254e7
}

.blockquote i,.post-title {
    font-size: 24px;
    margin-bottom: 15px
}

.post-title a {
    color: #1f1a3e;
    text-decoration: none;
    transition: .2s
}

.post-excerpt {
    color: #696687;
    margin-bottom: 20px;
    line-height: 1.6
}

.read-more {
    color: #6254e7;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: .2s
}

.read-more:hover {
    gap: 12px;
    color: #ff7426
}

.article-content {
    font-size: 17px;
    line-height: 1.7;
    color: #4a4672
}

.article-content p {
    margin-bottom: 25px
}

.article-content h2 {
    font-size: 28px;
    margin: 35px 0 20px
}

.article-content h3 {
    font-size: 22px;
    margin: 30px 0 15px
}

.article-content img {
    max-width: 100%;
    border-radius: 20px;
    margin: 25px 0
}

.article-content .dropcap {
    font-size: 60px;
    font-weight: 800;
    font-family: "Nunito",sans-serif;
    color: #6254e7;
    float: left;
    line-height: .85;
    margin-right: 12px;
    margin-bottom: 5px
}

.article-content ul {
    margin: 20px 0 20px 25px;
    list-style: none
}

.article-content ul li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 25px
}

.article-content ul li:before {
    content: "";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #6254e7;
    position: absolute;
    left: 0;
    top: 0
}

.two-columns {
    display: flex;
    gap: 30px;
    margin: 30px 0;
    flex-wrap: wrap
}

.two-columns .col {
    flex: 1;
    min-width: 200px
}

.blockquote {
    background: #f9f9ff;
    padding: 35px 40px;
    border-radius: 20px;
    margin: 35px 0;
    text-align: center;
    position: relative
}

.blockquote i {
    font-size: 40px;
    color: #6254e7;
    opacity: .5;
    display: inline-block
}

.blockquote p {
    font-size: 20px;
    font-style: italic;
    color: #1f1a3e;
    margin-bottom: 15px
}

.blockquote .author {
    font-size: 14px;
    color: #6254e7;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px
}

.post-tags,.tags-section {
    display: flex;
    flex-wrap: wrap
}

.tags-section {
    margin: 40px 0 30px;
    padding-top: 30px;
    border-top: 1px solid #e2dcff;
    justify-content: space-between;
    align-items: center;
    gap: 20px
}

.post-tags {
    gap: 10px
}

.post-tags a,.share-buttons a {
    background: #f0eefc;
    color: #4a4672;
    transition: .2s
}

.post-tags a {
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 13px;
    text-decoration: none
}

.nav-next:hover .nav-icon,.nav-prev:hover .nav-icon,.post-tags a:hover,.share-buttons a:hover {
    background: #6254e7;
    color: #fff
}

.share-buttons {
    display: flex;
    gap: 12px
}

.share-buttons a {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%
}

.prev-next-nav {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin: 50px 0;
    padding: 30px 0;
    border-top: 1px solid #e2dcff;
    border-bottom: 1px solid #e2dcff
}

.nav-next,.nav-prev {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    transition: .3s
}

.nav-prev:hover {
    transform: translateX(-5px)
}

.nav-next:hover {
    transform: translateX(5px)
}

.nav-prev {
    justify-content: flex-start
}

.nav-next {
    justify-content: flex-end;
    text-align: right
}

.nav-icon,.pagination a,.pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f0eefc
}

.nav-icon {
    width: 50px;
    height: 50px;
    color: #6254e7;
    font-size: 20px;
    transition: .3s
}

.nav-text {
    display: flex;
    flex-direction: column
}

.nav-label {
    font-size: 12px;
    color: #696687;
    text-transform: uppercase;
    letter-spacing: 1px
}

.nav-title {
    font-size: 16px;
    font-weight: 600;
    color: #1f1a3e;
    max-width: 250px;
    line-height: 1.4
}

.nav-next:hover .nav-title,.nav-prev:hover .nav-title {
    color: #6254e7
}

@media (max-width:768px) {
    .prev-next-nav {
        flex-direction: column;
        gap: 20px
    }

    .nav-next,.nav-prev {
        justify-content: center;
        text-align: center
    }

    .nav-title {
        max-width: 100%
    }
}

.related-posts {
    margin: 50px 0
}

.comments-section h3,.related-posts h3 {
    font-size: 24px;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e2dcff
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 30px
}

.related-item {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,.03);
    transition: .3s
}

.related-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(98,84,231,.08)
}

.product-image img,.related-item img {
    width: 100%;
    height: 180px;
    object-fit: cover
}

.related-info {
    padding: 18px
}

.related-info h4 {
    font-size: 16px;
    margin-bottom: 8px
}

.related-info h4 a {
    color: #1f1a3e;
    text-decoration: none;
}

.related-date {
    font-size: 12px;
    color: #696687
}

@media (max-width:600px) {
    .related-grid {
        grid-template-columns: 1fr
    }
}

.comments-section {
    margin: 50px 0
}

.comment-form {
    background: #f9f9ff;
    padding: 30px;
    border-radius: 20px
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px
}

.comment-form input,.comment-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #e2dcff;
    border-radius: 60px;
    font-family: "Rubik",sans-serif;
    background: #fff;
    outline: 0;
    transition: .2s
}

.comment-form textarea {
    border-radius: 25px;
    resize: vertical
}

.comment-form button {
    border: 0;
    padding: 12px 30px;
    border-radius: 40px;
    font-weight: 600;
    cursor: pointer;
    transition: .3s
}

@media (max-width:600px) {
    .form-row {
        grid-template-columns: 1fr
    }
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px
}

.pagination a,.pagination span {
    width: 40px;
    height: 40px;
    color: #4a4672;
    text-decoration: none;
    transition: .2s
}

.comment-form button,.pagination .current,.pagination a:hover {
    background: #6254e7;
    color: #fff
}

.sidebar-widget {
    background: #f9f9ff;
    border-radius: 20px;
    padding: 25px;
    margin-bottom: 30px
}

.sidebar-widget h4 {
    font-size: 20px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e2dcff
}

.author-widget {
    text-align: center
}

.author-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-bottom: 15px;
    object-fit: cover
}

.author-bio {
    font-size: 14px;
    color: #696687;
    margin: 15px 0
}

.author-social a {
    color: #b9b7d9;
    margin: 0 8px;
    font-size: 18px;
    transition: .2s
}

.author-social a:hover,.categories-list a:hover,.footer-grid a:hover,.social-icons i:hover {
    color: #6254e7
}

.search-form {
    display: flex;
    border: 1px solid #e2dcff;
    border-radius: 60px;
    overflow: hidden;
    background: #fff
}

.search-form input {
    flex: 1;
    padding: 12px 18px;
    border: 0;
    outline: 0;
    font-size: 14px
}

.search-form button {
    border: 0;
    padding: 0 20px;
    cursor: pointer
}

.categories-list {
    list-style: none
}

.categories-list li,.contact-widget p {
    margin-bottom: 12px
}

.categories-list a {
    color: #4a4672;
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    transition: .2s
}

.recent-post-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px
}

.recent-post-img {
    width: 70px;
    height: 70px;
    border-radius: 12px;
    object-fit: cover
}

.recent-post-info h5 {
    font-size: 15px;
    margin-bottom: 5px
}

.recent-post-info h5 a {
    color: #1f1a3e;
    text-decoration: none;
}

.recent-post-date {
    font-size: 12px;
    color: #696687
}

.tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px
}

.footer-grid a,.tag-link {
    text-decoration: none;
    transition: .2s
}

.tag-link {
    background: #fff;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 13px;
    color: #4a4672
}

.filter-btn.active,.filter-btn:hover,.search-form button,.tag-link:hover {
    background: #6254e7;
    color: #fff
}

.contact-widget p {
    display: flex;
    align-items: center;
    gap: 12px
}

.contact-widget i {
    width: 30px;
    color: #6254e7
}

.category-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px
}

.filter-btn {
    background: #f0eefc;
    border: 0;
    padding: 10px 28px;
    border-radius: 40px;
    font-size: 15px;
    font-weight: 600;
    color: #4a4672;
    cursor: pointer;
    transition: .3s;
    font-family: "Rubik",sans-serif
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
    margin-bottom: 60px
}

.product-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 35px rgba(0,0,0,.04);
    transition: all .3s;
    border: 1px solid #f0eefc
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 45px rgba(98,84,231,.12)
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 240px
}

.product-image img {
    height: 100%;
    transition: transform .4s
}

.product-card:hover .product-image img {
    transform: scale(1.05)
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ff7426;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 30px
}

.product-badge.hot {
    background: #f44
}

.product-badge.sale {
    background: #6254e7
}

.product-info {
    padding: 22px
}

.product-category {
    font-size: 12px;
    color: #6254e7;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    display: inline-block
}

.product-title {
    font-size: 20px;
    margin-bottom: 10px;
    line-height: 1.3
}

.product-desc {
    font-size: 14px;
    color: #696687;
    margin-bottom: 15px;
    line-height: 1.5
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px
}

.feature-tag {
    background: #f9f9ff;
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 20px;
    color: #6254e7
}

.product-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #e2dcff
}

.price {
    color: #6254e7
}

.price-old {
    font-size: 16px;
    color: #b9b7d9;
    text-decoration: line-through;
    margin-left: 8px;
    font-weight: 400
}

.buy-btn {
    background: #6254e7;
    color: #fff;
    border: 0;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: .3s
}

.buy-btn:hover {
    background: #ff7426;
    transform: translateY(-2px)
}

@media (max-width:992px) {
    .products-grid {
        grid-template-columns: repeat(2,1fr)
    }
}

@media (max-width:600px) {
    .products-grid {
        grid-template-columns: 1fr
    }
}

.cta-section {
    background: linear-gradient(135deg,#0c0a2b 0,#1a1640 100%);
    margin-top: 40px
}

.cta-section h2 {
    color: #fff
}

.cta-section p {
    color: #b9b7d9;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto
}

.cta-section,.pricing-section {
    padding: 80px 0;
    text-align: center
}

.cta-section h2,.pricing-section h2 {
    font-size: 36px;
    margin-bottom: 15px
}

.pricing-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px
}

.pricing-tab {
    background: #f0eefc;
    border: 0;
    padding: 10px 30px;
    border-radius: 40px;
    font-weight: 600;
    cursor: pointer;
    transition: .3s
}

.pricing-tab.active {
    background: #6254e7;
    color: #fff
}

.pricing-card li,.pricing-grid {
    display: flex;
    justify-content: center
}

.pricing-grid {
    gap: 30px;
    flex-wrap: wrap
}

.pricing-card {
    background: #fff;
    border-radius: 30px;
    padding: 40px 30px;
    width: 320px;
    box-shadow: 0 20px 35px rgba(0,0,0,.05);
    transition: .3s
}

.pricing-card.featured {
    background: linear-gradient(135deg,#6254e7,#9289f1);
    color: #fff;
    transform: scale(1.02)
}

.pricing-card.featured .price,.pricing-card.featured h3,.pricing-card.featured li i {
    color: #fff
}

.footer-grid h4,.pricing-card h3 {
    font-size: 24px;
    margin-bottom: 15px
}

.price {
    font-size: 48px;
    font-weight: 800;
    font-family: "Nunito",sans-serif;
    margin-bottom: 20px
}

.price span {
    font-size: 18px;
    font-weight: 400
}

.pricing-card ul {
    list-style: none;
    margin: 30px 0
}

.pricing-card li {
    margin-bottom: 12px;
    align-items: center;
    gap: 10px
}

.pricing-card li i {
    color: #55e1cf
}

.pricing-btn {
    background: 0 0;
    border: 2px solid #6254e7;
    padding: 12px 30px;
    border-radius: 40px;
    font-weight: 600;
    cursor: pointer;
    transition: .3s
}

.pricing-card.featured .pricing-btn {
    background: #fff;
    border-color: #fff;
    color: #6254e7
}

.pricing-btn:hover {
    background: #6254e7;
    color: #fff
}

.tenx-contact-form {
    max-width: 800px;
    margin: 0 auto;
    width: 100%
}

.form-row-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px
}

.tenx-contact-form input,.tenx-contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    border-radius: 60px;
    border: 1px solid #e2dcff;
    font-family: inherit;
    background: #fff;
    font-size: 15px
}

.tenx-contact-form textarea {
    border-radius: 30px
}

@media (max-width:768px) {
    .form-row-2col {
        grid-template-columns: 1fr;
        gap: 15px
    }

    .tenx-contact-form input,.tenx-contact-form textarea {
        padding: 12px 16px
    }
}

.tenx-footer {
    background: #0a0820;
    padding: 60px 0 30px;
    color: #b9b7d9
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 40px
}

.footer-grid h4 {
    color: #fff;
    font-size: 18px;
    letter-spacing: -.2px;
    font-weight: 800
}

.footer-grid ul {
    list-style: none;
    margin-top: 10px
}

.footer-grid li {
    margin-bottom: 8px;
    font-size: 14px
}

.footer-grid a {
    color: #b9b7d9
}

.footer-copyright {
    border-top: 1px solid #2a2648;
    margin-top: 40px;
    padding-top: 25px;
    text-align: center;
    font-size: 14px
}

.social-icons i {
    margin-right: 15px;
    cursor: pointer;
    font-size: 18px;
    transition: .2s
}

.footer-grid address {
    font-style: normal;
    font-size: 14px;
    line-height: 1.6
}

.footer-grid img,.tenx-footer .footer-grid>div:first-child img {
    height: 45px;
    width: auto;
    margin-bottom: 20px
}

@media (max-width:768px) {
    .tenx-footer .footer-grid>div:first-child img {
        height: 30px
    }
}

@media (max-width:900px) {
    .footer-grid {
        grid-template-columns: repeat(2,1fr);
        gap: 35px
    }
}

@media (max-width:550px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px
    }
}