/* ==========================================================================
   ROBO RUPEE — Design System
   ========================================================================== */

/*=====---Reset CSS---======*/
/*--variable css start here---*/
:root{
--bg:            #000000;
--bg500:         rgba(0, 0, 0, 0.5);
--darkgray:      #121212;
--white:         #FFFFFF;
--gray100:       #D1D5DB;
--success:       #00D26A;
--danger:        #FF4D4D;
--text:          #A7B3C5;
--text-mute:     #7d7896;
--font-family:   "Plus Jakarta Sans", sans-serif;
--ease:           cubic-bezier(.22,.9,.32,1);

--white-100:     rgba(255, 255, 255, 0.05);
--white-200:     rgba(255, 255, 255, 0.10);
--white-400:     rgba(255, 255, 255, 0.24);
--btnBordergra:    linear-gradient(90deg,rgba(0, 4, 251, 1) 0%,rgba(189, 73, 209, 1) 100%);
--border:         rgba(130,110,255,.28);
--border-strong:   rgba(150,130,255,.55);


}

/* ===========================
   LIGHT THEME
=========================== */

body.light-theme{

    --bg:             #F8FAFC;
    --bg500:          rgba(248, 250, 252, 0.60);

    --darkgray:      #f8f8f8;

    --white:          #111827;

    --gray100:        #4B5563;

    --success:        #16A34A;
    --danger:         #DC2626;

    --text:           #374151;
    --text-mute:      #6B7280;

    --font-family:    "Plus Jakarta Sans", sans-serif;
    --ease:           cubic-bezier(.22,.9,.32,1);

    --white-100:      rgba(0, 0, 0, 0.03);
    --white-200:      rgba(0, 0, 0, 0.06);
    --white-400:      rgba(0, 0, 0, 0.12);

    --btnBordergra:   linear-gradient(
                        90deg,
                        #2563EB 0%,
                        #7C3AED 100%
                      );

    --border:         rgba(148,163,184,.35);
    --border-strong:  rgba(100,116,139,.55);

}

/*---Common css start here---*/
*{
    padding: 0;
    margin: 0;
}
body{
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-family);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    /* transition:1s; */
}

p, ul, li, h1, h2, h3, h4, h5, h6{
    margin-bottom: 0;
    list-style-type: none;
    padding: 0;
}

p{
    font-size:1rem;
    color: var(--text);
    font-family: var(--font-family);
} 

/*--Main BG--*/
.website-bg{
  position:fixed; inset:0; z-index:-2; pointer-events:none;
  background-image:
    radial-gradient(circle at 8% 20%, rgba(255,255,255,.9) 0, transparent 1.2px),
    radial-gradient(circle at 22% 65%, rgba(255,255,255,.6) 0, transparent 1.2px),
    radial-gradient(circle at 40% 12%, rgba(255,255,255,.8) 0, transparent 1px),
    radial-gradient(circle at 58% 80%, rgba(255,255,255,.5) 0, transparent 1.2px),
    radial-gradient(circle at 73% 30%, rgba(255,255,255,.9) 0, transparent 1.4px),
    radial-gradient(circle at 88% 55%, rgba(255,255,255,.6) 0, transparent 1px),
    radial-gradient(circle at 95% 10%, rgba(255,255,255,.7) 0, transparent 1.2px),
    radial-gradient(circle at 15% 90%, rgba(255,255,255,.5) 0, transparent 1px),
    radial-gradient(circle at 65% 55%, rgba(255,255,255,.4) 0, transparent 1px);
  background-repeat:repeat;
  background-size:300px 300px;
  animation:driftStars 40s linear infinite;
}

@keyframes driftStars{ from{background-position:0 0;} to{background-position:-600px 600px;} }
@media (prefers-reduced-motion:reduce){ .website-bg{animation:none;} }

/*---Header main ---*/

.header-card{
    background-color: var(--white-100);
    backdrop-filter:blur(20px);
    -webkit-backdrop-filter:blur(20px);
    border-bottom: 1px solid var(--white-200);
    padding: 16px 0;
}
.header-main.sticky {
	position: fixed;
	width: 100%;
	z-index: 9999;
	padding: 5px;
}
.header-main.sticky .btn-primary-inner{
    padding: 10px 16px;
}

/*--Spalsh page css--*/
.spalsh-body {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 40px;
    width: 100%;
    height: 80vh;
}

.serial-no {
	letter-spacing: 3px;
}

/*---nav section css--*/
.main-nav {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 5px;
}
.main-nav li a{
    color: var(--text);
    font-size: 1rem;
    font-weight: 400;
    font-family: var(--font-family);
    margin-right: 10px;
    padding-left: 10px;
}
.main-nav li:hover a, .main-nav li a.active{
    color: var(--white);
}
.sparator-hori{
    width: 1px;
    height: 40%;
    background-color: var(--text);
}

/*--Hero sections start here--*/
h1{
    font-family: var(--font-family);
    font-size: 4.3rem;
    font-weight: 700;
    line-height: normal;
    color: #D1DBD5;
}
.accent-word{color: #3500F4;}

/* ---------- glass cards ---------- */
.gcard{
  border-radius:32px;
  position:relative;
  background: conic-gradient(from 0deg,rgba(0,4,251, 0.45) 0deg,rgba(0,4,251, 0.45) 50deg, rgba(189,73,209,0.25) 128deg,rgba(189,73,209,0.25) 190deg,rgba(189,73,209,0.25) 252deg,rgba(0,4,251, 0.45) 320deg,rgba(0,4,251, 0.45) 1turn);
  overflow: hidden;
  width: 270px;
  backface-visibility: hidden;   
    overflow: hidden;
    padding: 2px;
    position: relative;
    transform: translateZ(0);
    transition: opacity .3s,box-shadow .3s;
    transform-origin: center;
    will-change: transform;
    z-index: 0;
     transition:0.5s;
}

.gcard-inner{
    background-color: var(--bg);
    backdrop-filter:blur(20px);
    padding: 1rem;
    border-radius:30px;
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative; 
}


.gcard-inner:before {
	content: '';
	position: absolute;
	z-index: -1;
	left: -8px;
	top: -3px;
	background: url(../images/card_corner_effects_top.png) no-repeat 0 0;
	width: 200px;
	height: 160px;
}
.gcard-inner:after{
    content: '';
    position: absolute;
    z-index: -1;
    right: 0;
    bottom: 0;
    background: url(../images/card_corner_effects.png) no-repeat 0 0;
    width: 200px;
    height: 180px;
}

.gcard:hover{
  border-color:var(--border-strong);
  transform:translateY(-8px);
  /* box-shadow:0 18px 40px -20px rgba(90,60,255,.45); */
}

.fund-title-small {
	font-size: 0.875rem;
	overflow: hidden;
	white-space: nowrap;
	color: var(--white);
    text-overflow: ellipsis;
}

.fund-conttent-left {
	width: 70%;
    overflow: hidden;
}
h6 {
	font-size: 1.15rem;
	color: var(--white);
}

.dashboard-ask-ai-box::after {
	content: '';
	width: 90px;
	height: 90px;
	position: absolute;
	left: 50%;
	bottom: -60px;
	border-radius: 999px;
	z-index: 1;
	transform: translateX(-50%);
	background-color: var(--bg);
	border: 2px solid rgba(189,73,209,0.25);
}




.chart-value-up{
    padding: 2px;
    background: linear-gradient(to right, var(--bg), #0F684A);
    border-radius: 32px;
    position: relative;
    overflow: hidden;
}
.chart-value-up-inner{
    background-color: var(--bg);
    overflow: hidden;
    padding: 6px 16px;
    font-size: 11px;
    font-weight: 600;
    color: #358839;
    font-family: var(--font-family);
    border-radius: 32px;
    display: flex;
}
.gcard h4{
    color: var(--gray100);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 5px;
    letter-spacing: 2px;
}
.samll-text{
    font-size: 0.75rem;
}
.greentext{
    color: var(--success);
}
.chart-value{
    font-size: 0.875rem;
    font-weight: 400;
}
.textgray{
    color: var(--gray100);
}
.card-big {
	top: 90px;
	right: 150px;
}

.card-big p {
	color: var(--gray100);
	font-size: 1rem;
	letter-spacing: -0.5px;
	font-weight: 600;
}

.gcard-last {
	bottom: -135px;
	right: 0;
}
.learnmore-link {
    color: var(--gray100);
    font-size: 0.875rem;
    letter-spacing: 2px;
    text-decoration: none;
    transition: .35s;
}
.learnmore-link span {transition: .35s;}
.learnmore-link:hover span{
    transform: translateX(4px);
}

.gcard h3{
    font-size: 1.5rem;
    font-weight: 700;
}

/* ---------- progress bar ---------- */
.rr-progress{ height:8px; border-radius:50px; background:rgba(255,255,255,.08); overflow:hidden; }
.rr-progress .bar{  height:100%; border-radius:50px; background:linear-gradient(90deg,#00BBFF,#A100FF);
  background-size:200% 100%; animation:gradientShift 4s ease infinite;
}
.gcard-last .text-mute {
	font-size: 11px;
	font-weight: 400;
	letter-spacing: 1px;
}

@keyframes gradientShift{ 0%{background-position:0% 50%;} 50%{background-position:100% 50%;} 100%{background-position:0% 50%;} }

.floaty{ animation:floaty 6s ease-in-out infinite; }
@keyframes floaty{ 0%,100%{transform:translateY(0);} 50%{transform:translateY(-14px);} }



/*---Testimonial section css start here--*/

.testimonial-section{
    position:relative;
    min-height:1024px;
    overflow:hidden;
    padding:120px 0;

}

.testimonial-wrapper{

    position:relative;
    width:100%;
    min-height:1024px;

}

/*=========================================
        CENTER CONTENT
=========================================*/

.center-content{
    position:sticky;
    top:45%;
    transform:translateY(-50%);
    width:100%;
    text-align:center;
    z-index:100;
    pointer-events:none;
}


/*=========================================
        CARD
=========================================*/

.testimonial-card{
    position:absolute;
    width:430px;
    padding:1.5rem;
    border-radius:24px;
    background: linear-gradient(180deg,rgba(255,255,255,.08), rgba(255,255,255,.01)) rgba(18,18,18,.45);
    border:1px solid rgba(255,255,255,.10);
    backdrop-filter:blur(24px);
    -webkit-backdrop-filter:blur(24px);
    box-shadow:inset 0 1px 0 rgba(255,255,255,.08), 0 10px 60px rgba(0,0,0,.45);
    transition:.4s ease;
}

.testimonial-card:hover{
    transform:translateY(-6px);
    box-shadow: 0 20px 80px rgba(0,0,0,.6), 0 0 40px rgba(110,90,255,.15);
}

.quote {
	font-size: 130px;
	color: var(--white-200);
	line-height: 70px;
	margin-bottom: 0rem;
}

.testimonial-card p {
	color: var(--text);
	line-height: 1.5;
	font-size: 0.95rem;
}

.user{
    display:flex;
    align-items:center;
    gap:16px;
    margin-top:30px;
}

.user img{
    width:36px;
    height:36px;
    border-radius:50%;
    object-fit:cover;
}

.user span{
    font-size:0.95rem;
    color: var(--white);
}

/*=========================================
    CARD POSITION
=========================================*/

.card-1{left:30px;top:60px; width: 340px;}
.card-1 p, .card-3 p, .card-5 p, .card-7 p, .card-9 p {
    font-size: 0.75rem; line-height: 1.3;
}
.card-1 .user img, .card-3 .user img, .card-5 .user img,  .card-7 .user img, .card-9 .user img{
    width:24px;
    height:24px;
}
.card-1 .user span, .card-3 .user span, .card-5 .user span, .card-7 .user span, .card-9 .user span{
    font-size:0.85rem;
    color: var(--white);
}

.card-1 .quote, .card-3 .quote, .card-5 .quote, .card-7 .quote , .card-9 .quote{
	font-size: 90px;
	line-height: 40px;
}

.card-2{left:140px; top:200px;}

.card-3{left:590px;top:30px; width: 350px;}

.card-4 {
	right: 120px;
	top: 180px;
}

.card-5{right:20px;top:160px; width: 340px;}

.card-6{left:30px;bottom:40px; }

.card-7{left:550px;bottom:40px; width: 340px;}

.card-8{right:90px;bottom:140px;}

.card-9{right:40px;bottom:120px; width:340px;}

.py-120{
    padding-top: 7rem;
    padding-bottom: 7rem;
}

.testimonial-card.section-title {
	background: none;
	border: none;
	width: 100%;
	justify-content: center;
	display: flex;
	align-items: center;
	top: 40%;
	backdrop-filter: none;
	box-shadow: none;
	z-index: 99;
}
/*--How it work section start here--*/

.how-it-work-section {
	width: 100%;
	 background-color: var(--bg);
	height: 100%;
	display: block;
    position: relative;
}
.how-it-work-section::before{
    content: '';
    position: absolute;
    z-index: 0;   
    background: url(../images/how_it_work_bg.svg) no-repeat center center;
	background-size: cover;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
.how-it-work-section .container{
    position: relative;
    z-index: 1;
}
.section-title{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 5rem;
}
h2{
    font-size: 3.15rem;
    font-weight: 600;
    line-height: normal;
    color: var(--white);
}

.title-tag-box {
	background-color: #19182D;
	border-radius: 32px;
	padding: 9px 24px;
}
.subheading {
	font-size: 1.125rem;
	color: var(--text);
	font-weight: 400;
}

.how-it-box-section {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 40px;
}

.box-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
    gap: 24px;
    max-width: 350px;
    margin: 0 auto;
}
.box-content h5{
    font-size: 1.5rem;
    color: var(--white);
    font-weight: 600;
}
.box-content p{
    font-size: 1rem;
    color: var(--text);
    font-weight: 400;
    line-height: normal;
}

.how-it-work-content {
	background: url(../images/doted_background.svg) no-repeat center 30px;
	width: 100%;
	height: 100%;
	display: block;
    padding-bottom: 5rem;
}

/*--newsletters section start here--*/

.newsletter-section {
	display: flex;
    padding: 90px 0;
	width: 100%;
	flex-direction: column;
	align-items: flex-start;
	gap: 70px;
	background: linear-gradient(311deg, rgba(80, 6, 49, 0.70) -31.49%, rgba(48, 7, 255, 0.70) 113.63%);
}

.common-input-box{
    display: flex;
    padding: 0px 24px;
    align-items: center;
    gap: 10px;
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(255, 255, 255, 0.10);
    font-size: 0.875rem;
    font-family: var(--font-family);
    color: var(--white);
    width: 60%;
    height: 52px;
}
.common-input-box:focus{
    outline: none;
    box-shadow: none;
}

/*--Footer section css start here---*/

.social-media{
    transition:1s;
}
.social-media:hover svg{
    transform: scale(1.5px) ;
     transition:1s;
}
.footer-first-box p{
    color: var(--text);
}
.footer-bottom{
    border-top: 1px solid var(--white-200);
    padding-top: 1rem;
}
.copyright{
    font-size: 0.875rem;
}
.footer-section a{
    font-size: 0.875rem;
    color: var(--text);
    text-decoration: none;
    transition:.5s;
}
.footer-section a:hover{
    transform: translateY(-5px);
    color: var(--white);
}
.footer-links-menu li{
    padding: 5px 0;
    display: flex;
}
.footer-links-menu li a{
    font-size: 1rem;
}
.footer-links-box h4{
    color: var(--white);
    margin-bottom: 1.5rem;
}

/* ---------- modals ---------- */
.modal-content.rr-modal{
    display: flex;
    max-width: 624px;
    padding: 48px 62px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 32px;
    border: 2px solid rgba(0, 4, 251, 0.45);
    background: #000;
    position: relative;
    overflow: hidden;
}
.modal-content.rr-modal::before {
	content: '';
	position: absolute;
	left: -180px;
	top: -30px;
	background: url(../images/modal_box_top.svg) no-repeat 0 0;
	width: 340px;
	height: 110px;
	transform: rotate(-20deg);
}

.modal-content.rr-modal::after {
	content: '';
	position: absolute;
	left: -180px;
	top: -30px;
	background: url(../images/modal_box_bot.svg) no-repeat 0 0;
	width: 340px;
	height: 110px;
	transform: rotate(-20deg);
}

.otp-box{
  width:52px; height:56px; text-align:center; font-size:1.3rem; border-radius:12px;
  background:rgba(255,255,255,.03); border:1px solid var(--border-strong); color:var(--text);
}
.otp-box:focus{ outline:none; border-color:var(--accent); box-shadow:0 0 0 3px var(--accent-soft); }
.lang-choice{
  border:1px solid var(--border-strong); border-radius:14px; padding:1rem; text-align:center; cursor:pointer;
  transition:all .3s var(--ease); color:var(--text-dim); font-weight:600;
}
.lang-choice:hover{ border-color:var(--accent); color:#fff; transform:translateY(-2px); }
.lang-choice.selected{ background:var(--accent-soft); border-color:var(--accent); color:#fff; box-shadow:0 0 20px rgba(124,92,255,.3); }
.phone-input-group{
  border:1px solid var(--border-strong); border-radius:50px; overflow:hidden;
}
.phone-input-group input{
  background:transparent; border:none; color:var(--text); padding:.85rem 1rem; width:100%;
}
.phone-input-group input:focus{ outline:none; }
.phone-input-group .prefix{ padding:.85rem 1rem; color:var(--text-dim); }

.modal-backdrop{
    background-color: var(--bg)!important;
    opacity: 0.95!important;
    backdrop-filter: calc(22px);
}

.btn-close {
	position: absolute;
	right: 50px;
	top: 50px;
}
.rr-modal h3{
    color: var(--white);
    font-weight: 700;
}


/*--AI chat sign up section---*/

.chat-question:not([data-step="0"]){ display:none; }
 .opt-dot{ 
    width:18px; 
    height:18px; 
    border-radius:50%; 
    border:1px solid var(--text);
    display:inline-block; 
    flex-shrink:0; 
    position:relative; 
}

.radio-option.checked .opt-dot{ 
    border-color:var(--white); 
}
.radio-option.checked .opt-dot::after{ 
    content:""; 
    position:absolute; 
    inset:3px; 
    border-radius:50%; 
    background:var(--white); 
}

  /* ---------- chat bubble (signup process) ---------- */
.chat-bubble{ max-width:640px; }
.chat-avatar{
  width:72px; height:72px; border-radius:50%;
  background:radial-gradient(circle at 35% 30%, #2a1f57, #06050f 70%);
  border:1px solid var(--border-strong); display:flex; align-items:center; justify-content:center; flex-shrink:0;
  position:relative;
}
.chat-avatar::before{
  content:""; position:absolute; inset:-4px; border-radius:50%; border:1px solid var(--accent); opacity:.5;
  animation:spin 8s linear infinite;
}
.bubble-bot{ 
    border-radius: 0 24px 24px 24px;
    border: 1.5px solid rgba(47, 10, 255, 0.80);
    background: var(--bg);
    box-shadow: 0 -2px 4px 0 rgba(0, 0, 0, 0.20) inset, 0 2px 4px 0 rgba(255, 255, 255, 0.40) inset; border-radius:4px 18px 18px 18px; padding:1.2rem 1.4rem; 
}
.bubble-user{ 
    border-radius: 32px 32px 0px 32px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    background: var(--bg);
    box-shadow: 0 -2px 4px 0 rgba(0, 0, 0, 0.20) inset, 0 2px 4px 0 rgba(255, 255, 255, 0.40) inset;
    padding:.85rem 1.2rem; 
}
.radio-option{
  border:0px solid var(--border); border-radius:6px; padding:.75rem 1rem; margin-bottom:.6rem; cursor:pointer;
  display:flex; align-items:center; gap:.8rem; transition:all .25s var(--ease);
}
.radio-option:hover{ background:var(--white-200); }
.radio-option.checked{ background:var(--white-200);}
.chat-bar-dashboard {
	margin-bottom: 1.5rem;
	position: relative;
	box-shadow: 0px 0px 10px 3px rgba(255, 255, 255, 0.20);
	overflow: hidden;
	border-radius: 999px;
    padding: 2px;
}
.chat-bar-dashboard:before{
    content: '';
    position: absolute;
    transform-origin: center;
    will-change: transform;
    z-index: 0;
    animation: spin 6s linear infinite;
    background: conic-gradient(from 0deg,rgba(24, 66, 252, 0.7) 0deg,rgba(24, 66, 252, 0.7) 62deg,rgba(24, 66, 252, 0.7) 128deg,rgba(80, 6, 49, 0.80) 190deg,rgba(80, 6, 49, 0.80) 252deg,rgba(80, 6, 49, 0.80) 320deg,rgba(24, 66, 252, 0.7) 1turn);
    inset: -1000%;
    box-shadow: 0 2px 4px 0 rgba(255, 255, 255, 0.40) inset;
}

.chat-bar-dashboard.signup-page-full::before{
    inset: -1000%;
}
.chat-bar-dashboard.signup-page-full {
	margin-bottom: 0;
	padding: 3px;
}
.chat-input-bar{
    border-radius: 999px;
    background: var(--darkgray);
    z-index: 2;
    position: relative;
   /* box-shadow: 0px 0px 5px 0px rgba(255, 255, 255, 0.10) inset; */
  backdrop-filter: blur
}

/* Target only text inputs */
.chat-input-bar input[type="text"]::placeholder {
  color: var(--white-400);
}

/* Target a specific class */
.search-box::placeholder {
  color: blue;
}

.chat-input-bar input{ background:transparent; border:none; color:var(--white);}
.chat-input-bar input:focus{ outline:none; background: transparent; box-shadow: none; color:var(--white);}
.send-btn{
    width:52px; 
    height:52px;
    min-width:52px; 
    min-height:52px; 
    border-radius:50%; 
    border:none;
    border-radius: 70px;
    background: var(--Main-Gradient, linear-gradient(313deg, #500631 20.55%, #3007FF 86.25%));
    display:flex; 
    align-items:center; 
    justify-content:center; 
    transition:transform .25s var(--ease);
    color: var(--white);
}
.send-btn:hover{ transform:scale(1.08) rotate(8deg); }

.bottom-fixed-bar{
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: var(--bg);
}
.chat-container{
    padding-bottom: 6rem;
}



/* ---------- profile ---------- */
.avatar-upload{
    width:278px; 
    height:278px;   
    display:flex; 
    flex-direction:column; 
    align-items:center; 
    justify-content:center; 
    gap:.6rem;
    color:var(--text); 
    cursor:pointer; 
    transition:all .3s var(--ease);
    background:url(../images/thumbnail_bg.svg) no-repeat 0 0;
    background-size: 100%;
}
.avatar-upload span{
    color: var(--text);
    font-size: 0.875rem;
}
.thumb-icon-big svg{
    color: var(--white-100);
}
.avatar-upload svg{width: 32px; height: 32px;}

.rr-label{ color:var(--text); font-size:1rem; margin-bottom:.5rem; display:block; }

.q-answer{ color:var(--white); font-size: 1.25rem; font-weight: 600;}

.profile-q {
	border-bottom: 1px solid var(--white-200);
	margin-bottom: 1rem;
	padding-bottom: 1rem;
}
.profile-q:last-child{
    border-bottom: 0;
}
.q-label{
    font-size: 0.875rem;
    color: var(--white);
    margin-bottom: 0.75rem;
}
/* ---------- transaction slide panel ---------- */
.detail-panel{
  height:100vh; 
  width:100%; 
  z-index:1050; 
  overflow-y:auto;
}

.detail-block{ 
    border-radius:14px; 
    padding:1.2rem; 
    margin-bottom:1.1rem;
    border-radius: 16px;
    border: 1px solid var(--white-100);
    background: var(--white-100);
    box-shadow: 0 0 5px 0 var(--white-200);
}
.detail-row{ display:flex; justify-content:space-between; padding:.5rem 0; font-size:.92rem; color:var(--text-dim); }
.detail-row b, .detail-row strong{ color:var(--text); font-weight:600; }
.transaction-header{
    border-bottom: 1px solid var(--white-100);
}
.transaction-header h5{
    color: var(--white);
}
.transaction-header svg{
    stroke-color: var(--white);
    color: var(--white);
}
.offcanvas {
    background: var(--bg) !important;;
    border-left: 1px solid var(--white-200) !important;
}
/* ---------- scrollbar ---------- */
::-webkit-scrollbar{ width:8px; height:8px; }
::-webkit-scrollbar-thumb{ background:rgba(124,92,255,.35); border-radius:10px; }
::-webkit-scrollbar-track{ background:transparent; }



/* ---------- sidebar (app shell) ---------- */
.rr-sidebar{
  width:80px; 
  min-height:100vh; 
  position:fixed; 
  top:0;
  display:flex; 
  flex-direction:column; 
  align-items:center;
  justify-content: center;
  padding:1.6rem 0; 
  gap: 2rem;
  border-right:1px solid var(--white-100);
  z-index:30;
  background-color: var(--bg);
}
.rr-sidebar .side-link{
  width:48px; 
  height:48px; 
  border-radius:6px;
  display:flex; 
  align-items:center; 
  justify-content:center;
  color:var(--text); 
  margin:.15rem 0;
  border:1px solid transparent;
  transition:all .3s var(--ease);
}
.rr-sidebar .side-link:hover{
    color:var(--white); 
    border: 0.5px solid var(--white);
    background: linear-gradient(0deg, rgba(29, 39, 74, 0.20) 0%, rgba(13, 19, 48, 0.20) 100%);
  transform:translateX(2px);
}
.rr-sidebar .side-link.active{
    color:var(--white); 
    border: 0.5px solid var(--white);
    background: linear-gradient(0deg, rgba(29, 39, 74, 0.20) 0%, rgba(13, 19, 48, 0.20) 100%);
    box-shadow:0 0 20px rgba(124,92,255,.35);
}
.rr-sidebar i{ width:20px; height:20px; }

.rr-app-main {
	padding: 1.8rem 2.2rem 3rem 7rem;
	display: block;
}
.theme-toggle{
    width:70px; 
    height:40px; 
    border-radius:50px; 
    display:flex; 
    align-items:center; 
    padding:3px; 
    cursor:pointer;
    border: 1px solid var(--Main-Gradient, #500631);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 3px 0 rgba(255, 255, 255, 0.20), 0 2px 10px 0 rgba(0, 0, 0, 0.20) inset;
}
.theme-toggle .knob{
    width:28px; 
    height:28px; 
    border-radius:50%;
    background:transparent;
    display:flex; 
    align-items:center; 
    justify-content:center; 
    color:var(--white); 
    font-size:0.5rem;
    border:1px solid var(--text);
    transition:transform .3s var(--ease);
}
.theme-toggle .knob svg{
    width: 16px;
    height: 16px;
}
.theme-toggle.is-light{
    background: rgba(255, 255, 255, 0.2);
}
.theme-toggle .light-mode, .theme-toggle.is-light .dark-mode{
    display: none;
}
.theme-toggle.is-light .light-mode{
    display: flex;
}

/* ---------- page heading ---------- */
.page-title{ font-family:var(--font-family); font-weight:700; font-size:1.9rem; margin-bottom:.15rem; color: var(--white); }
.page-sub{ color:var(--text); font-size:.92rem; }


/* ---------- chart line (svg) ---------- */
.range-pills button{
  background:transparent; border:none; color:var(--text); font-size:.8rem; padding:.35rem .7rem; border-radius:8px;
  transition:all .25s var(--ease);
}
.range-pills button.active, .range-pills button:hover{ background:rgba(255,255,255,.08); color:var(--white); }


.holding-list-bg{
    border-radius: 16px;
    /* border: 1px solid var(--white-200); */
    box-shadow: 0 0 5px 0 rgba(255, 255, 255, 0.25);
    padding: 16px 15px 17px 15px;
    position: relative;
    background: conic-gradient(from -180deg,rgba(255,255,255, 0.45) 0deg,rgba(255,255,255, 0.30) 60deg, rgba(255,255,255, 0.60) 90deg,rgba(255,255,255, 0.90) 180deg,rgba(255,255,255, 0.90) 245deg,rgba(255,255,255, 0.60) 320deg,rgba(255,255,255, 0.40) 1turn);
}
.holding-list-bg::before {
	content: '';
	z-index: 0;
	position: absolute;
	background-color: rgba(0, 0, 0, 0.8)    ;
	width: 99.5%;
	height: 97%;
	left: 1px;
	top: 1px;
	border-radius: 0.5rem;
    backdrop-filter: blur(40px);
}
.holding-list-bg .fund-conttent-left, .holding-list-bg .text-end {
	z-index: 1;
}
.back-icon svg{
    stroke: var(--white);
}
/* ---------- holdings/table rows ---------- */
.rr-table thead th{
  color:var(--text-mute); font-weight:600; font-size:.82rem; text-transform:none;
  border-bottom:1px solid rgba(255,255,255,.08); padding:1rem;
}
.rr-table tbody td{ padding:1.1rem 1rem; border-bottom:1px solid rgba(255,255,255,.05); vertical-align:middle; }
.rr-table tbody tr{ transition:background .25s var(--ease); cursor:pointer; }
.rr-table tbody tr:hover{ background:rgba(124,92,255,.06); }
.fund-icon{
  width:38px; height:38px; border-radius:50%; background:var(--white); display:flex; align-items:center; justify-content:center;
  font-weight:800; color:var(--bg); font-size:.65rem; flex-shrink:0;
}
.status-progress{ color:#f2c94c; background:rgba(242,201,76,.12); }
.balance-row{
    font-size: 2.5rem;
    color: var(--white);
    font-weight: 600;
    font-family: var(--font-family);
}
.chat-container-box {
	height: 260px;
	overflow-y: auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.chat-container-box h6 {
	font-size: 1.15rem;
	color: var(--text);
}
.eye-toggle {
	cursor: pointer;
}
.eye-toggle svg{
    width: 24px;
    height:24px;
}

/* ---------- orb / floating AI button ---------- */
.orb-btn{
  width:76px; 
  height:76px; 
  display:flex; 
  align-items:center; 
  justify-content:center;
  position:relative; 
  cursor:pointer;
  /* background: url(../images/logo_chat-bg.svg) no-repeat 0 0;
  background-size: 100%; */
  /* transition:transform .3s var(--ease), box-shadow .3s var(--ease); */
  left: 50.15%;
  bottom: 10px;
  z-index: 9;
  clip-path: inset(0 round 999px);
  border-radius: 999px;
  padding: 2px;
  filter: drop-shadow(0 1px 20px rgba(255, 255, 255, 0.30)) drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25));
  box-shadow: 0 0px 10px rgba(255, 255, 255, 0.4);
}
.orb-btn::before{
  content:""; 
  animation:spin 5s linear infinite;
  background: conic-gradient(from 0deg,rgba(24, 66, 252, 0.7) 0deg,rgba(24, 66, 252, 0.7) 62deg,rgba(24, 66, 252, 0.7) 128deg,rgba(80, 6, 49, 0.6) 190deg,rgba(80, 6, 49, 0.6) 252deg,rgba(80, 6, 49, 0.6) 320deg,rgba(24, 66, 252, 0.7) 1turn);
  inset: -250%;
  position: absolute;
  transform-origin: center;
  will-change: transform;
  z-index: 0;
}
.logo-bottom-img {
	background-color: var(--bg500);
	width: 66px;
	height: 66px;
	display: flex;
	align-items: center;
	justify-content: center;
    border-radius: 999px;
    z-index: 1;
    transition:0.5s;
}
/* .orb-btn::after{ inset:-12px; animation-duration:10s; animation-direction:reverse; opacity:.6; }
.orb-btn:hover{ transform:scale(1.08); box-shadow:0 0 40px var(--white-100); } */

@keyframes spin{ to{ transform:rotate(360deg); } }

.asset-icon a{
 display:flex; align-items:center; justify-content:center;
 transition:transform .3s var(--ease), box-shadow .3s var(--ease);
}
.asset-icon a:hover{
    transform:scale(1.08);
}

/*--Table css--*/
.table-responsive .table th{
    background: var(--white-400);
    border:0px!important;
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    font-family: var(--font-family);
    padding: 0.75rem;
}
.table td{
    border-bottom:1px solid var(--white-100)!important;
    background-color: transparent;
    color: var(--white);
    font-size: 1rem;
}
.table tr:nth-child(even) td{
    background-color: var(--white-100);
}
.inprogress{
    color: var(--text);
}

.detail-block .invested-text{
    color: var(--text);
    font-size: 0.75rem;
    font-family: var(--font-family);
    margin-bottom: 5px;
}
.detail-block h4{
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
}
.detail-left.invested-text{
    font-size: 0.875rem;
}
.detail-right{
    color: var(--white);
    font-size: 0.875rem;
}
.detail-block h6{
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}
.detail-block.gcard{
    padding: 0;
}
.detail-block.gcard .gcard-inner {
	padding: 1.2rem;
	border-radius: 14px;
}
.view-details{
    color: var(--white);
}

.bank-thumb{
    width: 52px;
    height: 52px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--white);
    overflow: hidden;
}

/*--networth section css start --*/
.bar-col{
    flex:1; 
    min-width:12px; 
    border-radius:6px 6px 0 0;
    background:linear-gradient(180deg,#7fb8ff,#3d7dff);
    position:relative; 
    display:flex; 
    align-items:flex-end; 
    justify-content:center;
    color:transparent; 
    font-size:.7rem; 
    transition:filter .3s;
    color: var(--text);
  }
  .bar-col:hover{ filter:brightness(1.3); }
  .bar-col::after{
    content:attr(title); 
    position:absolute; 
    bottom:-30px; 
    font-size:.7rem; 
    color:var(--text);
  }
  .assets-overview{
    margin-top: 1rem;
  }
  .assets-overview h5{
    color: var(--white);
    font-weight: 600;
    font-family: 1.25rem;
  }
  .inner-page-title{
    color: var(--text);
    font-size: 1.15rem;
  }
.asset-icon svg {
    color: var(--white);
    width: 32px;
    height: 32px;
    stroke-width: 1.8;
}
.arrow-light svg{
    stroke: var(--white);
}
.input-form-main{
    background: conic-gradient(from 0deg,rgba(0,4,251, 0.45) 0deg,rgba(0,4,251, 0.45) 50deg, rgba(189,73,209,0.25) 128deg,rgba(189,73,209,0.25) 190deg,rgba(189,73,209,0.25) 252deg,rgba(0,4,251, 0.45) 320deg,rgba(0,4,251, 0.45) 1turn);
    border-radius: 50px;
    padding: 2px;
    position: relative;
    overflow: hidden;
}
.input-form-main::after {
	content: '';
	background: linear-gradient(90deg, rgba(255,255,255,.30), transparent);
    filter: blur(5px);
    width: 80px;
    height: 3px;
	display: flex;
	position: absolute;
	right: -5px;
	bottom: -1px;
	/* box-shadow: 0 1px 2px 1px var(--white); */
}

.input-form-main::before {
	content: '';
	background: linear-gradient(90deg, rgba(255,255,255,.30), transparent);
    filter: blur(2px);
    width: 80px;
    height: 2px;
	display: flex;
	position: absolute;
	left: 0;
	top: 0;
	/* box-shadow: 0 1px 2px 1px var(--white); */
}


.basic-details-form .common-input-box{
    background: #0D0D0F;
    backdrop-filter: blur(10px);
    color: var(--text);
    border-radius: 50px;
    padding: .75rem 1.2rem;
    width: 100%;
}
.form-select{
    background-color: var(--bg);
    border-radius: 6px;
    border:1px solid var(--glass-glow-purple);
    color: var(--text);
    padding: 8px 32px 8px 12px;
    font-size: 0.75rem;
}
.form-select:focus{
    outline: none;
    box-shadow: none;
}

/*----moderate invester profile page css start here---*/

.mi_profile-section{
  display: flex;
  flex-direction: column;
  gap: 20px;

}

.mi_profile-detials {
	display: flex;
	flex-direction: row;
	gap: 20px;
}

.mi_profile_thumb {
	width: 80px;
	height: 80px;
	min-width: 80px;
	min-height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: var(--text);
	border-radius: 100px;
	overflow: hidden;
	color: var(--bg);
	font-size: 2rem;
	font-weight: 700;
	letter-spacing: -1.5px;
}

.mi-profile-content h5 {
	font-size: 1.25rem;
	color: var(--white);
	font-weight: 600;
}

.inverter-badge {
	width: auto;
	display: inline-flex;
	background: var(--white-200);
	border: 1px solid var(--white-400);
	padding: 0.2rem 1rem;
	border-radius: 60px;
	color: var(--white);
	backdrop-filter: blur(10px);
    font-size: 0.875rem;
    box-shadow: 0 1px 3px 0 rgba(255, 255, 255, 0.15) inset;
}

.mi-profile-content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 10px;
}

.mi-profile-content p {
	font-size: 0.875rem;
	color: var(--text);
}

.conter-equity {
	padding: 10px;
	text-align: center;
}

.equity-counter {
	font-size: 1.5rem;
	color: var(--white);
	font-weight: 700;
}
.gcard-bluebox{
    background-color: #1842FC;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 235px;
    border-radius: 32px;
}

.gcard-bluebox h5{
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 600;
}
.gcard-bluebox p{
    text-align: center;
    color: var(--white);
    font-size: 1rem;
}

.recommendation-list-box {
	background-color: var(--white-100);
	border: 1px solid var(--white-200);
	padding: 16px 24px;
	backdrop-filter: blur(20px);
    margin-bottom: 1rem;
    box-shadow: 0 0 5px 0 rgba(255, 255, 255, 0.25) inset;
}

.recommendation-list-box .fund-icon {
	width: 62px;
	height: 62px;
	font-size: 1rem;
    padding: 5px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.fund-title {
	font-size: 1.25rem;
	color: var(--white);
	margin-bottom: 12px;
    white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.fund-subtitle-points {
	font-size: 0.875rem;
	color: var(--text);
	display: flex;
	gap: 5px;
    margin-bottom: 1.3rem;
}
.mutal-fund-content p {
	color: var(--white);
	margin-bottom: 10px;
}

.text-purple {
	color: #6155F5;
}

.cage-text{
    font-size: 1rem;
    color: var(--text);
    font-weight: 500;
}
.rating-reviews {
	display: flex;
	align-items: center;
	gap: 5px;
    margin-top: 5px;
}

.start-rating svg {
	width: 16px;
	height: 16px;
	stroke: #FF8D28;
}

.asset-icon{
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.10) 0%, rgba(242, 242, 242, 0.10) 100%);;
    border:1px solid var(--white-400);
    padding: 5px;
    width: 62px;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition:0.5s;
}
.asset-icon:hover{
    transform: translateY(-5px);
    box-shadow: 0 2px 5px 0 var(--white-200);
}


.popular_funds-section {
	display: flex;
	flex-direction: column;
	gap: 30px;
}
.popular_funds-section h2 {
	font-size: 1.5rem;
}

.mutal-fund-content {
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.mutal-fund-content {
	display: flex;
	flex-direction: column;
	gap: 24px;
}
.mutal-fund-content .fund-icon{
	width: 73px;
	height: 73px;
	border-radius: 50%;
	background: var(--white);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
    padding: 3px;
}

/* Custom Checkbox */
.custom-checkbox {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    font-size: 1rem;
    font-family: var(--font-family);
    user-select: none;
    gap: 10px;
    color: var(--text);
}

/* Hide Default Checkbox */
.custom-checkbox input {
    display: none;
}

/* Checkbox Box */
.custom-checkbox .checkmark {
    width: 20px;
    height: 20px;
    border: 1px solid var(--text);
    border-radius: 4px;
    background: var(--bg500);
    position: relative;
    transition: all .3s ease;
}

/* Checked State */
.custom-checkbox input:checked + .checkmark {
    background: var(--bg);
    border-color: var(--white);
}

/* Check Icon */
.custom-checkbox .checkmark::after {
    content: "";
    position: absolute;
    left: 7px;
    top: 4px;
    width: 5px;
    height: 8px;
    border: solid var(--text);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg) scale(0);
    transition: transform .2s ease;
}

/* Show Check Icon */
.custom-checkbox input:checked + .checkmark::after {
    transform: rotate(45deg) scale(1);
}

/* Hover */
.custom-checkbox:hover .checkmark {
    border-color: var(--white);
}

/* Focus */
.explore_funds-section h5{
    color: var(--white);
    font-weight: 600;
}
.filter-section {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 30px;
	margin-bottom: 20px;
}


.thumbnail-upload input{
    display:none;
}
.thumbnail-upload {
	width: 250px;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1px;
    background:conic-gradient(from 0deg,rgba(0,4,251, 0.45) 0deg,rgba(0,4,251, 0.45) 50deg, rgba(189,73,209,0.25) 128deg,rgba(189,73,209,0.25) 190deg,rgba(189,73,209,0.25) 252deg,rgba(0,4,251, 0.45) 320deg,rgba(0,4,251, 0.45) 1turn);
    border-radius: 16px;
    margin-top: 1rem;
}


.upload-box{
    position: relative;
    width:250px;
    height:250px;
    background:var(--bg);
    backdrop-filter: blur(10px);
    border-radius:1rem;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    cursor:pointer;
    transition:.3s;
    box-shadow: 0 1px 10px 3px var(--white-400);
}

.camera-circle {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 0.5rem;
	position: absolute;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.camera-icon{
    display:flex;
    align-items:center;
    justify-content:center;
}
.camera-icon svg{
    height: 42px;
    width: 42px;
}

.upload-btn{
    color:var(--text);
    font-size:1.125rem;
    font-weight:500;
    transition:.3s;
}

.upload-box:hover .upload-btn{
    color:var(--white);
}




/*---Light Mode css --*/
body.light-theme{
    background-color: #F4F6F8;
}
body.light-theme .rr-sidebar{
    background-color: var(--bg);
}

body.light-theme .rr-sidebar .side-link.active {
	color: var(--white);
	border: 0.5px solid var(--white-400);
	background: linear-gradient(0deg, rgba(255, 255, 255, 0.20) 0%, rgba(242, 242, 242, 0.20) 100%);
	box-shadow: 0 0 20px var(--white-100);
}
body.light-theme .rr-sidebar .side-link:hover {
	color: var(--white);
	border: 0.5px solid var(--bg);
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.20) 0%, rgba(242, 242, 242, 0.20) 100%);
}
body.light-theme .gcard-inner {
	background: linear-gradient(180deg, #E2E3FF 0%, #F2F4F8 100%);
	box-shadow: 0 3px 10px 0px rgba(0, 0, 0, 0.2);
}
body.light-theme .gcard:hover{
  border-color:var(--border-strong);
  transform:translateY(-5px);
  /* box-shadow:0 18px 40px -20px var(--white-200); */
}
body.light-theme .gcard-inner::after {
	background: url(../images/light_card_corner_effects_top.png) no-repeat 0 0;
    content: normal;
}

body.light-theme .gcard-inner::before {
	background: url(../images/light_card_corner_effects_top.png) no-repeat 0 0;
    left: -200px;
    top: -200px;
    width: 320px;
    height: 320px;
    content: normal;
}
.mutal-fund-content .fund-icon img {
	width: 100%;
}

body.light-theme .range-pills button.active, 
body.light-theme .range-pills button:hover {
	background: rgba(0, 0, 0,.08);
}
body.light-theme .holding-list-bg::before{
    background:rgba(255, 255, 255, 0.2);
}
body.light-theme .chat-input-bar {
	/* border: 2px solid rgba(255, 255, 255, 0.45); */
	background: var(--bg);
	box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.40) inset;
   
}
/* body.light-theme .chat-bar-dashboard::before{
    background: conic-gradient(from 0deg,rgba(255, 255, 255, 0.7) 0deg,rgba(255, 255, 255, 0.7) 62deg,rgba(2255, 255, 255, 0.7) 128deg,rgba(255, 255, 255, 0.6) 190deg,rgba(255, 255, 255, 0.6) 252deg,rgba(255, 255, 255, 0.6) 320deg,rgba(255, 255, 255, 0.7) 1turn);
} */
body.light-theme .rr-progress {
	background: rgba(0,0,0,.08);
}

body.light-theme .gcard .text-white{
    color: var(--white)!important;
}
body.light-theme .glass-btn{
    background: var(--white-100);
    box-shadow: inset 0 1px 0 rgba(0, 0, 0,.10), inset 0 -12px 20px rgba(0,0,0,.05), inset 0 0 40px rgba(255,255,255,.02), 0 10px 30px rgba(0,0,0,.10), 0 18px 60px rgba(0,0,0,.15);
}

body.light-theme .gcard-bluebox h5, body.light-theme .gcard-bluebox p{
    color: var(--bg);
}

body.light-theme .recommendation-list-box{
    background-color: var(--bg);
    border-color: #DFE7F4;
    border-radius: 24px;
}
body.light-theme .asset-icon{
    background-color: var(--bg);
}

/* Target only text inputs */
body.light-theme .chat-input-bar input[type="text"]::placeholder {
  color: var(--white);
}

body.light-theme h6, body.light-theme .gcard-inner h5{
    color: #7943F8;
}
body.light-theme .chat-container-box h6{
    color: var(--white);
}
body.light-theme .gcard{
    overflow: visible;
}
body.light-theme .basic-details-form .common-input-box{
    background:var(--bg);
}

body.light-theme .send-btn svg{
    stroke: var(--bg);
}
body.light-theme .bottom-fixed-bar{
    box-shadow: 0 -3px 10px 0 var(--white-100);
}