/* /*------------------------------------------------------------------
Project: Ciri AI
Author: The_Krishna
Last change: 21/2/2025
Primary use:
------------------------------------------------------------------ */
/*-----------------------[Table of contents]------------------------
1.Default CSS
2.Preloader CSS
3.Buttons CSS
4.Header CSS
5.Section One CSS 
6.Section Two CSS
7.Section Three CSS
8.Brand Marquee Section CSS
9.Section Four CSS
10.Section Five CSS
11.Section Six CSS
12.Why Choose Us CSS
13.Section Seven CSS
14.Pricing Page CSS
15.Section Eight CSS
16.Section Subscribe CSS
17.Section Blog CSS
18.Footer CSS
19.Bottom top button CSS
20.custom-cursor
------------------------------------------------------------------ */
/*-----------------------[ 1.Default CSS ]------------------------*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: 'Poppins';
    font-style: normal;
}
html {
    scroll-behavior: smooth;
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
}
a {
    text-decoration: none;
}
dl,
ol,
ul {
    margin-top: 0;
    margin-bottom: 0rem;
}
ul {
    padding-left: 0;
}
ul li {
    list-style: none;
}
button {
    border: none;
}
::-webkit-scrollbar {
    width: 4px;
}
::-webkit-scrollbar-corner {
    display: none;
}
::-webkit-scrollbar-thumb {
    background: #5C33FF;
    background-clip: content-box;
}
::-webkit-scrollbar-track {
    background-color: #02000B;
}
body {
    background: #02000B;
}
/*-----------------------[ 2.Preloader CSS ]------------------------*/
.page-loader {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background: #02000B;
    z-index: 1000;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
}
.page-loader p {
    font-size: 50px;
    font-weight: 700;
    letter-spacing: 3px;
    padding-top: 20px;
    background: linear-gradient(90deg, #5C33FF 0%, #00FFB1 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.spinner {
    width: 80px;
    height: 80px;
    animation: spinner-y0fdc1 2s infinite ease;
    transform-style: preserve-3d;
}
.spinner>div {
    background-color: #5c33ff6e;
    height: 100%;
    position: absolute;
    width: 100%;
    border: 2px solid #FFFFFF;
}
.spinner div:nth-of-type(1) {
    transform: translateZ(-40px) rotateY(180deg);
}
.spinner div:nth-of-type(2) {
    transform: rotateY(-270deg) translateX(50%);
    transform-origin: top right;
}
.spinner div:nth-of-type(3) {
    transform: rotateY(270deg) translateX(-50%);
    transform-origin: center left;
}
.spinner div:nth-of-type(4) {
    transform: rotateX(90deg) translateY(-50%);
    transform-origin: top center;
}
.spinner div:nth-of-type(5) {
    transform: rotateX(-90deg) translateY(50%);
    transform-origin: bottom center;
}
.spinner div:nth-of-type(6) {
    transform: translateZ(40px);
}
@keyframes spinner-y0fdc1 {
    0% {
        transform: rotate(45deg) rotateX(-25deg) rotateY(25deg);
    }
    50% {
        transform: rotate(45deg) rotateX(-385deg) rotateY(25deg);
    }
    100% {
        transform: rotate(45deg) rotateX(-385deg) rotateY(385deg);
    }
}
/*-----------------------[ 3.Buttons CSS ]------------------------*/
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    position: relative;
    transition: all 0.2s;
    cursor: pointer;
    color: #FFF;
    z-index: 1;
    border-radius: 10px;
    background: linear-gradient(270deg, rgba(0, 255, 177, 0.75) 0%, rgba(0, 255, 177, 0.00) 49.65%);
    border: 2px solid transparent;
}
.button::before {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 10px;
    padding: 2px;
    background: linear-gradient(90deg, #5C33FF, #00FFB1);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: -1;
}
.button:active {
    transform: scale(0.97);
}
.hoverEffect {
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: -1;
    overflow: hidden;
    border-radius: 8px;
}
.hoverEffect span {
    background: linear-gradient(90deg, #5C33FF 0%, #00FFB1 100%);
    width: 12rem;
    height: 12rem;
    transition: 0.4s;
    filter: blur(20px);
    animation: effect infinite 3s linear;
    opacity: 0.5;
    overflow: hidden;
}
@keyframes effect {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
/* Buttton 2 */
.button2 {
    position: relative;
    border-radius: 10px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: conic-gradient(from var(--r) at var(--x) 50%, #222 0%, #00FFB1 20%, #1A1A1A 25%);
    animation: rotateAnimation 5s linear infinite, moveX 5s ease-in-out infinite alternate;
    padding: 12px 24px;
    color: #FFF;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
}
.button2:hover {
    color: #00FFB1;
}
.button2::after {
    content: "";
    display: block;
    position: absolute;
    background: #1A1A1A;
    inset: 2px;
    border-radius: 10px;
    z-index: 0;
    transition: opacity .3s ease;
}
.button2 span {
    position: relative;
    z-index: 2;
}
@property --r {
    syntax: '<angle>';
    inherits: false;
    initial-value: 0deg;
}
@property --x {
    syntax: '<percentage>';
    inherits: false;
    initial-value: 0%;
}
@keyframes rotateAnimation {
    0% {
        --r: 0deg;
    }
    100% {
        --r: 360deg;
    }
}
@keyframes moveX {
    0% {
        --x: 10%;
    }
    100% {
        --x: 90%;
    }
}
/*-----------------------[ 4.Header CSS ]------------------------*/
header {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 500;
    padding: 20px 12px;
}
.top-navbar.fixed {
    background: rgba(23, 27, 34, 0.3);
    backdrop-filter: blur(12.5px);
    -webkit-backdrop-filter: blur(12.5px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header-buttons-main {
    display: flex;
    align-items: center;
    gap: 17px;
}
.side-menu-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 0;
    display: none;
}
.menu-icon {
    display: none;
    cursor: pointer;
}
.nav-links-mn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 100px;
}
.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}
.nav-links li {
    position: relative;
}
.nav-links .a-link,
.select-btn {
    color: var(--1, #FFF);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    cursor: pointer;
}
.a-link.active-link {
    color: #00FFB1 !important;
}
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #333;
    min-width: 160px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.dropdown-content.active {
    display: block;
    opacity: 1;
    visibility: visible;
}
.select-menu .options {
    position: absolute;
    top: 40px;
    overflow-y: auto;
    padding: 12px 16px;
    border-radius: 8px;
    background: #1A1A1A;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    animation-name: fadeInDown;
    -webkit-animation-name: fadeInDown;
    animation-duration: 0.35s;
    animation-fill-mode: both;
    -webkit-animation-duration: 0.35s;
    -webkit-animation-fill-mode: both;
}
.select-menu.active .options {
    opacity: 0;
    z-index: 10;
    animation-name: fadeInUp;
    -webkit-animation-name: fadeInUp;
    animation-duration: 0.4s;
    animation-fill-mode: both;
    -webkit-animation-duration: 0.4s;
    -webkit-animation-fill-mode: both;
    width: 190px;
    display: flex;
    flex-direction: column;
}
.options a {
    padding: 10px;
    color: var(--1, #FFF);
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
}
.select-menu .options {
    display: none;
}
@keyframes fadeInUp {
    from {
        transform: translate3d(0, 30px, 0);
    }
    to {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}
@keyframes fadeInDown {
    from {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
    to {
        transform: translate3d(0, 20px, 0);
        opacity: 0;
    }
}
/*-----------------------[ 5.Section One CSS  ]------------------------*/
.blue-gardient1 {
    position: absolute;
    left: 0;
    top: -110px;
    max-width: 100%;
    z-index: -1;
    max-width: 670px;
}
.blue-gardient2 {
    position: absolute;
    right: 0;
    top: -50px;
    max-width: 725px;
    z-index: -1;
}
.elevate {
    color: var(--1, #FFF);
    text-align: center;
    font-size: 64px;
    font-weight: 400;
    line-height: 100px;
    padding-top: 100px;
}
.bestAI {
    background: linear-gradient(to right,
            #5C33FF 20%,
            #00FFB1 30%,
            #5C33FF 70%,
            #00FFB1 80%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    font-size: 64px;
    font-weight: 700;
    line-height: 100px;
    background-size: 500% auto;
    animation: gradientMove 6s ease-in-out infinite alternate;
}
@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 100% 50%;
    }
}
.olut {
    color: var(--1, #FFF);
    text-align: center;
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    max-width: 850px;
    margin: 0 auto;
    padding-top: 20px;
}
.inputGenerate {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: var(--11, #1A1A1A);
    max-width: 850px;
    margin: 40px auto 20px auto;
    position: relative;
}
.inputGenerate input {
    width: 100%;
    background: #1A1A1A;
    color: #FFF;
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    border: none;
    outline: none;
    padding: 28px 30px;
    border-radius: 10px;
}
.generate-btn {
    margin-right: 10px;
    background: linear-gradient(90deg, #5C33FF 0%, #00FFB1 100%);
    border: none;
    padding: 18px 24px;
}
a.button.generate-btn::before {
    display: none;
}
.hometags-main {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}
.popTg {
    color: var(--1, #FFF);
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
}
.hometags {
    color: var(--12, #6F6F6F);
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    border-radius: 5px;
    background: var(--11, #1A1A1A);
    padding: 5px 12px;
    transition: all 0.3s ease-in-out;
}
.hometags:hover {
    background: #FFF;
    color: #000;
}
.single-img img {
    max-width: 100%;
}
.single-img {
    margin: 60px 15px 0 15px;
}
.multi-img img:nth-child(1) {
    margin-bottom: 30px;
}
/*-----------------------[ 6.Section Two CSS ]------------------------*/
.section-two {
    padding: 100px 0;
    overflow: hidden;
}
.sec-heding {
    color: var(--1, #FFF);
    text-align: center;
    font-size: 48px;
    font-weight: 400;
    line-height: 72px;
}
.sec-heding span {
    background: linear-gradient(90deg, #5C33FF 0%, #00FFB1 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    font-size: 48px;
    font-weight: 700;
    line-height: 72px;
    background-size: 500% auto;
    animation: gradientMove 6s ease-in-out infinite alternate;
}
.sub-heding {
    color: var(--1, #FFF);
    text-align: center;
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    max-width: 850px;
    margin: 0 auto;
    padding-top: 20px;
}
.home-features-row {
    gap: 30px 0;
    margin-top: 60px;
}
.round-gradient1 {
    position: absolute;
    max-width: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    mix-blend-mode: hard-light;
}
.round-gradient2 {
    position: absolute;
    max-width: 100%;
    right: 0;
    top: -300px;
    z-index: -1;
    mix-blend-mode: hard-light;
}
.features-cir-main {
    position: relative;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 20px auto;
}
.features-cir {
    width: 120px;
    height: 120px;
    border-radius: 60px;
    background: linear-gradient(146deg, rgba(255, 255, 255, 0.10) 20.09%, rgba(255, 255, 255, 0.05) 79.91%);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}
.img-bg-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(90deg, #5C33FF 0%, #00FFB1 100%);
    mix-blend-mode: hard-light;
    position: absolute;
    z-index: 0;
    left: 50%;
    bottom: 0;
    transform: translate(-50%, -50%);
    animation: circularMotion 3s linear infinite;
    filter: blur(10px);
}
@keyframes circularMotion {
    0% {
        transform: translate(-50%, -50%) rotate(0deg) translateX(15px) rotate(0deg);
    }
    25% {
        transform: translate(-50%, -50%) rotate(90deg) translateX(15px) rotate(-90deg);
    }
    50% {
        transform: translate(-50%, -50%) rotate(180deg) translateX(15px) rotate(-180deg);
    }
    75% {
        transform: translate(-50%, -50%) rotate(270deg) translateX(15px) rotate(-270deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg) translateX(15px) rotate(-360deg);
    }
}
.gendseratio {
    color: var(--1, #FFF);
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    line-height: 30px;
}
.eugiat {
    color: var(--12, #6F6F6F);
    text-align: center;
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    padding-top: 10px;
}
/*-----------------------[ 7.Section Three CSS ]------------------------*/
.section-three {
    padding: 100px 0;
}
.ering {
    color: #FFF;
    font-size: 48px;
    font-weight: 400;
    line-height: 72px;
    text-align: center;
    transition: color 0.5s ease-in-out;
}
.community-btn-main {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 40px 0 60px 0;
}
.glob {
    font-weight: 500;
}
/*-----------------------[ 8.Brand Marquee Section CSS ]------------------------*/
.logos {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    display: flex;
}
.logos1 {
    margin-top: 30px;
}
.ltr {
    animation: slide-ltr 50s linear infinite;
}
@keyframes slide-ltr {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}
.rtl {
    animation: slide-rtl 50s linear infinite;
}
@keyframes slide-rtl {
    from {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(0);
    }
}
.marquee__content {
    display: flex;
    justify-content: space-around;
    min-width: 100%;
    align-items: center;
    padding-top: 30px;
}
.marquee-img-main {
    background: #1A1A1A;
    border-radius: 40px;
    cursor: pointer;
    height: 80px;
    width: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.marquee-img-main {
    margin: 0 10px;
}
/*-----------------------[ 9.Section Four CSS ]------------------------*/
.section-four {
    padding: 100px 0;
}
.sugg-box {
    display: flex !important;
    gap: 80px;
    margin-top: 60px;
    margin-left: 12px;
    margin-right: 12px;
}
.setpSugg {
    background: linear-gradient(90deg, #5C33FF 0%, #00FFB1 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 18px;
    font-weight: 600;
    line-height: 20px;
    text-transform: uppercase;
    padding-bottom: 20px;
    background-size: 500% auto;
    animation: gradientMove 6s ease-in-out infinite alternate;
}
.flex-pri {
    text-align: left;
    max-width: 700px;
}
.tryImage-btn-main {
    margin-top: 60px;
}
.blue-gardient3 {
    position: absolute;
    top: -87px;
    left: 0;
    max-width: 100%;
    z-index: -1;
}
.blue-gardient4 {
    position: absolute;
    top: 150px;
    right: 0;
    max-width: 100%;
    z-index: -1;
}
/*-----------------------[ 10.Section Five CSS ]------------------------*/
.section-five {
    padding: 100px 0;
}
.sldkjf {
    background-repeat: no-repeat;
    background-position: center;
    background: linear-gradient(90deg, #02000B 10%, rgba(26, 26, 26, 0.70) 49.5%, #02000B 90%);
    padding: 40px 0;
}
.sldkjf::before,
.sldkjf::after {
    content: '';
    position: absolute;
    height: 2px;
    width: 100%;
    background: linear-gradient(90deg, #02000B 10%, #FFF 49.5%, #02000B 90%);
    opacity: 0.5;
    animation: pulseGlow 2.5s ease-in-out infinite;
}
.sldkjf::before {
    top: 0;
}
.sldkjf::after {
    bottom: 0;
}
@keyframes pulseGlow {
    0% {
        opacity: 0.3;
        transform: scaleX(1);
    }
    50% {
        opacity: 1;
        transform: scaleX(1.1);
    }
    100% {
        opacity: 0.3;
        transform: scaleX(1);
    }
}
.vis-tex {
    display: flex;
    align-items: center;
}
.vis-tex img {
    margin: 0 40px;
}
.vis-tex h2 {
    color: var(--1, #FFF);
    text-align: center;
    font-size: 64px;
    font-weight: 700;
    line-height: 100px;
}
.vis-tex2 {
    background: linear-gradient(90deg, #5C33FF 0%, #00FFB1 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.vis-tex3 h2 {
    text-align: center;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: var(--1, #FFF);
    will-change: transform;
    color: transparent;
}
/*-----------------------[ 11.Section Six CSS ]------------------------*/
.section-six {
    padding: 100px 0;
}
.marketingRow {
    margin-top: 60px;
    margin-bottom: 40px;
}
.dui {
    color: var(--12, #6F6F6F);
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
}
.quis-head {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
}
.quis,
.quis-main {
    width: 60px;
    height: 60px;
    overflow: hidden;
    margin: 0;
}
.quis-bg-cir {
    width: 30px;
    height: 30px;
}
.quis-text-list {
    color: var(--1, #FFF);
    font-family: Poppins;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 30px;
}
.home-sec-one-video {
    width: 100%;
    height: 450px;
    object-fit: cover;
}
.video-container {
    position: relative;
}
#video-container {
    margin-top: 60px;
}
.blue-gardient5 {
    position: absolute;
    top: 0;
    left: -300px;
    z-index: -1;
}
.blue-gardient6 {
    position: absolute;
    bottom: 100px;
    right: -260px;
    z-index: -1;
}
.text-circle-main {
    position: relative;
    z-index: 1;
    width: 250px;
    height: 250px;
    margin: -120px auto;
    background: #02000B;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.text-circle {
    animation: rotation infinite 30s linear;
}
@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
.bg-down-arrow {
    position: absolute;
}
.panda {
    border-radius: 50%;
    max-width: 100%;
}
/*-----------------------[ 12.Why Choose Us: CSS ]------------------------*/
.whyChoose {
    text-align: start;
    max-width: 560px;
    padding-bottom: 20px;
}
.whyChooseSec {
    padding-top: 165px;
}
.excellent {
    display: flex;
    align-items: center;
}
.exce-box {
    padding: 40px;
    border-radius: 30px;
    background: linear-gradient(101deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.10) 100%);
    backdrop-filter: blur(2px);
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
}
.exce-box-ciecl {
    width: 550px;
    height: 200px;
    border-radius: 550px;
    opacity: 0.5;
    filter: blur(100px);
    position: absolute;
    left: 50%;
    bottom: -70px;
    transform: translate(-50%);
    z-index: -1;
}
#exce-box1 {
    background: #00FFB1;
}
#exce-box2 {
    background: #FFA361;
}
#exce-box3 {
    background: #E10FCC;
}
.excellent p {
    color: var(--1, #FFF);
    font-size: 24px;
    font-weight: 600;
    line-height: 32px;
    display: flex;
    align-items: center;
    gap: 20px;
}
.rnaip {
    color: var(--1, #FFF);
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
    padding-top: 15px;
}
/*-----------------------[ 13.Section Seven CSS ]------------------------*/
.people-sa {
    max-width: 650px;
    margin: 0 auto;
}
.sayAboutSlider {
    margin-top: 60px;
}
.slide-box {
    text-align: center;
}
.beco {
    color: var(--1, #FFF);
    text-align: center;
    font-size: 32px;
    font-weight: 400;
    line-height: 48px;
    max-width: 1070px;
    margin: 0 auto;
    padding-top: 20px;
    padding-bottom: 40px;
}
.hoea {
    color: #FFF;
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    line-height: 30px;
    background: linear-gradient(90deg, #5C33FF 0%, #00FFB1 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.mave {
    color: var(--12, #6F6F6F);
    text-align: center;
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
}
.single-slick-arrow {
    width: 70px;
    height: 70px;
    border: 2px solid #FFF;
    background: transparent;
    border-radius: 50%;
}
.single-slick-arrow.slick-prev {
    position: absolute;
    top: 110px;
    left: 0;
    z-index: 10;
}
.single-slick-arrow.slick-next {
    position: absolute;
    top: 110px;
    right: 0;
    z-index: 10;
}
.slider-gardient-blue {
    position: absolute;
    left: 100px;
    top: -80px;
    max-width: 500px;
    z-index: -1;
}
.slider-gardient-blue2 {
    position: absolute;
    right: 0;
    top: 40px;
    z-index: -1;
}
.client-img1 {
    position: absolute;
    top: 50px;
    left: 280px;
    border-radius: 50%;
    animation: mover 4s infinite alternate;
}
.client-img2 {
    position: absolute;
    top: 250px;
    left: 30px;
    border-radius: 50%;
    animation: mover 3s infinite alternate;
}
.client-img3 {
    position: absolute;
    bottom: -10px;
    left: 110px;
    border-radius: 50%;
    animation: mover 2s infinite alternate;
}
.client-img4 {
    position: absolute;
    top: 50px;
    right: 280px;
    border-radius: 50%;
    animation: mover 4s infinite alternate;
}
.client-img5 {
    position: absolute;
    top: 250px;
    right: 30px;
    border-radius: 50%;
    animation: mover 3s infinite alternate;
}
.client-img6 {
    position: absolute;
    bottom: -10px;
    right: 110px;
    border-radius: 50%;
    animation: mover 2s infinite alternate;
}
@keyframes mover {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-8px);
    }
}
.curve-svg {
    width: 100%;
    margin-top: 100px;
    animation: pulseGlow 2.5s ease-in-out infinite;
}
/*-----------------------[ 14.Pricing Page CSS ]------------------------*/
.section-eight {
    padding: 100px 0;
}
.tabs-btn {
    margin: 40px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    position: relative;
    z-index: 1;
}
.tabs-btn a {
    display: inline-block;
    border-radius: 10px;
    background: var(--11, #1A1A1A);
    color: #FFF;
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
    max-width: 132px;
    width: 100%;
    padding: 18px 0;
    text-align: center;
}
.monthly {
    border-radius: 30px 0 0 30px;
}
.yearly {
    border-radius: 0 30px 30px 0;
}
.tabContainer {
    width: 100%;
    position: relative;
}
.Tabcondent {
    position: absolute;
    opacity: 0;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    transition: opacity 0.3s ease-in-out, transform 0.6s ease-in-out;
    transform: translateY(20px);
}
.tabs-btn a.active {
    border-radius: 10px;
    background: linear-gradient(90deg, #5C33FF 0%, #00FFB1 100%);
    color: #FFFFFF;
}
.Tabcondent.active {
    width: 100%;
    height: 100%;
    opacity: 1;
    transform: translateY(0);
    position: relative;
    z-index: 1;
}
.plan-header {
    border-radius: 30px;
    background: linear-gradient(101deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.10) 100%);
    padding: 20px;
    position: relative;
    overflow: hidden;
    filter: blur();
}
.plain-greiesd-bg {
    width: 384px;
    height: 200px;
    border-radius: 384px;
    filter: blur(100px);
    position: absolute;
    bottom: -120px;
    left: 50%;
    transform: translate(-50%);
    z-index: -1;
}
#price1 {
    background: #00FFB1;
}
#price2 {
    background: #FFA361;
}
#price3 {
    background: #E10FCC;
}
#price4 {
    background: #1BFEFD;
}
#price5 {
    background: #88E64A;
}
#price6 {
    background: #5C33FF;
}
.plan-body {
    border-radius: 30px;
    background: var(--11, #1A1A1A);
    position: relative;
}
.plan-text {
    color: #FFF;
    font-size: 24px;
    font-weight: 500;
    line-height: 30px;
    text-align: center;
    text-transform: uppercase;
    padding-bottom: 20px;
}
.plan-price {
    color: #FFF;
    font-size: 64px;
    font-weight: 700;
    line-height: 64px;
    text-align: center;
}
.plan-price sub {
    color: #FFF;
    font-size: 24px;
    font-weight: 500;
    line-height: 30px;
}
.basicLevelPro {
    color: #FFF;
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
    padding-top: 20px;
}
.plan-body ul {
    padding: 30px 30px 0 30px;
}
.plan-body ul li {
    color: var(--12, #6F6F6F);
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    position: relative;
}
.plan-body ul li:before {
    content: url('../images/svg/check.svg');
    width: 100%;
    max-width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(146deg, rgba(255, 255, 255, 0.10) 20.09%, rgba(255, 255, 255, 0.05) 79.91%);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
    z-index: 5;
}
.plan-body ul li::after {
    content: '';
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: linear-gradient(90deg, #5C33FF 0%, #00FFB1 100%);
    mix-blend-mode: hard-light;
    position: absolute;
    left: 7px;
    bottom: 10px;
    z-index: 0;
    filter: blur(5px);
}
.pricing-btn {
    padding: 10px 30px 30px 30px;
}
.pricing-btn a {
    width: 100%;
}
/*-----------------------[ 15.Section Eight CSS ]------------------------*/
.quest {
    text-align: left;
    max-width: 520px;
}
.seci {
    color: #FFF;
    padding-top: 10px;
}
.accordion {
    --bs-accordion-bg: transparent;
    border: none;
}
.accordion-item {
    border: none;
}
.accordion-button:focus {
    box-shadow: none;
}
.accordion-button:not(.collapsed) {
    background: linear-gradient(90deg, #5C33FF 0%, #00FFB1 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    box-shadow: none;
    border-bottom: none;
    padding-bottom: 20px;
}
.asd button {
    padding: 30px 0;
    color: var(--12, #6F6F6F);
    font-size: 24px;
    font-weight: 500;
    line-height: 32px;
    border-bottom: 2px solid #1A1A1A;
}
.faq .accordion-body {
    padding: 0 0 30px 0;
    border-bottom: 2px solid #1A1A1A;
    color: var(--12, #6F6F6F);
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
}
.accordion-button::after {
    background-image: url('../images/svg/accor-close.svg');
    --bs-accordion-btn-icon-width: 2rem;
}
.accordion-button:not(.collapsed)::after {
    background-image: url('../images/svg/accor-open.svg');
}
/*-----------------------[ 16.Section Subscribe CSS ]------------------------*/
.section-subscribe {
    padding: 100px 0;
}
.blurek {
    position: absolute;
    top: -390px;
    z-index: -1;
}
.blurek2 {
    position: absolute;
    bottom: -150px;
    right: 0;
    z-index: -1;
}
.cretive-box {
    background-image: url('../images/home-page/Pattern.png');
    width: 100%;
    height: 100%;
    position: relative;
    border-radius: 30px;
    background-color: rgb(217 217 217 / 10%);
    backdrop-filter: blur(15px);
    padding: 100px 0;
    overflow: hidden;
}
.robot {
    position: absolute;
    top: -50px;
    right: 70px;
    z-index: 1;
    border-radius: 50%;
    animation: mover 2s infinite alternate;
}
.home-sec-two-video2 {
    width: 300px;
    height: 100px;
    object-fit: cover;
    border-radius: 50px;
    position: absolute;
    bottom: -50px;
    left: 50px;
    z-index: 1;
}
.subs-sec {
    background-image: url('../images/svg/sub-curve.svg');
    background-position: center;
    background-repeat: no-repeat;
    height: 100%;
    margin-bottom: 100px;
    padding-bottom: 70px;
    padding-top: 40px;
}
.sub-scjsd-inp-main {
    display: flex;
    align-items: center;
    gap: 40px;
    margin: 40px 0 30px 0;
}
.sub-scjsd-inp-main input {
    color: #FFF;
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    width: 100%;
    background: transparent;
    outline: none;
    border-left: none;
    border-right: none;
    border-top: none;
    border-bottom: 2px solid #1A1A1A;
    height: 50px;
}
.sub-scjsd-inp-main input::placeholder {
    color: var(--12, #6F6F6F);
}
.subscribeBtn {
    background: linear-gradient(90deg, #5C33FF 0%, #00FFB1 100%);
}
.footer-checkbox-input+.footer-chec-txt {
    position: relative;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}
.footer-checkbox-input {
    position: absolute;
    opacity: 0;
}
.footer-chec-txt {
    color: var(--12, #6F6F6F);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}
.footer-chec-txt a {
    color: var(--1, #FFF);
    font-weight: 500;
}
.footer-checkbox-input:checked+.footer-chec-txt:before {
    background: #02000B;
    border: 2px solid #6F6F6F;
}
.footer-checkbox-input+.footer-chec-txt:before {
    content: "";
    display: inline-block;
    vertical-align: text-top;
    width: 18px;
    height: 18px;
    border: 2px solid #6F6F6F;
    border-radius: 5px;
}
.footer-checkbox-input:checked+.footer-chec-txt:after {
    content: "";
    position: absolute;
    left: 4px;
    top: 11px;
    background: #FFF;
    width: 2px;
    height: 2px;
    box-shadow: 2px 0 0 white, 4px 0 0 white, 4px -2px 0 white, 4px -4px 0 white, 4px -6px 0 white, 4px -8px 0 white;
    transform: rotate(45deg);
}
.faasd {
    display: flex;
    align-items: end;
    justify-content: flex-end;
    position: relative;
}
.fantasy1 {
    max-width: 100%;
    border-radius: 30px;
}
.fantasy2 {
    position: absolute;
    bottom: 40px;
    left: -50px;
    border-radius: 50%;
    animation: mover 2s infinite alternate;
}
/*-----------------------[ 17.Section Blog CSS ]------------------------*/
.section-blog {
    padding: 100px 0;
}
.blog-img {
    max-width: 100%;
    border-radius: 30px;
}
.blog-box-col:hover .blog-img {
    filter: blur(1px);
}
.blog-img-box {
    position: relative;
}
.date-blog {
    padding: 12px 15px;
    background: var(--3, #5C33FF);
    color: var(--1, #FFF);
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
    position: absolute;
    bottom: -22px;
    left: 30px;
    transition: bottom 0.3s ease;
}
.blog-box-col:hover .date-blog {
    left: 0;
    bottom: 0px;
    width: 100%;
    border-radius: 0 0 30px 30px;
    text-align: center;
}
.eque {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    color: var(--1, #FFF);
    font-size: 23px;
    font-weight: 500;
    line-height: 32px;
    margin: 50px 0 15px 0;
    transition: all 0.3s ease;
}
.blog-box-col:hover .eque {
    color: #5C33FF;
}
.ilisis {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    color: var(--12, #6F6F6F);
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
}
.blog-box-col:hover .ilisis {
    color: #FFF;
}
.home-blog-row {
    margin-top: 60px;
}
.blog-gardient {
    position: absolute;
    top: -100px;
    z-index: -1;
    max-width: 100%;
}
/*-----------------------[ 18.Footer CSS ]------------------------*/
.footer-main {
    position: relative;
    overflow: hidden;
}
.footer-main::before {
    content: '';
    height: 4px;
    width: 100%;
    position: absolute;
    top: 0;
    background: linear-gradient(to right,
            #00C2FF 0%,
            #E10FCC 29.9354%,
            #5C33FF 52.5946%,
            #00C2FF 77.4929%,
            #00FFB1 100%);
    animation: gradient-scroll 5s linear infinite;
    background-size: 200% 100%;
}
@keyframes gradient-scroll {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
.advice {
    text-align: left;
    font-size: 36px;
    line-height: 48px;
    max-width: 500px;
}
.dsos {
    max-width: 500px;
}
.ref-demo {
    margin-top: 40px;
}
.footer-logo {
    position: absolute;
    left: 0;
    top: 4px;
    z-index: -1;
    max-width: 100%;
}
.box-footer {
    border-radius: 20px;
    background: var(--11, #1A1A1A);
    padding: 20px;
    width: 100%;
}
.resour {
    color: #FFF;
    font-size: 24px;
    font-weight: 500;
    line-height: 32px;
    margin-bottom: 20px;
}
.foot-links li a {
    color: var(--12, #6F6F6F);
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
}
.foot-links li a:hover {
    color: #FFF;
}
.foot-links li {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}
.foot-links li::before {
    content: url(../images/svg/check.svg);
    width: 100%;
    max-width: 36px;
    height: 36px;
    backdrop-filter: blur(5px);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
    z-index: 5;
    border-radius: 50%;
    background: linear-gradient(146deg, rgba(255, 255, 255, 0.1) 20.09%, rgba(255, 255, 255, 0.05) 79.91%);
}
.foot-links li::after {
    content: '';
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: linear-gradient(90deg, #5C33FF 0%, #00FFB1 100%);
    mix-blend-mode: hard-light;
    position: absolute;
    left: 7px;
    bottom: 10px;
    z-index: 0;
    filter: blur(5px);
}
.footer-col-fir,
.footer-col-sec {
    padding: 85px 12px;
}
.footer-col-fir {
    position: relative;
    overflow: hidden;
}
.footer-col-fir::after {
    content: '';
    width: 2px;
    height: 100%;
    position: absolute;
    top: 0;
    right: 80px;
    background: #1A1A1A;
    z-index: -1;
}
.djks {
    position: absolute;
    right: 80px;
    animation: moveTopToBottom 8s infinite linear alternate;
}
@keyframes moveTopToBottom {
    0% {
        transform: translateY(-70px);
    }
    100% {
        transform: translateY(310px);
    }
}
.footer-col-sec {
    display: flex;
    align-items: center;
    gap: 30px;
    justify-content: center;
    position: relative;
}
.coprights-main {
    padding: 30px 0;
    border-top: 2px solid #1A1A1A;
    position: relative;
}
.das {
    position: absolute;
    top: -2px;
    animation: moveLeftToRight 10s infinite linear alternate;
    width: 100%;
}
@keyframes moveLeftToRight {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}
.rights-reserved {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
.rights-reserved h2 {
    color: var(--12, #6F6F6F);
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
}
.rights-reserved a {
    color: var(--1, #FFF);
    font-weight: 500;
}
.footer-media {
    display: flex;
    align-items: center;
    gap: 25px;
}
.footer-media a {
    color: var(--12, #6F6F6F);
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}
.footer-media a:hover {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7485%) hue-rotate(322deg) brightness(101%) contrast(100%)
}
.footer-gefdo {
    position: absolute;
    bottom: 0;
    right: -280px;
    z-index: -1;
    width: 100%;
    max-width: 420px;
}
/*-----------------------[ 19.Form CSS ]------------------------*/
.modal-dialog {
    margin-right: auto;
    margin-left: auto;
    width: 100%;
    max-width: 840px;
}
.modal-content {
    background: rgba(2, 0, 11, 0.25);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 30px;
}
.form-close-btn {
    position: absolute;
    right: 15px;
    top: 10px;
    filter: brightness(0) saturate(100%) invert(99%) sepia(100%) saturate(3%) hue-rotate(144deg) brightness(102%) contrast(102%);
}
.btn-close:focus {
    box-shadow: none;
    z-index: 100;
}
.form-modal-body {
    padding-top: 35px;
}
.container-demo {
    position: relative;
    width: 800px;
    height: 500px;
    overflow: hidden;
}
.container-demo .user {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
}
.container-demo .user .imgBx {
    position: relative;
    width: 50%;
    height: 100%;
    transition: 0.5s;
}
.container-demo .user .imgBx img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}
.container-demo .user .formBx {
    position: relative;
    width: 50%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
    transition: 0.5s;
}
.container-demo .user .formBx form h2 {
    color: #FFF;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 32px;
    background: linear-gradient(90deg, #5C33FF 0%, #00FFB1 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    width: 100%;
    margin-bottom: 10px;
}
.container-demo .user .formBx form input {
    position: relative;
    width: 100%;
    padding: 12px;
    background: #f5f5f5;
    color: #333;
    border: none;
    outline: none;
    box-shadow: none;
    margin: 10px 0 15px 0;
    font-size: 16px;
    font-weight: 400;
}
.container-demo .user .formBx form .signup {
    position: relative;
    margin-top: 20px;
    font-size: 14px;
    letter-spacing: 1px;
    color: #6F6F6F;
    text-transform: uppercase;
    font-weight: 500;
}
.container-demo .user .formBx form .signup a {
    font-weight: 600;
    text-decoration: none;
    color: #FFF;
}
.container-demo .signupBx {
    pointer-events: none;
}
.container-demo.active .signupBx {
    pointer-events: initial;
}
.container-demo .signupBx .formBx {
    left: 100%;
}
.container-demo.active .signupBx .formBx {
    left: 0;
}
.container-demo .signupBx .imgBx {
    left: -100%;
}
.container-demo.active .signupBx .imgBx {
    left: 0%;
}
.container-demo .signinBx .formBx {
    left: 0%;
}
.container-demo.active .signinBx .formBx {
    left: 100%;
}
.container-demo .signinBx .imgBx {
    left: 0%;
}
.container-demo.active .signinBx .imgBx {
    left: -100%;
}
/*-----------------------[ 20.Bottom top button CSS ]------------------------*/
button.bottom-top-button {
    position: fixed;
    right: 30px;
    bottom: 20px;
    z-index: 999;
    width: 50px;
    height: 50px;
    color: #FFF;
    font-size: 30px;
    transform: translateY(0%);
    transition: ease-out 200ms;
    background: linear-gradient(90deg, #5C33FF 0%, #00FFB1 100%);
    padding: 0;
    border-radius: 50%;
}
/*-----------------------[ 21.Blog Detail Page CSS ]------------------------*/
.blog-main-date {
    color: var(--12, #6F6F6F);
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    line-height: 30px;
    padding-top: 12px;
}
.blog-singl-img {
    margin: 60px 0;
    max-width: 100%;
}
.signgle-blog-row {
    justify-content: center;
}
.sodales {
    color: #6F6F6F;
    font-size: 18px;
    font-weight: 500;
    line-height: 30px;
    padding-bottom: 10px;
}
.cott-main {
    background: var(--5, #171B22);
    padding: 25px;
    margin: 22px auto;
    border-left: 5px solid #5C33FF;
}
.cott-main p {
    color: var(--1, #FFF);
    font-size: 22px;
    font-style: italic;
    font-weight: 400;
    line-height: 36px;
    padding-top: 20px;
}
.wildlife-img-group-sub {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 30px 0;
}
.wildlife-img-group img {
    max-width: 100%;
}
.blog-singl-img4 {
    margin-bottom: 22px;
}
.liqua {
    color: var(--1, #FFF);
    text-align: center;
    font-size: 30px;
    font-weight: 400;
    line-height: 40px;
    padding-top: 40px;
}
.blog-singl-img {
    margin: 25px 0;
    max-width: 100%;
}
.approach {
    color: var(--1, #FFF);
    font-size: 32px;
    font-weight: 400;
    line-height: 48px;
    margin: 30px auto 15px auto;
}
.Singleblog-media {
    margin-top: 30px;
    justify-content: center;
}
.Singleblog-media a {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(1577%) hue-rotate(136deg) brightness(109%) contrast(100%);
}
.Singleblog-media a:hover {
    filter: brightness(0) saturate(100%) invert(27%) sepia(87%) saturate(6826%) hue-rotate(252deg) brightness(101%) contrast(101%);
}
.diamond-nextbtn-head {
    display: flex;
    justify-content: space-between;
    border-top: 2px solid rgba(168, 169, 173, 0.2);
    border-bottom: 2px solid rgba(168, 169, 173, 0.2);
    margin-top: 30px;
}
.diamond-next-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 20px 0;
    cursor: pointer;
}
.diamond-next-btn h3 {
    color: #FFF;
    font-size: 18px;
    font-weight: 600;
    line-height: 30px;
}
.leave-input {
    display: flex;
    align-items: center;
    gap: 30px;
}
.form-siglblog {
    background-image: url(../images/home-page/Pattern.png);
    width: 100%;
    height: 100%;
    position: relative;
    border-radius: 20px;
    background-color: rgb(217 217 217 / 10%);
    backdrop-filter: blur(15px);
    padding: 50px;
    overflow: hidden;
    margin-top: 40px;
}
.leave-input {
    display: flex;
    align-items: center;
    gap: 30px;
}
.conta-input-main,
textarea {
    color: #FFF;
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    padding: 15px 20px;
    background: #02000B;
    border-radius: 10px;
    border: none;
    width: 100%;
    outline: none;
    margin-bottom: 25px;
}
textarea {
    resize: none;
    height: 180px;
}
/*-----------------------[ 22.custom-cursor ]------------------------*/
.wrapper {
    position: relative;
}
.custom-cursor {
    position: fixed;
    /* width: 60px; */
    height: 60px;
    border-radius: 50%;
    /* background: #5C33FF; */
    pointer-events: none;
    z-index: 9999;
    display: none;
}
.custom-cursor img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.cursor {
    cursor: none;
}
/* XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX */


                                                /*Form Sign in   */
.form {
    display: flex;
    justify-content: center; 
    align-items: center; 
    height: 100vh; 
}

.mobile-input-container {
    display: flex;
    align-items: center;
    /* border: 1px solid #ccc; */
    /* padding: 5px; */
    border-radius: 5px;
    width: 300px;
}
.select {
    border: none;
    /* background: transparent; */
    padding: 5px;
    font-size: 11px;
    outline: none;
    width: 107px;
    height: 45px;
    margin-top: 0px;
    margin-right: 9px;
    /* margin-left: -6px; */
}
input {
    border: none;
    padding: 5px;
    font-size: 16px;
    outline: none;
    flex: 1;
}
.captcha-container {
    display: flex;
    align-items: center;
    /* gap: 8px; */
    /* margin-top: 20px; */
}
.captcha-box {
    padding: 10px 15px;
    font-size: 14px;
    font-weight: bold;
    border-radius: 5px;
    letter-spacing: 2px;
}
.captcha-input {
    padding: 8px;
    font-size: 16px;
    width: 150px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
.refresh-btn {
    background: transparent;
    padding: 6px;
    cursor: pointer;
    border-radius: 5px;
    font-size: 16px;
}
.password-container {
    position: relative;
    width: 280px;
}

input {
    width: 100%;
    padding: 12px;
    border-radius: 6px;
    border: none;
    background-color: #fff; /* Light input */
    color: #333;
    font-size: 16px;
 }

.toggle-btn {
    position: absolute;
    right: -97px;
    top: 29px;
     transform: translateY(-50%);
     background: none;
     border: none;
     font-size: 14px;
     font-weight: bold;
     color: #555;
     cursor: pointer;
}
.password-container {
    position: relative;
    width: 280px;
}

input {
    width: 100%;
    padding: 12px;
    border-radius: 6px;
    border: none;
    background-color: #fff;
    color: #333;
    font-size: 16px;
}

.toggle-btn {
    position: absolute;
    left: 215px;
    top: 45%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 14px;
    font-weight: bold;
    color: #007bff;
    cursor: pointer;
}
/* Left Side - Image */
.image-box {
    flex: 1; 
    display: flex;
    justify-content: center; 
    align-items: center;
}

.image-box img {
    max-width: 100%;
    height: auto;
    max-height: 500px;
    border-radius: 20px;
}

/* Right Side - Form */
.form-box {
    flex: 1; 
    display: flex;
    align-items: center;
	
}

.signin-form {
    text-align: center;
    width: 100%;
    padding: 60px 30px 130px 30px; height:auto;
    border-radius: 10px;
	
	border-radius: 20px;
    background: var(--11, #1A1A1A);
     
    width: 100%;
	
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
	
	
}

.signin-form h2 {
    color: #0072ff;
    margin-bottom: 20px;
}
.signin-form h3 {
    color: #0072ff;
    margin-bottom: 20px;
}

.signin-form input {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    outline: none;
}

.subscribeBtn1 {
    display: block;
    width: 100%;
    padding: 12px;
    background: linear-gradient(to right, #00c6ff, #0072ff);
    color: white;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 15px;
    transition: 0.3s;
    border: none;
    cursor: pointer;
}

.subscribeBtn:hover {
    background: linear-gradient(to right, #0072ff, #00c6ff);
    transform: scale(1.05);
}

.signup {
    margin-top: 15px;
    font-size: 14px;
}

.signup a {
    color: #0072ff;
    font-weight: bold;
    text-decoration: none;
}

.signup a:hover {
    text-decoration: underline;
}

.forgot-password,
.signup {
    text-align: center;
    margin-top: 10px;
}

.forgot-password a {
    color: #0072ff;
    font-weight: bold;
    text-decoration: none;
    display: block; 
}

.forgot-password a:hover {
    text-decoration: underline;
}

.signup {
    color: grey;
    font-size: 14px;
}

.signup a {
    color: #0072ff;
    font-weight: bold;
    text-decoration: none;
}

.signup a:hover {
    text-decoration: underline;
}
.checkbox{
    display: flex;
    align-items: center; 
    gap: 10px; 
    width: 330px;
    margin-top: -14px;
}
/* Mobile Responsive (max-width 768px) */
@media (max-width: 768px) {
    .form {
        flex-direction: column;
        padding: 20px 10px;
        height: auto;
        gap: 20px;
    }
    .mobile-input-container{
        width: 256px;
    }
    .image-box img {
        width: 250px;
        height: auto;
        margin-top: 20px;
    }

    .form-box {
        width: 100%;
        justify-content: center;
    }

    .signin-form {
        width: 90%;
        padding: 20px 10px;
    }

    .signin-form input {
        width: 100%;
    }

    .subscribeBtn1 {
        width: 100%;
    }

    .password-container {
        width: 100%;
    }

    .toggle-btn {
        left: unset;
        right: -47px;
        top: 50%;
        transform: translateY(-50%);
    }

    .captcha-container {
        flex-direction: column;
        /* gap: 10px; */
    }

    .captcha-input {
        width: 100%;
    }

    .captcha-box {
        padding: 8px 12px;
    }

    .refresh-btn {
        /* padding: 5px 10px; */
        width: 45px;
    }

    .forgot-password a, 
    .signup {
        margin: 10px 0;
        display: block;
        text-align: center;
    }

    /* Adjust Remember Me */
    .form-box label {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }
   
}
                                                    /* SIGN IN FORM END */
/* xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx */

/* XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX */
                                
                                                    /* Left Side Bar  */
.sidebar {
    width: 250px;
    height: 167vh;
    background: rgba(6, 34, 66, -0.8); 
    color: white;
    padding-top: 20px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
}



.sidebar ul li {
    padding: 15px;
    text-align: left;
    cursor: pointer;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-weight: bold;
    font-size: 13px;
}

.sidebar ul li:hover {
    background: #6633ff;
}

.sidebar ul li a {
    color: white;
    text-decoration: none;
    display: block;
}

.submenu {
    display: none; 
    padding-left: 15px;
    background: rgba(255, 255, 255, 0.1); 
    border-left: 4px solid #6633ff; 
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    font-weight: bold;

}
@media (min-width: 371px) {
    .sidebar {
        left: 0;
    }
}



@media (max-width: 768px) {
    .sidebar {
        width: 0; 
        overflow: hidden;
        position: absolute;
        left: 0;
        top: 0;
        background: rgba(6, 34, 66, -0.8); 
        z-index: 1000;
        height: 100%;
    }
    .sidebar.active {
        width: 250px;
    }
     .sidebar {
    width: 250px;
    height: 100vh; 
    overflow-y: auto; 
    position: fixed;
}
}

@media (max-width: 768px) {
    .sidebar {
        width: 250px;
        height: 100vh; /* Full height */
        overflow-y: auto; /* Enable vertical scrolling */
        overflow-x: hidden; /* Prevent horizontal scroll */
        position: fixed;
        top: 0;
        left: -250px; /* Hide initially */
        background: rgba(6, 34, 66, -0.8); 
        transition: all 0.3s ease-in-out;
        z-index: 1000;
    }

    /* Show sidebar when active */
    .sidebar.active {
        left: 0;
    }

    /* Hide scrollbar for a cleaner look */
    .sidebar::-webkit-scrollbar {
        width: 5px;
    }

    .sidebar::-webkit-scrollbar-thumb {
        background-color: #6633ff;
        border-radius: 10px;
    }

    .sidebar::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.1);
    }
}




/* XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX */

/* xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx */
                            
                                                /*  dashboard  Header Start*/
        

.top-navbar1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background: rgba(23, 27, 34, 0.3);
    backdrop-filter: blur(12.5px);
}


.logo img {
    height: 30px; 
    width: 238px;
}

.navbar-left1 {
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.user-pannel img {
    width: 36px;
    height: 32px;
    border-radius: 50%;
    margin-left: 63px;
    margin-top: -5px;
}



.dropdown-menu1 {
    position: absolute;
    top: 32px;
    left: -64px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    width: 260px;
    padding: 15px 0;
    display: none;
    z-index: 100;
}

.dropdown-menu1.show {
    display: block;
}

.dropdown-menu1 .user-info {
    text-align: center;
    padding: 10px;
    border-bottom: 1px solid #ddd;
    background-color:rgba(108, 75, 240, 0.55);
    margin-top: -16px;
}

.dropdown-menu1 .user-info .name {
    font-weight: bold;
}

.dropdown-menu1 .user-info .email {
    font-size: 14px;
    color: #555;
}

.dropdown-menu1 .menu-item {
    padding: 10px 20px;
    cursor: pointer;
    color: #333;
}

.dropdown-menu1 .menu-item:hover {
    background-color: #f0f0f0;
}

.username{
    color: #ffffff;
    margin-left: 2px;
    margin-top: 0px;
}
.user-pannel{
    width: 38px;
    height: 20px;
    border-radius: 50%;
    position: relative;
    margin-right: 57px;
}

@media (max-width: 768px) {
    /* Adjust navbar padding */
    .top-navbar1 {
        padding: 8px 15px;
        flex-direction: row;
    }

    /* Resize logo */
    .logo img {
        height: 26px; 
        width: 155px;
    }

    /* Adjust user panel */
    .user-pannel img {
        width: 30px;
        height: 30px;
        margin-left: 10px; /* Reduce margin for smaller screens */
        margin-top: 0px;
    }

    /* Reduce username margin */
    .username {
        font-size: 14px;
        margin-left: 5px;
    }

    /* Position dropdown properly */
    .dropdown-menu1 {
        top: 40px;
        left: -90px; /* Adjust for proper alignment */
        width: 220px; /* Reduce width */
        padding: 10px 0;
    }

    /* Adjust dropdown menu items */
    .dropdown-menu1 .menu-item {
        padding: 8px 15px;
        font-size: 14px;
    }

    /* Adjust user info section */
    .dropdown-menu1 .user-info {
        padding: 8px;
    }

    .dropdown-menu1 .user-info .email {
        font-size: 12px;
    }

    /* Adjust user panel size */
    .user-pannel {
        width: 32px;
        height: 32px;
        margin-right: 2px;
    }
}
                                                /*Header End  */

/* XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX */

/* XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX */
                                              
                                            /* Dashboard Page Start */

 .content {
    margin-top: 10px;
    padding: 10px;
    background: linear-gradient(90deg, #6c4bf030 0%, #34e7b145 100%);
    color: white;
    text-align: center;
    border-radius: 6px;
}
.referral {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copy-btn {
    background: #6633ff;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
    border: none;
}

.main-container {
    display: flex;
    align-items: flex-start;  
}

.dashboard {
    flex-grow: 1;
    padding: 13px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.dashboard {
    display: grid;
    grid-template-columns: repeat(4, 1fr); 
    gap: 26px; 
}
.card1  {
    background: rgba(6, 34, 66, -0.8);
    backdrop-filter: blur(10px);
    border: 3px, solid #d6a4a4;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    color: rgb(1, 1, 1);
}
.referral-card {
    grid-column: span 2; 
}
.news-card {
    grid-column: span 2; 
}


.dashboard {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
    gap: 15px;
    width: 100%;
    padding: 10px;
}

@media (max-width: 768px) {
    
    .user-info {
        flex-direction: row;
        justify-content: center;
    }
}

img {
    max-width: 100%;
    height: auto;
}
.content {
    font-size: clamp(12px, 2vw, 16px); 
}

@media (max-width: 768px) {
    .referral-card, .news-card {
        grid-column: span 1; 
    }
    
}
.referral {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px; 
    flex-wrap: wrap; 
}

.referral .content {
    flex: 1; 
    overflow: hidden;
    text-overflow: ellipsis; 
    white-space: nowrap; 
    padding: 8px;
    background: linear-gradient(90deg, #6c4bf030 0%, #34e7b145 100%);
    color: white;
    text-align: left;
    border-radius: 6px;
}

.copy-btn {
    flex-shrink: 0; 
    background: #6633ff;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
    border: none;
    white-space: nowrap; 
}
                                                   /* Dashboard Page End */
/* xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx */

/* XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX */

                                                /* Update Profile Page Start */

                                                     /* Sidebar 2  start */

.sidebar1 {
    width: 250px;
    height: 167vh;
    background: rgba(6, 34, 66, -0.8); 
    color: white;
    padding-top: 20px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
}



.sidebar1 ul li {
    padding: 15px;
    text-align: left;
    cursor: pointer;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-weight: bold;
}

.sidebar1 ul li:hover {
    background: #6633ff;
}

.sidebar1 ul li a {
    color: white;
    text-decoration: none;
    display: block;
}

.submenu {
    display: none; 
    padding-left: 15px;
    background: rgba(255, 255, 255, 0.1); 
    border-left: 4px solid #6633ff; 
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    font-weight: bold;
}


@media (min-width: 371px) {
    .sidebar1 {
        left: 0;
    }
}
@media (max-width: 768px) {
    .sidebar1 {
        width: 0; 
        overflow: hidden;
        position: absolute;
        left: 0;
        top: 0;
        background: rgba(6, 34, 66, -0.8); 
        z-index: 1000;
        height: 100%;
    }
    .sidebar1.active {
        width: 250px;
    }
     .sidebar1 {
    width: 250px;
    height: 100vh; 
    overflow-y: auto; 
    position: fixed;
}
}
                                                        /* Sidebar 2 end  */
/* ---------------------------------------------------------------------------------------------------------- */

/* ---------------------------------------------------------------------------------------------------------- */
                                                        /* Main Content */

.container1 {
    display: flex;
    padding: 11px;
    margin-left: -1px;
    gap: 10px;
    /* margin-top: 179px; */
}

.profile-form {
    flex: 2;
    border: 3px, solid #d6a4a4;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 708px;
}

.contact-info {
    flex: 1;
    border: 3px, solid #d6a4a4;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    height: 244px;
}
.banner1{
    display: flex; 
    align-items: center;
    gap: 15px;
    margin-left: 287px;
}
.banner1 img{
    width: 88px; 
    height: 91px;
}

.success-msg {
    background: #d4edda;
    color: #155724;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 10px;
}

label {
    font-weight: bold;
    margin-top: 10px;
    display: block;
    color:rgb(255, 255, 255);
}

input, select {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border-radius: 5px;
    /* border: 1px solid #ccc; */
    color: black;
}
button{
    width: 158px;
    padding: 10px;
    margin-top: 5px;
    border-radius: 5px;
    border: 1px solid #ccc;
    color: black;
}

.submit-btn {
    background:  #6633ff;
    border: none;
    cursor: pointer;
    font-size: 16px;
    color: white;
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
    .container1 {
        flex-direction: column;
        margin-left: 0;
    }



    .top-navbar {
        flex-direction: row;
    }
}

.sidebar1 {
    width: 250px;
    min-height: 100vh;
    transition: all 0.3s ease-in-out;
    top: -104px;
}

.button-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .container1 {
        flex-direction: column;
        width: 100%;
        padding: 10px;
    }

    .profile-form, .contact-info {
        max-width: 100%;
        padding: 15px;
    }

    .banner1 {
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-left: 0;
    }

    .banner1 img {
        width: 70px;
        height: 70px;
    }
    .sidebar1 {
        width: 0; 
        overflow: hidden;
        position: absolute;
        left: 0;
        top: 0;
        background: rgba(6, 34, 66, -0.8); 
        z-index: 1000;
        height: 100%;
        
    }
   
}


/* sidebar1 Responsiveness */
.sidebar1 {
    width: 250px;
    min-height: 100vh;
    transition: all 0.3s ease-in-out;
    top: 0;
}


.sidebar1.active {
    transform: translateX(0);
}

.button-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .sidebar1 {
        width: 250px;
        height: 100vh; 
        overflow-y: auto; 
        overflow-x: hidden; 
        position: fixed;
        top: 0;
        left: -250px; 
        background: rgba(6, 34, 66, -0.8); 
        transition: all 0.3s ease-in-out;
        z-index: 1000;
    }

    .sidebar1.active {
        left: 0;
    }

    .sidebar1::-webkit-scrollbar {
        width: 5px;
    }

    .sidebar1::-webkit-scrollbar-thumb {
        background-color: #6633ff;
        border-radius: 10px;
    }

    .sidebar1::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.1);
    }
}

@media (max-width: 768px) {
    .image-box {
        text-align: center; 
        padding: 20px 0;
        display: block;
    }

    .image-box img {
        width: 200px; 
        height: auto;
        display: block;
        margin: 0 auto; 
    }

    .sidebar1 {
        padding-top: 100px; 
    }
}
                                                /* Update Profile Page end */

/* XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX */


/* XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX */
                                                /* Direct Team Report Page start */


.table-container {
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0px 15px #d6a4a4;
    text-align: center;
    width: 1000px;
    height: auto; /* Height automatic adjust hoga */
    border: 2px solid #d6a4a4;
    margin: 50px auto;
    display: block; /* Flex ki jagah block rakho */
}

.dropdown-container {
    margin-bottom: 10px; /* Dropdown aur table ke beech gap */
    text-align: left;
}

.styled-dropdown {
    width: 101px;
    padding: 10px;
    font-size: 16px;
    border-radius: 5px;
    background-color: rgb(10, 11, 11);
    color: white;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M7 10l5 5 5-5H7z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 20px;
}

table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 13px;
}

th, td {
    padding: 12px;
    border: 2px solid #ddd;
}

th {
    background-color:#07886e;
    color: black;
    font-weight: bold;
    text-align: center;
}

tr:nth-child(even) {
    background-color:rgba(6, 34, 66, -0.8);
    color: white;
}

tr:nth-child(odd) {
    background-color:rgba(6, 34, 66, -0.8);
    color: white;
}

td {
    text-align: center;
}

.status {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
}

.status.active {
    background-color: #28a745;
    color: white;
}

.status.inactive {
    background-color: #dc3545;
    color: white;
}



@media (max-width: 1024px) {  /* Tablets */
    .table-container {
        width: 90%; /* Reduce width for better fit */
        margin: 30px auto;
        overflow-x: auto; /* Enable horizontal scrolling */
    }

    .styled-dropdown {
        width: 90px; /* Adjust dropdown size */
        font-size: 14px;
    }

    table {
        font-size: 14px; /* Reduce text size */
    }

    th, td {
        padding: 10px;
    }
}

@media (max-width: 768px) {  /* Mobile Screens */
    .table-container {
        width: 95%; 
        padding: 10px;
    }

    .dropdown-container {
        text-align: left; /* Center dropdown */
        margin-bottom: 10px;
    }

    .styled-dropdown {
        width: 80px;
        font-size: 12px;
        padding: 8px;
    }

    table {
        display: block;
        overflow-x: auto; /* Scroll if needed */
        white-space: nowrap; /* Prevent text wrapping */
    }

    th, td {
        font-size: 12px;
        padding: 8px;
    }

    .status {
        font-size: 12px;
        padding: 4px 8px;
    }
}

@media (max-width: 480px) {  /* Small Mobile Screens */
    .banner1 h2 {
        font-size: 16px; /* Smaller title */
    }

    .table-container {
        width: 100%;
        padding: 5px;
    }

    .styled-dropdown {
        width: 70px;
        font-size: 11px;
    }

    th, td {
        font-size: 11px;
        padding: 6px;
    }

    .status {
        font-size: 10px;
        padding: 3px 6px;
    }
}

                                                /* Direct Team Report Page end */
/* XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX */

/* XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX */

                                                /*Sponsored Level Report start  */

 .search-container {
            width: 685px;
            max-width: 691px;
            margin: 1px auto;
            border: 1px solid white;
            text-align: center;
        }

        .search-header {
            font-weight: bold;
            padding: 8px;
            border-bottom: 2px solid black;
            color: white;
        }

        .search-table {
            width: 100%;
            border-collapse: collapse;
        }

        .search-table td {
            padding: 4px;
            border: 1px solid white;
            text-align: center;
            font-size: 16px;
        }

        .date-input {
            background-color: #6c35bf;
            color: white;
            border: none;
            padding: 8px;
            border-radius: 5px;
            font-size: 16px;
            width: 150px;
            margin: 1px;
        }

        .date-input::-webkit-calendar-picker-indicator {
            filter: invert(1); /* Makes the calendar icon visible */
            cursor: pointer;
        }

        .submit-btn {
            background-color: #00ffcc;
            color: black;
            border: none;
            padding: 10px 20px;
            font-size: 16px;
            font-weight: bold;
            border-radius: 5px;
            cursor: pointer;
            margin: 1px;
        }

        .submit-btn:hover {
            background-color:rgb(46, 188, 159);
        }

        .custom-button {
            background: linear-gradient(45deg, #bb34fd, #0ec6a7);
            border: none;
            color: white;
            padding: 5px 9px;
            font-size: 13px;
            font-weight: bold;
            border-radius: 5px;
            cursor: pointer;
            letter-spacing: 1px;
        }

        .custom-button:hover {
            background: linear-gradient(45deg,rgba(112, 42, 178, 0.5),rgb(31, 79, 56));
            transform: scale(1.02);
        }

        @media (max-width: 768px) {
        .search-container {
            width: 292px;
            max-width: 100%;
            padding: 10px;
            box-sizing: border-box;
        }

        .search-table,
        .search-table tr,
        .search-table td {
            display: block;
            width: 277px;
            text-align: center;
        }

        .search-header {
            font-size: 18px;
            padding: 10px;
        }

        .search-table td {
            padding: 6px 0;
            border: none;
        }

        .date-input {
            width: 90%;
            max-width: 300px;
            font-size: 14px;
        }

        .submit-btn {
            width: 90%;
            max-width: 300px;
            font-size: 14px;
            padding: 10px;
        }
    }
    
    .details-table {
        width: 100%;
        border: 1px solid #ddd;
    }
    .details-row td {
        padding: 10px;
        background-color: rgb(23, 23, 23);
    }

                                                /*Sponsored Level Report end  */

/* XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX */


/* XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX */
                                             /*Package Purchase Start  */

.wallet-balance {
    width: 250px;
    /* border: 2px solid rgba(255, 255, 255, 0.3); */
    text-align: center;
    font-family: Arial, sans-serif;
    font-size: 20px;
    border-radius: 10px;
    /* background-color: rgba(255, 255, 255, 0.1); */
    padding: 10px;
}

.wallet-header {
    background: linear-gradient(90deg, #6c4bf057 0%, #34e7b17a 100%);
    padding: 10px;
    font-weight: bold;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    color: white;
    border: 1px solid white;

}

.wallet-amount {
    /* background-color: black; */
    padding: 8px;
    font-weight: bold;
    font-size: 20px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    color: white;
    border: 1px solid white;
}


@media screen and (max-width: 768px) {
    .content {
        width: 100%; 
        max-width: 100%; 
        font-size: 10px; 
    }
}

                                             /*Package Purchase end */
/* XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX */

/* XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX */
 
                                            /*FeedBack Form Start */

 .container2 {
            width: 472px;
            padding: 20px;
            border-radius: 10px;
            border: 2px solid #d6a4a4;
            margin: 46px auto;
            display: flex;
            flex-direction: column;
            align-items: center;
            height: auto; 
        }

        .rating-box {
            display: flex;
            justify-content: center;
            gap: 16px;
            margin: 10px 0;
        }

        .rating-box button {
            width: 64px;
            height: 55px;
            background: #444;
            border: none;
            color: white;
            font-size: 25px;
            border-radius: 50%;
            cursor: pointer;
            transition: transform 0.3s, background 0.3s;
        }

        .rating-box button:hover, .rating-box button.selected {
            transform: scale(1.1);
            background: #00ff99;
        }

        .rating-comment {
            margin-top: 10px;
            font-weight: bold;
            color: #ffcc00;
            text-align: center;
        }

        .keywords {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 10px;
            /* margin: 20px 0; */
        }

        .keywords label {
            background: #444;
            padding: 10px;
            border-radius: 5px;
            cursor: pointer;
            transition: background 0.3s;
        }

        .keywords input:checked + label {
            background: #6633cc;
        }

        .feedback-text {
            width: 100%;
            height: 80px;
            padding: 10px;
            border-radius: 5px;
            border: 1px solid white;
            margin-top: 10px;
            /* background: #2c2c2c; */
            color: white;

        }

        .stars {
            display: flex;
            justify-content: center;
            margin-top: 10px;
        }

        .star {
            font-size: 40px;
            color: grey;
            margin: 3px;
            transition: color 0.3s;
        }

        .submit-btn {
            background: rgb(63, 139, 109);
            border: none;
            padding: 10px 20px;
            border-radius: 5px;
            cursor: pointer;
            width: 299px;
            margin-top: 10px;
        }

        .recording-ui {
            display: none;
            margin-top: 10px;
            padding: 10px;
            background: rgb(121, 112, 137);
            border-radius: 23px;
            color: rgb(244, 244, 244);
            width: 201px;
            text-align: center;
        }

        #voice-btn, #stop-btn {
            font-size: 14px;
            padding: 10px;
            border-radius: 8px;
            background: rgb(121, 112, 137);
            border: none;
            color: rgb(9, 9, 9);
            cursor: pointer;
            width: 215px;
            margin-top: 10px;
        }

        #audio-playback {
            width: 260px;
            margin-top: 10px;
        }

        /* Responsive Design for Mobile */
@media (max-width: 768px) {
    .container2 {
        width: 90%;
        padding: 15px;
        margin: 20px auto;
    }
    
    .rating-box {
        gap: 10px;
    }
    
    .rating-box button {
        width: 50px;
        height: 45px;
        font-size: 20px;
    }
    
    .keywords {
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }
    
    .keywords label {
        font-size: 14px;
        padding: 8px;
    }
    
    .feedback-text {
        height: 60px;
        font-size: 14px;
    }
    
   
}
                                                      /*FeedBack Form end */
/* XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX */


/* XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX */

                                                         /*Fund Wallet Statement start */

.searchbox {
    width: 834px;
    max-width: 825px;
    margin: 1px auto;
    border: 1px solid white;
    text-align: center;
}
   
@media screen and (max-width: 768px) {
    
    .pagination {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 5px;
    }

    .pagination button {
        width: 40px;
        font-size: 14px;
        padding: 5px;
    }
    .searchbox{
        width: 287px;
        height: 294px;
    }
}

                                                 /*Fund Wallet Statement end */

/* XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX */


/* XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX */

                                                 /*place order start */
  @media (max-width: 768px) {
    .table1 {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
        margin: 10px;
       width: 296px;
    }
}
                                                 /*place order end */
/* XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX */


/* XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX */
                                                /*Tree View start */

                                    /*  Search Box Styles */
.search-container1 {
    text-align: center;
    margin: 15px 0;
}
.search-container1 input {
    width: 200px;
    padding: 10px;
    border-radius: 5px;
    /* border: 1px solid #ccc; */
    font-size: 16px;
    background-color: #333;
    color: white;
}
.search-container1 button {
    padding: 10px 15px;
    background-color: #2563eb;
    color: white;
    /* border: none; */
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}
.search-container1 button:hover {
    background-color: #1e3a8a;
}

/* TReee  */
.tree1{
    margin-top: -68px;
    margin-left: 100px;
    width: 842px; 
    height: 59px;
}
.tree2{
    margin-top: -81px;
    margin-left: 26px;
    width: 290px; 
    height: 56px;
}
.tree3{
    margin-top: -81px; 
    margin-left: 68px; 
    width: 290px; 
    height: 56px;
}
.tree4{
    margin-top: -81px; 
    margin-left: 54px; 
    width: 290px; 
    height: 56px;
}
    .tree-node{
        color: white;
        text-align: center;
        margin-left: 13px;
    }
  
    .tree-node1{
        color: white;
        text-align: center;
        margin-left: 137px;
        margin-top: -30px;
    }
    .tree-node2{
        color: white;
        text-align: center;
        margin-left: 311px;
        margin-top: -33px;
    }
    .tree-node3{
        color: white;
        text-align: center;
        margin-left: 299px;
        margin-top: -28px;
    }
    .tree-node4{
        color: white;
        text-align: center;
        margin-left: 22px;
        margin-top: -39px;
    }
    .tree-node5{
        color: white;
        text-align: center;
        margin-left: 71px;
        margin-top: -39px;
    }
    .tree-node6{
        color: white;
        text-align: center;
        margin-left: 61px;
        margin-top: -39px;
    }
    .tree-node7{
        color: white;
        text-align: center;
        margin-left: 61px;
        margin-top: -39px;
    }
    .tree-node8{
        color: white;
        text-align: center;
        margin-left: 61px;
        margin-top: -39px;
    }
    .tree-node9{
        color: white;
        text-align: center;
        margin-left: 61px;
        margin-top: -39px;
    }
    .tree-node10{
        color: white;
        text-align: center;
        margin-left: 61px;
        margin-top: -39px;
    }
    .tree-node11{
        color: white;
        text-align: center;
        margin-left: 61px;
        margin-top: -39px;
    }
    .tree-node12{
        color: white;
        text-align: center;
        margin-left: 61px;
        margin-top: -39px;
    }
    .tree-arrow{
        margin-top: 10px;
        margin-left: 10px;
    }
    .tree-branch{
        display: flex;
    }
    .tree-branch1{
        display: flex;
    }

    @media (max-width: 768px) {
    .tree-scroll-page {
        overflow-x: auto; 
        white-space: nowrap; 
        width: 100%; 
    }

    .tree-scroll-page .main-container {
        display: flex;
        flex-wrap: nowrap; 
        min-width: 100%; 
    }

    .tree-scroll-page .main-container > * {
        flex: 0 0 auto;
    }

    .tree-scroll-page .tree {
        min-width: 800px; 
    }

    .tree-scroll-page::-webkit-scrollbar {
        height: 8px;
    }
    .tree-scroll-page::-webkit-scrollbar-track {
        background: #222;
    }
    .tree-scroll-page::-webkit-scrollbar-thumb {
        background: #555;
        border-radius: 10px;
    }
}


                                                /*Tree View end */
/* XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX */

                                           

