
:root {
  --primary-purple: #6f42c1;
  --primary-orange: #fd7e14;
  --text-dark: #0f172a;
  --text-muted: #6b7280;
  --border-soft: #e5e7eb;
  --bg-soft: #faf7ff;
  --success-green: #22c55e;
  --badge-red: #ef4444;
  --gold: #facc15;
  --purple: #7c3aed;

  --size: 48px;
  --thickness: 4px;
  --progress: 0deg;
}
/* GLOBAL */
body {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
		"Helvetica Neue", Arial, sans-serif !important;
	color: #0f172a;
}

/* APP LAYOUT */
.app-wrapper {
	min-height: 100vh;
}

/* SIDEBAR */
.sidebar {
	width: 210px;
	transition: width 0.3s ease;
	display: flex;
	flex-direction: column;
}

/* SIDEBAR HEADER */
.sidebar-header {
	height: 64px;
}

.sidebar-logo {
	width: 120px;
	transition: opacity 0.3s ease, width 0.3s ease;
}
/* ===============================
   SIDEBAR COLLAPSED FIX
================================ */

/* ===============================
   COLLAPSED SIDEBAR – HOVER SUBMENU (WORKING)
================================ */

/* allow submenu to overflow sidebar */
body.sidebar-collapsed .sidebar {
	overflow: visible !important;
}

/* parent must be hoverable */
body.sidebar-collapsed .has-submenu {
	position: relative;
}

/* hide label + arrow only */
body.sidebar-collapsed .has-submenu>.nav-link span {
	display: none !important;
}
.prac-floating-card {
    position: absolute;
    top: 111px;
    left: 210px;
    width: 300px;
    background: #e9f7f6;
    border-radius: 12px;
    border: 1px solid #d6ccff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    padding: 12px;
    z-index: 9999;
}

/*  Outer border arrow */
.prac-floating-card::before {
    content: "";
    position: absolute;
    top: 20px;
    left: -20px;
    border-width: 10px;
    border-style: solid;
    border-color: transparent #d6ccff transparent transparent;
}

/*  Inner fill arrow */
.prac-floating-card::after {
    content: "";
    position: absolute;
    top: 20px;
    left: -19px;
    border-width: 10px;
    border-style: solid;
    border-color: transparent #e9f7f6 transparent transparent;
}

.prac-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    margin-bottom: 6px;
}

.prac-badge {
    background: rgba(16, 185, 129, 0.2);;
    color: #047857;
    font-size: 11px;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 6px;
}

.prac-close-btn {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    line-height: 1;
    position: relative;
    top: -0.8rem;
    left: 0.8rem;
}

.prac-close-btn:hover {
    color: red;
}

.prac-card-body {
    font-size: 0.875rem;
    color: #22222ad9;
}
@keyframes floatSide {
    0%   { transform: translateX(0); }
    50%  { transform: translateX(-7px); }
    100% { transform: translateX(0); }
}

.prac-floating-card {
    animation: floatSide 3s ease-in-out infinite;
}

/* floating submenu */
body.sidebar-collapsed .has-submenu .submenu {
	display: block; /*  REQUIRED */
	position: absolute;
	top: 0;
	left: 80px; /* collapsed sidebar width */
	min-width: 220px;
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 12px 30px rgba(15, 23, 42, 0.15);
	opacity: 0;
	visibility: hidden;
	transform: translateX(8px);
	transition: opacity .2s ease, transform .2s ease;
	z-index: 9999;
	pointer-events: none; /* prevents flicker */
}

/* show on hover */
body.sidebar-collapsed .has-submenu:hover .submenu {
	opacity: 1;
	visibility: visible;
	transform: translateX(0);
	pointer-events: auto;
}

/* Hide text + arrow */
body.sidebar-collapsed .has-submenu>.nav-link span {
	display: none !important;
}

/* ===============================
   COLLAPSED SIDEBAR – HOVER SUBMENU
================================ */
body.sidebar-collapsed .sidebar {
	overflow: visible;
}

body.sidebar-collapsed .has-submenu {
	position: relative;
}

/* hide text + arrow only */
body.sidebar-collapsed .has-submenu>.nav-link span {
	display: none !important;
}

/* floating submenu */
body.sidebar-collapsed .has-submenu .submenu {
	display: block;
	position: absolute;
	top: 0;
	left: 80px; /* collapsed sidebar width */
	min-width: 220px;
	opacity: 0;
	visibility: hidden;
	transform: translateX(8px);
	transition: all 0.25s ease;
	z-index: 9999;
}

/* show on hover */
body.sidebar-collapsed .has-submenu:hover .submenu {
	opacity: 1;
	visibility: visible;
	transform: translateX(0);
}

/* NAV LINKS */
.sidebar .nav-link, .sidebar .nav-link .nav-link {
	display: flex;
	align-items: center;
	gap: 12px;
	color: #797986;
	font-weight: 500;
}

.sidebar .nav-link:hover {
	background: #f7f7f8;
	color: #333;
	border-radius: 0.375rem !important;
}

.sidebar .nav-link i {
	width: auto;
	text-align: center;
	color: #797986;
	font-size: larger;
}

.sidebar .nav-link.active {
	background-color: #f3e8ff;
	color: var(--primary-purple);
	font-weight: 600;
	border-radius: 0.375rem !important;
}

/* ACTIVE ICON COLOR */
.sidebar .nav-link.active i {
	color: var(--primary-purple);
}
/* COLLAPSED STATE */
.sidebar-collapsed .sidebar {
	width: 80px !important;
}

.sidebar-collapsed .sidebar-logo {
	opacity: 0;
	width: 0;
}

.sidebar-collapsed .sidebar .nav-link span {
	display: none;
}

.btn-dark-blue {
	background-color: #202e5b;
	color: white !important;
}

.btn-dark-blue:hover {
	background-color: #1a2548 !important;
	border-color: #1a2548;
	color: #fff !important;
}

#mainNav {
	background: transparent;
	transition: all 0.3s ease;
	backdrop-filter: none;
}

#mainNav.scrolled {
	background: rgba(255, 255, 255, 0.7); /* white translucent */
	backdrop-filter: blur(10px); /* glassy blur effect */
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Registration page */
header, .subNavBg {
	display: none !important;
}

.banner {
	height: 85px;
}

.actionMessage li {
	margin-left: 30px;
}

.actionMessage li:first-child {
	display: none;
}

input.otpBtn {
	color: #ee652b;
	border: 1px solid #ee652b;
	background: transparent;
	font-weight: 400;
	transition: all 0.15s ease;
	height: 3rem;
}

/* Hover state */
input.otpBtn:hover {
	background-color: #ee652b;
	color: #ffffff;
	font-weight: 500;
}

ul.actionMessage br {
	display: none;
}

.login-container {
	padding-top: 20px !important;
}

#txtCaptcha {
	background-image: url(images/captcha-gradient.png);
	text-align: center;
	border: none;
	font-family: 'Roboto Medium';
	height: 50px;
	line-height: 50px;
	float: left;
	width: 200px;
	font-size: 37px;
	color: #333;
}

.header, .footer {
	display: none;
}

.error-massage2-text {
	padding: 0 3px;
}

.error-massage2-text ul li {
	font-size: 11.5px !important;
}

.loginDetails {
	margin-bottom: 0px !important;
}

.header {
	display: none;
}

.form-size-update {
	font-size: 0.85rem !important;
	box-shadow: none;
	border-radius: 12px;
	height: 3rem;
}

.select2-container--default .select2-selection--single .select2-selection__arrow
	{
	height: 39px;
	right: 10px;
}

#checkboxLabel {
	line-height: 1.625;
	font-size: 0.875rem;
	background-color: #fff !important;
}

.loginBg .container .loginBox .rightDiv .btn-xs {
	padding: 0.5rem 1rem !important;
	color: #ee652b;
	height: 2.5rem;
	border-radius: 12px;
}

.red-msg {
	color: red !important;
}

.blue-blur-msg {
	color: #3b327e !important;
	filter: blur(0.3px) !important;
}

.hero-banner {
	background: url("../images/RegistrationBg.jpg") center/cover no-repeat;
}

.loginBg .registrationBox {
	box-shadow: none;
}

.form-control:focus, .form-group .form-control:focus {
	border: 1px solid #E77125 !important; /* reuse same border */
	box-shadow: none !important; /* removes bootstrap ring */
	outline: 0 !important; /* removes browser outline */
}

.form-control:hover {
	border-color: #cccccc !important;
	box-shadow: none !important;
}

.indexBackground .control-label, .form-group .control-label,
	.contenttable.form-group td:first-child {
	font-size: 1rem !important;
	color: #142152 !important;
	font-weight: 600 !important;
}

.form-control, .form-group .form-control {
	height: 2.5rem;
	color: #8d96ba !important;
	padding: 0.5rem 0.75rem;
	border-radius: 12px !important;
	font-size: 0.875rem;
}

.form-check-input[type=checkbox] {
	border-radius: 2.25em;
}

.form-check-input:checked {
	background-color: #202e5b;
	border-color: #202e5b;
}

a:-webkit-any-link {
	color: #202e5b;
	text-decoration: none !important;
}

.form-label {
	color: #20265f;
	font-size: 0.875rem;
	font-weight: 500;
}

.select2-container--default .select2-selection--single {
	background-color: #fff;
	border: 1px solid #ccc;
	border-radius: 12px;
	height: 2.5rem;
	padding: 0.5rem 0.75rem;
	font-size: 0.875rem;
}

.btn-sub {
	border: 2px solid #ee652b !important;
	background: #ee652b !important;
	font-size: 1rem;
	font-weight: 600;
	color: #fff !important;
	padding: 0.5rem 1.7rem !important;
	border-radius: 12px;
	/* height: 2.5rem; */
}

.loginBg .container .loginBox .rightDiv .btn.btn-default {
	padding: 0.5rem 2rem !important;
	color: #ee652b;
	height: 2.5rem;
	border-radius: 12px;
	font-size: 1rem !important;
	font-weight: 600;
	border: 2px solid #ee652b;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable
	{
	background-color: #ee652b;
}

.form-select.form-size-update:focus, .form-select.form-size-update:active
	{
	border-color: #ee652b !important;
	box-shadow: none !important;
	outline: none;
}

.login-link {
	text-decoration: none;
}

.login-link:hover {
	text-decoration: underline !important;
}

.btn-sub:hover, .btn-sub:focus {
	background-color: #ee652be6 !important;
	box-shadow: none !important;
}

.loginBg .container .loginBox .rightDiv .btn-xs:hover {
	box-shadow: none !important;
}

/* MAIN CONTENT */
.main-content {
	transition: margin-left 0.3s ease;
}

/* ICON BADGE */
.icon-badge {
	position: absolute;
	top: 2px;
	right: -2px;
	width: 8px;
	height: 8px;
	background: var(--badge-red);
	border-radius: 50%;
}

.text-grey {
	color: #797986 !important;
}
/* BOOSTER BUTTON */
.btn-upgrade {
	background: linear-gradient(90deg, #000, #D8A305);
	color: #fff !important;
	padding: 8px 18px;
	font-weight: 500;
	border: none;
}

.btn-upgrade:hover {
	opacity: 0.9;
}

.profile-progress {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* PROFILE RING */

.progress-ring {
    width: var(--size);
    height: var(--size);
    border-radius: 50%;
    position: relative;
    display: grid;
    place-items: center;

    background: conic-gradient(#6f42c1 var(--progress), #e9ecef 0);
}

/* inner white circle */
.progress-ring::before {
    content: "";
    position: absolute;
    inset: var(--thickness);   /* THIS FIXES THE CENTER */
    background: #fff;
    border-radius: 50%;
}

/* icon */
.progress-ring i {
    position: relative;
    z-index: 2;
    color: #6f42c1;
}
/* PROFILE RING
 */
 /* .progress-ring {
	width: var(--size);
	height: var(--size);
	border-radius: 50%;
	display: grid;
	place-items: center;
	transition: background 0.6s ease;
	background: conic-gradient(#6f42c1 var(--progress), #e9ecef 0);
}

.progress-ring::before {
	content: "";
	width: calc(var(--size)- var(--thickness)* 2);
	height: calc(var(--size)- var(--thickness)* 2);
	background: #fff;
	border-radius: 50%;
}

.progress-ring i {
	position: absolute;
	color: #6f42c1;
}
 */
 .action_cont {
 width: 100%;
	padding: 5px;
	border-top: 2px solid #eceef1;
}

.cta-card {
	background: linear-gradient(135deg, rgba(248, 245, 252),
		rgba(254, 247, 244));
}

.cta-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 5px 5px rgba(0, 0, 0, 0.2);
}

.cta-btn {
	background-color: #7b4ce2 !important; /* exact button purple */
	color: #ffffff !important;
	border: none;
}

.cta-btn:hover {
	background-color: #6a3ad1;
	color: #ffffff;
}

small {
	font-size: 10px !important;
}

/* .text-muted {
	color: white !important;
} */

.primary {
	color: var(--primary-purple) !important;
}

.round-check {
	/* cursor: pointer; */
	cursor: default;
	font-weight: normal;
	user-select: none;
	font-size: 14px;
}

.round-check input {
	display: none;
}

.check-ui {
	width: 18px;
	height: 18px;
	border: 2px solid green; /* green border */
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.2s ease;
	background: #fff;
}

.check-ui i {
	font-size: 14px;
	color: #fff;
	display: none;
}

.round-check input:checked+.check-ui {
	background: green;
	border-color: green;
}

.round-check input:checked+.check-ui i {
	display: block;
}

.gradient-text {
	background: linear-gradient(90deg, #7c3aed, #f97316);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}
/* SECTION UNDERLINE */
.section-underline {
	width: 64px;
	height: 4px;
	border-radius: 8px;
	background: linear-gradient(90deg, var(--primary-purple),
		var(--primary-orange));
}

.soft-card {
	border-radius: 18px;
	border: 1px solid #eaeaec;
	background: #fff;
}

.soft-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 5px 5px rgba(0, 0, 0, 0.2);
}

.test-card {
	background: var(--bg-soft);
}

/* BUTTONS */
.btn-primary {
	background: var(--primary-purple);
	border: none;
}

.btn-primary:hover {
	background: #5b35a2;
}

.text-sm {
	font-size: .875rem !important;
	line-height: 1.25rem;
}

.text-xs {
	font-size: .75rem;
	line-height: 1rem;
}

.pill-text {
	font-size: 12px;
	background: #fef0e8;
	color: var(--primary-orange);
	border-radius: 999px;
	padding: 4px 12px;
	font-weight: 500;
}
/* COMING SOON PILL */
.pill-soon {
	font-size: 12px;
	background: #f3e8ff;
	color: #713cdd;
	border-radius: 999px;
	padding: 4px 12px;
	font-weight: 500;
}

/* PLAY BUTTON */
.play-btn {
	width: 84px;
	height: 84px;
	border: 3px solid #713cdd;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 32px;
	color: #713cdd;
}

.accent-bar {
	width: 70px;
	height: 4px;
	border-radius: 4px;
	background: linear-gradient(90deg, #7c3aed, #f97316);
}

#premiumPlan {
	padding-inline: 2rem;
	padding-block: 3rem;
}

.practice-Hub .practiceTestInstructions {
	background-color: #262E7F;
	color: #fff;
}

.practice-Hub .practiceTestInstructions .homeBasedCbtPracticeTestTitle {
	color: #F1F1F1 !important;
}

.practice-Hub .custom-rect-modal {
	max-width: 800px;
	width: 80%;
	min-height: 400px;
	height: auto;
}

.practice-Hub #homeBasedCbtPracticeTest .instruction-text {
	font-size: 17px;
}

.boosterUpgrade .payment-gateway {
/* 	background-color: #262E7F;
 */	color: #fff;
}

.boosterUpgrade .payment-gateway .paymentGatewayTitle {
	color: #1c1917 !important;
}

.boosterUpgrade #paymentGatewayModal .paymentGatewayDialog {
	max-width: 440px;
}

.boosterUpgrade #paymentGatewayModal .paymentGatewayDialog .bigger-modal
	{
	min-height: 220px;
	border-radius: 10px;
}

.boosterUpgrade #paymentConfirmationModal .paymentConfirmationDialog {
	/* max-width: 200px; */
	margin-top: 65px;
	max-width: 400px;
}

.boosterUpgrade #paymentConfirmationModal .payment-confirmation {
/* 	background-color: #262E7F;
 */	color: #fff;
}

.boosterUpgrade #paymentConfirmationModal #paymentConfirmationModalLabel
	{
	color: #1c1917 !important;
}

#about .card:hover {
	transform: translateY(-5px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

#about.card h6 {
	font-weight: 600;
}

#about .card p {
	margin: 0;
	font-size: 0.9rem;
}

#about .card-arrow {
	margin-top: auto;
	text-align: right;
	font-size: 1.2rem;
}

.modal-content {
	/* background-color: #0a2239; */ /* dark navy removed b'coz defect raised*/
	/* color: #fff; */
	border-radius: 10px;
	border: 1px solid white;
	top: 2rem;
}

.modal-header {
	border-bottom: none;
}

/* .btn-close {
	filter: invert(1); /* removed b'coz defect raised */
} */

/* Tab button */
#premiumPlan .tab-btn {
	font-size: 0.8rem;
	flex: 1;
	border: none;
	background: transparent;
	padding: 12px 16px;
	border-radius: 10px;
	font-weight: 600;
	cursor: pointer;
	color: #6b7280;
	transition: all 0.25s ease;
}

#premiumPlan .tab-btn.active {
	font-size: 0.9rem;
	background: linear-gradient(135deg, hsl(260 70% 55%),
		hsl(260 70% 55%/ 0.8));
	color: #fff;
	box-shadow: 0 6px 16px rgba(124, 77, 255, 0.4);
}

/* Content sections */
#premiumPlan .tab-content {
	display: none;
}

#premiumPlan .tab-content.active {
	display: block;
}

#premiumPlan .tab-desc {
	font-size: 1rem !important;
	color: hsl(240 5% 50%) !important;
	margin-bottom: 24px;
}

/* Cards */
#premiumPlan .card-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 24px;
}

#premiumPlan .test-card {
	background: #fff;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

#premiumPlan .test-card img {
	width: 100%;
	border-radius: 12px 12px 0px 0px;
	margin-bottom: 12px;
}

#premiumPlan .test-card h5 {
	font-weight: 700;
	margin-bottom: 6px;
}

#premiumPlan .test-card li {
	margin-bottom: 6px;
}

#premiumPlan .test-card {
	display: flex;
	flex-direction: column;
	height: 100%;
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
	max-width: 22rem;
}

.test-card .card-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: auto;
	padding: 16px 20px;
}

#premiumPlan .test-card img {
	width: 100%;
	height: 200px;
	object-fit: cover;
}

/* Card body */
#premiumPlan .card-body {
	padding: 18px;
}

/* Title + badge */
#premiumPlan .card-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 6px;
}

#premiumPlan .card-header h5 {
	font-size: 18px;
	font-weight: 700;
	margin: 0;
}

#premiumPlan .badge {
	background: hsl(240 10% 97%);
	color: hsl(260 70% 55%);
	font-size: 0.75rem;
	padding: 4px 10px;
	border-radius: 12px;
	font-weight: 600;
}

/* Sub text */
#premiumPlan .sub-text {
	font-size: 14px;
	color: #64748b;
	margin: 2px 0;
}

/* Feature list */
#premiumPlan .features {
	list-style: none;
	padding: 0;
	margin: 14px 0;
}

#premiumPlan .features li {
	font-size: 14px;
	color: #334155;
	margin-bottom: 8px;
	position: relative;
}

#premiumPlan .features li::before {
	content: "";
	color: #22c55e;
	font-weight: bold;
	position: absolute;
	left: 0;
}

/* Footer */
#premiumPlan .card-footer {
	/* display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 14px; */
	
	  display:flex !important;
    flex-wrap:wrap !important;
    gap:10px !important;
}

#premiumPlan .price {
	   display:flex !important;
    align-items:center !important;
    white-space:nowrap !important;
	font-size: 1.5rem;
	font-weight: 800;
	color: hsl(240 10% 15%);
}

#premiumPlan .btn-cart {
	background: hsl(22 95% 55%);
	border: none;
	color: #fff;
	padding: 0.5rem 1.5rem;
	border-radius: 12px;
	font-size: .875rem;
	line-height: 1.25rem;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.2s ease;
}

#premiumPlan .btn-cart:hover {
	background: #e86c12;
}

#premiumPlan .text-xs {
	font-size: 0.75rem;
	line-height: 1rem;
}

#premiumPlan .comparison-table-wrapper {
	border-radius: 14px;
	overflow-x: auto;
}

#premiumPlan .comparison-table {
	width: 100%;
	border-collapse: collapse;
	background: #fff;
	border-radius: 12px;
	overflow: hidden;
}

#premiumPlan .comparison-table th, #premiumPlan .comparison-table td {
	padding: 14px 16px;
	text-align: center;
	border-bottom: 1px solid #f1f1f1;
	font-size: 14px;
}

#premiumPlan .comparison-table th:first-child, #premiumPlan .comparison-table td:first-child
	{
	text-align: left;
	font-weight: 600;
}

#premiumPlan .comparison-table thead {
	background: #f4f0ff;
}

#premiumPlan .comparison-table tfoot td {
	font-size: 18px;
	font-weight: 700;
	background: #faf7ff;
}

/* Pills */
#premiumPlan .pill {
	display: inline-block;
	padding: 4px 10px;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 600;
	margin-top: 6px;
}

#premiumPlan .pill.green {
	background: #22c55e;
	color: #fff;
}

#premiumPlan .pill.blue {
	background: #3b82f6;
	color: #fff;
}

#premiumPlan .pill.orange {
	background: #ff7a18;
	color: #fff;
}

#premiumPlan .pill.light {
	background: #f1f5f9;
	color: #475569;
}

/* Check icon */
#premiumPlan .check {
	color: #22c55e;
	font-size: 18px;
	font-weight: 700;
}

/* Circle number */
#premiumPlan .circle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	background: #ede9fe;
	color: #6d28d9;
	border-radius: 50%;
	font-weight: 700;
}

/* Price */
#premiumPlan .price {
	color: #0f172a;
}

#premiumPlan .coming-soon-card {
	background: #ffffff;
	border: 1px solid #e5e7eb;
	border-radius: 14px;
	padding: 24px 28px;
	max-width: 100%;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.red-border {
	outline: 1px solid #b60000 !important;
	-webkit-box-shadow: -2px 2px 22px -3px rgba(231, 99, 99, 1) !important;
	-moz-box-shadow: -2px 2px 22px -3px rgba(231, 99, 99, 1) !important;
	box-shadow: -2px 2px 22px -3px rgba(231, 99, 99, 1) !important;
}

#premiumPlan .coming-title {
	font-size: 20px;
	font-weight: 700;
	color: #0f172a;
	margin-bottom: 10px;
}

#premiumPlan .coming-desc {
	font-size: 15px;
	color: #64748b;
	line-height: 1.6;
	margin: 0;
}
/* Tabs container */
#premiumPlan .upgrade-tabs {
	display: flex;
	background: #f5f5f5;
	border-radius: 14px;
	padding: 6px;
	max-width: 600px;
	margin-bottom: 24px;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

#comingSoon .learningHub {
	justify-content: center;
	flex-direction: column;
}

#comingSoon .coming-soon-wrapper {
	min-height: 60vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
}

/* Icon circle */
#comingSoon .icon-circle {
	width: 90px;
	height: 90px;
	border-radius: 50%;
	background: #f2ecff; /* light purple */
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
}

/* Rocket icon */
#comingSoon .icon-circle i {
	font-size: 36px;
	color: #7c4dff; /* purple */
}

/* Title */
#comingSoon .coming-title {
	font-size: 28px;
	font-weight: 700;
	margin-bottom: 10px;
	color: #0f172a;
}

/* Subtitle text */
#comingSoon .coming-text {
	font-size: 15px;
	color: #64748b !important;
	max-width: 420px;
	line-height: 1.6;
}
/* Wrapper */
#personality .locked-wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 60px 20px;
}

/* Card */
#personality .locked-card {
	background: #ffffff;
	border: 1px solid #e5e7eb;
	border-radius: 16px;
	padding: 48px 32px;
	max-width: 720px;
	width: 100%;
	text-align: center;
}

/* Icon circle */
#personality .locked-icon {
	width: 72px;
	height: 72px;
	border-radius: 50%;
	background: #f4f4f5;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 24px;
}

#personality .locked-icon i {
	font-size: 32px;
	color: #6b7280;
}

/* Title */
#personality .locked-title {
	font-size: 24px;
	font-weight: 700;
	color: #0f172a;
	margin-bottom: 12px;
}

/* Description */
#personality .locked-text {
	font-size: 15px;
	line-height: 1.6;
	color: #64748b;
	max-width: 520px;
	margin: 0 auto 28px;
}

/* Button */
#personality .locked-btn {
	background: #7c3aed;
	color: #ffffff;
	font-weight: 600;
	padding: 10px 22px;
	border-radius: 10px;
	border: none;
}

#personality .locked-btn:hover {
	background: #6d28d9;
	color: #ffffff;
}
/* TOGGLE */
.toggle-wrapper {
	position: relative;
	display: inline-flex;
	background: #fff;
	border-radius: 16px;
	padding: 6px;
	box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
}

.toggle-btn {
	border: none;
	background: transparent;
	padding: 12px 28px;
	font-weight: 600;
	color: #6b7280;
	position: relative;
	z-index: 2;
}

.toggle-btn.active {
	color: #fff;
}

.toggle-pill {
	position: absolute;
	top: 6px;
	left: 6px;
	height: calc(100% - 12px);
	width: 50%;
	background: #7c3aed;
	border-radius: 12px;
	transition: transform .35s ease;
	box-shadow: 0 10px 25px rgba(124, 58, 237, .4);
}

/* CONTENT SWITCH */
.content-section {
	display: none;
	animation: fade .35s ease;
}

.content-section.active {
	display: block;
}

@
keyframes fade {from { opacity:0;
	transform: translateY(6px);
}

to {
	opacity: 1;
	transform: translateY(0);
}

}
.upload-box {
	border: 2px dashed #e5e7eb;
	border-radius: 12px;
	padding: 2.5rem 1rem;
	text-align: center;
	background: #fafafa;
}

.upload-box i {
	font-size: 32px;
	color: #6b7280;
}

.form-control {
	border-radius: 10px;
}

.edit-icon {
	position: absolute;
	top: 70%;
	right: 12px;
	transform: translateY(-50%);
	color: #6b7280;
	cursor: pointer;
}

.form-check-input:checked {
	background-color: #6f42c1;
	border-color: #6f42c1;
}

.confirm-btn {
	background: linear-gradient(90deg, #6f42c1, #7c3aed);
	border: none;
	border-radius: 10px;
}

.note-box {
	background: #fff4e5;
	border-left: 4px solid #fd7e14;
	font-size: 14px;
	color: maroon;
}

.note-box i {
	font-size: 16px;
	color: #fd7e14 !important;
}

.slot-header {
	background: #6f42c1;
	color: #fff;
	font-size: 14px;
}

.slot-header th {
	font-weight: 500;
	white-space: nowrap;
}

.btn-book {
	background: #fd7e14;
	border: none;
	color: #fff;
}

.btn-book:hover {
	background: #e96b06;
}

.legend-dot {
	font-size: 10px;
}
/* Select2 main control border */
.select2-container--default .select2-selection--single {
	border: 1px solid #e2e5ec; /* light border */
	height: 3rem;
	display: flex;
	align-items: center;
}

/* Dropdown panel */
.select2-container--default .select2-dropdown {
	border: 1px solid #e2e5ec;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Increase dropdown height */
.select2-container--default .select2-results>.select2-results__options {
	max-height: 260px; /* adjust as per screenshot */
	overflow-y: auto;
}

/* Option item */
.select2-container--default .select2-results__option {
	padding: 10px 14px;
	font-size: 14px;
}

/* Hover & highlighted option */
.select2-container--default 
.select2-results__option--highlighted.select2-results__option--selectable
	{
	background-color: #fd7e14; /* Bootstrap orange */
	color: #fff;
	font-size: 14px;
	border-radius: 10px;
}

/* Selected option inside dropdown */
.select2-container--default 
.select2-results__option--selected {
	background-color: #fff3e6;
	color: #fd7e14;
	font-size: 14px;
	border-radius: 10px;
}

/* Search input */
.select2-search--dropdown .select2-search__field {
	border: 1px solid #e2e5ec;
	padding: 6px 10px;
	font-size: 14px;
}

.select2-container--default .select2-selection--single {
	padding-right: 32px;
	position: relative;
}

/* Clear (×) button alignment */
.select2-container--default .select2-selection__clear {
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	margin: 0;
	font-size: 18px;
	color: #adb5bd;
	cursor: pointer;
}

.text-red {
	color: red !important;
}

.text-green {
	color: #22c55e !important;
}

.input-group-text {
	border-left: 0;
}

.input-group .form-control:disabled, .input-group .form-control[readonly]
	{
	background-color: #fff;
	cursor: default;
}

.form-control-icon {
	position: relative;
}

.form-control-icon .form-control {
	padding-right: 44px;
	height: 38px;
}

.form-control-icon .icon-holder {
	position: absolute;
	right: 12px;
	top: 0;
	height: 100%;
	display: flex;
	align-items: center;
	cursor: pointer;
}

.form-control-icon i {
	color: #adb5bd;
	font-size: 16px;
}

.bg-purple {
	background: #713cdd !important;
}

.btn-orange {
	background-color: #fd7e14 !important;
	color: #fff !important;
	border: none;
	text-decoration: none;
}

.navbar .nav-link.btn-orange:hover {
	background-color: #fd7e14 !important;
	color: #fff !important;
}

.btn-orange-outline {
	background-color: #fff;
	color: #f57c00 !important;
	border: 1.5px solid #fd7e14;
}

.btn-orange-outline:hover {
	background-color: #fd7e14;
	color: #fff !important;
	border: 1.5px solid #f57c00;
}

.btn-outline {
	background-color: #fff;
	color: #333 !important;
	border: 1.5px solid #eaeaec !important;
}

.btn-outline:hover {
	background-color: #fd7e14 !important;
	color: #fff !important;
	border: 1.5px solid #f57c00 !important;
}

.row-padding td {
	padding-top: 1rem;
	padding-bottom: 1rem;
}

.fadde {
	/* background: none repeat scroll 0 0 #000000; */
	backdrop-filter: brightness(0.5);
	height: 100%;
	left: 0;
	opacity: 0.5;
	filter: alpha(opacity = 50);
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 99;
	display: none;
}
/* Parent */
.has-submenu {
	position: relative;
}

/* Right arrow */
.has-submenu .arrow {
	font-size: 14px;
	opacity: 0.6;
}

.submenu {
	position: absolute;
	top: 0;
	left: 100%;
	min-width: 220px;
	background: #ffffff;
	border-radius: 12px;
	box-shadow: 0 12px 30px rgba(15, 23, 42, 0.15);
	padding: 8px;
	list-style: none;
	opacity: 0;
	visibility: hidden;
	transform: translateX(10px);
	transition: all 0.25s ease;
	z-index: 1050;
}

/* Show on hover */
.has-submenu:hover .submenu {
	opacity: 1;
	visibility: visible;
	transform: translateX(0);
}

/* Submenu links */
.submenu li a {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 12px;
	border-radius: 8px;
	color: #0f172a;
	font-size: 14px;
	text-decoration: none;
}

/* Hover effect */
.submenu li a:hover {
	background: #f8fafc;
}

/* Icons */
.submenu i {
	color: #6b7280;
}

.submenu1 {
	margin: 0 auto;
	text-align: center;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
}

.submenu-item {
	padding: 10px 3px;
	margin-right: 10px;
	display: inline-block;
}

.badge {
	margin-right: 5px;
}
/* Disclaimer list styling */
.disclaimer-list {
	padding-left: 1.2rem;
}

.disclaimer-list li {
	margin-bottom: 0.9rem;
	line-height: 1.6;
	color: #212529;
}

/* Button outline color tuning */
.btn-outline-warning {
	border-width: 2px;
}

.radio-error {
	border: 1px solid red;
	padding: 10px;
	border-radius: 6px;
}

.form-control-icon {
	position: relative;
}

.form-control-icon .icon-holder {
	position: absolute;
	top: 50%;
	right: 12px;
	transform: translateY(-50%);
	color: #6b7280;
	cursor: pointer;
}

footer p {
	color: #d2cbbc !important;
}

footer {
	background-color: #202e5b !important;
	color: #fff;
	padding: 40px 0;
}

.footer hr {
	border-color: rgba(255, 255, 255, 0.2);
}

footer a {
	color: #d2cbbc !important;
	text-decoration: none !important;
	font-size: 14px;
}

footer a:hover {
	text-decoration: underline;
}

.footer small {
	color: rgba(255, 255, 255, 0.7);
}

.footer .logo {
	display: flex;
	align-items: center;
	margin-bottom: 10px;
}

.footer .logo img {
	width: 40px;
	margin-right: 10px;
}

.footer h5 {
	margin-bottom: 15px;
}

.step-card {
	transition: all 0.25s ease;
}

.step-card:hover {
	transform: translateY(-4px);
}

.locked {
	opacity: 0.6;
	pointer-events: none;
}

.badge-circle {
	width: 36px;
	height: 36px;
	border-color: #f96f1f !important;
	background-color: #f96f1f1a;
	color: #f96f1f;
}

.fs-30 {
	font-size: 1.875rem; /* 30px */
	line-height: 2.25rem; /* 36px */
}

.text-foreground {
	color: #22222a !important;
}

.text-muted-foreground {
	color: #797986 !important;
}

.bg-green-soft {
	background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
}

.bg-green-400 {
	background-color: rgba(34, 197, 94, 1) !important;
}

.btn-green-500 {
	background-color: #22c55e !important;
	color: #fff !important;
	border-color: #22c55e !important;
}

.btn-green-500:hover, .btn-green-500:focus {
	background-color: #16a34a; /* darker green for hover */
	border-color: #16a34a;
	color: #fff;
}

.btn-green-500:disabled {
	background-color: #22c55e;
	opacity: 0.65;
}

.icon-circle {
	width: 32px;
	height: 32px;
}

.transition {
	transition: all 0.25s ease;
}

.hover-shadow:hover {
	box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.12);
}

.btn-blue-500 {
	background-color: #713cdd !important;
	color: #fff !important;
	border-color: #713cdd !important;
}

.btn-blue-500:hover, .btn-blue-500:focus {
	background-color: #713cdde6 !important;
	border-color: #713cdde6 !important;
	color: #fff !important;
}

.progress-bar {
	background-color: #713cdde6 !important;
}

.bg-muted {
	color: #797986 !important;
	border-color: #eaeaec !important;
	background-color: #f7f7f8 !important;
}

.border-l-4 {
	border-left-width: 4px !important;
}

.border-l-primary {
	border-left-color: #713cdd !important; /* primary */
}

.text-success {
	color: #ffff !important;
}

.bg-success-main {
	background-color: #10b981 !important;
}

.text-blue {
	color: #713cdd !important;
}

.bg-orange-gradient {
	background-image: linear-gradient(200deg, rgba(249, 111, 31, 0.10),
		#ffffff);
}

.btn-outline-purple {
	color: #713cdd !important;
	border-color: #713cdd !important;
	background-color: transparent !important;
}

.btn-outline-purple:hover {
	background-color: #713cdd !important;
	border-color: #713cdd !important;
	color: #ffffff !important;
}

.bg-success-circle {
	height: 4rem;
	width: 4rem;
	background-color: #ecfdf5 !important;
	color: #10b981;
}

.btn-outline-secondary { -
	-bs-btn-border-color: #eaeaec !important;
}

.btn-outline-secondary:hover {
	background-color: #f96f1f !important;
	border-color: #f96f1f !important;
}

.card-hover-special {
	transition: transform 0.4s cubic-bezier(.4, 0, .2, 1), box-shadow 0.3s
		cubic-bezier(.4, 0, .2, 1);
}

.card-hover-special:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

h4 span {
	font-size: 15px;
}

.center {
	display: block;
	position: fixed;
	left: 50%;
	top: 35%;
	z-index: 1000;
	height: 31px;
	width: 31px;
}

.header_index .nav-links a {
	text-decoration: none;
	color: #fff;
	font-size: 11px;
	font-family: 'Roboto';
	font-weight: 600;
}

.icai_login_wrapper {
	flex-direction: column;
	padding: 0;
}

.text-default {
	color: #202e5b !important;
}

.lower-header-left {
	width: 100%;
	float: left;
	margin-top: 0;
	margin-left: 0;
}

.admission-open {
	border-top: 0;
	border-bottom: 0;
	padding: 0;
	margin-top: 0;
}

.lower-header-right {
	width: 100%;
	margin-top: 2rem;
	margin-left: 0;
}

.btn-warning {
	border: 2px solid #ee652b !important;
	background: #ee652b !important;
	font-size: 1rem;
	font-weight: 600;
	color: #fff;
	padding: 0.5rem 1.7rem !important;
	border-radius: 12px;
	height: 3rem;
}

.btn-warning:hover, .btn-warning:focus {
	background-color: #ee652be6 !important;
	box-shadow: none !important;
}

.indexBackground .control-label, .form-group .control-label,
	.contenttable.form-group td:first-child {
	font-size: 1rem !important;
	color: #142152 !important;
	font-weight: 600 !important;
}

.form-control, .form-group .form-control {
	height: 3rem;
	color: #8d96ba !important;
	padding: 0.5rem 0.75rem;
	border-radius: 12px !important;
	font-size: 0.875rem;
}

.col-lg-6.glassy-dark {
	background-color: white;
	align-self: flex-start;
	height: auto !important;
	padding: 3rem !important;
	border: 2px solid #dcdfe5 !important;
	border-radius: 1rem !important;
	box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.15), 0 10px 10px -5px
		rgba(0, 0, 0, 0.08) !important;
}

p.text-slate {
	margin: 0;
	font-size: 0.875rem;
	color: #525f72;
}

.btn-reg {
	display: inline-flex; /* enable flex */
	align-items: center; /* vertical center */
	justify-content: center; /* horizontal center */
	border-radius: 12px;
	border: 2px solid #f9d0bf;
	padding: 0.75rem 3rem !important; /* balanced padding */
	font-weight: 500;
	font-size: 1rem;
	color: #ee652b;
	background-color: transparent;
	text-align: center;
}

.btn-reg:hover, .btn-reg:focus {
	box-shadow: none !important;
	background-color: #ee652b0d !important;
}

.form-control:focus, .form-group .form-control:focus {
	border: 1px solid #E77125 !important; /* reuse same border */
	box-shadow: none !important; /* removes bootstrap ring */
	outline: 0 !important; /* removes browser outline */
}

.form-control:hover {
	border-color: #cccccc !important;
	box-shadow: none !important;
}

/* input[disabled]{
color:#fff !important;
}
 */
.or-divider {
	position: relative;
	text-align: center;
	margin: 10px 0;
}

.or-divider::before, .or-divider::after {
	content: "";
	position: absolute;
	top: 50%;
	width: 45%;
	border-bottom: 1px solid #dcdfe5;
}

.or-divider::before {
	left: 0;
}

.or-divider::after {
	right: 0;
}

.or-divider span {
	padding: 0 2px; /* left & right = 2px */
	background: #fff; /* match page background */
	font-size: 12px;
	color: #6c757d;
}

.text-success {
	color: #22c55e !important;
}

.reg-user {
	color: #0f172a !important;
}

.fs-36 {
	font-size: 2.25rem !important; /* 36px */
}

.text-slate-900 { -
	-bs-text-opacity: 1;
	color: #334155 !important;
}

.fs-6 {
	font-size: 1rem !important;
}

.text-black-50 {
	color: #0f172a !important;
}

.fs-18 {
	font-size: 1.125rem !important;
}

b#user {
	color: #202e5b;
}

.login-page-wrapper {
	padding-top: 20px;
}

.login-page-wrapper {
	padding-bottom: 4rem;
	padding-top: 8rem;
}

.accordions .borderBoxDiv {
	padding: 25px !important;
}

.cardShadow {
	/* box-shadow: 0 10px 15px -3px rgba(0, 0, 0, .1), 0 4px 6px -4px rgba(0, 0, 0, .1);
 */
	border: 2px solid #dcdfe5 !important;
	background-color: #ffff;
	border-radius: 1rem !important;
	box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.15), 0 10px 10px -5px
		rgba(0, 0, 0, 0.08) !important;
}

.text-success {
	color: #22c55e !important;
}

.reg-user {
	color: #0f172a !important;
}

.fs-36 {
	font-size: 2.25rem !important; /* 36px */
}

.text-slate-900 { -
	-bs-text-opacity: 1;
	color: #334155 !important;
}

}
.fs-18 {
	font-size: 1.125rem !important;
}

.text-black-50 {
	color: #0f172a !important; /* Slate 900 */
}

.btn-danger {
	display: inline-flex;
	height: 2.5rem;
	align-items: center;
	color: #ffff !important;
}

.login-banner {
	background: linear-gradient(90deg, #fbf2e8 0%, /* soft peach / pink */
            #fdf7f2 30%, /* very light warm white */
            #ffffff 50%, /* clean white center */
            #f2f7fd 70%, /* light blue */
            #eaf3fb 100% /* soft blue */
        );
	/* min-height: 100vh; */
	width: 100%;
}

.actionMessage li:first-child {
	list-style: none;
}

.actionMessage li {
	float: left;
	margin-left: -25px;
	width: 100%;
}

.actionMessage br {
	height: 1px;
	float: left;
}

.personsl-dtl {
	border-width: 0px;
	border: 0px;
}

.headcol {
	border-right: 0px;
}

.hide-calendar .ui-datepicker-calendar {
	display: none;
}

#ui-datepicker-div button.ui-datepicker-current {
	display: none;
}

#addtionalformDetails.ui-datepicker-trigger:first-child {
	margin-top: 5px !important;
}

.form-control, .form-group .form-control {
	margin: 3px 0;
}

.bg-accent {
	background-color: #f96f1f !important;
	border-color: #f96f1f !important;
	transition: opacity 0.2s ease, background-color 0.2s ease;
}

.educationDtls {
	border: 1px solid #dddddd !important;
	padding: 20px !important;
	background: #fff;
	margin: 40px;
	border-radius: 10px;
}

.accordions h2, .accordions h2 label {
	border: none;
	background-color: #fff;
	color: #22222a;
	font-size: 1.25rem;
	padding: 10px 3px;
}

.indexBackground .control-label, .form-group .control-label,
	.contenttable.form-group td:first-child {
	font-size: .875rem !important;
	color: #22222a !important;
	font-weight: 500 !important;
}

/* personal details
 */
.msgg li:first-child {
	list-style: none;
}

.contenttableNew td {
	padding-top: 15px;
}

.contenttableNew td table td {
	padding-top: 2px;
}

#msgg li {
	float: left;
}

#msgg br {
	height: 1px;
	float: left;
}

.postPrefDisabled {
	pointer-events: none;
	opacity: 0.56;
}

/* Optional fine-tuning */
.input-group-text img {
	vertical-align: middle;
	margin-top: -2px; /* tweak if icon slightly misaligned */
}

.select2-container .select2-selection--single {
	margin: 3px;
	height: 2.5rem;
	border-radius: 12px !important;
	/* 	height: calc(2.25rem + 2px);
 */
	width: 100%;
	padding: 0.375rem 2.25rem 0.375rem 0.75rem;
	font-size: 1rem;
	line-height: 1.5;
	color: #212529;
	background-color: #fff;
	border: 1px solid #ced4da;
	border-radius: 0.375rem;
	transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

/* Focus state */
.select2-container--default .select2-selection--single:focus {
	border-color: #86b7fe;
	outline: 0;
	box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, .25);
}

/* Arrow inside */
.select2-container--default .select2-selection--single .select2-selection__arrow
	{
	height: 100%;
	right: 0.75rem;
}

.select2-container--default .select2-dropdown {
	border: 1px solid #ced4da;
	border-radius: 0.375rem;
	box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, .15);
}

/* Options */
.select2-container--default .select2-results__option--highlighted[aria-selected]
	{
	background-color: #0d6efd;
	color: white;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder
	{
	color: darkslategrey;
}

/* Ensure the select2 container doesn't expand beyond its parent */
.select2-container {
	width: 100% !important;
}

/* Make the selected value behave properly */
.select2-selection__rendered {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.select2-selection {
	padding-right: 2rem;
	/* Leave space for the clear (x) and dropdown arrow */
	box-sizing: border-box;
}

/* Optional: If you want to limit max width just in case */
.select2-container--default .select2-selection--single {
	max-width: auto;
}

.fullscreen-container {
	display: none;
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(90, 90, 90, 0.5);
	z-index: 1000;
}

.hidden {
	display: none;
}

.personalDtls {
	border: 1px solid #dddddd !important;
	padding: 20px !important;
	width: calc(100% - 160px) !important;
	background: #fff;
	margin: 10px 30px;
	border-radius: 10px;
}

.max-54{
    max-width: 54rem;
}

.form-select {
	border-radius: 12px !important;
	height: 2.5rem;
}

.countinuebg {
	background-color: #ffff !important;
	padding: 20px 0px;
	box-shadow: none;
}

.bg-accent {
	background-color: #f96f1f !important;
	border-color: #f96f1f !important;
	transition: opacity 0.2s ease, background-color 0.2s ease;
}

.form-control, .form-group .form-control {
	border-radius: 12px !important;
	height: 2.5rem;
}
.fontHead {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif !important;
    }
.communicationAddress {
	border-radius: 12px;
}

.accordions h2, .accordions h2 label {
	margin-bottom: 1.5rem;
	border: none;
	background: #ffff;
	color: #22222a;
	font-size: 1.25rem;
	padding: 10px 1px;
}

P {
	color: #212529bf !important;
	font-size: 14px;
	margin-bottom: 10px;
}

.indexBackground .control-label, .form-group .control-label,
	.contenttable.form-group td:first-child {
	font-size: .875rem !important;
	color: #22222a !important;
	font-weight: 500 !important;
}

/* work experiance
 */
ul.actionMessage {
	margin: 0px;
}

.actionMessage li:first-child {
	display: none;
}

.actionMessage li {
	float: left;
	margin-left: -20px;
	width: 100%;
}
/* 
.tabDiv {
	width: 92% !important;
}

 */
.innserContainer span.note {
	display: block !important;
}

.pageTitle span {
	color: #000;
}

input[type="text"], input[type="text"], select, textarea, .personsl-dtl td .form-control
	{
	height: 2.5rem;
	border-radius: 12px !important;
	box-shadow: none;
	background-color: #ffff;
}

.ui-datepicker-trigger {
	margin: -4rem 17px 10px 7.5rem !important;
	/* 	margin: -2rem 16px 4px 26.5rem !important;
 */
}

textarea.form-control {
	border-radius: 12px !important;
	min-height: 6rem;
}

.bg-accent {
	background-color: #f96f1f !important;
	border-color: #f96f1f !important;
	transition: opacity 0.2s ease, background-color 0.2s ease;
}

.add-exp-btn {
	color: #00000;
	background-color: #fafafa;
	border: 1px solid #eaeaec;
	font-weight: 500;
}

.add-exp-btn:hover {
	background-color: #E77125; /* slightly darker on hover */
	border-color: #E77125;
	color: #ffff;
}

.add-exp-btn:focus {
	box-shadow: 0 0 0 0.15rem rgba(37, 99, 235, 0.25);
}

.pro-heading {
	margin-bottom: 1.5rem;
	border: none;
	background: #ffff;
	color: #22222a;
	font-size: 1.25rem;
	padding: 10px 1px;
}

.select2-container--default .select2-selection--single {
	height: 2.5rem !important;
	border: 1px solid #dee2e6 !important;
}

.bg-secondary {
	background: #f7f7f8;
}

.book-note {
	background-color: #FFF7ED;
}

.cart-btn {
	background-color: #f7f7f8 !important;
}

.text-orange {
	color: #F97316;
}

.border-warning { -
	-bs-border-opacity: 1;
	border-color: #F97316 !important;
}

.no-hover:hover, .no-hover:focus, .no-hover:active {
	background-color: #f7f7f8 !important;
	color: #713cdd !important;
}

.book-btn {
	color: #b85c3c !important;
}

.side-btn:hover {
	transform: scale(1.02);
	background-color: #f7f7f8;
}

.side-btn {
	width: fit-content;
	border-radius: 9999px;
	border: 1px solid rgba(184, 92, 60, 0.6);
	transition: all .2s ease;
}

.h-3 {
	height: 3rem !important;
}

.sidebar .no-hover>.nav-link:hover {
	background: transparent;
	color: inherit;
	border-radius: 0;
	font-weight: bold;
}

.sidebar .no-hover>.nav-link.active {
	background: transparent;
	color: inherit;
	border-radius: 0;
}

#sbookForm .form-select:focus, #sbookForm .form-control.focus-ring:focus,
	#sbookForm .input-group:focus-within .form-control.focus-ring {
	border-color: #713cdd !important;
	outline: 0;
	box-shadow: 0 0 0 2px #fff, 0 0 0 4px #713cdd !important;
}

.navbar .nav-link:hover {
	color: #ee652b !important;
}

.progress {
	height: 8px;
}

.badge-soft {
	background: #f1f3f5;
	color: #495057;
	font-weight: 500;
}

.assessment-card {
	border: 1px solid #e9ecef;
	border-radius: 16px;
	transition: all .2s ease;
}

.assessment-card:hover {
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.badge-soft-success {
	background-color: #e6f7ee;
	color: #198754;
	font-weight: 500;
}

.badge-soft-primary {
	background-color: #eee8ff;
	color: #6f42c1;
	font-weight: 500;
}

.btn-purple {
	background: #713cdd;
	color: #fff;
	border: none;
}

.btn-purple:hover {
	background: #5e35b1;
	color: #fff;
}

.bg-gray {
	background-color: #f7f7f880;
}

.btn-soft-purple {
	background-color: #713cdd33;
	border: 1px solid #713cdd4d;
	transition: all .2s ease;
	color: #713cdd;
}

.btn-soft-purple:hover {
	background-color: #713cdd1a;
	border-color: #713cdd;
}

.text-lg {
	font-size: 1.125rem;
	line-height: 1.75rem;
}

.text-3xl {
	font-size: 1.875rem;
	line-height: 2.25rem;
}

.bg-btn-green {
	background-color: #1cca5b1a;
	color: #1cca5b !important;
}

.text-xs {
	font-size: 0.75rem !important;
	line-height: 1rem;
}

.btn-outline-green {
	border-color: #1cca5b !important;
	color: #1cca5b !important;
}

.f-10 {
	font-size: 10px !important;
}

.free {
	background: #16a34a;
}

.test-circle {
	width: 90px;
	height: 90px;
	background: #ede9fe;
}

@media ( max-width : 576px) {
	.test-circle {
		width: 70px;
		height: 70px;
	}
}

.report-icon {
	width: 34px;
	height: 34px;
	background: #6f42c1;
}

.viewbg-blue {
	background: #e7f1ff;
}

.btn-outline-green:hover {
	background-color: #198754;
	color: #fff;
	border-color: #198754;
}

.score-circle {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 600;
	font-size: 1.5rem;
	margin: auto;
	position: relative;
}

.circle-i {
	border: 3px solid #4dabf7;
	background: radial-gradient(circle, rgba(77, 171, 247, 0.08) 30%,
		transparent 31%);
}

.circle-e {
	border: 3px solid #ffc107;
	background: #fff9e6;
}

.circle-eo {
	border: 3px solid #adb5bd;
	background: #f8f9fa;
}

.circle-el {
	border: 3px solid #b197fc;
	background: #f3f0ff;
}

@media ( max-width :576px) {
	.score-circle {
		width: 90px;
		height: 90px;
		font-size: 1.2rem;
	}
}

.com-bg {
	background: #1cca5b;
}

.vertical-gradient-line {
	width: 2px;
	background: linear-gradient(to bottom, hsl(260 70% 55%/ .4),
		hsl(260 70% 55%/ .2), transparent);
}

.vr-report {
	opacity: inherit !important;
	color: #22222a99;
	height: 100px;
}

.johari-card {
	border-radius: 1rem;
	background: #ffffff;
}

.effectiveness-box {
	background: hsl(260 70% 55%/ .1);
	border: 1px solid #713cdd4d;
	border-radius: 1rem;
}

.legend-dot {
	width: .75rem;
	height: .75rem;
}

.metric-row {
	padding: 0.6rem 0;
	border-bottom: 1px solid #f1f1f1;
}

.metric-row:last-child {
	border-bottom: none;
}

.segment-bar {
	height: 12px;
}

.bg-gray-200 {
	background-color: #e5e7eb;
}

.radar-wrapper {
	max-width: 500px;
	margin: auto;
}

.radar-title {
	font-weight: 600;
	font-size: 18px;
}

.small-label {
	font-size: 8px;
	fill: #6c757d;
}

.axis-label {
	font-weight: 600;
	font-size: 15px;
}

.score-label {
	font-weight: bold;
	font-size: 14px;
	fill: #0d6efd;
}

.chart-wrapper {
	max-width: 300px;
	margin: auto;
}

.axis-text {
	font-size: 10px;
	font-weight: 500;
	fill: #495057;
}

.section-text {
	font-size: 10px;
	font-weight: 500;
}

.highlight-text {
	font-size: 9px;
	font-weight: bold;
	fill: #713cdd;
}

.bg-muted-20 {
	background-color: #f7f7f833 !important;
}

.section-badge {
	width: 22px;
	height: 22px;
	font-size: 11px;
}

#screen-result {
	margin: auto;
	width: 950px;
}

.legend-box {
	width: 16px;
	height: 16px;
	display: inline-block;
	border-radius: 16px;
}

.border-dashed {
	border: 2px dashed currentColor !important;
}

.btn-outline-green:hover {
	background-color: #1cca5b !important;
	color: #fff !important;
}

.product-img {
	width: 60px;
	height: 60px;
	object-fit: cover;
	border-radius: 8px;
}

.btn-continue:hover {
	background-color: #f96f1f !important;
	color: #fff !important;
}

.h-8 {
	height: 2rem !important;
}

.border-input {
	border-color: #eaeaec !important;
}

.recommend-card {
	border: 1px dashed #dee2e6;
	border-radius: 16px;
	background-color: #f7f7f833;
	transition: all 0.2s ease;
	height: 8rem !important;
}

.pack-option {
	border: 2px solid #dee2e6;
	border-radius: 12px;
	padding: 12px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.pack-option:hover {
	border-color: #7979864d;
}

.pack-option input[type="radio"] {
	display: none;
}

.pack-option.active {
	border-color: #713cdd;
	background-color: #713cdd0d;
}

.radio-circle {
	width: 16px;
	height: 16px;
	border-radius: 50%;
	border: 1px solid #713cdd;
	color: #713cdd;
	display: flex;
	align-items: center;
	justify-content: center;
}

.radio-circle i {
	font-size: 8px;
	display: none;
}

.pack-option.active .radio-circle i {
	display: block;
}

a.navactivetext {
	font-size: .875rem;
	text-decoration: none !important;
}

.educationDtls {
	border: 1px solid #dddddd !important;
	padding: 20px !important;
	background: #fff;
	margin: 0 0 30px;
	border-radius: 10px;
	width: calc(100% - 160px) !important;
}

.countinuebg {
	background-color: #ffff !important;
	box-shadow: none;
}

.accordions h2, .accordions h2 label {
	border: none;
	background-color: #fff;
	color: #22222a;
	font-size: 1.25rem;
	padding: 10px 3px;
}

.university-box {
	background: #f8f7ff;
	border: 1px solid #e8e4f8;
}

.university-label {
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.university-value {
	font-size: 0.95rem;
	color: #0f172a;
}

.university-change-btn {
	border: 1.5px solid #7c3aed;
	color: #7c3aed;
	border-radius: 10px;
	padding: 6px 16px;
	font-size: 0.8rem;
	font-weight: 600;
	background: transparent;
	white-space: nowrap;
	transition: all 0.2s ease;
}

.university-change-btn-hover {
	background: #7c3aed !important;
	color: #fff !important;
}

#registerModal .form-wrapper {
	max-width: 900px;
	margin: 0 auto;
	padding: 50px 20px;
}

#registerModal .form-label {
	font-weight: 600 !important;
	font-size: 0.875rem;
	color: #0f172a;
}

#registerModal .form-control, #registerModal .form-select {
	border-radius: 10px !important;
	padding: 12px 14px !important;
	border: 1px solid #dcdfe5 !important;
}

#registerModal .form-control:hover, #registerModal .form-select:hover {
	border-radius: 10px !important;
	padding: 12px 14px !important;
}

/* Send OTP button */
#registerModal .otp-btn {
	color: #ee652b;
	border: 1px solid #ee652b;
	background: transparent;
	border-radius: 10px;
	padding: 10px 18px;
	font-weight: 500;
	transition: all 0.25s ease;
	white-space: nowrap;
}

#registerModal .otp-btn:hover {
	background: #ee652b;
	color: #ffffff;
}

/* Submit button */
#registerModal .submit-btn {
	background: #f97316;
	color: #ffffff;
	font-weight: 600;
	border-radius: 12px;
	padding: 12px 50px;
	border: none;
}

#registerModal .submit-btn:hover {
	background: #ea580c;
}

#registerModal .required {
	color: red;
}

.hover-primary:hover, .hover-primary:hover span, .hover-primary:hover i
	{
	color: #713cdd !important;
}

.text-muted-disable {
	color: #79798699;
}

.text-purple {
	color: #7c3aed;
}

/* =====================================================
   PRACTICE HUB CARDS
===================================================== */
.practice-card {
	background: #ffffff;
	border-radius: 16px;
	padding: 28px;
	border: 1px solid #e5e7eb;
}

.border-purple {
	border-left: 4px solid #6d4aff;
}

.border-orange {
	border-left: 4px solid #ff7a18;
}

.qs-select {
	width: 180px;
	border-radius: 10px;
	padding: 8px 14px;
	font-size: 14px;
	font-weight: 500;
	color: #0f172a;
	border: 1px solid #e5e7eb;
	background-color: #ffffff;
}

.qs-select:focus {
	box-shadow: none;
	border-color: #7c3aed;
}

/* =====================================================
   BUTTONS
===================================================== */
.btn-orange {
	background-color: #ff7a18;
	color: #ffffff;
	border: none;
}

.btn-orange:hover {
	background-color: #e96b0f;
	color: #ffffff;
}

.btn-locked {
	background: #f8fafc;
	color: #9ca3af;
	border: 1px solid #e5e7eb;
	cursor: pointer;
}

/* =====================================================
   TABS (Practice / Test Analysis)
===================================================== */
.practice-tabs {
	display: inline-flex;
	gap: 6px;
	padding: 6px;
	background: #f8fafc;
	border-radius: 14px;
}

.tab-btn {
	flex:1;
	border: none;
	padding: 10px 26px;
	border-radius: 12px;
	font-weight: 600;
	background: transparent;
	color: #6b7280;
	cursor: pointer;
}

.tab-btn.active {
	background: linear-gradient(135deg, #7c3aed, #8b5cf6);
	color: #ffffff;
	box-shadow: 0 8px 20px rgba(124, 58, 237, 0.4);
}

.tab-section {
	display: none;
}

.tab-section.active {
	display: block;
}

/* =====================================================
   ACCORDION (Practice Tests)
===================================================== */
.practice-accordion .accordion-item {
	border: 1px solid #e5e7eb;
	border-radius: 16px;
	margin-bottom: 16px;
	overflow: hidden;
}

.practice-accordion .accordion-button {
	background: #ffffff;
	font-weight: 600;
	box-shadow: none;
}

.practice-accordion .accordion-button:not (.collapsed ) {
	background: #ffffff;
}

.practice-accordion .accordion-button::after {
	transform: scale(0.9);
}

/* =====================================================
   BADGES
===================================================== */
.badge.paid {
	background: #2563eb;
}

/* =====================================================
   PRACTICE TABLE (Accordion Body)
===================================================== */

.practice-table {
	width: 100%;
}

.practice-table.head, .practice-table.row {
    display: grid;
    grid-template-columns: 2fr 0px 1fr;
    align-items: start;
    padding: 14px 0;
}

.practice-table.head {
    align-items: center;
}

.practice-table.head {
    font-size: 13px;
    color: #6b7280;
    border-bottom: 1px solid #e5e7eb;
    align-items: center;
}

.practice-table.row {
    border-bottom: 1px solid #f1f5f9;
}

.practice-table.row:last-child {
    border-bottom: none;
}

.practice-table .takeTest,
.practice-table span.takeTest,
.practice-table div.takeTest {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding-left: 0;
    margin-left: 0;
}

.practice-table.row > span:last-child {
    padding-left: 0;
}

.practice-table .takeTest .btn,
.practice-table .takeTest button {
    width: auto !important;
    min-width: 90px;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
}

.practice-table .takeTest .btn-disabled-note {
    display: block;
    font-size: 0.75rem;
    color: #6c757d;
    margin-top: 2px;
}

.practice-table .takeTest .attempts-remaining {
    display: block;
    font-size: 0.75rem;
}

.takeTest button {
    width: auto !important;
    min-width: 90px;
    white-space: nowrap;
}

/* =====================================================
   PRACTICE LIST (Non-accordion list)
===================================================== */
.practice-item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 16px 20px;
	border: 1px solid #e5e7eb;
	border-radius: 14px;
	margin-bottom: 12px;
}

.practice-item .count {
	margin-left: auto;
	color: #64748b;
}

/* =====================================================
   ANALYSIS SECTION
===================================================== */
.analysis-card-wrapper {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 24px;
	border: 1px solid #e5e7eb;
	border-radius: 18px;
	padding: 24px;
	overflow: visible !important;
}

.analysis-side {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
}

.qs-filter {
	position: relative;
	z-index: 1055; /* higher than cards */
}

/* ================= KEY INSIGHTS CARD ================= */
.analysis-right {
	background: #ffffff;
	border: 1px solid #e5e7eb;
	border-radius: 14px;
	padding: 18px 20px;
}

/* Title */
.analysis-right h6 {
	display: flex;
	align-items: center;
	font-size: 14px;
}

/* Bullet list */
.analysis-right ul {
	list-style: none; /* remove default bullets */
	padding-left: 0;
	margin-bottom: 0;
}

.analysis-right ul li {
	position: relative;
	padding-left: 14px;
	margin-bottom: 8px;
	font-size: 13px;
	color: #475569;
	line-height: 1.4;
}

/* Custom bullet dot */
.analysis-right ul li::before {
	content: "•";
	position: absolute;
	left: 0;
	top: 0;
	color: #7c3aed; /* purple bullet */
	font-size: 18px;
	line-height: 1;
}

.accuracy-item {
	margin-bottom: 22px;
}

.accuracy-top {
	display: flex;
	justify-content: space-between; /* creates empty space */
	align-items: center;
	margin-bottom: 6px;
}

.accuracy-label {
	font-size: 14px;
	font-weight: 500;
	color: #0f172a;
}

.accuracy-value {
	font-size: 14px;
	font-weight: 500;
	color: #64748b;
	text-align: right;
	min-width: 40px; /* keeps all % aligned */
}

.accuracy-item span {
	display: flex;
	justify-content: space-between;
	font-weight: 500;
	margin-bottom: 6px;
}

/* =====================================================
   PROGRESS BARS
===================================================== */
.progress {
	height: 8px;
	border-radius: 999px;
}

.progress-bar.blue {
	background: #3b82f6;
}

.progress-bar.green {
	background: #22c55e;
}

.progress-bar.orange {
	background: #f97316;
}

.progress-bar.purple {
	background: #a855f7;
}

/* =====================================================
   TOOLTIP (Info icon)
===================================================== */
.tooltip-inner {
	max-width: 320px;
	background: #ffffff;
	color: #0f172a;
	padding: 14px 16px;
	border-radius: 12px;
	font-size: 14px;
	line-height: 1.5;
	box-shadow: 0 12px 30px rgba(15, 23, 42, 0.15);
	text-align: left;
}

.tooltip.bs-tooltip-top .tooltip-arrow::before {
	border-top-color: #ffffff;
}

.info-icon {
	cursor: pointer;
}

/* =====================================================
   BOOTSTRAP SAFETY OVERRIDES
===================================================== */
.accordion-button:focus {
	box-shadow: none;
}

.accordion-button {
	overflow: visible;
}
/* Filter button */
.qs-btn {
	background: #ffffff;
	border: 1px solid #e5e7eb;
	border-radius: 10px;
	padding: 8px 14px;
	font-size: 14px;
	font-weight: 500;
	color: #0f172a;
}

.qs-btn:focus {
	box-shadow: none;
}

/* Dropdown menu */
.qs-menu {
	border-radius: 12px;
	padding: 6px;
	border: 1px solid #e5e7eb;
	box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
	min-width: 180px;
}

/* Dropdown items */
.qs-menu .dropdown-item {
	border-radius: 8px;
	padding: 8px 12px;
	font-size: 14px;
	color: #0f172a;
}

/* Hover state */
.qs-menu .dropdown-item:hover {
	background: #f8fafc;
}

/* Selected item */
.qs-menu .dropdown-item.active {
	background: #ff7a18;
	color: #ffffff;
	font-weight: 500;
}

.qs-menu .dropdown-item.active i {
	color: #ffffff;
}

.qs-filter.dropdown>.dropdown-menu {
	display: none;
}

.qs-filter.dropdown>.dropdown-menu.show {
	display: block;
}

.hover-white:hover {
	color: #fff !important;
}

.btn-red {
	border-color: #ef4343 !important;
	color: #ef4343 !important;
}

.btn-red:hover {
	color: #ffff !important;
	background-color: #ef4343 !important;
}
button.no-btn {
    padding: 0.5rem 0.7rem !important;
    border-radius: 6px !important;
    height: 2.5rem !important;
}
 .form-select {
    border-radius: 12px !important;
    height: 2.5rem;
        font-size: 0.875rem;
    
    }
   .actionMessage li:first-child {
	list-style: none;
}

.actionMessage li {
	float: left;
	margin-left: -25px;
	width: 100%;
}

.actionMessage br {
	height: 1px;
	float: left;
}

.personsl-dtl {
	border-width: 0px;
	border: 0px;
}

.headcol {
	border-right: 0px;
}

.hide-calendar .ui-datepicker-calendar {
	display: none;
}

#ui-datepicker-div button.ui-datepicker-current {
	display: none;
}

#addtionalformDetails.ui-datepicker-trigger:first-child {
	margin-top: 5px !important;
}
   .manadetory-fields {
	font-size: 13px;
	color: #ff0000;
	font-family: 'Roboto Bold';
	font-weight: normal;
	margin-left: 1px;
}
   
.btn-cart:disabled,
.btn-cart[disabled] {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
    background-color: #ccc !important;
    color: #666 !important;
    border-color: #ccc !important;
}
button.btn.btn-gray{
	color: #713cdd;
    border-color: #713cdd;
}
button.btn.btn-gray:hover{
	    background-color: #f3e8ff;
}

.exeSummary {
    background-color: #203272;
    color: white !important;
}
.exeSummary p {
    color: white !important;
}
#press {
    height: auto;
    border-radius: 6px;
    angle: 0 deg;
    opacity: 1;
    background-image: linear-gradient(to right, #223486, #0C122C);
    overflow-x: hidden;
    scroll-behavior: smooth;
}
.button-outline {
    font-size: 14px;
    border: 1px solid #949BA6;
    padding: 9px 10px;
    border-radius: 50px;
    width: -webkit-fill-available;
}
#about .card-arrow {
    margin-top: auto;
    text-align: right;
    font-size: 1.2rem;
}
#about .card {
    background: #103f56;
    color: #fff;
    border-radius: 10px;
    padding: 1rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.2s ease-in-out;
}
.sathi-right {
    background: #fff;
    border-radius: 10px;
    padding: 2rem;
}
.head-text {
    color: #FD8A66;
}
.feature {
    margin-bottom: 1.2rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.feature span {
    color: darkslategrey;
}
.profile-header {
    background: #e9f2fb;
    padding: 1rem;
}
.profile-footer {
    background: #fcd770;
    padding: 1rem;
}
.profile-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    height: 17rem;
}
.custom-msg {
    border: 0 solid #999;
    padding: 3px;
    padding-bottom: 20px;
    color: red;
}

.bg-gray {
	background-color: #f1f5f9; /* Bootstrap-like muted */
}

.util-teal {
	color: rgb(15, 118, 110);
	border: 1px solid rgb(20, 184, 166) !important;
/* 	background-color: rgba(20, 184, 166, 0.1);
 */	font-size: 10px;
}
.bg-blue-soft {
	background-color: #eff6ff; /* blue-50 */
	border-color: #bfdbfe; /* blue-200 */
}

.bg-btn-succes {
	background-color: rgb(20, 184, 166);
}
.tab-pill {
    display: inline-flex;
    background: rgb(241, 243, 245);
    border-radius: 0.75rem;
    padding: 0.25rem;
    gap: 0.25rem;
}
.custom-card {
    border: 2px solid #713cdd4d;
        background: linear-gradient(
        to right,
        #f8f9fa 0%,
        hsl(260 70% 55% / 0.08) 50%,
        hsl(260 70% 55% / 0.04) 100%
    );
}
.bg-pruple{
background-color: #713cdd33;	
}
.filter-circle{
	width:6px; 
	height:6px;
	
}
.badge-teal {
    font-size: 10px;
    border: 1px solid #14b8a6;
    color: #0f766e;
    background: #ccfbf1;
}
.filter-btn {
    background-color: #ccc;
    border-color: #ccc;
}
.filter-btn:hover {
    background-color: #ccc;
    border-color: #ccc;
}
.filter-btn[data-type="sathi"].active {
    background-color: #14b8a6;
    border-color: #14b8a6;
}

.filter-btn[data-type="easy"].active {
    background-color: #FA7020;
    border-color: #FA7020;
}
.filter-btn .tick-icon {
    display: none;
}

.filter-btn.active .tick-icon {
    display: inline-block;
}
.cutoff-btn {
	font-size: 10px;
    background-color: #fef2f2;
    border: 1px solid #ef4444;
    color: #b91c1c;
}
.h-22{
	height: 22px;
}

  /* Minimal UI helpers */
    .step-circle {
      width: 3rem;
      height: 3rem;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 600;
    }
    .step-active {
      border: 3px solid #7c3aed;
      color: #7c3aed;
  box-shadow:
    0 0 0 4px rgba(124, 58, 237, 0.30),
    0 4px 10px rgba(0, 0, 0, 0.12);
      
    }
    .step-inactive {
      border: 1px solid #dee2e6;
      color: #adb5bd;
    }
    .step-line {
      height: 2px;
      background-color: #dee2e6;
      flex-grow: 1;
    }
.score-bg{
	background:#f96f1f4d;
}

.score-icon{
    width: 5rem;
    height: 5rem;
    background: #713cdd1a;
}
.back-link {
  padding: 0.395rem 0.95rem;
  border-radius: 8px; /* pill */
  transition: background-color .2s ease, color .2s ease;
}

.back-link:hover {
  background-color: #f97316; /* orange */
  color: #fff !important;
}

.back-link:hover i {
  color: #fff;
}
    .step-completed{
	font-size: 20px;
    color: white;
    background-color: hsl(260 70% 55%);
}

  .stepper-wrapper {
  position: relative;
  padding-top: 25px;
}

/* Base grey line */
.stepper-line {
  position: absolute;
  top: 45px;
  left: 21px;                 /* half of circle width */
  width: calc(100% - 42px);   /* full width minus both circle halves */
  height: 4px;
  background: #e5e7eb;
  border-radius: 10px;
  z-index: 1;
}

/* Gradient progress line */
.stepper-progress {
  position: absolute;
  top: 45px;
  left: 21px;                 /* align with base line */
  height: 4px;
  width: 0%;
  background: linear-gradient(90deg, #7b42f6, #00c6d4);
  border-radius: 10px;
  z-index: 2;
  transition: width 0.4s ease;
}


.step {
  position: relative;
  z-index: 3;
}

/* Circle */
.step-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid #e5e7eb;
  margin: 0 auto 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  transition: all 0.3s ease;
}

/* Active */
.step-circle.active {
  border-color: #7b42f6;
  color: #7b42f6;
  box-shadow: 0 0 0 6px rgba(123, 66, 246, 0.15);
}

/* Completed */
.step-circle.completed {
  background: #7b42f6;
  color: #fff;
  border: none;
}

/* Labels */
.step-label {
  font-size: 12px;
  font-weight: 600;
  color: #9ca3af;
}

.step-label.active {
  color: #111827;
}

/* .step-content {
  display: none;
} */

.step-content.active-step {
  display: block;
}

span.badge.app-paid {
    border-radius: 9999px;
    background-color: #f0fdf4;
    border: 1px solid #22c55e;
    font-size: 0.75rem;
    color: #15803d;
}

span.badge.app-pending {
    border-radius: 9999px;
    background-color: #fff7ed ;
    border: 1px solid #f97316;
    font-size: 0.75rem;
    color: #c2410c;
}
span.badge.app-progress {
    border-radius: 9999px;
    background-color: #fefce8R ;
    border: 1px solid #f97316;
    font-size: 0.75rem;
    color: #a16207;
}
.reward-icon{
    background-color: #713cdd1a;
    width: 70px;
    height: 70px;
}
.eye-hover:hover {
	padding:0px;
  background-color: #f96f1f; 
  color: #fff !important;
  width:2rem;
  height:2rem;
  border-radius: 10px;
}
.py-05 {
    padding-top: .125rem;
    padding-bottom: .125rem;
}
.btn-view{
	border:1px solid #eaeaec;
}
.btn-view:hover{
  background-color: #f96f1f; 
  color: #fff !important;	
}
.stepper {
  position: relative;
  padding-left: 30px;
}

/* vertical line */
.stepper::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 5px;
  bottom: 5px;
  width: 2px;
  background: #e9ecef;
}

/* step item */
.step {
  position: relative;
  display: flex;
  gap: 12px;
  margin-bottom: 22px;
}

/* dot */
.step .circle {
  position: absolute;
  left: -31px;
    top: 2px;
    width: 25px;
    height: 25px;
  border-radius: 50%;
  background: #dee2e6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: #fff;
}

/* completed step */
.step.completed .circle {
  background: #22c55e;
}



/* active step */
.step.active .circle {
  background: #6f42c1;
  box-shadow: 0 0 0 4px rgba(111,66,193,0.15);
}

/* text */
.step-title {
	color: #15803d;
  font-weight: 500;
}

.step-sub {
  font-size: 12px;
  color: #6c757d;
}

/* active text highlight */
.step.active .step-title {
  color: #6f42c1;
}

.circle.pending {
	left: -30px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #f1f3f5;
  border: 2px solid #dee2e6;
  display: flex;
  align-items: center;
  justify-content: center;
}

.circle.pending span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ced4da;
}
.circle.active span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ced4da;
}
.p-8 {
    padding: 2rem;
}

.campus-card {
  border: 2px solid #eaeaec;
  border-radius: 12px;
  padding: 16px;
  cursor: pointer;
  transition: all 0.2s;
}

.campus-card.active {
  border: 2px solid #713cdd;
  background: #713cdd0d;
}

.campus-card input {
  cursor: pointer;
}
.form-check-input.campus-check {
    border-radius: 5px;
}
.border-dashed-app {
    border: 2px dashed #eaeaec !important;
}
.payment-btn {
    border: 2px solid var(--bs-border-color);btn-blue-500 
    background-color: #fff;
    transition: all 0.2s ease;
  }

  .btn-check:checked + .payment-btn {
    border-color: #6f42c1;
    background-color: #f5efff;
    color: #6f42c1;
    font-weight: 600;
  }

  .payment-btn:hover {
border-color: rgba(111, 66, 193, 0.5) !important;
	}
.personality-btn {
    background: linear-gradient(135deg,  #f59e0b, #f97316);
    color: #fff;
     height: 2.75rem;
     padding: 0.5rem 2rem;
}
.per-text {
    max-width: 56rem;
    font-size: 1rem;
}
.palette-btn {
     width: 40px;
     height: 40px;
     margin: 5px;
     border-radius: 50%;
     border: none;
     font-size: 12px;
 }
 .answered {
     background-color: #28a745;
     color: white;
 }
 .not-answered {
     background-color: #dee2e6;
 }
 .current {
     border: 2px solid #000;
 }
  .campus-card:hover {
    border: 2px solid #713cdd80;
}
.text-mute{
	color: #797986 !important;
}
.text-base
 {
    font-size: 1rem;
    line-height: 1.5rem;
}
.bg-muted30 {
    background-color: #f7f7f84d;
}
.takeTest button {
	width:50%;
	}
.form-container {
	margin: 0 !important;
}
 .loginCardStudent {
    background-color: white;
    align-self: flex-start;
    height: auto !important;
    padding: 3rem !important;
    border: 2px solid #dcdfe5 !important;
    border-radius: 1rem !important;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.15), 0 10px 10px -5px rgba(0, 0, 0, 0.08) !important;
}
.customFontSize li {
font-size:1rem;
}
.bg-fltr {
backdrop-filter: blur(1px);
}
.work-table {
	max-width: 100%;
} 
.w-19 {
	width: 19rem;
}
.upload-box #photoUpload {
	line-height: 2rem;
}
/* tabs */
@media only screen and (min-width: 600px) and (max-width: 1024px) {
.work-table {
	max-width: 43rem !important;
}
}
	
/* mobile Devices Ankit */
@media (max-width: 480px) {
	.sideWidth {
    width: 200px !important;
}
	.sidebar-logo {
    width: 96px;
}
	.sidebar .nav-link, .sidebar .nav-link .nav-link {
    gap: 5px;
    font-size: 0.65rem;
}
	.educationDtls {
    padding: 20px !important;
    margin: 0 0 30px;
    width: calc(100% - 18%) !important;
}
	.mobAbsolute {
    position: absolute;
    left: 4rem;
}
.submenu-item {
    margin-right: 0;
}
.personalDtls {
    padding: 10px !important;
    width: calc(100% - 18%) !important;
}
	.sidebar-collapsed .sidebar {
	width: 60px !important;
	}
	.prac-floating-card {
    top: 111px;
    left: 169px;
    width: 229px;
	}
	#premiumPlan {
    padding-inline: 1rem;
    padding-block: 2rem;
	}
	.tab-btn {
    padding: 5px 13px;
	}
	.sidebar-collapsed .sidebar {
    width: 56px;
	}
	#premiumPlan {
    max-width: 22rem;
	}
}

/* Tablet Devices Ankit */
@media (max-width: 768px) {
	.work-table {
	max-width: 37rem !important;
}
	.practice-table.row {
    display: grid;
    grid-template-columns: 2fr 1fr 2fr;
    padding: 7px 0;
}
	.takeTest button {
	width:100% !important;
	}
	.practice-card {
    padding: 14px !important;
}
	.side-btn {
    width: 82%;
    margin-inline:auto;
    justify-content: center;
}
	.sidebar-collapsed .sidebar {
    width: 56px;
}
	.card-body {
    padding: 1rem 0.7rem;
}
	input.otpBtn {
    height: 2rem;
    padding: 2px 8px;
    margin-top: 12px;
    font-size: 14px;
}
  .login-page-wrapper {
    padding-top: 1rem;      /* reduce top space */
    padding-bottom: 2rem;   /* reduce bottom space */
  }
  .progress-ring {
    width: 3rem;
    height: 3rem;
}
.toggle-btn {
    padding: 0.5rem 1rem;
}
.btn-upgrade {
    padding: 8px;
    font-weight:500;
    font-size:12px !important;
}
#profilePercentage {
	font-size:0.8rem;
}
.pill-soon {
    font-size: 9px;
    padding: 4px 9px;
}
.toggle-wrapper {
    padding: 0;
    font-size:11px;
}
.soft-card h5 {
	font-size:16px;
}
    .work-table {
        max-width: 16rem !important;
    }
    /* .toggle-pill {
    width: 16% !important;
   	margin: 0rem !important;
} */
}


@media (min-width: 992px) {
    .desktop-my-5 {
        margin-top: 3rem !important;
    }
      .desktop-w-50 {
        width: 50% !important;
    }
    
}
}

/* Datepicker slot availability colour coding */
.datepickerHighlight {
    background-color: lightgreen !important;
}
.datepickerHighlight a.ui-state-default,
.datepickerHighlight a.ui-state-default:hover {
    background: lightgreen !important;
    background-color: lightgreen !important;
    color: #1a6b1a !important;
    border-color: #7ec87e !important;
}

.datepickerSlotsFull {
    background-color: #ffcccc !important;
    pointer-events: none;
}
.datepickerSlotsFull a.ui-state-default {
    background: #ff6666 !important;
    background-color: #ff6666 !important;
    color: white !important;
    border-color: #cc0000 !important;
    pointer-events: none;
}


.card-footer{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
}

.price{
    display:flex;
    align-items:center;
    white-space:nowrap;
}

.btn-cart{
    margin-left:auto;
}


.loader-wrapper{
    width:70px;
    height:70px;
    background:#eef4ff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
}

.dot-loader{
    width:38px;
    height:38px;
    position:relative;
    animation:spin 1.2s linear infinite;
}

.dot-loader span{
    position:absolute;
    width:6px;
    height:6px;
    background:#3b82f6;
    border-radius:50%;
}

.dot-loader span:nth-child(1){top:0;left:50%;transform:translateX(-50%);}
.dot-loader span:nth-child(2){top:5px;right:5px;}
.dot-loader span:nth-child(3){top:50%;right:0;transform:translateY(-50%);}
.dot-loader span:nth-child(4){bottom:5px;right:5px;}
.dot-loader span:nth-child(5){bottom:0;left:50%;transform:translateX(-50%);}
.dot-loader span:nth-child(6){bottom:5px;left:5px;}
.dot-loader span:nth-child(7){top:50%;left:0;transform:translateY(-50%);}
.dot-loader span:nth-child(8){top:5px;left:5px;}

@keyframes spin{
    to{
        transform:rotate(360deg);
    }
}
