@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --primary-color: #10B981;
    --secondary-color: #047857;
    --tertiary-color: #000000;
    --text-color: #FFFFFF;
    --text-color-d: #6B7280;
    --light-green: #34D399;
    --lighter-green: #6EE7B7;
    --lightest-green: #D1FAE5;
    --bg-green: #F0FDF4;
    --accent-gold: #FBBF24;
}

* {
    box-sizing: border-box
}

*,*:focus,*:hover,*:active,*:before,*:after {
    outline: 0
}

::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: #F3F4F6;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

html {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
}

body {
    width: 100%;
    position: relative;
    margin: 0 auto;
    padding: 0;
    overflow-x: hidden;
    overflow-y: auto;
    font-family: montserrat,sans-serif!important;
    -webkit-font-smoothing: antialiased;
    background: #ffffff;
    color: #1F2937;
}

a {
    text-decoration: none!important;
    color: #1F2937;
    border: 0;
    cursor: pointer;
    transition: 120ms ease 0s;
    user-select: none;
}

p,h1,h2,h3,h4,h5 {
    margin: 0
}

nav,header,.section-main,footer {
    min-width: 100%;
    position: relative;
    display: block
}

.navbar-in,.header-in,.section-in,.footer-in {
    width: 100%;
    padding-left: 40px;
    height: 100%;
    margin-left: auto;
    max-width: 1500px;
    position: relative;
    padding-right: 40px;
    margin-right: auto
}

.grid-1, .grid-2, .grid-3, .grid-4, .grid-5, .grid-6, .grid-7, .grid-8, .grid-9 {
    display: grid;
    grid-gap: 40px;
}

.grid-1 {
    grid-template-columns: repeat(1, 1fr);
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

.grid-5 {
    grid-template-columns: repeat(5, 1fr);
}

.grid-6 {
    grid-template-columns: repeat(6, 1fr);
}

.grid-7 {
    grid-template-columns: repeat(7, 1fr);
}

.grid-8 {
    grid-template-columns: repeat(8, 1fr);
}

p {
    letter-spacing: 0.5px;
    font-size: 16px;
    line-height: 32px;
    font-weight: 400;
}

.flex-row {
    display: flex;
    align-items: center;
    grid-gap: 30px;
}

.section-main {
    padding: 120px 0;
}

/* NAVBAR */
.navbar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--lightest-green);
    height: 100px;
}

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

.nav-left {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo-text {
    color: #000;
}

.logo-accent {
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: #374151;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.social-icons a {
    color: var(--text-color-d);
    font-size: 1.1rem;
    transition: all 0.3s;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.social-icons a:hover {
    color: var(--primary-color);
    background: var(--bg-green);
}

.btn-signup {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: #fff;
    padding: 0.7rem 1.8rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.btn-signup:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
}

/* HEADER */
header {
    padding-top: 100px;
    background: linear-gradient(135deg, #D1FAE5 0%, #ffffff 100%);
}

.header-container {
    max-width: 800px;
    flex-direction: column;
    display: flex;
    grid-gap: 20px;
}

.subtitle {
    display: inline-block;
    background: var(--lightest-green);
    border: 1px solid var(--lighter-green);
    color: var(--secondary-color);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    width: fit-content;
}

header h1 {
    font-size: 52px;
    font-weight: 900;
    color: #000;
    text-transform: uppercase;
}

header h1 span {
    color: var(--primary-color);
}

header > p {
    max-width: 80%;
    color: #6B7280;
}

.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    width: fit-content;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: #374151;
}

.feature-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.btn-primary {
    background: var(--primary-color);
    color: #fff;
    border: 2px solid var(--primary-color);
    padding: 15px 35px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
    cursor: pointer;
    text-align: center;
    white-space: nowrap;
    max-height: 53px;
}

.btn-primary:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
    color: #fff;
}

.btn-secondary {
    background: transparent;
    color: #000;
    padding: 15px 35px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s;
    border: 2px solid #E5E7EB;
    text-align: center;
    cursor: pointer;
}

.btn-secondary:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: var(--bg-green);
}

.trusted-by {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #6B7280;
    font-size: 14px;
    max-width: fit-content;
}

.trusted-by i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.trusted-by strong {
    color: var(--primary-color);
}

.header-in {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 60px;
    padding-bottom: 60px;
    grid-gap: 100px;
    margin-top: 35px;
}

header.half-cut {
    padding-bottom: 80px;
}

header.half-cut + .section-main .section-in > div:first-child {
    margin-top: -80px;
}

header.half-cut + .section-main {
    padding-top: 0;
}

header.full {
    height: 100vh;
}

/* OWL */
.owl-carousel {
    display: none;
    width: 100%;
    -webkit-tap-highlight-color: transparent;
    position: relative;
    z-index: 1;
}

.owl-carousel .owl-stage {
    position: relative;
    -ms-touch-action: pan-Y;
    touch-action: manipulation;
    -moz-backface-visibility: hidden;
    margin-top: 98px;
}

.owl-carousel .owl-stage:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}

.owl-carousel .owl-stage-outer {
    position: relative;
    -webkit-transform: translate3d(0px, 0px, 0px);
}

.owl-carousel .owl-wrapper, .owl-carousel .owl-item {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item {
    position: relative;
    min-height: 1px;
    float: left;
    -webkit-backface-visibility: hidden;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
}

.owl-carousel .owl-item img {
    display: block;
    width: 100%;
}

.owl-carousel .owl-nav.disabled, .owl-carousel .owl-dots.disabled {
    display: none;
}

.owl-carousel .owl-nav .owl-prev, .owl-carousel .owl-nav .owl-next, .owl-carousel .owl-dot {
    cursor: pointer;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.owl-carousel.owl-loaded {
    display: block;
}

.owl-carousel.owl-loading {
    opacity: 0;
    display: block;
}

.owl-carousel.owl-hidden {
    opacity: 0;
}

.owl-carousel.owl-refresh .owl-item {
    visibility: hidden;
}

.owl-carousel.owl-drag .owl-item {
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.owl-carousel.owl-grab {
    cursor: move;
    cursor: grab;
}

.owl-carousel.owl-rtl {
    direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
    float: right;
}

.owl-dots {
    position: absolute;
    z-index: 1;
    display: flex;
    grid-gap: 10px;
    margin: auto;
    justify-content: center;
    left: 0;
    right: 0;
    bottom: -30px;
}

.owl-dot {
    width: 8px;
    height: 8px;
    border-radius: 10px;
    background: #E5E7EB;
    border: 0;
    padding: 0;
    transition: 0.3s ease 0s;
}

.owl-dot.active {
    background: var(--secondary-color);
    transform: scale(1.2);
}

/* FEATURE GRID */
.features-grid {
    margin-top: 60px;
}

.feature-card {
    background: #ffffff;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    padding: 30px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    min-height: 220px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
}

.feature-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 20px 25px -5px rgba(16, 185, 129, 0.1), 0 10px 10px -5px rgba(16, 185, 129, 0.04);
    transform: translateY(-5px);
}

.feature-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.icon-box {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 14px 0 rgba(16, 185, 129, 0.25);
}

.icon-box i {
    font-size: 1.5rem;
    color: #ffffff;
}

.feature-card-header h2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #000;
    margin: 0;
}

.feature-card p {
    font-size: 0.95rem;
    color: #6B7280;
    line-height: 1.6;
    margin: 0;
}

/* BLOCK & HEADER CARD */
.block {
    background: #ffffff;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    padding: 0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    padding: 30px;
}

.header-card {
    max-width: 450px;
    width: 450px;
    padding: 0;
}

.header-card-top {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 30px;
    background: linear-gradient(135deg, var(--lightest-green) 0%, var(--bg-green) 100%);
    border-bottom: 1px solid var(--lighter-green);
    border-radius: 12px 12px 0 0;
}

.header-card-top > i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #ffffff;
    flex-shrink: 0;
    box-shadow: 0 4px 14px 0 rgba(16, 185, 129, 0.25);
}

.hct-l {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.hct-l span {
    font-size: 1.2rem;
    font-weight: 700;
    color: #000;
}

.hct-l p {
    font-size: 0.9rem;
    color: var(--text-color-d);
    margin: 0;
    line-height: 1.4;
}

.header-card form {
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.icon-input {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.icon-input i {
    position: absolute;
    left: 15px;
    color: var(--text-color-d);
    font-size: 1rem;
}

.input-area, .form-control {
    width: 100%;
    padding: 14px 15px 14px 15px;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: montserrat, sans-serif;
    transition: all 0.3s;
    background: #F9FAFB;
}

.input-area:focus, .form-control:focus {
    border-color: var(--primary-color);
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.input-area::placeholder, .form-control::placeholder {
    color: #9CA3AF;
}

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

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

.form-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--primary-color);
}

.form-checkbox label {
    font-size: 0.9rem;
    color: #374151;
    cursor: pointer;
    user-select: none;
}

.reset-password {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 600;
    white-space: nowrap;
}

.reset-password:hover {
    color: var(--secondary-color);
}

.header-card .btn-primary {
    width: 100%;
    justify-content: center;
    margin-top: 10px;
}

.header-card .btn-secondary {
    width: 100%;
    justify-content: center;
}

.header-card-bottom {
    padding: 20px 30px;
    background: #F9FAFB;
    border-top: 1px solid #E5E7EB;
    text-align: center;
    border-radius: 0 0 12px 12px;
}

.header-card-bottom p {
    font-size: 0.95rem;
    color: #6B7280;
    margin: 0;
}

.header-card-bottom a {
    color: var(--primary-color);
    font-weight: 600;
}

.header-card-bottom a:hover {
    color: var(--secondary-color);
}

/* SECTION HEADER */
.section-header {
    text-align: left;
    max-width: 100%;
    margin: 0 0 60px;
    flex-direction: column;
    max-width: 850px;
    display: flex;
    grid-gap: 10px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #000;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.section-header h2 .highlight {
    color: var(--primary-color);
}

.section-header p {
    color: var(--text-color-d);
    max-width: 700px;
}

/* PRODUCT CARDS */
.product-grid {
    margin-top: 40px;
}

.product-card {
    background: #ffffff;
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    padding: 35px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    animation: float 6s ease-in-out infinite;
}

.product-card:nth-child(2) {
    animation-delay: 1s;
}

.product-card:nth-child(3) {
    animation-delay: 2s;
}

.product-card:nth-child(4) {
    animation-delay: 3s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }
}

.product-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 20px 25px -5px rgba(16, 185, 129, 0.15);
    animation: none;
    transform: translateY(-8px) scale(1.02);
}

.product-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #10B981 0%, #10B981 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 20px;
    box-shadow: 0 8px 20px 0 rgba(225, 48, 108, 0.3);
}

.product-icon.tiktok {
    background: linear-gradient(135deg, #10B981 0%, #10B981 100%);
    box-shadow: 0 8px 20px 0 rgba(238, 29, 82, 0.3);
}

.product-icon.youtube {
    background: linear-gradient(135deg, #10B981 0%, #10B981 100%);
    box-shadow: 0 8px 20px 0 rgba(255, 0, 0, 0.3);
}

.product-icon.facebook {
    background: linear-gradient(135deg, #1877F2 0%, #0C63D4 100%);
    box-shadow: 0 8px 20px 0 rgba(24, 119, 242, 0.3);
}

.product-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 10px;
}

.product-card > p {
    font-size: 0.95rem;
    color: var(--text-color-d);
    margin-bottom: 20px;
    line-height: 1.6;
}

.product-price {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.price-label {
    font-size: 0.85rem;
    color: var(--text-color-d);
    margin-bottom: 5px;
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

.btn-product {
    width: 100%;
    background: var(--primary-color);
    color: #fff;
    padding: 12px 25px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s;
}

.btn-product:hover {
    background: var(--secondary-color);
    color: #fff;
    transform: translateX(5px);
}

/* PAYMENT GATEWAY SLIDER */
.payment-gateway-slider {
    margin-top: 80px;
}

.payment-slider-wrapper {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
    width: 100%;
    display: flex;
}

.payment-slider {
    display: flex;
    gap: 30px;
}

.payment-icon {
    flex-shrink: 0;
    width: 120px;
    height: 80px;
    background: #10B981;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.payment-icon:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 20px rgba(16, 185, 129, 0.15);
    transform: translateY(-5px) scale(1.05);
}

.payment-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(20%);
    transition: filter 0.3s;
}

.payment-icon:hover img {
    filter: grayscale(0%);
}

.payment-subtitle {
    text-align: center;
    margin-top: 30px;
    color: var(--text-color-d);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.payment-subtitle i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

/* HOW IT WORKS SECTION */
.how-it-works-section {
    background: linear-gradient(135deg, #F0FDF4 0%, #D1FAE5 50%, #ffffff 100%);
}

.steps-grid {
    margin-top: 40px;
}

.step-card {
    background: #ffffff;
    border: 1px solid var(--lighter-green);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(16, 185, 129, 0.15);
}

.step-number {
    position: absolute;
    top: -50px;
    right: 40px;
    font-size: 92px;
    font-weight: 900;
    color: #6ee7b7;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #ffffff;
    margin: 0 auto 25px;
    box-shadow: 0 8px 20px 0 rgba(16, 185, 129, 0.3);
}

.step-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.step-card p {
    font-size: 0.95rem;
    color: var(--text-color-d);
    line-height: 1.7;
}

/* DASHBOARD SHOWCASE SECTION */
.dashboard-showcase-section {
    background: linear-gradient(135deg, #F0FDF4 0%, #ffffff 100%);
}

.dashboard-showcase {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.dashboard-controls {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.dashboard-tab {
    background: #ffffff;
    border: 2px solid #E5E7EB;
    border-radius: 12px;
    padding: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.dashboard-tab:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.1);
}

.dashboard-tab.active {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, var(--lightest-green) 0%, var(--bg-green) 100%);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.15);
}

.tab-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #ffffff;
    flex-shrink: 0;
    box-shadow: 0 4px 14px 0 rgba(16, 185, 129, 0.25);
}

.tab-content-text h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.tab-content-text p {
    font-size: 0.95rem;
    color: var(--text-color-d);
    line-height: 1.6;
    margin: 0;
}

.dashboard-preview {
    position: relative;
    height: 350px;
    border: 1px solid #c5c5c5;
    background: linear-gradient(135deg, var(--lightest-green) 0%, var(--bg-green) 100%);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    animation: floatDashboard 6s ease-in-out infinite;
}

@keyframes floatDashboard {
    0%, 100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }
}

.dashboard-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.dashboard-image.active {
    opacity: 1;
}

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

/* STATS SECTION */
.stats-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
    padding: 60px 0;
}

.stats-section::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    top: -250px;
    right: -250px;
}

.stats-section::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    bottom: -200px;
    left: -200px;
}

.stats-grid {
    position: relative;
    z-index: 1;
}

.stat-card {
    text-align: center;
    padding: 20px;
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #ffffff;
    margin: 0 auto 20px;
    backdrop-filter: blur(10px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 10px;
}

.stat-label {
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
}

/* REVIEWS SECTION */
.reviews-section {
    background: #F9FAFB;
}

.review-card {
    background: #ffffff;
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    padding: 35px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.review-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 20px 25px -5px rgba(16, 185, 129, 0.1);
    transform: translateY(-5px);
}

.review-stars {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}

.review-stars i {
    color: #FBBF24;
    font-size: 1.2rem;
}

.review-text {
    font-size: 1.05rem;
    color: #374151;
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.3rem;
}

.author-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 3px;
}

.author-info span {
    font-size: 0.9rem;
    color: var(--text-color-d);
}

/* TEXT + IMAGE SECTIONS */
.text-image-section:nth-child(even) .text-image-grid {
    direction: rtl;
}

.text-image-section:nth-child(even) .text-image-grid > * {
    direction: ltr;
}

.text-image-grid {
    align-items: center;
    gap: 60px;
}

.text-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.text-content .btn-primary {
    width: fit-content;
}

.text-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #000;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.text-content h2 .highlight {
    color: var(--primary-color);
}

.text-content > p {
    font-size: 1.05rem;
    color: var(--text-color-d);
    line-height: 1.8;
}

.feature-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: #374151;
}

.feature-list i {
    color: var(--primary-color);
    font-size: 1.3rem;
}

.image-content {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--lightest-green) 0%, var(--bg-green) 100%);
    border-radius: 16px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    position: relative;
    animation: floatImage 8s ease-in-out infinite;
    overflow: hidden;
}

@keyframes floatImage {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(1deg);
    }
}

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

.image-content.static {
    /* animation: none; */
    background: none;
    border: none;
    box-shadow: none;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: unset!important;
}

.image-content.static img {
    width: 100%;
    position: absolute;
    height: unset;
    max-height: calc(100% + 160px);
    object-fit: contain;
}

/* FAQ SECTION */
.faq-section {
    background: #F9FAFB;
}

.faq-container {
    gap: 40px;
}

.faq-container .grid-1 {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: #ffffff;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.1);
}

.faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
    background: linear-gradient(135deg, transparent 0%, var(--bg-green) 100%);
}

.faq-question h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: #000;
    margin: 0;
}

.faq-question i {
    color: var(--primary-color);
    font-size: 1rem;
    transition: transform 0.3s;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 30px 25px;
    color: var(--text-color-d);
    line-height: 1.7;
}

/* CTA SECTION */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    top: -300px;
    right: -300px;
}

.cta-section::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    bottom: -250px;
    left: -250px;
}

.cta-container {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-container h2 {
    font-size: 2.8rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.cta-container h2 .highlight {
    color: #FBBF24;
}

.cta-container p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 35px;
}

.cta-section .btn-primary {
    background: #ffffff;
    color: var(--primary-color);
}

.cta-section .btn-primary:hover {
    background: #FBBF24;
    color: #ffffff;
}

.cta-section .btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.cta-section .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: #ffffff;
}

/* FOOTER */
footer {
    background: #1F2937;
    color: #ffffff;
    padding: 80px 0 0;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-brand h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.footer-brand h3 span {
    color: var(--primary-color);
}

.footer-brand p {
    color: #9CA3AF;
    line-height: 1.8;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.footer-social a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-links h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links ul li a {
    color: #9CA3AF;
    font-size: 0.95rem;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links ul li a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-links ul li a i {
    font-size: 0.8rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: #9CA3AF;
    font-size: 0.9rem;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 25px;
}

.footer-bottom-links a {
    color: #9CA3AF;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-bottom-links a:hover {
    color: var(--primary-color);
}

.header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100%;
    background: linear-gradient(90deg, rgba(16, 185, 129, 0.02) 1px, transparent 1px), linear-gradient(rgba(16, 185, 129, 0.02) 1px, transparent 1px), linear-gradient(135deg, #D1FAE5 0%, #ffffff 100%);
    background-size: 60px 60px, 60px 60px, 100% 100%;
    overflow: hidden;
    z-index: -1;
}

.header-bg .blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.blob-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.25) 0%, transparent 70%);
    top: -150px;
    right: -50px;
    animation: blobFloat1 20s ease-in-out infinite;
}

.blob-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(110, 231, 183, 0.2) 0%, transparent 70%);
    bottom: -100px;
    left: -50px;
    animation: blobFloat2 18s ease-in-out infinite reverse;
}

.blob-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(52, 211, 153, 0.18) 0%, transparent 70%);
    top: 40%;
    right: 20%;
    animation: blobFloat3 25s ease-in-out infinite;
}

@keyframes blobFloat1 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -40px) scale(1.1);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.95);
    }
}

@keyframes blobFloat2 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(-40px, 30px) scale(1.15);
    }

    66% {
        transform: translate(30px, -25px) scale(0.9);
    }
}

@keyframes blobFloat3 {
    0%, 100% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }

    50% {
        transform: translate(20px, 30px) scale(1.1) rotate(180deg);
    }
}

/* dsahbord goes from here */
body.dashboard {
    background: #F9FAFB;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.wgl-panel {
    display: flex;
    height: 100vh;
    width: 100%;
}

.wgl-sidebar {
    width: 270px;
    background: #ffffff;
    border-right: 1px solid #E5E7EB;
    display: flex;
    flex-direction: column;
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    z-index: 1000;
}

.wgl-sidebar-in {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.sidebar-header {
    padding: 28px 20px;
    border-bottom: 1px solid #E5E7EB;
    display: flex;
    align-items: center;
    min-height: 100px;
}

.sidebar-header .site-logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-decoration: none;
}

.sidebar-header .site-logo img {
    max-height: 36px;
    width: auto;
}

.sidebar-header .logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: #000;
}

.sidebar-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px 0;
}

.sidebar-body::-webkit-scrollbar {
    width: 4px;
}

.sidebar-body::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

.sidebar-links {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 0 14px;
}

.sidebar-link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 13px 16px;
    border-radius: 10px;
    color: #6B7280;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.25s ease;
    text-decoration: none;
    cursor: pointer;
}

.sidebar-link i {
    font-size: 1.1rem;
    width: 24px;
    text-align: center;
    flex-shrink: 0;
}

.sidebar-link:hover {
    background: var(--bg-green);
    color: var(--primary-color);
    transform: translateX(3px);
}

.sidebar-link.active {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.sidebar-link.active i {
    color: #ffffff;
}

.sidebar-footer {
    padding: 16px 14px 20px;
    border-top: 1px solid #E5E7EB;
    margin-top: auto;
}

.sidebar-profile {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: var(--bg-green);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sidebar-profile:hover {
    background: var(--lightest-green);
    transform: translateY(-2px);
}

.sidebar-profile-img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid var(--lighter-green);
}

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

.sidebar-pf-r {
    flex: 1;
    min-width: 0;
}

.sidebar-pf-r span {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: #000;
    text-transform: capitalize;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin-bottom: 3px;
}

.sidebar-pf-r p {
    display: block;
    font-size: 0.82rem;
    color: #6B7280;
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    line-height: 1.2;
}

.wgl-site-body {
    flex: 1;
    margin-left: 270px;
    display: flex;
    flex-direction: column;
    height: 100vh;
    overflow: hidden;
}

.secondary-navbar {
    background: #ffffff;
    border-bottom: 1px solid #E5E7EB;
    padding: 20px 32px;
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    min-height: 100px;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    width: 100%;
}

.navbar-l {
    flex: 1;
    min-width: 0;
}

.secondary-bar-intro h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000;
    margin: 0 0 5px;
    line-height: 1.2;
}

.secondary-bar-intro p {
    font-size: 0.9rem;
    color: #6B7280;
    margin: 0;
    line-height: 1.4;
}

.navbar-r {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

.user-balance {
    padding: 11px 20px;
    background: transparent;
    border-radius: 10px;
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.05rem;
    border: 2px solid var(--primary-color);
    white-space: nowrap;
    min-width: 80px;
    text-align: center;
}

.user-balance.dropdown {
    position: relative;
}

.user-balance.dropdown .dropdown-toggle {
    background: transparent;
    border: none;
    color: var(--primary-color);
    font-weight: 700;
    padding: 0;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.user-balance .dropdown-toggle:hover {
    color: var(--secondary-color);
}

.user-balance .caret {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 4px;
    vertical-align: middle;
    border-top: 5px solid currentColor;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    z-index: 1000;
    display: none;
    min-width: 180px;
    padding: 8px 0;
    margin: 0;
    font-size: 0.9rem;
    text-align: left;
    list-style: none;
    background-color: #fff;
    border: 1px solid #E5E7EB;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 18px;
    clear: both;
    font-weight: 500;
    line-height: 1.5;
    color: #333;
    white-space: nowrap;
    text-decoration: none;
    transition: all 0.2s;
}

.dropdown-menu li a:hover {
    background-color: var(--bg-green);
    color: var(--primary-color);
}

.dropdown.open .dropdown-menu {
    display: block;
}

.navbar-icon-small {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: #F9FAFB;
    color: #6B7280;
    transition: all 0.25s ease;
    font-size: 1.05rem;
    border: 1px solid #E5E7EB;
    text-decoration: none;
    cursor: pointer;
}

.navbar-icon-small:hover {
    background: var(--bg-green);
    color: var(--primary-color);
    border-color: var(--lighter-green);
    transform: translateY(-2px);
}

.navbar-r .btn-primary {
    padding: 11px 28px;
    font-size: 0.95rem;
    white-space: nowrap;
}

.navbar-mobile-btn {
    display: none;
    width: 42px;
    height: 42px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
    border-radius: 8px;
    transition: background 0.2s;
    background: #F9FAFB;
    border: 1px solid #E5E7EB;
}

.navbar-mobile-btn:hover {
    background: var(--bg-green);
}

.navbar-mobile-btn i {
    width: 22px;
    height: 2px;
    background: #000;
    border-radius: 2px;
    transition: all 0.3s;
}

.navbar-mobile-btn i::before, .navbar-mobile-btn i::after {
    content: '';
    display: block;
    width: 22px;
    height: 2px;
    background: #000;
    border-radius: 2px;
    margin: 5px 0;
    transition: all 0.3s;
}

.wgl-site-body-main {
    flex: 1;
    overflow-y: auto;
    padding: 32px;
    background: #F9FAFB;
}

.wgl-site-body-main::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

.wgl-site-body-main::-webkit-scrollbar-track {
    background: #F3F4F6;
}

.wgl-site-body-main::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

.desktop-only {
    display: block;
}

.mobile-only {
    display: none;
}

@media (max-width: 1200px) {
    .wgl-sidebar {
        width: 250px;
    }

    .wgl-site-body {
        margin-left: 250px;
    }

    .secondary-navbar {
        padding: 18px 24px;
    }
}

@media (max-width: 992px) {
    .wgl-sidebar {
        width: 230px;
    }

    .wgl-site-body {
        margin-left: 230px;
    }

    .navbar-container {
        gap: 20px;
    }

    .wgl-site-body-main {
        padding: 24px;
    }
}

@media (max-width: 768px) {
    .wgl-sidebar {
        width: 270px;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        box-shadow: 2px 0 16px rgba(0, 0, 0, 0.1);
    }

    .wgl-sidebar.mobile-open {
        transform: translateX(0);
    }

    .wgl-site-body {
        margin-left: 0;
    }

    .secondary-navbar {
        padding: 14px 18px;
    }

    .navbar-container {
        gap: 12px;
    }

    .secondary-bar-intro h2 {
        font-size: 1.25rem;
    }

    .secondary-bar-intro p {
        font-size: 0.85rem;
    }

    .navbar-mobile-btn {
        display: flex;
    }

    .wgl-site-body-main {
        padding: 18px 14px 90px;
    }

    .mobile-nav {
        display: block;
    }

    .navbar-r {
        gap: 8px;
    }

    .navbar-icon-small {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }

    .user-balance {
        padding: 9px 14px;
        font-size: 0.95rem;
        min-width: 70px;
    }

    .navbar-r .btn-primary {
        padding: 9px 20px;
        font-size: 0.88rem;
    }

    .desktop-only {
        /* display: none !important; */
    }

    .mobile-only {
        display: block !important;
    }
}

@media (max-width: 480px) {
    .secondary-bar-intro h2 {
        font-size: 1.1rem;
    }

    .secondary-bar-intro p {
        display: none;
    }

    .navbar-icon-small {
        width: 36px;
        height: 36px;
        min-width: 36px;
        font-size: 0.95rem;
    }

    .user-balance {
        padding: 8px 12px;
        font-size: 0.9rem;
    }

    .wgl-site-body-main {
        padding: 14px 10px 90px;
    }
}

.dashboard .section-main {
    padding: 0;
}

.xn-block-nav {
    display: flex;
    align-items: center;
    grid-gap: 25px;
    margin-bottom: 40px;
}

.xn-signup {
    display: grid;
    grid-template-columns: 700px auto;
    height: 100vh;
    width: 100vw;
}

.xn-signup-l, .xn-signup-r {
    position: relative;
}

.xn-signup-l {
    padding: 10px 60px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.xn-signup-body {
    width: 100%;
    margin: auto;
}

.xn-signup-header {
    margin-bottom: 20px;
}

.xn-signup-header h1 {
    font-size: 32px;
    font-weight: 900;
    text-transform: uppercase;
}

.xn-signup-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    grid-gap: 20px;
}

.xn-signup-main form {
    margin: 0;
    display: flex;
    flex-direction: column;
    grid-gap: 20px;
    width: 100%;
}

.xn-signup-l .site-logo {
    margin-right: auto;
}

.table {
    border-collapse: separate;
    border-spacing: 0 1rem;
    width: 100%;
}

.table tr th {
    border: 0;
    text-align: left;
    padding: 0 20px;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
}

.table tr td {
    background: #f0fdf4;
    padding: 20px;
    font-size: 14px;
}

.table tr td {
    border-top: 1px solid #d7d7d7;
    border-bottom: 1px solid #d7d7d7;
}

.table tr.table-category td {
    background: var(--primary-color);
    color: #ffffff;
    border: none;
    font-weight: 600;
    border-radius: 6px!important;
}

.table tr td:first-child {
    border-radius: 6px 0 0 6px;
    border-left: 1px solid #d7d7d7;
}

.table tr td:last-child {
    border-radius: 0 6px 6px 0;
    border-right: 1px solid #d7d7d7;
}

.margin-bottom-120 {
    margin-bottom: 120px;
}

.xn-service-description {
    display: none;
}

.table tr.table-category td .fab {
    margin-right: 10px;
}

.table-srate span, .xn-service-id-slot {
    background: #00ff9717;
    border: 1px solid #b7b7b740;
    padding: 5px 10px;
    border-radius: 4px;
    font-weight: 500;
    font-size: 14px;
    width: fit-content;
}

.xn-service-name {
    font-weight: 500;
    font-size: 13px;
}

.table-sid span {
    font-weight: 600;
    color: #939393;
}

.modal-xn {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    opacity: 0;
    visibility: hidden;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(3px);
    background: #00000038;
    transition: 120ms ease 0s;
    z-index: 1000;
}

.modal-in {
    padding: 40px;
    background: #121214;
    width: 100%;
    max-width: 600px;
    border-radius: 5px;
    border: 1px #383838;
    position: relative;
    display: flex;
    flex-direction: column;
    grid-gap: 10px;
}

.modal-xn.active {
    opacity: 1;
    visibility: visible;
}

.modal-close {
    top: -25px;
    position: absolute;
    right: 20px;
    height: 50px;
    width: 50px;
    background: var(--primary-color);
    border: 1px solid #ffffff61;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    border-radius: 4px;
    color: #ffffff;
    cursor: pointer;
}

.modal-xn .modal-footer {
    border: 0;
    padding: 0;
    display: flex;
    align-items: center;
    grid-gap: 20px;
}

.modal-xn .modal-footer:before, .modal-xn .modal-footer:after {
    display: none;
}

.modal-footer-l {
    height: 52px;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0070ff0a;
    border: 2px solid #0070ff45;
    border-radius: 6px;
    white-space: nowrap;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 17px;
}

.modal-footer-r {
    width: 100%;
}

.control-label {
    text-transform: uppercase;
    font-weight: 600;
    font-size: 13px;
    margin-bottom: 5px;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .dashboard-showcase {
        grid-template-columns: 1fr;
    }

    .faq-container {
        grid-template-columns: 1fr;
    }

    .footer-main {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .social-icons {
        gap: 0.5rem;
    }

    header h1 {
        font-size: 24px;
    }

    .features {
        grid-template-columns: 1fr;
    }

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

    .btn-primary, .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .header-card {
        max-width: 100%;
    }

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

    .section-header h2 {
        font-size: 2rem;
    }

    .grid-2, .grid-3, .grid-4 {
        grid-template-columns: 1fr;
    }

    .text-image-grid {
        gap: 40px;
    }

    .image-content {
        height: 300px;
    }

    .product-card h3 {
        font-size: 1.2rem;
    }

    .step-card {
        padding: 30px 20px;
    }

    .cta-container h2 {
        font-size: 2rem;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .payment-icon {
        width: 100px;
        height: 70px;
    }

    .feature-list li {
        flex: 0 0 100%;
    }

    .header-in {
        flex-direction: column;
    }

    header.full {
        height: auto!important;
    }

    .owl-carousel .owl-stage-outer {
        overflow: hidden;
    }
}

.burger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.burger-menu span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.xn-mobile-sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 320px;
    height: 100vh;
    background: rgba(209, 250, 229, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1002;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
}

.xn-mobile-sidebar.active {
    right: 0;
}

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

.xn-sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

.xn-sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: rgba(240, 253, 244, 0.8);
}

.xn-sidebar-header .logo {
    display: flex;
    align-items: center;
}

.xn-close-sidebar {
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 28px;
    cursor: pointer;
    padding: 5px;
    transition: all 0.2s ease;
    line-height: 1;
}

.xn-close-sidebar:hover {
    transform: rotate(90deg);
    color: var(--secondary-color);
}

.xn-sidebar-links {
    list-style: none;
    padding: 30px 0;
    margin: 0;
    flex: 1;
    overflow-y: auto;
}

.xn-sidebar-links li {
    margin: 0;
}

.xn-sidebar-links a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 30px;
    color: var(--secondary-color);
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    font-weight: 500;
    font-size: 16px;
}

.xn-sidebar-links a:hover, .xn-sidebar-links li.active a {
    color: var(--primary-color);
    background: rgba(240, 253, 244, 0.6);
    border-left-color: var(--primary-color);
}

.xn-sidebar-footer {
    padding: 25px 30px;
    background: rgba(240, 253, 244, 0.8);
}

.xn-social-icons {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 20px;
}

.xn-social-icons a {
    color: var(--secondary-color);
    font-size: 22px;
    transition: all 0.3s ease;
}

.xn-social-icons a:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.xn-sidebar-footer .btn-signup {
    width: 100%;
    text-align: center;
    display: block;
    padding: 12px;
}

body.no-scroll {
    overflow: hidden;
}

#order-form {
    display: flex;
    flex-direction: column;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}

.stats-bar {
    background: rgb(255 255 255);
    backdrop-filter: blur(10px);
    border: 1px solid rgb(229 231 235);
    border-radius: 10px;
    padding: 30px 20px;
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.stat-item {
    text-align: center;
    flex: 1;
    padding: 0 15px;
    position: relative;
}

.stats-bar .stat-label {
    color: black;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
}

.stat-value {
    font-size: 22px;
    color: var(--light-green);
    margin-bottom: 8px;
    text-shadow: 0 0 15px rgba(0, 123, 255, 0.3);
    transition: all 0.3s ease;
    font-weight: normal;
    font-family: Dela Gothic One, sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    grid-gap: 15px;
}

.stat-value i, .block-header i, .desc-stat-holder .stat-card h3 i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #ffffff;
    flex-shrink: 0;
    box-shadow: 0 4px 14px 0 rgba(16, 185, 129, 0.25);
}

.stat-label {
    font-size: 12px;
    color: #e5e5e5;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.dashboard .navbar-in, .dashboard .header-in, .dashboard .section-in, .dashboard .footer-in {
    width: 100%;
    max-width: 100%;
    padding: 0;
}

.block-header {
    display: flex;
    align-items: center;
    grid-gap: 20px;
    margin-bottom: 20px;
}

.stat-value i {
    height: 40px;
    width: 40px;
    font-size: 20px;
}

.desc-stat-holder {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
    margin-top: 20px;
}

.stat-card.small.block p {
    font-size: 15px;
    line-height: 22px;
    margin-top: 10px;
}

.min-height {
    height: fit-content;
}

.padding-top-0 {
    padding-top: 0!important;
}

.desc-stat-holder .stat-card {
    text-align: left;
}

.desc-stat-holder .stat-card h3 {
    display: flex;
    align-items: center;
    grid-gap: 12px;
    font-weight: 800;
}

.desc-stat-holder .stat-card h3 i {
    width: 35px;
    height: 35px;
    border-radius: 5px;
    font-size: 16px;
}

.form-footer {
    display: flex;
    align-items: center;
    grid-gap: 10px;
}

.form-footer-small input {
    width: fit-content;
    max-width: 160px;
    border-radius: 10px;
}

.form-footer-big {
    height: 52px;
    width: 100%;
}

.xn-block-nav.column {
    display: flex;
    flex-direction: column;
}

.search form {
    width: 100%;
    display: flex;
    align-items: center;
}

.search {
    grid-gap: 20px;
    display: flex;
    align-items: center;
    width: 100%;
}

.search .btn-primary {
    padding: 15px 50px;
}

.flex-btns {
    display: flex;
    align-items: center;
    grid-gap: 15px;
    width: 100%;
}

.flex-btns a,.flex-btns button {
    width: 100%;
    flex-grow: 1;
}

.status span {
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    display: block;
    text-align: center;
    width: 100%;
}

.status {
    &[status="In progress"] span {
        background-color: #ffc107;
        color: #000000;
    }

    &[status="Completed"] span {
        background-color: #28a745;
        color: #fff;
    }

    &[status="Pending"] span {
        background-color: #6c757d;
        color: #fff;
    }

    &[status="Canceled"] span {
        background-color: #dc3545;
        color: #fff;
    }

    &[status="Partial"] span {
        background-color: #fd7e14;
        color: #fff;
    }

    &[status="Processing"] span {
        background-color: #17a2b8;
        color: #fff;
    }

    &[status="Service enabled"] span {
        background-color: #28a745;
        color: #fff;
    }

    &[status="Service disabled"] span {
        background-color: #dc3545;
        color: #fff;
    }

    &[status="Rate decreased"] span {
        background-color: #fd7e14;
        color: #fff;
    }

    &[status="Rate increased"] span {
        background-color: #17a2b8;
        color: #fff;
    }

    &[status="New service"] span {
        background-color: #0070ff;
        color: #fff;
    }
}

form button[type="submit"] {
    width: 100%;
}

.m-t-md {
    text-transform: uppercase;
    margin-bottom: 20px;
    font-size: 19px;
    font-weight: 600;
    position: relative;
    padding-left: 25px;
    margin-top: 10px;
}

.m-t-md:before {
    content: "";
    background: var(--primary-color);
    width: 14px;
    height: 4px;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    margin: auto;
    border-radius: 10px;
}

.main-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.referral-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin: 1.5rem 0;
}

.detail-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.detail-item label {
    font-size: 0.85rem;
    color: #ffffff;
    font-weight: 500;
}

.rate-badge, .payout-badge {
    background: #007bff;
    color: white;
    padding: 12px 20px;
    border-radius: 20px;
    font-weight: 600;
    text-align: center;
    font-size: 0.9rem;
}

.payout-badge {
    background: #28a745;
}

.referral-link-container {
    display: flex;
    gap: 0.5rem;
    background: #d1fae5;
    padding: 0.5rem;
    border-radius: 8px;
    border: 1px solid #8fd1be;
}

.earning-value {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.earning-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

.payout-btn {
    background: #28a745;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
}

.payout-btn:hover {
    background: #218838;
    text-decoration: none;
    color: white;
}

@media (max-width: 768px) {
    .main-grid {
        grid-template-columns: 1fr;
    }

    .referral-details {
        grid-template-columns: 1fr;
    }
}

.grid-2.earnings .block {
    padding: 20px;
}

.grid-2.earnings .block.total {
    background: #f0fdf4;
}

.grid-2.earnings .block.available {
    background: var(--lightest-green);
    border-color: #8fd1be;
}

.grid-2.earnings {
    margin-bottom: 20px;
    grid-gap: 20px;
}

.payout-action button {
    width: 100%;
}

button[disabled] {
    background: var(--swal2-backdrop);
    border-color: #8f8f8f;
}

.swal2-toast {
    color: white;
    font-size: 16px;
    background: #19191d!important;
    border: 1px solid #383838!important;
}

.swal2-toast .swal2-success .swal2-success-fix, .swal2-toast .swal2-success [class^=swal2-success-circular-line] {
    background-color: #19191d !important;
}

.gap-20 {
    grid-gap: 20px;
}

.stats-holder.small .stat-card.block {
    padding: 20px;
    grid-gap: 20px;
    align-items: center;
}

.stats-holder.small {
    margin: 0;
    margin-bottom: 20px;
}

.stats-holder.small .stat-card.block span {
    font-size: 22px;
    text-transform: uppercase;
}

.stats-holder.small .stat-card > i {
    background: var(--primary-color);
}

.stats-holder.small .stat-card.block p {
    font-size: 14px;
    line-height: 20px;
}

.search button[type="submit"] {
    width: fit-content;
}

.faq-holder.small .faq-body {
    padding: 20px;
}

.faq-holder.small.grid-2, .faq-holder.small .faq-row {
    grid-gap: 20px;
}

.pagination > .active > a, .pagination > .active > span, .pagination > .active > a:hover, .pagination > .active > span:hover, .pagination > .active > a:focus, .pagination > .active > span:focus {
    z-index: 3;
    color: #fff;
    cursor: default;
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.less-gap {
    grid-gap: 30px;
}

.height-full {
    height: 100%;
}

#uploader-button {
    background: var(--lightest-green)!important;
    border: 1px solid #68cfb2 !important;
    display: flex!important;
    padding: 5px 10px!important;
    font-family: montserrat, sans-serif !important;
    color: #057d5a;
    text-transform: uppercase;
    border-radius: 10px;
    font-weight: 500;
    cursor: pointer;
}

.priority-badge {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
}

.priority-critical {
    background: rgba(220, 53, 69, 0.2);
    color: #dc3545;
}

.priority-high {
    background: rgba(253, 126, 20, 0.2);
    color: #fd7e14;
}

.priority-medium {
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
}

.priority-low {
    background: rgb(255 255 255 / 20%);
    color: #ffffff;
}

.response-grid {
    display: flex;
    align-items: center;
    grid-gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.response-item {
    display: flex;
    align-items: center;
    padding: 10px;
    background: #10B991;
    border: 1px solid #575757;
    border-radius: 10px;
    justify-content: space-between;
    flex-grow: 1;
}

.tip-text {
    font-size: 13px;
    font-weight: 500;
    color: gray;
}

.response-time {
    font-weight: 500;
    font-size: 14px;
}

.ticket-message {
    margin-bottom: 10px;
}

.btn-secondary.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #ffffff;
}

.icon-input .input-area, .icon-input .form-control {
    padding-left: 45px;
}

@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }

    .nav-links, .nav-right .social-icons, .nav-right .btn-signup {
        display: none;
    }

    .secondary-navbar .navbar-container {
        flex-direction: column-reverse;
        align-items: flex-end;
    }

    .mobile-overflow {
        overflow: auto;
    }

    .stats-bar {
        flex-direction: row;
        gap: 20px;
        padding: 20px;
        flex-wrap: wrap;
    }

    .stat-item {
        padding: 10px;
    }

    .stat-item:not(:last-child)::after {
        display: none;
    }

    .stat-item:not(:last-child) {
        padding-bottom: 20px;
    }

    .select2-container .select2-selection__text {
        white-space: normal;
    }

    .desc-stat-holder {
        display: flex;
        flex-wrap: wrap;
    }

    .stat-card.small.block h3 {
        flex-direction: column;
        align-items: flex-start;
    }

    .stat-card.small.block {
        flex-grow: 1;
        padding: 15px;
    }

    .xn-site-body-main {
        padding: 15px;
    }

    .mobile-overflow {
        overflow-x: auto;
    }

    .xn-block-nav, .search {
        flex-direction: column;
    }

    .xn-block-nav .dropdown, .search button[type="submit"] {
        width: 100%;
    }

    .flex-btns {
        overflow-x: auto;
    }

    .dashboard .navbar-r {
        display: flex;
        flex-direction: row;
        margin-left: auto;
        margin-right: 20px;
    }

    .user-balance.user_points {
        font-size: 0;
        display: flex;
        align-items: center;
        grid-gap: 4px;
    }

    .user-balance.user_points i {
        font-size: 12px;
    }

    .xn-signup {
        display: flex;
        height: 100%;
        width: 100%;
    }

    .xn-signup-r {
        display: none;
    }

    .xn-signup-l {
        padding: 30px;
    }

    .xn-signup-header h1 {
        font-size: 22px;
    }
  
    .dashboard-preview {
        height: 146px;
    }


    .text-content h2 {
        font-size: 1.5rem;
    }
}

.blog-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 25px 30px;
    transition: all 0.3s ease;
}

.blog-card:hover {
    border-color: #bdbdbd;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.blog-card h4 {
    color: #212121;
    font-size: 1.4rem;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-card p {
    color: #616161;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.blog-card .btn-primary {
    width: 100%;
}