/* ============================================
   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: 40px 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-nav ul {
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0
}

.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 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: 20px
}

.contact-section-title p {
    margin-bottom: 20px;
}

@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
}

@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
    }
}

.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 {
    margin-bottom: 15px
}

.about-hero-content h5,.story-header h5,.team-header h5 {
    color: #6254e7;
    font-size: 16px;
    letter-spacing: 1px
}

.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)
}

.timeline-card:hover {
    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-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 40px
}

.newsletter-content {
    flex: 1
}

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

.newsletter-form {
    flex: 1;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    max-width: 500px;
	border: solid 1px #6254e7;
    border-radius: 30px;
    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: 40px 0;
    background: #e8e0ff;
}

.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 {
    margin-bottom: 15px;
    font-size: 40px;
    color: #6254e7;
    opacity: .5;
    display: inline-block
}

.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 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,.next-prev-nav a.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-label {
    text-transform: uppercase;
    letter-spacing: 1px
}

.nav-title {
    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%;
    object-fit: cover
}

.related-item img {
    height: 180px
}

.related-info {
    padding: 18px
}

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

.recent-post-info h5 a,.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-date {
    font-size: 12px;
    color: #696687
}

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

.footer-grid a,.product-title 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
}

.case-study-card:hover .case-card-image img,.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-title a {
    color: #1f1a3e
}

.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
}

.case-title a:hover,.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,.pricing-card.featured .price,.pricing-card.featured h3,.pricing-card.featured li i {
    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,.footer-grid h4,.pricing-card h3,.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)
}

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

.pricing-card h3 {
    font-size: 24px
}

.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
}

.case-filter .filter-btn.active,.case-filter .filter-btn:hover,.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-logo-white {
    filter: brightness(0) invert(1);
}
.footer-logo img,
.footer-logo-white {
    height: 45px;
    width: auto;
    margin-bottom: 20px;
}

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

.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: 15px;
	display: flex;
    justify-content: space-between;
}

.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
    }
}

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

.case-studies-header h5 {
    color: #6254e7;
    font-size: 16px;
    letter-spacing: 1px;
    margin-bottom: 10px
}

.case-studies-header h2 {
    font-size: 42px;
    margin-bottom: 15px
}

.case-studies-header p {
    max-width: 700px;
    margin: 0 auto;
    color: #696687
}

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

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

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 35px;
    margin-bottom: 70px
}

.case-study-card {
    background: #fff;
    border-radius: 28px;
    overflow: hidden;
    transition: all .4s cubic-bezier(.2,.9,.4,1.1);
    box-shadow: 0 20px 35px rgba(0,0,0,.04);
    border: 1px solid #f0eefc;
    height: 100%;
    display: flex;
    flex-direction: column
}

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

.case-card-image {
    position: relative;
    overflow: hidden;
    height: 280px
}

.case-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease
}

.case-category-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #6254e7;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 30px;
    letter-spacing: .5px;
    z-index: 2;
    box-shadow: 0 5px 12px rgba(0,0,0,.1)
}

.case-content {
    padding: 28px 28px 32px;
    flex: 1;
    display: flex;
    flex-direction: column
}

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

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

.case-title {
    font-size: 24px;
    line-height: 1.3;
    margin-bottom: 15px;
    font-family: "Nunito",sans-serif;
    font-weight: 800;
    color: #1f1a3e
}

.case-title a {
    color: inherit;
    text-decoration: none;
    transition: color .2s
}

.case-excerpt {
    color: #696687;
    margin-bottom: 25px;
    line-height: 1.5;
    font-size: 15px
}

.case-stats {
    display: flex;
    gap: 25px;
    margin: 15px 0 25px;
    border-top: 1px solid #e2dcff;
    padding-top: 20px
}

.case-link,.stat-badge {
    align-items: center;
    gap: 8px;
    font-weight: 600
}

.stat-badge {
    display: flex;
    background: #f9f9ff;
    padding: 6px 14px;
    border-radius: 40px;
    font-size: 14px;
    color: #1f1a3e
}

.stat-badge i {
    color: #ff7426;
    font-size: 16px
}

.case-link {
    margin-top: auto;
    display: inline-flex;
    color: #6254e7;
    text-decoration: none;
    transition: gap .3s ease
}

.case-link:hover {
    gap: 12px;
    color: #ff7426
}

@media (max-width:992px) {
    .case-studies-grid {
        grid-template-columns: 1fr;
        gap: 30px
    }

    .case-card-image {
        height: 240px
    }

    .case-studies-header h2 {
        font-size: 34px
    }
}

.load-more-cases {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 60px
}

.load-more-btn {
    background: 0 0;
    border: 2px solid #6254e7;
    padding: 12px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    color: #6254e7;
    cursor: pointer;
    transition: all .3s
}

.load-more-btn:hover {
    background: #6254e7;
    color: #fff;
    transform: translateY(-3px)
}

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

.newsletter-section h2 {
    font-size: 36px;
    line-height: 1.2;
    margin-bottom: 15px
}

.newsletter-section p {
    font-size: 18px;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 30px
}

@media (max-width:768px) {
    .newsletter-section h2 {
        font-size: 28px;
        line-height: 1.3
    }

    .newsletter-section p {
        font-size: 16px;
        line-height: 1.5;
        padding: 0 16px
    }
}

.case-study-hero {
    background: linear-gradient(135deg,#f5f0ff 0,#e8e0ff 100%);
    padding: 80px 0 60px;
    margin-bottom: 60px
}

.case-study-hero .tenx-container {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center
}

.case-hero-content {
    flex: 1
}

.case-hero-content .case-category {
    display: inline-block;
    background: #6254e7;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding: 5px 18px;
    border-radius: 30px;
    margin-bottom: 20px;
    letter-spacing: .5px
}

.case-hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #1f1a3e
}

.case-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin: 25px 0 20px;
    font-size: 15px;
    color: #696687
}

.case-hero-meta i {
    color: #6254e7;
    margin-right: 8px
}

.stats-badge-large {
    display: flex;
    gap: 30px;
    margin-top: 25px;
    flex-wrap: wrap
}

.next-prev-nav a,.stat-card {
    display: flex;
    align-items: center
}

.stat-card {
    background: #fff;
    border-radius: 20px;
    padding: 12px 24px;
    box-shadow: 0 10px 25px rgba(0,0,0,.03);
    gap: 12px
}

.stat-card i {
    font-size: 32px;
    color: #ff7426
}

.result-item .result-number,.stat-card .stat-number {
    font-size: 28px;
    font-weight: 800;
    color: #1f1a3e;
    font-family: "Nunito",sans-serif
}

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

.case-hero-image img {
    max-width: 100%;
    border-radius: 30px;
    box-shadow: 0 25px 45px rgba(0,0,0,.1)
}

.case-study-content {
    max-width: 900px;
    margin: 0 auto 60px;
    padding: 0 24px
}

.case-study-content h2 {
    font-size: 32px;
    margin: 40px 0 20px
}

.case-study-content h3 {
    font-size: 24px;
    margin: 30px 0 15px
}

.case-study-content p {
    margin-bottom: 25px;
    line-height: 1.7;
    color: #4a4672
}

.case-study-content img {
    width: 100%;
    border-radius: 24px;
    margin: 35px 0
}

.highlight-box {
    background: #f9f9ff;
    border-left: 4px solid #6254e7;
    padding: 30px 35px;
    border-radius: 20px;
    margin: 40px 0
}

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

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

.result-item {
    text-align: center;
    background: #fff;
    padding: 25px 15px;
    border-radius: 24px;
    box-shadow: 0 15px 30px rgba(0,0,0,.03);
    border: 1px solid #f0eefc
}

.result-item .result-number {
    font-size: 42px;
    color: #6254e7
}

.result-item p {
    margin: 10px 0 0;
    font-size: 15px
}

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

.next-prev-nav a {
    gap: 15px;
    text-decoration: none;
    transition: .3s;
    color: #1f1a3e
}

.next-prev-nav a:hover {
    color: #6254e7;
    transform: translateX(-5px)
}

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

.nav-label {
    font-size: 13px;
    color: #696687
}

.nav-title {
    font-weight: 700;
    font-size: 16px
}

@media (max-width:768px) {
    .case-study-hero h1 {
        font-size: 32px
    }

    .results-grid {
        grid-template-columns: 1fr;
        gap: 20px
    }

    .case-hero-content .stats-badge-large,.case-hero-meta {
        justify-content: center
    }

    .case-hero-meta,.case-study-hero .tenx-container {
        text-align: center
    }
}

/* ============================================
   Stylish Popup - Perfect on All Devices
   ============================================ */

.lead-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    z-index: 999999;
    display: none;
    justify-content: center;
    align-items: center;
}

.lead-popup-overlay.active {
    display: flex;
}

.lead-popup-modal {
    background: #fff;
    border-radius: 28px;
    width: calc(100% - 40px);
    max-width: 880px;
    position: relative;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    animation: popupSlideIn 0.5s ease;
    overflow: hidden;
    max-height: 90vh;
    /*overflow-y: auto;*/
}

@keyframes popupSlideIn {
    0% {
        opacity: 0;
        transform: scale(0.95) translateY(30px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Custom scrollbar for popup */
.lead-popup-modal::-webkit-scrollbar {
    width: 5px;
}

.lead-popup-modal::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.lead-popup-modal::-webkit-scrollbar-thumb {
    background: #6254e7;
    border-radius: 10px;
}

.lead-popup-close {
    position: absolute;
    top: 18px;
    right: 22px;
    background: rgba(0, 0, 0, 0.08);
    border: none;
    color: #666;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.lead-popup-close:hover {
    background: #6254e7;
    color: #fff;
    transform: rotate(90deg);
}

.lead-popup-inner {
    display: flex;
    flex-wrap: wrap;
}

/* Left Side - Branding Area */
.lead-popup-left {
    flex: 1.2;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 45px 35px;
    text-align: center;
    color: #fff;
    min-width: 240px;
    position: relative;
    overflow: hidden;
}

.lead-popup-left::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(98, 84, 231, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.popup-logo {
    margin-bottom: 20px;
}

.popup-logo img {
    height: 45px;
    width: auto;
    filter: brightness(0) invert(1);
}

.popup-logo span {
    font-size: 28px;
    font-weight: 800;
    color: white;
}

.popup-logo span span {
    color: #ff7426;
}

.popup-icon {
    width: 65px;
    height: 65px;
    background: rgba(98, 84, 231, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.popup-icon i {
    font-size: 28px;
    color: #8b7af5;
}

.lead-popup-left h3 {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 12px;
    color: #fff;
    font-family: "Nunito", sans-serif;
    letter-spacing: -0.5px;
}

.lead-popup-left p {
    font-size: 13px;
    opacity: 0.8;
    line-height: 1.5;
    margin-bottom: 20px;
}

.popup-offer-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #ff7426, #ff5722);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    padding: 8px 18px;
    border-radius: 40px;
    margin-bottom: 20px;
}

.popup-offer-badge i {
    font-size: 14px;
}

.popup-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.popup-features span {
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    opacity: 0.8;
}

.popup-features i {
    font-size: 12px;
    color: #10b981;
}

/* Right Side - Form Area */
.lead-popup-right {
    flex: 1.5;
    padding: 40px 35px;
    background: #fff;
    min-width: 280px;
}

.lead-popup-right h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #0f172a;
    font-family: "Nunito", sans-serif;
}

.lead-popup-right > p {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 25px;
}

.popup-form-group {
    margin-bottom: 16px;
}

.popup-form-group input,
.popup-form-group select {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    font-size: 14px;
    font-family: "Rubik", sans-serif;
    transition: all 0.3s;
    background: #f8fafc;
    color: #1e293b;
    box-sizing: border-box;
}

.popup-form-group input:focus,
.popup-form-group select:focus {
    outline: none;
    border-color: #6254e7;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(98, 84, 231, 0.1);
}

.popup-submit-btn {
    width: 100%;
    padding: 14px 24px;
    background: linear-gradient(135deg, #6254e7, #4a3cc9);
    color: #fff;
    border: none;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 600;
    font-family: "Rubik", sans-serif;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-sizing: border-box;
}

.popup-submit-btn:hover {
    background: linear-gradient(135deg, #ff7426, #e8651a);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 116, 38, 0.35);
}

.popup-submit-btn:disabled {
    opacity: 0.7;
    transform: none;
    cursor: not-allowed;
}

.popup-note {
    font-size: 11px;
    color: #94a3b8;
    text-align: center;
    margin-top: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.popup-note i {
    font-size: 11px;
}

/* Success Message */
.lead-success-message {
    text-align: center;
    padding: 50px 30px;
}

.lead-success-message i {
    font-size: 55px;
    color: #10b981;
    margin-bottom: 18px;
}

.lead-success-message h3 {
    font-size: 24px;
    color: #10b981;
    margin-bottom: 12px;
    font-family: "Nunito", sans-serif;
}

.lead-success-message p {
    color: #64748b;
    font-size: 14px;
    margin-bottom: 25px;
}

/* Loading State */
.lead-loading {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 2px solid #fff;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 0.6s linear infinite;
    margin-right: 8px;
}

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

/* Error Alert */
.lead-alert {
    background: #fee2e2;
    color: #dc2626;
    padding: 12px 16px;
    border-radius: 14px;
    margin-bottom: 18px;
    font-size: 12px;
    border-left: 3px solid #dc2626;
    box-sizing: border-box;
}

/* ============================================
   MOBILE RESPONSIVE - PERFECT FIT
   ============================================ */
@media (max-width: 768px) {
    .lead-popup-modal {
        width: calc(100% - 30px);
        margin: 0;
        border-radius: 20px;
        max-height: 90vh;
    }
    
    .lead-popup-inner {
        flex-direction: column;
    }
    
    /* Left Side - Compact on Mobile */
    .lead-popup-left {
        padding: 25px 20px;
        min-width: auto;
    }
    
    .popup-logo img,
    .popup-logo span {
        height: 32px;
        font-size: 22px;
    }
    
    .popup-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }
    
    .popup-icon i {
        font-size: 22px;
    }
    
    .lead-popup-left h3 {
        font-size: 20px;
        margin-bottom: 8px;
    }
    
    .lead-popup-left p {
        font-size: 12px;
        margin-bottom: 15px;
    }
    
    .popup-offer-badge {
        font-size: 11px;
        padding: 6px 14px;
        margin-bottom: 15px;
    }
    
    .popup-features {
        flex-direction: row;
        justify-content: center;
        gap: 15px;
        flex-wrap: wrap;
        margin-top: 15px;
    }
    
    .popup-features span {
        font-size: 10px;
    }
    
    /* Right Side - Compact on Mobile */
    .lead-popup-right {
        padding: 25px 20px;
        min-width: auto;
    }
    
    .lead-popup-right h4 {
        font-size: 18px;
        margin-bottom: 5px;
    }
    
    .lead-popup-right > p {
        font-size: 12px;
        margin-bottom: 20px;
    }
    
    .popup-form-group {
        margin-bottom: 12px;
    }
    
    .popup-form-group input,
    .popup-form-group select {
        padding: 12px 15px;
        font-size: 13px;
    }
    
    .popup-submit-btn {
        padding: 12px 20px;
        font-size: 14px;
        margin-top: 8px;
    }
    
    .popup-note {
        font-size: 10px;
        margin-top: 15px;
    }
    
    /* Success Message Mobile */
    .lead-success-message {
        padding: 30px 20px;
    }
    
    .lead-success-message i {
        font-size: 45px;
    }
    
    .lead-success-message h3 {
        font-size: 20px;
    }
    
    .lead-success-message p {
        font-size: 13px;
    }
    
    /* Close button mobile */
    .lead-popup-close {
        top: 12px;
        right: 16px;
        width: 28px;
        height: 28px;
        font-size: 14px;
    }
}

/* Extra Small Devices (iPhone SE, etc.) */
@media (max-width: 480px) {
    .lead-popup-modal {
        width: calc(100% - 20px);
        border-radius: 18px;
    }
    
    .lead-popup-left {
        padding: 20px 15px;
    }
    
    .lead-popup-right {
        padding: 20px 15px;
    }
    
    .popup-form-group input,
    .popup-form-group select {
        padding: 10px 14px;
        font-size: 13px;
    }
    
    .popup-submit-btn {
        padding: 11px 18px;
        font-size: 13px;
    }
    
    .lead-popup-left h3 {
        font-size: 18px;
    }
    
    .popup-features {
        gap: 12px;
    }
}

/* ============================================
   Newsletter Inline Form - Horizontal Layout
   ============================================ */

.newsletter-form-inline {
    flex: 1;
    max-width: 600px;
}

.newsletter-inline-group {
    display: flex;
    gap: 12px;
    align-items: center;
    width: 100%;
}

.newsletter-inline-group input {
    flex: 1;
    padding: 14px 20px;
    border-radius: 60px;
    border: 1px solid #e2dcff;
    outline: 0;
    font-size: 15px;
    background: #fff;
    transition: all 0.3s;
}

.newsletter-inline-group input:focus {
    border-color: #6254e7;
    box-shadow: 0 0 0 3px rgba(98, 84, 231, 0.1);
}

.newsletter-inline-group button {
    padding: 14px 30px;
    border-radius: 60px;
    background: #6254e7;
    color: #fff;
    border: 0;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.newsletter-inline-group button:hover {
    background: #ff7426;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 116, 38, 0.3);
}

@media (max-width: 768px) {
    .newsletter-inline-group {
        flex-direction: column;
        gap: 10px;
    }
    
    .newsletter-inline-group input,
    .newsletter-inline-group button {
        width: 100%;
    }
}