body {
	background-color: #f3f4f8;
}

.container{
	width:80%;
    position: relative;

}

body {
	height: 100%;
	background-color: aliceblue;
}

.hero-1{
	font-size: 60px;
	line-height: 75px;
	color: white;
	font-weight: bold;

}
.hero-2{
	color: white;
	font-size: 40px;
}
.hero-button{
	height: 13%;
	width: 30%;
	font-size: xx-large;
	background-color: white;
}

.hero-image{
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.trading-class{
	font-size: 60px;
	height: 100%;
	color: black;
	font-weight: bold;

}
ul.navbar-nav{
	display: flex;
}
.security-class{
	font-size: 60px;
	font-weight: bold;
}
.four-card{
	height: 100%;
	width:80%;
	background-color: white;
	color: black;
}
.four-button{
	width: 25%;
	height: 100%;
	margin-block:2%;
}
.bottom-image{
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.bottom-class{
	font-size: 60px;
	margin-left: 70px;
	font-weight: bold;
}
.bottom-class-2{
	font-size: 16px;
	margin-left: 70px;
}
/* Removed global dropdown hiding rule that was interfering with Bootstrap dropdowns */

/* Fix dropdown z-index issues */
.dropdown-menu {
    z-index: 9999 !important;
    position: absolute !important;
    background-color: rgba(75, 33, 238, 0.95) !important;
    backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 12px !important;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1) !important;
    padding: 0.5rem 0 !important;
    min-width: 200px !important;
}

.navbar {
    z-index: 1000;
    position: sticky !important;
    top: 0 !important;
    width: 100% !important;
}

/* Ensure dropdown items are clickable and visible */
.dropdown-item {
    z-index: 10000 !important;
    position: relative !important;
    color: white !important;
    padding: 0.75rem 1.5rem !important;
    transition: all 0.3s ease !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    display: block !important;
    width: 100% !important;
}

.dropdown-item:hover {
    background-color: rgba(255, 255, 255, 0.1) !important;
    color: #2BD6C5 !important;
}

.dropdown-item:last-child {
    border-bottom: none !important;
}

/* Ensure dropdown toggle is properly positioned */
.dropdown-toggle::after {
    display: inline-block !important;
    margin-left: 0.255em !important;
    vertical-align: 0.255em !important;
    content: "" !important;
    border-top: 0.3em solid !important;
    border-right: 0.3em solid transparent !important;
    border-bottom: 0 !important;
    border-left: 0.3em solid transparent !important;
}

/* Ensure dropdown container has proper positioning */
.dropdown {
    position: relative !important;
}

/* Make sure dropdown menu appears above all content */
.dropdown-menu.show {
    display: block !important;
    z-index: 9999 !important;
}

/* Override any conflicting dropdown rules */
.navbar .dropdown-menu {
    display: none !important;
    z-index: 9999 !important;
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    right: auto !important;
    background-color: rgba(75, 33, 238, 0.95) !important;
    backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 12px !important;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1) !important;
    padding: 0.5rem 0 !important;
    min-width: 200px !important;
}

.navbar .dropdown-menu.show {
    display: block !important;
}

/* Ensure dropdown toggle works */
.navbar .dropdown-toggle {
    cursor: pointer !important;
}

/* Force dropdown visibility */
.navbar .dropdown.show .dropdown-menu {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Additional dropdown fixes for navbar */
.navbar-nav .dropdown-menu {
    position: absolute !important;
    top: 100% !important;
    left: auto !important;
    right: 0 !important;
    z-index: 9999 !important;
    display: none !important;
}

.navbar-nav .dropdown-menu.dropdown-menu-end {
    right: 0 !important;
    left: auto !important;
}

/* Ensure dropdown is visible when toggled */
.navbar-nav .dropdown.show .dropdown-menu {
    display: block !important;
    animation: dropdownFadeIn 0.2s ease-in-out !important;
}

@keyframes dropdownFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Emergency dropdown fix - force visibility */
.navbar .dropdown-menu[style*="display: none"] {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Ensure dropdown works on all screen sizes */
@media (min-width: 992px) {
    .navbar .dropdown-menu {
        display: none !important;
    }
    
    .navbar .dropdown.show .dropdown-menu {
        display: block !important;
    }
}

/* Additional dropdown fixes to ensure it works */
.navbar .dropdown-toggle:focus {
    outline: none !important;
    box-shadow: none !important;
}

.navbar .dropdown-toggle:focus + .dropdown-menu {
    display: block !important;
}

/* Force dropdown to work even without JavaScript */
.navbar .dropdown:hover .dropdown-menu {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Enhanced sticky navbar with shadow effect */
.navbar.sticky-top {
    position: sticky !important;
    top: 0 !important;
    z-index: 1000 !important;
    width: 100% !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
}

/* Add shadow when navbar is at top */
.navbar.sticky-top.scrolled {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15) !important;
    backdrop-filter: blur(10px) !important;
}
d1{
	color: white;
    font-size: 60px;
	line-height: 60px;
}
d2{
	color: white;
	font-size: 30px;
	line-height: 40px;
}
d3{
	font-size: 55px;
	height: 100%;
	line-height: 60px;
}
.d4{
	width: 176px;
	height: 43px;
	padding-left: 44px;
	padding-right: 44px;
	padding-top: 11px;
	padding-bottom: 11px;
	border-radius: 10px;
	overflow: hidden;
	border: 1px white solid;
	justify-content: center;
	align-items: center;
	gap: 10px;
	display: inline-flex;
	font-size: 15px;
}
d5{
	width: 80%;
	height: 70px;
	margin-left:10%;
	margin-bottom: 50px;
	background-color: #2BD6C5;
}
.image1{
	  width: 100%;
	  height: 100%;
	  object-fit: contain;
	}

.vertical-center {
  margin: 0;
  position: relative;
  top: 50%;
}

.vertical-center-card {
  margin: 0;
  text-align: center;
  position: inherit;
  top: 50%;
  margin-block:5%;
  background-color: white;
  color: black;
  height: 5rem;
  width: 17rem;
}
.button-1 {
	height: 49px;
	width: 215px;
	font-family: 'Palatino', serif;
	font-size: large;
	background-color: #4B21EE;
	margin: 10px;
	margin-left: 0px;
	color: #FFFFFF;
	border-color: #FFFFFF;
	border-radius: 10px;
	overflow: hidden;
	--link-hover-color: #fffff
}
.button-2 {
		height: 49px;
		width: 215px;
		font-size: large;
		background-color: #9fde4a;
		margin: 10px;
		color: #252133;
		border-color: #FFFFFF;
		border-radius: 10px;
		overflow: hidden;
	}
.button-active {
	height: 49px;
	width: 215px;
	font-family: 'Palatino', serif;
	font-size: large;
	background-color: #9fde4a;
	color: black;
	border-color: #FFFFFF;
	border-radius: 10px;
	overflow: hidden;
	margin: 10px;
	margin-left: 0px;
	--link-hover-color: #fffff
}
.button-center {
	position: absolute;
	margin: 10px;
	top: 50%;
	left: 50%;
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
.banner-1 {
	background-image: url(https://storage.googleapis.com/static_django/website/image/banner.jpg);
	background-repeat: no-repeat;
	background-color: #F5F6FF;
	background-position: center;
}
.banner-2 {
	background-image: url(https://storage.googleapis.com/static_django/website/image/bg_2.png);
	background-repeat: no-repeat;
	background-position: center;
}
.banner-3 {
	background-image: url(https://storage.googleapis.com/static_django/website/image/bg_3.png);
	background-repeat: no-repeat;
	background-position: center;
}
.navbar {
    background-color: #4B21EE;
    background-position: center;
	position:inherit;
}
.image-pc {
	position: initial;
	width: 580px;
	height: 510px;
	margin-left: 615px;
	margin-top: -380px;
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
	nav.navbar{
		padding-left: 0vw; padding-right: 0vw; background-color: white; color: white; font-size: 20px;
	}
	.dropdown{
		display: flex;
	}
	.hero-1{
		font-size: 40px;
		line-height: 75px;
		color: rgb(95, 95, 95);
		font-weight: bold;
	}
	ul.navbar-nav{
		display: none;
	}
	.hero-2{
		color: white;
		font-size: 20px;
	}
	.hero-button{
		height: 13%;
		width: 40%;
		background-color: white;
		font-size: 16px;
		margin-bottom:100px;
	}
	.hero-image{
		display: none;
		margin-bottom: 100px;
	}
	.trading-class{
		font-size: 36px;
		height: 100%;
		color: black;
		font-weight: bold;
		margin-bottom: 10px;
	}
	.four-button{
		width: 35%;
		margin-block:5%;
		object-fit: contain;
	}
	.security-class{
		font-size: 30px;
		font-weight: bold;
	}
	.four-card{
		height: 100%;
		width:80%;
		padding: 10px;
		margin-left: 10%;
		margin-bottom: 15px;
		background-color: white;
		color: black;
	}
	.four-button{
		width: 50%;
		margin-block:5%;
		height: 100%;
		color: white;
	}
	.bottom-image{
		width: 200px;
		height: 200px;
		position: absolute;
		margin-top:10px;
		display: none;
	}
	.bottom-class{
		font-size: 30px;
		margin-left: 0;
	}
	.bottom-class-2{
		font-size: 16px;
		margin-left: 0;
	}
	footer{
		width: 100%;

	}
	d1{
		color: white;
		font-size: 60px;
		line-height: 60px;
	}
	d2{
		color: white;
		font-size: 30px;
		line-height: 40px;
	}
	d3{
		font-size: 45px;
		height: 100%;
		line-height: 60px;
	}
	.d4{
		width: 176px;
		height: 43px;
		padding-left: 44px;
		padding-right: 44px;
		padding-top: 11px;
		padding-bottom: 11px;
		border-radius: 10px;
		overflow: hidden;
		border: 1px white solid;
		justify-content: center;
		align-items: center;
		gap: 10px;
		display: inline-flex;
		font-size: 15px;
	}
	d5{
		width: 80%;
		height: 100px;
		margin-left:10%;
		margin-bottom: 50px;
		background-color: #2BD6C5;
	}
	.image1{
		  width: 100%;
		  height: 100%;
		  object-fit: contain;
		}

	.vertical-center {
	  margin: 0;
	  position: relative;
	  top: 50%;
	}

	.vertical-center-card {
	  margin: 0;
	  text-align: center;
	  position: inherit;
	  top: 50%;
	  margin-block:5%;
	  background-color: white;
	  color: black;
	  height: 5rem;
	  width: 17rem;
	}

	.button-1 {
		height: 49px;
		width: 215px;
		font-family: 'Palatino', serif;
		font-size: large;
		background-color: #4B21EE;
		color: #FFFFFF;
		border-color: #FFFFFF;
		border-radius: 10px;
		overflow: hidden;
		margin-bottom: 20px;
		--link-hover-color: #fffff
	}
	.button-2 {
		height: 49px;
		width: 215px;
		font-size: large;
		background-color: #9fde4a;
		color: #252133;
		margin-left: 0px;
		border-color: #FFFFFF;
		border-radius: 10px;
		overflow: hidden;
	}
	.button-active {
		height: 49px;
		width: 215px;
		font-family: 'Palatino', serif;
		font-size: large;
		background-color: #9fde4a;
		color: black;
		border-color: #FFFFFF;
		border-radius: 10px;
		overflow: hidden;
		--link-hover-color: #fffff;
	    margin:0 auto;
    	display:block;
	}
	.button-center {
		margin: 0;
		position: absolute;
		top: 50%;
		left: 50%;
		-ms-transform: translate(-50%, -50%);
		transform: translate(-50%, -50%);
	}
	.calculator-main {
		display: none;
    	visibility: hidden;
	}
	.calculator-margin {
		margin: 10px;
	}
	.banner-1 {
		background-image: url(https://storage.googleapis.com/static_django/website/image/background_img.png);
		background-repeat: no-repeat;
		background-color: #4B21EE;
	}
	.banner-2 {
		background-color:#4B21EE;
	}
	.banner-3 {
		background-color:#4B21EE;
	}
   }


@media (max-width: 768px) {
	nav.navbar{
		padding-left: 0vw; padding-right: 0vw; background-color: b; color: white; font-size: 20px;
	}
	.dropdown{
		display: flex;
	}
	.hero-1{
		font-size: 40px;
		line-height: 75px;
		color: rgb(95, 95, 95);
		font-weight: bold;
	}
	ul.navbar-nav{
		display: none;
	}
	.hero-2{
		color: white;
		font-size: 20px;
	}
	.hero-button{
		height: 13%;
		width: 40%;
		background-color: white;
		font-size: 16px;
		margin-bottom:100px;
	}
	.hero-image{
		display: none;
		margin-bottom: 100px;
	}
	.trading-class{
		font-size: 36px;
		height: 100%;
		color: black;
		font-weight: bold;
		margin-bottom: 10px;
	}
	.four-button{
		width: 35%;
		margin-block:5%;
		object-fit: contain;
	}
	.security-class{
		font-size: 30px;
		font-weight: bold;
	}
	.four-card{
		height: 100%;
		width:80%;
		padding: 10px;
		margin-left: 10%;
		margin-bottom: 15px;
		background-color: white;
		color: black;
	}
	.four-button{
		width: 80%;
		margin-block:5%;
		height: 100%;
		color: white;
	}
	.bottom-image{
		width: 200px;
		height: 200px;
		position: absolute;
		margin-top:10px;
		display: none;
	}
	.bottom-class{
		font-size: 30px;
		margin-left: 0;
	}
	.bottom-class-2{
		font-size: 16px;
		margin-left: 0;
	}
	footer{
		width: 100%;
	}
	d1{
		color: white;
		font-size: 45px;
		line-height: 45px;
	}
	d2{
		color: white;
		font-size: 30px;
		line-height: 30px;
	}
	d3{
		font-size: 30px;
		line-height: 35px;
		color: black;
		padding-bottom: 10px;
	}
	.d4{
		width: 176px;
		height: 43px;
		padding-left: 44px;
		padding-right: 44px;
		padding-top: 11px;
		padding-bottom: 11px;
		border-radius: 10px;
		overflow: hidden;
		border: 1px white solid;
		justify-content: center;
		align-items: center;
		gap: 10px;
		display: inline-flex;
		font-size: 15px;
	}
	.d5{
		width: 80%;
		height: 100px;
		margin-left:10%;
		margin-bottom: 50px;
		background-color: #2BD6C5;
	}
	.image1{
		  width: 0%;
		  height: 0%;
		  object-fit: cover;
	}
	.vertical-center {
	  margin: 0;
	  position: relative;
	  top: 50%;
	}
	.vertical-center-card {
	  margin: 0;
	  text-align: center;
	  position: inherit;
	  top: 50%;
	  margin-block:5%;
	  background-color: white;
	  color: black;
	  height: 5rem;
	  width: 17rem;
	}
	.button-1 {
		height: 49px;
		width: 215px;
		font-family: 'Palatino', serif;
		font-size: large;
		background-color: #4B21EE;
		color: #FFFFFF;
		border-color: #FFFFFF;
		border-radius: 10px;
		overflow: hidden;
		margin-bottom: 20px;
		--link-hover-color: #fffff
	}
	.button-2 {
		height: 49px;
		width: 215px;
		font-size: large;
		background-color: #9fde4a;
		color: #252133;
		margin-left: 0px;
		border-color: #FFFFFF;
		border-radius: 10px;
		overflow: hidden;
	}
	.button-active {
		height: 49px;
		width: 215px;
		font-family: 'Palatino', serif;
		font-size: large;
		background-color: #9fde4a;
		color: black;
		border-color: #FFFFFF;
		border-radius: 10px;
		overflow: hidden;
		--link-hover-color: #fffff;
	    margin:0 auto;
    	display:block;
	}
	.button-center {
		margin: 0;
		position: absolute;
		top: 50%;
		left: 50%;
		-ms-transform: translate(-50%, -50%);
		transform: translate(-50%, -50%);
	}
	.calculator-main {
		display: none;
    	visibility: hidden;
	}
	.calculator-margin {
		margin: 10px;
	}
	.banner-1 {
		background-image: url(https://storage.googleapis.com/static_django/website/image/background_img.png);
		background-repeat: no-repeat;
		background-color: #4B21EE;
	}
	.banner-2 {
		background-image: linear-gradient(#4B21EE, #4B21EE);
		background-color: #4B21EE;
	}
	.banner-3 {
		background-image: linear-gradient(#4B21EE, #4B21EE);
		background-color: #4B21EE;
	}
	.navbar {
		margin-left: 0px;
		margin-right: 0px;
		background-color: #4B21EE;
		background-position: center;
		position:inherit;
	}
	.container-fluid {
		margin-top: 0px;
	}
	.image-pc {
		display: none;
	}
	
	/* Mobile-specific improvements */
	.container {
		width: 100%;
		padding-left: 15px;
		padding-right: 15px;
	}
	
	/* Touch-friendly buttons */
	button, .btn {
		min-height: 44px;
		min-width: 44px;
	}
	
	/* Better form inputs for mobile */
	.form-control {
		font-size: 16px; /* Prevents zoom on iOS */
		padding: 12px;
	}
	
	/* Improved table responsiveness */
	.table-responsive {
		border: none;
	}
	
	.table th, .table td {
		padding: 8px 4px;
		font-size: 0.875rem;
	}

}

@media (max-width: 480px) {
	.hero-1 {
		font-size: 32px;
		line-height: 1.2;
	}
	
	.hero-2 {
		font-size: 18px;
	}
	
	.trading-class {
		font-size: 28px;
	}
	
	.security-class {
		font-size: 24px;
	}
	
	.four-card {
		width: 95%;
		margin-left: 2.5%;
		padding: 15px;
	}
	
	.button-1, .button-2, .button-active {
		width: 100%;
		max-width: 280px;
		margin: 10px auto;
		display: block;
	}
	
	.d4 {
		width: 100%;
		max-width: 200px;
		padding: 12px 20px;
	}
	
	.d5 {
		width: 95%;
		margin-left: 2.5%;
		height: 80px;
	}
	
	/* Ultra-small screens */
	.container {
		padding-left: 10px;
		padding-right: 10px;
	}
	
	/* Better spacing for very small screens */
	.mb-4 {
		margin-bottom: 1rem !important;
	}
	
	.py-5 {
		padding-top: 2rem !important;
		padding-bottom: 2rem !important;
	}
}


.tryforfree {
	position: fixed;
  	padding: 20px;
  	color: white;
	bottom: 0%;
	right: 0%;
	cursor: pointer;
	opacity: 0.9;
}


.border {
	border-top: 1px solid grey;
	border-left: none;
	border-right: none;
}

.navbar-nav>li:not(:last-child) {
	margin-right: 25px;
}
button{
	padding: 6%;
}

/* Enhanced Time Period Selection */
.time-period-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 12px;
	margin-bottom: 20px;
}

.time-period-btn {
	background: #ffffff;
	border: 2px solid #e2e8f0;
	border-radius: 12px;
	padding: 16px 12px;
	text-align: center;
	transition: all 0.3s ease;
	cursor: pointer;
	position: relative;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 70px;
}

.time-period-btn:hover {
	border-color: #4B21EE;
	background: #f8f9ff;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(75, 33, 238, 0.15);
}

.time-period-btn.active {
	background: linear-gradient(135deg, #4B21EE 0%, #6B46C1 100%);
	border-color: #4B21EE;
	color: white;
	box-shadow: 0 6px 20px rgba(75, 33, 238, 0.3);
}

.time-period-btn.active:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(75, 33, 238, 0.4);
}

.btn-number {
	font-size: 1.4rem;
	font-weight: 700;
	line-height: 1;
	margin-bottom: 4px;
	display: block;
}

.btn-label {
	font-size: 0.75rem;
	font-weight: 500;
	opacity: 0.8;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.time-period-btn.active .btn-number {
	color: white;
}

.time-period-btn.active .btn-label {
	color: white;
	opacity: 0.9;
}

/* Responsive adjustments for time period */
@media (max-width: 768px) {
	.time-period-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 10px;
	}
	
	.time-period-btn {
		padding: 12px 8px;
		min-height: 60px;
	}
	
	.btn-number {
		font-size: 1.2rem;
	}
	
	.btn-label {
		font-size: 0.7rem;
	}
}

@media (max-width: 576px) {
	.time-period-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 8px;
	}
	
	.time-period-btn {
		padding: 10px 6px;
		min-height: 55px;
	}
	
	.btn-number {
		font-size: 1.1rem;
	}
	
	.btn-label {
		font-size: 0.65rem;
	}
}

/* Calculator result styling to prevent overflow */
#result {
	font-size: 2.5rem !important;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 100%;
}

/* Responsive font sizing for calculator result */
@media (max-width: 768px) {
	#result {
		font-size: 1.8rem !important;
	}
}

@media (max-width: 576px) {
	#result {
		font-size: 1.5rem !important;
	}
}

/* Modern Chart Styling */
.chart-container {
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
	backdrop-filter: blur(20px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 24px;
	padding: 32px;
	margin: 40px 0;
	box-shadow: 
		0 20px 40px rgba(0, 0, 0, 0.1),
		0 8px 16px rgba(0, 0, 0, 0.05),
		inset 0 1px 0 rgba(255, 255, 255, 0.1);
	position: relative;
	overflow: hidden;
}

.chart-container::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
}

.chart-container::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(75, 33, 238, 0.03) 0%, rgba(107, 70, 193, 0.03) 100%);
	pointer-events: none;
}

/* Trading Results Section Enhancements */
#trading_results {
	background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
	position: relative;
	overflow: hidden;
}

#trading_results::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -20%;
	width: 40%;
	height: 200%;
	background: linear-gradient(45deg, rgba(75, 33, 238, 0.05) 0%, transparent 50%);
	transform: rotate(15deg);
	pointer-events: none;
}

.section-title {
	font-size: 2.5rem;
	font-weight: 700;
	background: linear-gradient(135deg, #4B21EE 0%, #6B46C1 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 1rem;
	position: relative;
}

.section-title::after {
	content: '';
	position: absolute;
	bottom: -8px;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 4px;
	background: linear-gradient(90deg, #4B21EE, #6B46C1);
	border-radius: 2px;
}

/* Enhanced Stats Grid */
.stats-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 24px;
	margin-top: 48px;
}

.stat-card {
	background: rgba(255, 255, 255, 0.8);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 16px;
	padding: 24px;
	text-align: center;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.stat-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, #4B21EE, #6B46C1);
}

.stat-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 40px rgba(75, 33, 238, 0.15);
	border-color: rgba(75, 33, 238, 0.3);
}

.stat-number {
	font-size: 2.5rem;
	font-weight: 700;
	background: linear-gradient(135deg, #4B21EE 0%, #6B46C1 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 8px;
	line-height: 1;
}

.stat-label {
	color: #6B7280;
	font-weight: 500;
	font-size: 0.9rem;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.stat-icon {
	width: 48px;
	height: 48px;
	background: linear-gradient(135deg, #4B21EE 0%, #6B46C1 100%);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
	transition: all 0.3s ease;
}

.stat-icon i {
	color: white;
	font-size: 1.2rem;
}

.stat-card:hover .stat-icon {
	transform: scale(1.1);
	box-shadow: 0 8px 20px rgba(75, 33, 238, 0.3);
}

/* Pulse animation for LIVE indicator */
@keyframes pulse {
	0% {
		opacity: 1;
	}
	50% {
		opacity: 0.5;
	}
	100% {
		opacity: 1;
	}
}

/* Responsive Chart Container */
@media (max-width: 768px) {
	.chart-container {
		padding: 20px;
		margin: 20px 0;
		border-radius: 16px;
	}
	
	.chart-container #chart {
		height: 400px !important;
	}
	
	.section-title {
		font-size: 2rem;
	}
	
	.stats-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 16px;
		margin-top: 32px;
	}
	
	.stat-card {
		padding: 20px;
	}
	
	.stat-number {
		font-size: 2rem;
	}
	
	.stat-icon {
		width: 40px;
		height: 40px;
	}
	
	.stat-icon i {
		font-size: 1rem;
	}
	
	/* Mobile performance indicators */
	.row.justify-content-center .col-auto {
		margin-bottom: 8px;
	}
}

@media (max-width: 576px) {
	.chart-container {
		padding: 16px;
		margin: 16px 0;
		border-radius: 12px;
	}
	
	.chart-container #chart {
		height: 350px !important;
	}
	
	.section-title {
		font-size: 1.75rem;
	}
	
	.stats-grid {
		grid-template-columns: 1fr;
		gap: 12px;
		margin-top: 24px;
	}
	
	.stat-card {
		padding: 16px;
	}
	
	.stat-number {
		font-size: 1.75rem;
	}
	
	.stat-icon {
		width: 36px;
		height: 36px;
	}
	
	.stat-icon i {
		font-size: 0.9rem;
	}
	
	/* Mobile section header adjustments */
	.d-flex.align-items-center.justify-content-center {
		flex-direction: column;
		gap: 12px;
	}
	
	.d-flex.align-items-center.justify-content-center .me-3 {
		margin-right: 0 !important;
		margin-bottom: 8px;
	}
	
	.d-flex.align-items-center.justify-content-center .ms-3 {
		margin-left: 0 !important;
	}
	
	/* Stack performance indicators vertically on very small screens */
	.row.justify-content-center {
		flex-direction: column;
		align-items: center;
	}
	
	.row.justify-content-center .col-auto {
		width: 100%;
		text-align: center;
		margin-bottom: 12px;
	}
}