/* ----------------------------------------------------------------
	Custom CSS

	Add all your Custom Styled CSS here for New Styles or
	Overwriting Default Theme Styles for Better Handling Updates
-----------------------------------------------------------------*/

/* Partners Section Styles */
#partners {
	background-color: #f9f9f9;
}

.partner-logo {
	padding: 30px 20px;
	transition: all 0.3s ease;
}

.partner-logo img {
	max-width: 180px;
	height: auto;
	filter: grayscale(100%);
	opacity: 0.6;
	transition: all 0.3s ease;
}

.partner-logo:hover img {
	filter: grayscale(0%);
	opacity: 1;
	transform: scale(1.05);
}

.heading-typical.center {
	text-align: center;
	margin-bottom: 50px;
}

.heading-block {
	display: inline-block;
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: #ff6b00;
	margin-bottom: 10px;
}

.heading-typical h2 {
	font-size: 42px;
	font-weight: 700;
	color: #333;
	margin: 0;
}

@media (max-width: 768px) {
	.partner-logo {
		padding: 20px 10px;
	}
	
	.partner-logo img {
		max-width: 140px;
	}
	
	.heading-typical h2 {
		font-size: 32px;
	}
}

/* Header Auth Buttons Styling */
.header-auth-buttons {
	gap: 10px;
}

.header-auth-buttons .btn-outline-light {
	border-color: rgba(255, 255, 255, 0.5);
	color: #fff;
	transition: all 0.3s ease;
	font-weight: 600;
}

.header-auth-buttons .btn-outline-light:hover {
	border-color: #ff6b00;
	background: #ff6b00;
	color: #fff;
	transform: translateY(-2px);
}

.header-auth-buttons .btn-primary {
	background: linear-gradient(135deg, #ff6b00, #ff8533);
	border: none;
	font-weight: 600;
	transition: all 0.3s ease;
}

.header-auth-buttons .btn-primary:hover {
	background: linear-gradient(135deg, #ff8533, #ff6b00);
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(255, 107, 0, 0.4);
}

@media (max-width: 768px) {
	.header-auth-buttons {
		display: none !important;
	}
}

/* Enhanced Trade Crypto CTA Section Styles */
#trade-cta {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	position: relative;
	overflow: hidden;
	padding: 100px 0;
}

.cta-bg-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
	            radial-gradient(circle at 70% 50%, rgba(255, 107, 0, 0.15) 0%, transparent 50%);
	pointer-events: none;
	z-index: 1;
}

.cta-particle {
	position: absolute;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.1);
	animation: particleFloat 20s infinite ease-in-out;
}

.particle-1 {
	width: 80px;
	height: 80px;
	top: 10%;
	left: 5%;
	animation-delay: 0s;
}

.particle-2 {
	width: 60px;
	height: 60px;
	top: 60%;
	right: 10%;
	animation-delay: 7s;
}

.particle-3 {
	width: 100px;
	height: 100px;
	bottom: 10%;
	left: 15%;
	animation-delay: 14s;
}

@keyframes particleFloat {
	0%, 100% {
		transform: translate(0, 0) rotate(0deg);
	}
	33% {
		transform: translate(30px, -30px) rotate(120deg);
	}
	66% {
		transform: translate(-20px, 20px) rotate(240deg);
	}
}

.z-index-2 {
	position: relative;
	z-index: 2;
}

.cta-content {
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(20px);
	border-radius: 20px;
	padding: 40px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.gradient-text {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.feature-item {
	padding: 20px;
	border-radius: 15px;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.4));
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	border: 1px solid rgba(255, 255, 255, 0.3);
}

.feature-item:hover {
	transform: translateX(15px) scale(1.02);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
	background: linear-gradient(135deg, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0.6));
}

.feature-icon {
	flex-shrink: 0;
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #ff6b00, #ff8533);
	border-radius: 15px;
	font-size: 28px;
	color: #fff;
	box-shadow: 0 5px 15px rgba(255, 107, 0, 0.3);
	transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
	transform: rotate(10deg) scale(1.1);
}

.cta-action .btn-primary {
	background: linear-gradient(135deg, #ff6b00 0%, #ff8533 100%);
	border: none;
	font-weight: 700;
	letter-spacing: 0.5px;
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	position: relative;
	overflow: hidden;
}

.cta-action.btn-primary::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #ff8533, #ff6b00);
	transition: left 0.4s ease;
	z-index: -1;
}

.cta-action .btn-primary:hover::before {
	left: 0;
}

.cta-action .btn-primary:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 40px rgba(255, 107, 0, 0.4) !important;
}

.trust-badges {
	gap: 20px;
}

.badge-item {
	padding: 8px 15px;
	background: rgba(255, 255, 255, 0.6);
	border-radius: 20px;
	transition: all 0.3s ease;
}

.badge-item:hover {
	background: rgba(255, 255, 255, 0.9);
	transform: translateY(-2px);
}

.cta-image-container {
	perspective: 1000px;
}

.main-stat-card {
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(20px);
	border-radius: 20px;
	border: 1px solid rgba(255, 255, 255, 0.3);
	transform: rotateY(-5deg) rotateX(5deg);
	transition: all 0.5s ease;
	box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.3);
}

.main-stat-card:hover {
	transform: rotateY(0deg) rotateX(0deg) translateY(-10px);
	box-shadow: 30px 30px 80px rgba(0, 0, 0, 0.4);
}

.crypto-icon-md {
	width: 45px;
	height: 45px;
	border-radius: 50%;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.stat-row {
	transition: all 0.3s ease;
}

.stat-row:hover {
	transform: translateX(10px);
}

.floating-badge {
	position: absolute;
	animation: badgeFloat 3s ease-in-out infinite;
	z-index: 3;
}

.badge-1 {
	top: 5%;
	right: 0;
	animation-delay: 0s;
}

.badge-2 {
	bottom: 15%;
	left: -10%;
	animation-delay: 1s;
}

.badge-3 {
	bottom: 5%;
	right: 10%;
	animation-delay: 2s;
}

@keyframes badgeFloat {
	0%, 100% {
		transform: translateY(0) rotate(0deg);
	}
	50% {
		transform: translateY(-15px) rotate(2deg);
	}
}

.decorative-circle {
	position: absolute;
	border-radius: 50%;
	border: 2px solid rgba(255, 255, 255, 0.2);
}

.circle-1 {
	width: 300px;
	height: 300px;
	top: -100px;
	right: -100px;
	animation: rotateCircle 30s linear infinite;
}

.circle-2 {
	width: 200px;
	height: 200px;
	bottom: -50px;
	left: -50px;
	animation: rotateCircle 25s linear infinite reverse;
}

@keyframes rotateCircle {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(360deg);
	}
}

/* Animations */
.animate-fade-in {
	animation: fadeIn 0.8s ease-in;
}

.animate-slide-left {
	animation: slideLeft 0.6s ease-out both;
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@keyframes slideLeft {
	from {
		opacity: 0;
		transform: translateX(30px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

.hover-lift {
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.shadow-2xl {
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.overflow-hidden {
	overflow: hidden;
}

@media (max-width: 992px) {
	#trade-cta {
		padding: 60px 0;
	}
	
	.cta-content {
		padding: 30px;
	}
	
	.main-stat-card {
		transform: none;
		margin-top: 30px;
	}
	
	.main-stat-card:hover {
		transform: translateY(-5px);
	}
	
	.floating-badge {
		position: relative;
		top: auto;
		right: auto;
		bottom: auto;
		left: auto;
		margin: 10px 0;
		animation: none;
	}
	
	.decorative-circle {
		display: none;
	}
}

/* Built to Cover Your Needs Section Styles */
#features {
	background: linear-gradient(180deg, #f8f9fa 0%, #e9ecef 100%);
	position: relative;
}

.feature-card {
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	border: 1px solid rgba(0, 0, 0, 0.05);
	position: relative;
	overflow: hidden;
}

.feature-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 107, 0, 0.05), transparent);
	transition: left 0.6s ease;
}

.feature-card:hover::before {
	left: 100%;
}

.hover-shadow:hover {
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15) !important;
	transform: translateY(-10px);
}

.feature-icon-wrapper {
	position: relative;
	display: inline-block;
}

.feature-icon-circle {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	background: linear-gradient(135deg, #ff6b00, #ff8533);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	box-shadow: 0 10px 25px rgba(255, 107, 0, 0.3);
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.feature-card:hover .feature-icon-circle {
	transform: rotate(360deg) scale(1.1);
	box-shadow: 0 15px 35px rgba(255, 107, 0, 0.4);
}

.cta-box {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	position: relative;
}

.cta-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: 
		radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
		radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
	pointer-events: none;
	z-index: 1;
}

.z-index-2 {
	position: relative;
	z-index: 2;
}

.cta-box .btn-light {
	background: #fff;
	color: #667eea;
	font-weight: 700;
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	border: none;
}

.cta-box .btn-light:hover {
	background: #f8f9fa;
	transform: translateY(-5px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2) !important;
	color: #764ba2;
}

.rounded-4 {
	border-radius: 15px !important;
}

.shadow-sm {
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05) !important;
}

.bg-gradient {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

@media (max-width: 768px) {
	#features {
		padding: 40px 0;
	}
	
	.feature-card {
		margin-bottom: 20px;
	}
	
	.cta-box {
		padding: 30px 20px !important;
	}
	
	.cta-box h3 {
		font-size: 28px;
	}
}

/* How to Process Section Styles */
#how-it-works {
	background: #fff;
	position: relative;
}

.process-card {
	background: #fff;
	border: 2px solid #f0f0f0;
	border-radius: 20px;
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	position: relative;
	overflow: hidden;
}

.process-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 5px;
	background: linear-gradient(90deg, #ff6b00, #ff8533);
	transform: scaleX(0);
	transition: transform 0.4s ease;
}

.process-card:hover::before {
	transform: scaleX(1);
}

.process-card:hover {
	border-color: #ff6b00;
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.step-number-circle {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	background: linear-gradient(135deg, #ff6b00, #ff8533);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
	color: #fff;
	font-size: 32px;
	font-weight: 700;
	box-shadow: 0 10px 25px rgba(255, 107, 0, 0.3);
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	position: relative;
}

.process-card:hover .step-number-circle {
	transform: rotate(360deg) scale(1.1);
	box-shadow: 0 15px 35px rgba(255, 107, 0, 0.4);
}

.step-icon-wrapper {
	position: relative;
}

.step-image-container {
	margin-top: 20px;
	padding: 20px;
	background: linear-gradient(135deg, rgba(255, 107, 0, 0.05), rgba(255, 133, 51, 0.05));
	border-radius: 15px;
	transition: all 0.3s ease;
}

.process-card:hover .step-image-container {
	background: linear-gradient(135deg, rgba(255, 107, 0, 0.1), rgba(255, 133, 51, 0.1));
	transform: scale(1.05);
}

.step-icon-img {
	width: 80px;
	height: 80px;
	object-fit: contain;
	filter: grayscale(100%);
	opacity: 0.6;
	transition: all 0.3s ease;
}

.process-card:hover .step-icon-img {
	filter: grayscale(0%);
	opacity: 1;
	transform: scale(1.1);
}

.info-box {
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	border: 1px solid rgba(0, 0, 0, 0.05);
}

.hover-scale:hover {
	transform: translateY(-10px) scale(1.05);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
	background: linear-gradient(135deg, #fff, #f8f9fa) !important;
}

.info-box i {
	transition: all 0.3s ease;
}

.hover-scale:hover i {
	transform: scale(1.2) rotate(10deg);
}

@media (max-width: 992px) {
	#how-it-works {
		padding: 60px 0;
	}
	
	.process-card {
		margin-bottom: 20px;
	}
	
	.info-box {
		margin-bottom: 20px;
	}
}

@media (max-width: 768px) {
	.step-number-circle {
		width: 60px;
		height: 60px;
		font-size: 24px;
	}
	
	.step-icon-img {
		width: 60px;
		height: 60px;
	}
	
	.process-card h4 {
		font-size: 18px;
	}
}

/* Refer and Earn Section Styles */
#refer-earn {
	background: linear-gradient(135deg, #fff5eb 0%, #ffe8d1 100%);
	position: relative;
}

.gradient-text-primary {
	background: linear-gradient(135deg, #ff6b00, #ff8533);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.refer-content {
	padding: 20px;
}

.step-item {
	transition: all 0.3s ease;
}

.step-item:hover {
	transform: translateX(10px);
}

.step-badge {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: linear-gradient(135deg, #ff6b00, #ff8533);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-weight: 700;
	font-size: 20px;
	box-shadow: 0 5px 15px rgba(255, 107, 0, 0.3);
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.step-item:hover .step-badge {
	transform: rotate(360deg) scale(1.1);
}

.benefit-card {
	transition: all 0.3s ease;
	border: 1px solid rgba(0, 0, 0, 0.05);
}

.benefit-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1) !important;
	border-color: rgba(255, 107, 0, 0.2);
}

.benefit-icon {
	flex-shrink: 0;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 107, 0, 0.1);
	border-radius: 12px;
	transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
	background: linear-gradient(135deg, #ff6b00, #ff8533);
	color: #fff;
	transform: scale(1.1);
}

.refer-image-container {
	perspective: 1000px;
}

.main-refer-card {
	background: #fff;
	border-radius: 20px;
	overflow: hidden;
	transform: rotateY(-5deg) rotateX(5deg);
	transition: all 0.5s ease;
	box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.15);
}

.main-refer-card:hover {
	transform: rotateY(0deg) rotateX(0deg) translateY(-10px);
	box-shadow: 30px 30px 80px rgba(0, 0, 0, 0.2);
}

.refer-main-img {
	height: 300px;
	object-fit: cover;
}

.floating-stat-card {
	position: absolute;
	background: #fff;
	border-radius: 15px;
	animation: statFloat 3s ease-in-out infinite;
	z-index: 3;
}

.stat-1 {
	top: 10%;
	right: -10%;
	animation-delay: 0s;
}

.stat-2 {
	bottom: 20%;
	left: -15%;
	animation-delay: 1s;
}

.stat-3 {
	bottom: 5%;
	right: 5%;
	animation-delay: 2s;
}

@keyframes statFloat {
	0%, 100% {
		transform: translateY(0) rotate(0deg);
	}
	50% {
		transform: translateY(-15px) rotate(2deg);
	}
}

.stat-icon {
	flex-shrink: 0;
	width: 45px;
	height: 45px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.9);
	border-radius: 10px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.decorative-dot {
	position: absolute;
	border-radius: 50%;
	background: rgba(255, 107, 0, 0.2);
	animation: dotPulse 2s ease-in-out infinite;
}

.dot-1 {
	width: 20px;
	height: 20px;
	top: 5%;
	left: 10%;
	animation-delay: 0s;
}

.dot-2 {
	width: 30px;
	height: 30px;
	bottom: 15%;
	left: 5%;
	animation-delay: 1s;
}

@keyframes dotPulse {
	0%, 100% {
		transform: scale(1);
		opacity: 0.2;
	}
	50% {
		transform: scale(1.5);
		opacity: 0.4;
	}
}

.decorative-wave {
	position: absolute;
	border-radius: 50%;
	border: 2px solid rgba(255, 107, 0, 0.1);
	animation: waveExpand 3s ease-out infinite;
}

.wave-1 {
	width: 400px;
	height: 400px;
	top: -200px;
	right: -200px;
}

@keyframes waveExpand {
	0% {
		transform: scale(0.8);
		opacity: 0.5;
	}
	100% {
		transform: scale(1.2);
		opacity: 0;
	}
}

@media (max-width: 992px) {
	#refer-earn {
		padding: 60px 0;
	}
	
	.refer-content {
		padding: 0;
		text-align: center;
	}
	
	.step-item,
	.benefit-card {
		text-align: left;
	}
	
	.main-refer-card {
		transform: none;
		margin-top: 30px;
	}
	
	.main-refer-card:hover {
		transform: translateY(-5px);
	}
	
	.floating-stat-card {
		position: relative;
		top: auto;
		right: auto;
		bottom: auto;
		left: auto;
		margin: 15px 0;
		animation: none;
	}
	
	.decorative-dot,
	.decorative-wave {
		display: none;
	}
}

/* Crypto Market Overview Styles */
#crypto-market {
	position: relative;
	overflow: hidden;
}

.market-table {
	background: rgba(255, 255, 255, 0.05);
	border-radius: 10px;
	overflow: hidden;
	backdrop-filter: blur(10px);
}

.market-table thead th {
	background: linear-gradient(135deg, #ff6b00, #ff8533);
	color: #fff;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	padding: 18px 15px;
	border: none;
	font-size: 13px;
}

.market-table tbody tr {
	transition: all 0.3s ease;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.market-table tbody tr:hover {
	background: rgba(255, 255, 255, 0.08);
	transform: translateX(5px);
}

.market-table tbody td {
	padding: 20px 15px;
	vertical-align: middle;
	color: #fff;
	font-size: 15px;
}

.crypto-icon {
	width: 40px;
	height: 40px;
	border-radius: 50%;
}

.crypto-symbol {
	color: #ff6b00;
	font-size: 16px;
}

.crypto-fullname {
	color: rgba(255, 255, 255, 0.7);
}

.crypto-price {
	font-weight: 700;
	color: #fff;
	font-size: 16px;
}

.crypto-change {
	font-weight: 600;
	padding: 8px 12px;
	border-radius: 5px;
	display: inline-block;
}

.crypto-change.positive {
	color: #00d2aa;
	background: rgba(0, 210, 170, 0.1);
}

.crypto-change.negative {
	color: #ff4757;
	background: rgba(255, 71, 87, 0.1);
}

.crypto-marketcap,
.crypto-volume {
	color: rgba(255, 255, 255, 0.8);
	font-size: 14px;
}

.last-updated {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 768px) {
	.market-table thead th {
		font-size: 11px;
		padding: 12px 8px;
	}
	
	.market-table tbody td {
		padding: 15px 8px;
		font-size: 13px;
	}
	
	.crypto-icon {
		width: 30px;
		height: 30px;
	}
	
	.crypto-symbol {
		font-size: 14px;
	}
}

