:root{
	--mainColor:#eaeaea;
	--secondaryColor:#fff;
	--accentColor:#4f46e5;

	--borderColor:#c1c1c1;

	--mainText:black;
	--secondaryText:#4b5156;

	--themeDotBorder:#24292e;

	--previewBg:rgb(251, 249, 243, 0.8);
	--previewShadow:#f0ead6;

	--buttonColor:black;

	/* RGB versions for transparency */
	--mainColor-rgb: 234, 234, 234;
	--secondaryColor-rgb: 255, 255, 255;
	--accentColor-rgb: 79, 70, 229;
	--borderColor-rgb: 193, 193, 193;
}


html, body{
	padding: 0;
	margin: 0;
	scroll-behavior: smooth;
}

body *{
	transition: 0.3s;
}


h1, h2, h3, h4, h5, h6, strong{
	color: var(--mainText);
	font-family: 'Russo One', sans-serif;
	font-weight: 500;
}

p, li, span, label, input, textarea{
	color: var(--secondaryText);
	font-family: 'Roboto Mono', monospace;
}

a{
	text-decoration: none;
	color:#17a2b8;
}

ul{
	list-style: none;
}

h1 { font-size: 56px;}
h2 { font-size: 36px;}
h3 { font-size: 28px;}
h4 { font-size: 24px;}
h5 { font-size: 20px;}
h6 { font-size: 16px;}


/* HERO SECTION STYLES */
.hero-section {
	min-height: 100vh;
	position: relative;
	background: linear-gradient(135deg, var(--mainColor) 0%, var(--secondaryColor) 100%);
	display: flex;
	flex-direction: column;
	overflow: hidden;
}

.hero-background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.hero-background::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: radial-gradient(circle at 50% 50%, rgba(var(--accentColor-rgb), 0.1) 0%, transparent 50%);
}

.hero-particles {
	position: absolute;
	width: 100%;
	height: 100%;
	background-image: 
		radial-gradient(circle at 20% 20%, rgba(var(--accentColor-rgb), 0.3) 1px, transparent 1px),
		radial-gradient(circle at 80% 80%, rgba(var(--accentColor-rgb), 0.2) 1px, transparent 1px),
		radial-gradient(circle at 40% 60%, rgba(var(--accentColor-rgb), 0.1) 1px, transparent 1px);
	background-size: 50px 50px, 80px 80px, 120px 120px;
	animation: float 20s ease-in-out infinite;
}

/* HERO NAVIGATION */
.hero-nav {
	position: relative;
	z-index: 10;
	padding: 1rem 0;
	backdrop-filter: blur(10px);
	background: rgba(var(--mainColor-rgb), 0.9);
	border-bottom: 1px solid rgba(var(--borderColor-rgb), 0.3);
}

.nav-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.nav-logo {
	display: flex;
	align-items: center;
	text-decoration: none;
	color: var(--mainText);
	font-weight: 600;
	font-size: 1.1rem;
}

.logo-dots {
	display: flex;
	margin-right: 1rem;
}

.dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	margin-right: 4px;
	box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.dot-red { background: #ff6b6b; }
.dot-yellow { background: #ffd93d; }
.dot-green { background: #6bcf7f; }

.nav-menu {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
}

.nav-menu li {
	margin-left: 2rem;
}

.nav-link {
	text-decoration: none;
	color: var(--mainText);
	font-weight: 500;
	transition: all 0.3s ease;
	padding: 0.5rem 1rem;
	border-radius: 8px;
	position: relative;
}

.nav-link:hover {
	color: var(--themeDotBorder);
	background: rgba(var(--accentColor-rgb), 0.1);
}

.nav-link::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 50%;
	width: 0;
	height: 2px;
	background: var(--themeDotBorder);
	transform: translateX(-50%);
	transition: width 0.3s ease;
}

.nav-link:hover::after {
	width: 80%;
}

/* HERO CONTAINER */
.hero-container {
	flex: 1;
	max-width: 1200px;
	margin: 0 auto;
	padding: 2rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
	position: relative;
	z-index: 5;
}

.hero-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
	margin-bottom: 3rem;
}

/* HERO TEXT */
.hero-text {
	animation: slideInLeft 0.8s ease-out;
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	background: rgba(var(--accentColor-rgb), 0.1);
	color: var(--themeDotBorder);
	padding: 0.5rem 1rem;
	border-radius: 50px;
	font-size: 0.9rem;
	font-weight: 500;
	margin-bottom: 1.5rem;
	border: 1px solid rgba(var(--accentColor-rgb), 0.2);
}

.hero-badge i {
	margin-right: 0.5rem;
}

#typing-text::after {
	content: '|';
	animation: blink 0.7s infinite;
	font-weight: 100;
}

@keyframes blink {
	0%, 50% { opacity: 1; }
	51%, 100% { opacity: 0; }
}

.hero-title {
	font-size: 3.5rem;
	font-weight: 700;
	line-height: 1.1;
	margin-bottom: 1.5rem;
	color: var(--mainText);
}

.highlight {
	background: linear-gradient(135deg, var(--themeDotBorder), var(--accentColor));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	position: relative;

/* Pulse animation for availability dot */
@keyframes pulse {
	0% {
		transform: scale(1);
		box-shadow: 0 0 0 0 rgba(40,167,69,0.6);
		opacity: 1;
	}
	70% {
		transform: scale(1.45);
		box-shadow: 0 0 0 8px rgba(40,167,69,0);
		opacity: 0.75;
	}
	100% {
		transform: scale(1);
		box-shadow: 0 0 0 0 rgba(40,167,69,0);
		opacity: 1;
	}
}

.status-indicator {
	animation: pulse 2s infinite ease-in-out;
}

/* Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
	.status-indicator {
		animation: none;
		transform: none;
	}
}
}

.hero-subtitle {
	font-size: 1.3rem;
	line-height: 1.6;
	color: var(--secondaryText);
	margin-bottom: 2rem;
	max-width: 90%;
}

.hero-status {
	display: flex;
	align-items: center;
	margin-bottom: 2.5rem;
	padding: 1rem;
	background: rgba(var(--accentColor-rgb), 0.05);
	border-radius: 12px;
	border-left: 4px solid var(--themeDotBorder);
}

.status-indicator {
	width: 12px;
	height: 12px;
	background: radial-gradient(circle at 30% 30%, #7efc6a, #34d058 60%);
	border-radius: 50%;
	margin-right: 0.8rem;
	box-shadow: 0 0 0 rgba(58, 205, 112, 0.4);
	animation: statusPulse 2.2s infinite ease-in-out, statusColor 3s infinite linear;
}

.status-text {
	color: var(--mainText);
	font-weight: 500;
}

.hero-actions {
	display: flex;
	gap: 1rem;
}

.btn-hero {
	display: inline-flex;
	align-items: center;
	padding: 1rem 2rem;
	border-radius: 12px;
	text-decoration: none;
	font-weight: 600;
	font-size: 1rem;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.btn-hero i {
	margin-right: 0.5rem;
}

.btn-hero.primary {
	background: linear-gradient(135deg, var(--themeDotBorder), var(--accentColor));
	color: white;
	box-shadow: 0 8px 25px rgba(var(--accentColor-rgb), 0.3);
}

.btn-hero.primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 35px rgba(var(--accentColor-rgb), 0.4);
}

.btn-hero.secondary {
	background: transparent;
	color: var(--mainText);
	border: 2px solid var(--borderColor);
}

.btn-hero.secondary:hover {
	background: var(--themeDotBorder);
	color: white;
	transform: translateY(-2px);
}

/* HERO VISUAL */
.hero-visual {
	display: flex;
	flex-direction: column;
	gap: 2rem;
	animation: slideInRight 0.8s ease-out;
}

.profile-card {
	background: var(--secondaryColor);
	border-radius: 20px;
	padding: 2rem;
	border: 1px solid var(--borderColor);
	box-shadow: 0 20px 60px rgba(0,0,0,0.1);
	text-align: center;
	backdrop-filter: blur(10px);
}

.profile-image-wrapper {
	position: relative;
	display: inline-block;
	margin-bottom: 1.5rem;
}

.profile-image {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	object-fit: cover;
	object-position: center top;
	border: 4px solid var(--themeDotBorder);
	box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

#profile_pic {
	display: block;
	margin:0 auto;

	height: 200px;
	width: 200px;
	object-fit: cover;
	object-position: center top;
	border:2px solid var(--borderColor);
	image-rendering: -webkit-optimize-contrast;
	image-rendering: crisp-edges;
}

.profile-status {
	position: absolute;
	bottom: 5px;
	right: 5px;
	background: #4ade80;
	color: white;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.8rem;
	border: 3px solid var(--secondaryColor);
}

.profile-info h3 {
	color: var(--mainText);
	margin-bottom: 0.5rem;
	font-size: 1.5rem;
}

.profile-info p {
	color: var(--secondaryText);
	margin-bottom: 1.5rem;
	font-size: 1rem;
}

.profile-tech {
	display: flex;
	justify-content: center;
	gap: 1rem;
}

.tech-icon {
	width: 40px;
	height: 40px;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem;
	transition: all 0.3s ease;
}

.tech-icon.python { background: #3776ab; color: white; }
.tech-icon.react { background: #61dafb; color: #20232a; }
.tech-icon.js { background: #f7df1e; color: #333; }
.tech-icon.django { background: #092e20; color: white; }
.tech-icon.pinescript { background: #119962; color: white; }
.tech-icon.mql { background: #1B5E96; color: white; }

.tech-icon:hover {
	transform: translateY(-3px) scale(1.1);
}

/* CODE PREVIEW */
.code-preview {
	background: var(--secondaryColor);
	border-radius: 12px;
	border: 1px solid var(--borderColor);
	box-shadow: 0 15px 40px rgba(0,0,0,0.1);
	overflow: hidden;
	animation: fadeInUp 0.8s ease-out 0.3s both;
}

.code-header {
	background: var(--mainColor);
	padding: 1rem 1.5rem;
	display: flex;
	align-items: center;
	border-bottom: 1px solid var(--borderColor);
}

.code-dots {
	display: flex;
	margin-right: 1rem;
}

.code-dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	margin-right: 6px;
}

.code-dot.red { background: #ff6b6b; }
.code-dot.yellow { background: #ffd93d; }
.code-dot.green { background: #6bcf7f; }

.code-title {
	color: var(--mainText);
	font-size: 0.9rem;
	font-weight: 500;
}

.code-content {
	padding: 1.5rem;
	font-family: 'Roboto Mono', monospace;
	font-size: 0.85rem;
	line-height: 1.6;
}

.code-line {
	display: flex;
	align-items: center;
	margin-bottom: 0.3rem;
}

.code-number {
	color: var(--secondaryText);
	margin-right: 1rem;
	min-width: 20px;
	text-align: right;
	font-size: 0.8rem;
}

.code-text {
	color: var(--mainText);
}

.keyword { color: #ff6b6b; }
.class { color: #4ecdc4; }
.function { color: #ffe66d; }
.string { color: #95e1d3; }
.number { color: #6bcf7f; }

/* TRADING BOT DASHBOARD */
.trading-dashboard {
	background: var(--secondaryColor);
	border-radius: 16px;
	border: 1px solid var(--borderColor);
	box-shadow: 0 20px 60px rgba(0,0,0,0.15);
	overflow: hidden;
	animation: fadeInUp 0.8s ease-out 0.2s both;
}

.dashboard-header {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	padding: 1.2rem 1.5rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.header-left {
	display: flex;
	align-items: center;
	gap: 0.8rem;
	color: white;
	font-weight: 600;
	font-size: 1rem;
}

.header-left i {
	font-size: 1.3rem;
}

.header-right {
	display: flex;
	align-items: center;
}

.status-live {
	background: rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(10px);
	padding: 0.5rem 1rem;
	border-radius: 20px;
	color: white;
	font-size: 0.85rem;
	font-weight: 600;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.pulse-dot {
	width: 8px;
	height: 8px;
	background: #6bcf7f;
	border-radius: 50%;
	animation: pulse 2s infinite;
}

@keyframes pulse {
	0%, 100% {
		transform: scale(1);
		opacity: 1;
	}
	50% {
		transform: scale(1.3);
		opacity: 0.7;
	}
}

.portfolio-stats {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1rem;
	padding: 1.5rem;
	background: var(--mainColor);
}

.stat-card {
	background: var(--secondaryColor);
	border: 1px solid var(--borderColor);
	border-radius: 12px;
	padding: 1.2rem;
	display: flex;
	gap: 1rem;
	transition: all 0.3s ease;
}

.stat-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.stat-card.gain {
	border-left: 3px solid #6bcf7f;
}

.stat-icon {
	width: 40px;
	height: 40px;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 1.2rem;
	flex-shrink: 0;
}

.stat-details {
	display: flex;
	flex-direction: column;
	gap: 0.3rem;
}

.stat-label {
	font-size: 0.75rem;
	color: var(--secondaryText);
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.stat-value {
	font-size: 1.3rem;
	color: var(--mainText);
	font-weight: 700;
	transition: transform 0.3s ease;
}

.stat-change {
	font-size: 0.8rem;
	font-weight: 600;
}

.stat-change.positive {
	color: #6bcf7f;
}

.stat-change.neutral {
	color: var(--secondaryText);
}

.recent-trades {
	padding: 1.5rem;
	background: var(--mainColor);
}

.trades-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 1rem;
	color: var(--mainText);
	font-weight: 600;
}

.view-all {
	color: #667eea;
	font-size: 0.85rem;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	gap: 0.3rem;
}

.view-all:hover {
	gap: 0.6rem;
}

.trade-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0.8rem 1rem;
	background: var(--secondaryColor);
	border: 1px solid var(--borderColor);
	border-radius: 10px;
	margin-bottom: 0.8rem;
	transition: all 0.3s ease;
}

.trade-item:hover {
	transform: translateX(5px);
	border-color: #667eea;
}

.trade-pair {
	display: flex;
	align-items: center;
	gap: 0.8rem;
	color: var(--mainText);
	font-weight: 600;
	font-size: 0.9rem;
}

.trade-pair i {
	font-size: 1.2rem;
	color: #f7931a;
}

.trade-pair i.fa-ethereum {
	color: #627eea;
}

.trade-pair i.fa-coins {
	color: #14f195;
}

.trade-action {
	padding: 0.3rem 0.8rem;
	border-radius: 6px;
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.trade-action.buy {
	background: rgba(107, 207, 127, 0.2);
	color: #6bcf7f;
	border: 1px solid #6bcf7f;
}

.trade-action.sell {
	background: rgba(255, 107, 107, 0.2);
	color: #ff6b6b;
	border: 1px solid #ff6b6b;
}

.trade-price {
	color: var(--mainText);
	font-weight: 600;
	font-family: 'Roboto Mono', monospace;
	font-size: 0.9rem;
}

/* THEME SELECTOR */
.theme-selector {
	background: rgba(var(--secondaryColor-rgb), 0.8);
	backdrop-filter: blur(10px);
	border-radius: 20px;
	padding: 2rem;
	border: 1px solid rgba(var(--borderColor-rgb), 0.3);
	text-align: center;
	animation: fadeInUp 0.8s ease-out 0.4s both;
}

.theme-title {
	color: var(--mainText);
	margin-bottom: 1.5rem;
	font-size: 1.1rem;
	font-weight: 600;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
}

.theme-options {
	display: flex;
	justify-content: center;
	gap: 1rem;
	margin-bottom: 1rem;
}

.theme-btn {
	width: 50px;
	height: 50px;
	border-radius: 15px;
	border: 2px solid var(--borderColor);
	background: var(--secondaryColor);
	color: var(--mainText);
	font-size: 1.2rem;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
}

.theme-btn:hover {
	transform: translateY(-3px) scale(1.05);
	border-color: var(--themeDotBorder);
	box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.theme-btn.active {
	background: var(--themeDotBorder);
	color: white;
	border-color: var(--themeDotBorder);
}

#light-mode { color: #f59e0b; }
#blue-mode { color: #3b82f6; }
#green-mode { color: #10b981; }
#purple-mode { color: #8b5cf6; }

.theme-note {
	color: var(--secondaryText);
	font-size: 0.85rem;
	font-style: italic;
	margin: 0;
}

/* ANIMATIONS */
@keyframes slideInLeft {
	from {
		opacity: 0;
		transform: translateX(-50px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes slideInRight {
	from {
		opacity: 0;
		transform: translateX(50px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes float {
	0%, 100% { transform: translateY(0px) rotate(0deg); }
	33% { transform: translateY(-30px) rotate(120deg); }
	66% { transform: translateY(-20px) rotate(240deg); }
}

@keyframes pulse {
	0%, 100% { opacity: 1; }
	50% { opacity: 0.5; }
}

@keyframes statusPulse {
	0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(58,205,112,0.45); }
	50% { transform: scale(1.25); box-shadow: 0 0 18px 6px rgba(58,205,112,0.08); }
	100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(58,205,112,0.0); }
}

@keyframes statusColor {
	0% { filter: hue-rotate(0deg); }
	50% { filter: hue-rotate(30deg) saturate(1.05); }
	100% { filter: hue-rotate(0deg); }
}

@media (prefers-reduced-motion: reduce) {
	.status-indicator {
		animation: none;
		transform: none;
		box-shadow: none;
	}
}

/* RESPONSIVE DESIGN */
@media screen and (max-width: 1024px) {
	.hero-content {
		gap: 2rem;
	}
	
	.hero-title {
		font-size: 3rem;
	}
	
	.nav-container {
		padding: 0 1rem;
	}
}

@media screen and (max-width: 768px) {
	.nav-container {
		flex-direction: column;
		gap: 1rem;
		padding: 1rem;
	}
	
	.nav-menu li {
		margin-left: 1rem;
	}
	
	.hero-content {
		grid-template-columns: 1fr;
		gap: 3rem;
		text-align: center;
	}
	
	.hero-title {
		font-size: 2.5rem;
	}
	
	.hero-subtitle {

	.hero-title .highlight {
		display: inline-block;
		margin-top: 6px;
	}
		max-width: 100%;
	}
	
	.hero-actions {
		flex-direction: column;
		align-items: center;
	}
	
	.btn-hero {
		width: 100%;
		max-width: 300px;
		justify-content: center;
	}
	
	.theme-options {
		flex-wrap: wrap;
		gap: 0.8rem;
	}
	
	.theme-btn {
		width: 45px;
		height: 45px;
	}
}

@media screen and (max-width: 480px) {
	.hero-container {
		padding: 1rem;
	}
	
	.hero-title {
		font-size: 2rem;
	}
	
	.hero-subtitle {
		font-size: 1.1rem;
	}
	
	.profile-card {
		padding: 1.5rem;
	}
	
	.theme-selector {
		padding: 1.5rem;
	}
	
	.code-content {
		padding: 1rem;
		font-size: 0.8rem;
	}

	/* About section mobile */
	.about-wrapper {
		padding: 40px 0;
		gap: 30px;
	}

	.about-header h2 {
		font-size: 1.6rem;
		flex-direction: column;
		align-items: flex-start;
		gap: 8px;
	}

	.about-stats {
		flex-direction: column;
		gap: 12px;
		padding: 15px;
	}

	.stat-item {
		display: flex;
		justify-content: space-between;
		align-items: center;
	}

	.stat-number {
		font-size: 1.6rem;
		margin-bottom: 0;
	}

	.expertise-header h3 {
		font-size: 1.3rem;
	}

	.skills-row {
		justify-content: center;
	}

	.skill-tag {
		padding: 5px 10px;
		font-size: 0.8rem;
	}
}

.s1{
	background-color: var(--mainColor);
	border-bottom:1px solid var(--borderColor);
	overflow:auto;
}

.s2{
	background-color: var(--secondaryColor);
	border-bottom:1px solid var(--borderColor);
	overflow:auto;
}




.main-container{
	width: 1200px;
	margin: 0 auto;
}


.greeting-wrapper{
	display: grid;
	text-align: center;
	align-content: center;
	min-height: 10em;

}

.intro-wrapper{
	background-color: var(--secondaryColor);
	border:1px solid var(--borderColor);
	border-radius:5px 5px 0 0;


	-webkit-box-shadow: -1px 1px 3px -1px rgba(0,0,0,0.75);
	-moz-box-shadow: -1px 1px 3px -1px rgba(0,0,0,0.75);
	box-shadow: -1px 1px 3px -1px rgba(0,0,0,0.75);

	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-areas: 
		'nav-wrapper nav-wrapper'
		'left-column right-column'
	;
}


.nav-wrapper{
	border-radius:5px 5px 0 0;
	grid-area:nav-wrapper;
	border-bottom: 1px solid var(--borderColor);
	display: flex;
	justify-content: space-between;
	align-items: center;
	background-color: var(--mainColor);
}

#navigation a{
	color:var(--mainText);
}


#navigation{
	margin:0;
	padding: 10px;
}

#navigation li{
	display: inline-block;
	margin-right: 5px;
	margin-left:5px;
}

.dots-wrapper{
	display: flex;
	padding: 10px;
}

#dot-1{
	background-color:  #FC6058;
}

#dot-2{
	background-color:  #FEC02F;
}

#dot-3{
	background-color:  #2ACA3E;
}

.browser-dot{
	background-color: black;
	height: 15px;
	width: 15px;
	border-radius: 50%;
	margin: 5px;

	-webkit-box-shadow: -1px 1px 3px -1px rgba(0,0,0,0.75);
	-moz-box-shadow: -1px 1px 3px -1px rgba(0,0,0,0.75);
	box-shadow: -1px 1px 3px -1px rgba(0,0,0,0.75);

}


.left-column{
	grid-area: left-column;
	padding-top:50px;
	padding-bottom: 50px;
}

#profile_pic{
	display: block;
	margin:0 auto;

	height: 200px;
	width: 200px;
	object-fit: cover;
	object-position: center top;
	border:2px solid var(--borderColor);
	image-rendering: -webkit-optimize-contrast;
	image-rendering: crisp-edges;
}


#theme-options-wrapper{
	display: flex;
	justify-content: center;
}

.theme-dot{
	height: 30px;
	width: 30px;
	background-color: black;
	border-radius: 50%;

	margin: 5px;
	border:2px solid var(--themeDotBorder);

	-webkit-box-shadow: -1px 1px 3px -1px rgba(0,0,0,0.75);
	-moz-box-shadow: -1px 1px 3px -1px rgba(0,0,0,0.75);
	box-shadow: -1px 1px 3px -1px rgba(0,0,0,0.75);

	cursor: pointer;
}


.theme-dot:hover{
	border-width: 5px;
}


#light-mode{
	background-color: #fff;
}

#blue-mode{
	background-color: #192734;
}

#green-mode{
	background-color: #78866b;
}

#purple-mode{
	background-color: #7E4C74;
}

#settings-note{
	font-size: 12px;
	font-style: italic;
	text-align: center;
}

.right-column{
	grid-area: right-column;
	display: grid;
	align-content: center;

	padding-top: 50px;
	padding-bottom: 50px;
}


#preview-shadow{
	background-color: var(--previewShadow);
	max-width: 300px;
	height: 180px;
	padding-left: 30px;
	padding-top: 30px;
}

#preview{
	width: 300px;
	border:1.5px solid #17a2b8;
	background-color: var(--previewBg);
	padding:15px;
	position: relative;
}

.corner{
	width:7px;
	height: 7px;
	border-radius: 50%;
	border:1.5px solid #17a2b8;
	background-color: #fff;
	position: absolute;
}

#corner-tl{
	top:-5px;
	left: -5px
}

#corner-tr{
	top:-5px;
	right: -5px
}


#corner-br{
	bottom:-5px;
	right: -5px
}


#corner-bl{
	bottom:-5px;
	left: -5px
}

/* ABOUT SECTION STYLES */
.about-wrapper{
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
	padding: 60px 0;
	gap: 50px;
	align-items: start;
}

.about-me {
	max-width: 100%;
}

.about-header {
	margin-bottom: 30px;
}

.about-header h2 {
	font-size: 2.2rem;
	color: var(--mainText);
	margin-bottom: 15px;
	display: flex;
	align-items: center;
	gap: 12px;
}

.about-header i {
	color: var(--themeDotBorder);
	font-size: 2rem;
}

.header-divider {
	width: 60px;
	height: 3px;
	background: linear-gradient(135deg, var(--themeDotBorder), var(--accentColor));
	border-radius: 2px;
	margin: 0 auto;
}

.about-content {
	margin-bottom: 35px;
}

.about-content p {
	font-size: 1.05rem;
	line-height: 1.6;
	color: var(--secondaryText);
	margin-bottom: 25px;
}

.about-stats {
	display: flex;
	justify-content: space-around;
	gap: 20px;
	margin: 30px 0;
	padding: 25px;
	background: var(--secondaryColor);
	border-radius: 12px;
	border: 1px solid var(--borderColor);
	box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

.stat-item {
	text-align: center;
	flex: 1;
}

.stat-number {
	display: block;
	font-size: 2.2rem;
	font-weight: 700;
	color: var(--themeDotBorder);
	margin-bottom: 4px;
}

.stat-label {
	display: block;
	font-size: 0.85rem;
	color: var(--secondaryText);
	font-weight: 500;
}

.about-cta {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	margin-top: 25px;
}

.btn-about {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 10px 20px;
	border-radius: 6px;
	text-decoration: none;
	font-weight: 600;
	font-size: 0.9rem;
	transition: all 0.3s ease;
	border: 2px solid transparent;
}

.btn-about.primary {
	background: linear-gradient(135deg, var(--themeDotBorder), var(--accentColor));
	color: white;
	box-shadow: 0 3px 12px rgba(var(--accentColor-rgb), 0.3);
}

.btn-about.primary:hover {
	transform: translateY(-1px);
	box-shadow: 0 5px 15px rgba(var(--accentColor-rgb), 0.4);
}

.btn-about.secondary {
	background: transparent;
	color: var(--mainText);
	border-color: var(--borderColor);
}

.btn-about.secondary:hover {
	background: var(--secondaryColor);
	border-color: var(--themeDotBorder);
	transform: translateY(-1px);
}

/* EXPERTISE SECTION */
.expertise-section {
	margin-top: 35px;
}

.expertise-header {
	margin-bottom: 20px;
}

.expertise-header h3 {
	font-size: 1.6rem;
	color: var(--mainText);
	margin: 0;
	display: flex;
	align-items: center;
	gap: 10px;
}

/* Standalone Skills Section */
.skills-section-standalone {
	padding: 80px 0;
	background: var(--previewBg);
}

.skills-section-standalone .skills-header {
	text-align: center;
	margin-bottom: 40px;
}

.skills-section-standalone .skills-header h2 {
	font-size: 2.2rem;
	color: var(--mainText);
	margin: 0 0 15px 0;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 15px;
}

.skills-section-standalone .skills-header p {
	font-size: 1.1rem;
	color: var(--subText);
	margin: 0;
	font-weight: 400;
}

.skills-section-standalone .skills-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
	max-width: 800px;
	margin: 0 auto;
	padding: 40px 20px;
	background: var(--mainColor);
	border: 2px solid var(--borderColor);
	border-radius: 20px;
	box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.skills-section-standalone .skills-row {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	justify-content: center;
	width: 100%;
}

.skills-section-standalone .skill-tag {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 12px 20px;
	background: var(--previewBg);
	border: 2px solid var(--borderColor);
	border-radius: 30px;
	font-size: 1rem;
	font-weight: 600;
	color: var(--mainText);
	transition: all 0.3s ease;
	cursor: pointer;
	min-width: 120px;
	justify-content: center;
}

.skills-section-standalone .skill-tag:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 20px rgba(0,0,0,0.2);
	border-color: var(--themeDotBorder);
	background: var(--themeDotBorder);
	color: white;
}

.skills-section-standalone .skill-tag i {
	font-size: 1.1rem;
}

/* Mobile responsive for standalone skills section */
@media screen and (max-width: 800px) {
	.skills-section-standalone {
		padding: 60px 0;
	}
	
	.skills-section-standalone .skills-header h2 {
		font-size: 1.8rem;
	}
	
	.skills-section-standalone .skills-header p {
		font-size: 1rem;
	}
	
	.skills-section-standalone .skills-container {
		padding: 30px 15px;
		margin: 0 15px;
	}
	
	.skills-section-standalone .skills-row {
		gap: 12px;
	}
	
	.skills-section-standalone .skill-tag {
		padding: 10px 16px;
		font-size: 0.9rem;
		min-width: 100px;
		gap: 8px;
	}
}

@media screen and (max-width: 480px) {
	.skills-section-standalone {
		padding: 40px 0;
	}
	
	.skills-section-standalone .skills-header h2 {
		font-size: 1.5rem;
		flex-direction: column;
		gap: 10px;
	}
	
	.skills-section-standalone .skills-header p {
		font-size: 0.9rem;
	}
	
	.skills-section-standalone .skills-container {
		padding: 25px 10px;
		margin: 0 10px;
	}
	
	.skills-section-standalone .skills-row {
		gap: 8px;
	}
	
	.skills-section-standalone .skill-tag {
		padding: 8px 12px;
		font-size: 0.8rem;
		min-width: 90px;
		gap: 6px;
	}
}

.skill-tag:hover {
	background: var(--themeDotBorder);
	color: white;
	transform: translateY(-1px);
	box-shadow: 0 3px 10px rgba(0,0,0,0.12);
}

.skill-tag i {
	font-size: 0.9rem;
}

/* Skill-specific colors */
.skill-tag.html:hover { background: #e34c26; border-color: #e34c26; }
.skill-tag.css:hover { background: #1572b6; border-color: #1572b6; }
.skill-tag.js:hover { background: #f7df1e; border-color: #f7df1e; color: #333; }
.skill-tag.react:hover { background: #61dafb; border-color: #61dafb; color: #20232a; }
.skill-tag.python:hover { background: #3776ab; border-color: #3776ab; }
.skill-tag.django:hover { background: #092e20; border-color: #092e20; }
.skill-tag.golang:hover { background: #00ADD8; border-color: #00ADD8; }
.skill-tag.mysql:hover { background: #4479a1; border-color: #4479a1; }
.skill-tag.git:hover { background: #f05032; border-color: #f05032; }
.skill-tag.php:hover { background: #777bb4; border-color: #777bb4; }
.skill-tag.bootstrap:hover { background: #7952b3; border-color: #7952b3; }
.skill-tag.gitlab:hover { background: #fc6d26; border-color: #fc6d26; }
.skill-tag.heroku:hover { background: #430098; border-color: #430098; }
.skill-tag.linux:hover { background: #fcc624; border-color: #fcc624; color: #333; }
.skill-tag.pinescript:hover { background: #119962; border-color: #119962; }
.skill-tag.mql:hover { background: #1B5E96; border-color: #1B5E96; }

/* Legacy support - hide old skills elements but not the standalone section */
.skills-grid, .skill-category {
	display: none;
}

.social-links{
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 40px 20px;
	background: linear-gradient(135deg, var(--previewBg) 0%, var(--secondaryColor) 100%);
	border-radius: 15px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	margin: 20px;
}

.social-header{
	text-align: center;
	margin-bottom: 30px;
}

.social-header h3{
	margin: 0 0 10px 0;
	font-size: 28px;
	color: var(--mainText);
}

.social-header p{
	margin: 0;
	color: var(--secondaryText);
	font-size: 16px;
}

.social-grid{
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 20px;
	width: 100%;
	max-width: 600px;
}

.social-card{
	display: flex;
	align-items: center;
	padding: 20px;
	background: var(--secondaryColor);
	border: 2px solid var(--borderColor);
	border-radius: 12px;
	text-decoration: none;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.social-card:hover{
	transform: translateY(-5px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
	border-color: transparent;
}

.social-icon{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	margin-right: 15px;
	font-size: 24px;
	color: white;
	transition: all 0.3s ease;
}

.social-info h4{
	margin: 0 0 5px 0;
	font-size: 18px;
	color: var(--mainText);
	transition: color 0.3s ease;
}

.social-info span{
	font-size: 12px;
	color: var(--secondaryText);
	font-style: italic;
}

/* Platform-specific colors and hover effects */
.social-card.youtube .social-icon{
	background: linear-gradient(45deg, #FF0000, #CC0000);
}

.social-card.youtube:hover{
	border-color: #FF0000;
}

.social-card.youtube:hover .social-icon{
	transform: scale(1.1);
	box-shadow: 0 0 20px rgba(255, 0, 0, 0.3);
}

.social-card.twitter .social-icon{
	background: linear-gradient(45deg, #1DA1F2, #0d8bd9);
}

.social-card.twitter:hover{
	border-color: #1DA1F2;
}

.social-card.twitter:hover .social-icon{
	transform: scale(1.1);
	box-shadow: 0 0 20px rgba(29, 161, 242, 0.3);
}

.social-card.github .social-icon{
	background: linear-gradient(45deg, #333, #24292e);
}

.social-card.github:hover{
	border-color: #333;
}

.social-card.github:hover .social-icon{
	transform: scale(1.1);
	box-shadow: 0 0 20px rgba(51, 51, 51, 0.3);
}

.social-card.website .social-icon{
	background: linear-gradient(45deg, #17a2b8, #138496);
}

.social-card.website:hover{
	border-color: #17a2b8;
}

.social-card.website:hover .social-icon{
	transform: scale(1.1);
	box-shadow: 0 0 20px rgba(23, 162, 184, 0.3);
}

/* LinkedIn platform styles */
.social-card.linkedin .social-icon{
	/* keep SVG visible, provide a blue background for non-SVG fallback */
	background: linear-gradient(45deg, #0A66C2, #084b8f);
}

.social-card.linkedin:hover{
	border-color: #0A66C2;
}

.social-card.linkedin:hover .social-icon{
	transform: scale(1.08);
	box-shadow: 0 0 20px rgba(10,102,194,0.28);
}

.social-card.linkedin:hover .social-info h4{
	color: #0A66C2;
}

/* Footer LinkedIn SVG hover */
.footer-social a[aria-label="LinkedIn"] svg{
	transition: transform 0.25s ease, filter 0.25s ease;
	transform-origin: center;
}

.footer-social a[aria-label="LinkedIn"]:hover svg{
	transform: scale(1.08);
	filter: drop-shadow(0 6px 14px rgba(10,102,194,0.25));
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
	.social-card.linkedin:hover .social-icon,
	.footer-social a[aria-label="LinkedIn"]:hover svg {
		transform: none;
		transition: none;
		box-shadow: none;
		filter: none;
	}
}

#social_img{
	width: 100%;
}


/* Projects Section Redesign */
.projects-header {
	text-align: center;
	margin-bottom: 60px;
	padding: 40px 0;
}

.projects-header h2 {
	font-size: 48px;
	margin: 0 0 15px 0;
	background: linear-gradient(135deg, var(--mainText) 0%, #17a2b8 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.projects-header p {
	font-size: 18px;
	color: var(--secondaryText);
	margin: 0 0 30px 0;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.header-divider {
	width: 80px;
	height: 4px;
	background: linear-gradient(90deg, #17a2b8, #138496);
	margin: 0 auto;
	border-radius: 2px;
}

.projects-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 30px;
	padding-bottom: 60px;
}

.project-card {
	background: var(--secondaryColor);
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	border: 1px solid var(--borderColor);
	position: relative;
}

.project-card.featured {
	border: 2px solid #17a2b8;
	transform: scale(1.02);
}

.project-card:hover {
	transform: translateY(-10px) scale(1.02);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.project-image {
	position: relative;
	overflow: hidden;
	height: 220px;
}

.project-image .thumbnail {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.project-card:hover .thumbnail {
	transform: scale(1.1);
}

.project-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(23, 162, 184, 0.9) 0%, rgba(19, 132, 150, 0.9) 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.project-card:hover .project-overlay {
	opacity: 1;
}

.project-links {
	display: flex;
	gap: 15px;
}

.btn-primary {
	padding: 12px 24px;
	background: #fff;
	color: #17a2b8;
	text-decoration: none;
	border-radius: 30px;
	font-weight: 600;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.btn-primary:hover {
	background: #f8f9fa;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
}

.btn-secondary {
	padding: 12px 24px;
	background: rgba(255, 255, 255, 0.2);
	color: #fff;
	text-decoration: none;
	border-radius: 30px;
	font-weight: 600;
	border: 2px solid rgba(255, 255, 255, 0.3);
	backdrop-filter: blur(10px);
}

.project-content {
	padding: 25px;
}

.project-category {
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	color: #17a2b8;
	letter-spacing: 1px;
	margin-bottom: 10px;
}

.project-title {
	font-size: 22px;
	font-weight: 700;
	margin: 0 0 15px 0;
	color: var(--mainText);
	line-height: 1.3;
}

.project-description {
	font-size: 14px;
	line-height: 1.6;
	color: var(--secondaryText);
	margin: 0 0 20px 0;
}

.tech-stack {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.tech-tag {
	padding: 4px 12px;
	font-size: 11px;
	font-weight: 600;
	border-radius: 20px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

/* Technology-specific colors */
.tech-tag.python { background: #3776ab; color: white; }
.tech-tag.django { background: #092e20; color: white; }
.tech-tag.react { background: #61dafb; color: #282c34; }
.tech-tag.js { background: #f7df1e; color: #000; }
.tech-tag.html { background: #e34f26; color: white; }
.tech-tag.nextjs { background: #000; color: white; }
.tech-tag.solidity { background: #363636; color: white; }
.tech-tag.blockchain { background: #ff6b35; color: white; }
.tech-tag.bootstrap { background: #7952b3; color: white; }
.tech-tag.mysql { background: #4479a1; color: white; }
.tech-tag.api { background: #00d4aa; color: white; }
.tech-tag.payment { background: #00c851; color: white; }
.tech-tag.education { background: #2e7d32; color: white; }
.tech-tag.responsive { background: #ff5722; color: white; }
.tech-tag.admin { background: #6c757d; color: white; }
.tech-tag.enterprise { background: #495057; color: white; }
.tech-tag.selenium { background: #43b02a; color: white; }
.tech-tag.testing { background: #dc3545; color: white; }

.post-wrapper{
	display: grid;
	grid-template-columns: repeat(auto-fit, 320px);
	gap:20px;
	justify-content: center;
	padding-bottom: 50px;
}

.post{
	border:1px solid var(--borderColor);
	-webkit-box-shadow: -2px 7px 21px -9px rgba(0,0,0,0.75);
	-moz-box-shadow: -2px 7px 21px -9px rgba(0,0,0,0.75);
	box-shadow: -2px 7px 21px -9px rgba(0,0,0,0.75);
}

.thumbnail{
	display: block;
	width: 100%;
	height:180px;
	object-fit: cover;
}

.post-preview{
	background-color: #fff;
	padding:15px;
}

.post-title{
	color:black;
	margin: 0;
}

.post-intro{
	color:#4b5156;
	font-size: 14px;
}


#contact-form{
	display: block;
	max-width: 600px;
	margin: 0 auto;
	border: 1px solid var(--borderColor);
	padding: 15px;
	border-radius: 5px;
	background-color: var(--mainColor);
	margin-bottom: 50px;

}

#contact-form label{
	line-height: 2.7em;
}

#contact-form textarea{
	min-height: 100px;
	font-size: 14px;
}


.input-field{
	width: 100%;
	padding-top: 10px;
	padding-bottom:10px; 
	background-color: var(--secondaryColor);
	border-radius: 5px;
	border:1px solid var(--borderColor);
	font-size: 14px;
}


#submit-btn{
	margin-top: 10px;
	width: 100%;
	padding-top: 10px;
	padding-bottom:10px; 
	color: #fff;
	background-color: var(--buttonColor);
	border:none;
	border-radius: 5px;
	cursor: pointer;
	font-size: 16px;
	transition: all 0.3s ease;
}

#submit-btn:hover{
	opacity: 0.8;
	transform: translateY(-2px);
}

#submit-btn:disabled{
	opacity: 0.6;
	cursor: not-allowed;
	transform: none;
}

/* Form validation styles */
.input-field:focus{
	outline: none;
	border-color: #17a2b8;
	box-shadow: 0 0 5px rgba(23, 162, 184, 0.3);
}

.input-field.error{
	border-color: #ff6b6b;
	box-shadow: 0 0 5px rgba(255, 107, 107, 0.3);
}

.field-error{
	color: #ff6b6b;
	font-size: 12px;
	margin-top: 5px;
	font-style: italic;
}

.form-message{
	padding: 12px;
	border-radius: 5px;
	margin-top: 15px;
	text-align: center;
	font-size: 14px;
	animation: slideIn 0.3s ease;
}

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

.form-message.success{
	background-color: #d4edda;
	color: #155724;
	border: 1px solid #c3e6cb;
}

.form-message.error{
	background-color: #f8d7da;
	color: #721c24;
	border: 1px solid #f5c6cb;
}

/* Loading animation for submit button */
@keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}

.loading::after {
	content: "";
	width: 16px;
	height: 16px;
	margin-left: 10px;
	border: 2px solid transparent;
	border-top: 2px solid #ffffff;
	border-radius: 50%;
	display: inline-block;
	animation: spin 1s linear infinite;
}


@media screen and (max-width: 1200px){
	.main-container{
		width: 95%;
	}
}

@media screen and (max-width: 800px){
	.intro-wrapper{
		grid-template-columns: 1fr;
		grid-template-areas: 
			'nav-wrapper'
			'left-column'
			'right-column'
		;
	}

	.right-column{
		justify-content: center;
	}

	/* Trading Dashboard Responsive */
	.trading-dashboard {
		margin-bottom: 1.5rem;
	}

	.dashboard-header {
		padding: 1rem;
		flex-direction: column;
		gap: 0.8rem;
		text-align: center;
	}

	.header-left {
		font-size: 0.9rem;
	}

	.portfolio-stats {
		grid-template-columns: 1fr;
		padding: 1rem;
	}

	.stat-card {
		padding: 1rem;
	}

	.stat-icon {
		width: 35px;
		height: 35px;
		font-size: 1rem;
	}

	.stat-value {
		font-size: 1.1rem;
	}

	.recent-trades {
		padding: 1rem;
	}

	.trade-item {
		padding: 0.6rem 0.8rem;
	}

	.trade-pair {
		font-size: 0.85rem;
	}

	.trade-price {
		font-size: 0.85rem;
	}

	.code-preview {
		margin-top: 1.5rem;
	}

	/* About section responsive */
	.about-wrapper{
		grid-template-columns: 1fr;
		gap: 40px;
		padding: 50px 0;
	}

	.about-header h2 {
		font-size: 1.9rem;
	}

	.about-stats {
		gap: 15px;
		padding: 20px;
	}

	.stat-number {
		font-size: 1.9rem;
	}

	.about-cta {
		justify-content: center;
	}

	.expertise-header h3 {
		font-size: 1.4rem;
	}

	.skills-row {
		justify-content: center;
	}

	.social-grid{
		grid-template-columns: 1fr;
		gap: 15px;
	}

	.social-card{
		padding: 15px;
	}

	.social-icon{
		width: 45px;
		height: 45px;
		font-size: 20px;
		margin-right: 12px;
	}

	.social-header h3{
		font-size: 24px;
	}

	.social-links{
		margin: 10px;
		padding: 30px 15px;
	}

	/* Projects responsive design */
	.projects-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.projects-header h2 {
		font-size: 36px;
	}

	.projects-header p {
		font-size: 16px;
		padding: 0 20px;
	}

	.project-card.featured {
		transform: none;
	}

	.project-card:hover {
		transform: translateY(-5px);
	}

	.project-image {
		height: 200px;
	}

	.project-content {
		padding: 20px;
	}

	.project-title {
		font-size: 20px;
	}
}

@media screen and (max-width: 400px){
	#preview-shadow{
		max-width: 280px;
		height: 180px;
		padding-left: 10px;
		padding-top: 10px;
	}

	#preview{
		width: 280px;
	}

	.social-card{
		padding: 12px;
	}

	.social-icon{
		width: 40px;
		height: 40px;
		font-size: 18px;
		margin-right: 10px;
	}

	.social-info h4{
		font-size: 16px;
	}

	.social-info span{
		font-size: 11px;
	}

	.social-header h3{
		font-size: 22px;
	}

	.social-links{
		padding: 25px 10px;
	}

	/* Small screen projects */
	.projects-header {
		margin-bottom: 40px;
		padding: 20px 0;
	}

	.projects-header h2 {
		font-size: 28px;
	}

	.projects-header p {
		font-size: 14px;
		padding: 0 15px;
	}

	.projects-grid {
		gap: 15px;
		padding-bottom: 40px;
	}

	.project-image {
		height: 180px;
	}

	.project-content {
		padding: 15px;
	}

	.project-title {
		font-size: 18px;
	}

	.project-description {
		font-size: 13px;
	}

	.tech-tag {
		padding: 3px 8px;
		font-size: 10px;
	}

	.btn-primary, .btn-secondary {
		padding: 10px 20px;
		font-size: 14px;
	}
}

/* Post Page Styles */
.post-page-wrapper {
	min-height: 100vh;
	background: var(--mainColor);
}

.post-header {
	background: linear-gradient(135deg, var(--secondaryColor) 0%, var(--previewBg) 100%);
	border-bottom: 2px solid var(--borderColor);
	padding: 40px 0;
	margin-bottom: 40px;
}

.breadcrumb-nav {
	margin-bottom: 20px;
}

.breadcrumb {
	background: transparent;
	padding: 0;
	margin: 0;
	font-size: 14px;
}

.breadcrumb-item {
	color: var(--secondaryText);
}

.breadcrumb-item a {
	color: #17a2b8;
	text-decoration: none;
	transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
	color: #138496;
}

.breadcrumb-item.active {
	color: var(--mainText);
	font-weight: 600;
}

.post-title-section {
	text-align: center;
	max-width: 800px;
	margin: 0 auto;
}

.post-category-badge {
	display: inline-block;
	padding: 8px 16px;
	background: #17a2b8;
	color: white;
	border-radius: 20px;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 20px;
}

.post-title {
	font-size: 48px;
	font-weight: 700;
	margin: 0 0 20px 0;
	color: var(--mainText);
	line-height: 1.2;
}

.post-subtitle {
	font-size: 20px;
	color: var(--secondaryText);
	margin: 0 0 30px 0;
	line-height: 1.4;
}

.post-content {
	max-width: 1000px;
	margin: 0 auto;
	padding: 0 20px;
}

.content-section {
	background: var(--secondaryColor);
	border-radius: 16px;
	padding: 40px;
	margin-bottom: 30px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
	border: 1px solid var(--borderColor);
}

.content-section h3 {
	color: var(--mainText);
	font-size: 28px;
	margin-bottom: 20px;
	position: relative;
	padding-bottom: 10px;
}

.content-section h3::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 50px;
	height: 3px;
	background: linear-gradient(90deg, #17a2b8, #138496);
	border-radius: 2px;
}

.content-section h5 {
	color: var(--mainText);
	font-size: 20px;
	margin: 25px 0 15px 0;
	font-weight: 600;
}

.content-section p {
	font-size: 16px;
	line-height: 1.6;
	color: var(--secondaryText);
	margin-bottom: 20px;
}

.tech-list {
	list-style: none;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 10px;
	margin: 20px 0;
}

.tech-list li {
	background: var(--previewBg);
	padding: 12px 16px;
	border-radius: 8px;
	border-left: 4px solid #17a2b8;
	font-weight: 500;
	color: var(--mainText);
	transition: all 0.3s ease;
}

.tech-list li:hover {
	background: #17a2b8;
	color: white;
	transform: translateX(5px);
}

.feature-list {
	list-style: none;
	padding: 0;
	margin: 20px 0;
	display: grid;
	gap: 12px;
}

.feature-list li {
	background: var(--secondaryColor);
	padding: 18px 24px 18px 60px;
	border-radius: 12px;
	border: 1px solid var(--borderColor);
	border-left: 4px solid #28a745;
	font-size: 16px;
	line-height: 1.5;
	color: var(--mainText);
	position: relative;
	transition: all 0.3s ease;
	box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.feature-list li:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(40, 167, 69, 0.15);
	border-left-color: #218838;
}

.feature-list li::before {
	content: '✓';
	position: absolute;
	left: 15px;
	top: 50%;
	transform: translateY(-50%);
	background: linear-gradient(135deg, #28a745, #20c997);
	color: white;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	font-weight: bold;
	box-shadow: 0 2px 6px rgba(40, 167, 69, 0.3);
}

.feature-list li i {
	color: var(--themeDotBorder);
	font-size: 18px;
	width: 20px;
	flex-shrink: 0;
	margin-left: -50px;
	z-index: 1;
}

/* Feature type specific colors */
.feature-list li[data-feature="auth"] { border-left-color: #007bff; }
.feature-list li[data-feature="auth"]:hover { border-left-color: #0056b3; }
.feature-list li[data-feature="auth"]::before { background: linear-gradient(135deg, #007bff, #0056b3); }

.feature-list li[data-feature="showcase"] { border-left-color: #6f42c1; }
.feature-list li[data-feature="showcase"]:hover { border-left-color: #5a2d91; }
.feature-list li[data-feature="showcase"]::before { background: linear-gradient(135deg, #6f42c1, #5a2d91); }

.feature-list li[data-feature="search"] { border-left-color: #fd7e14; }
.feature-list li[data-feature="search"]:hover { border-left-color: #e8630a; }
.feature-list li[data-feature="search"]::before { background: linear-gradient(135deg, #fd7e14, #e8630a); }

.feature-list li[data-feature="rating"] { border-left-color: #ffc107; }
.feature-list li[data-feature="rating"]:hover { border-left-color: #e0a800; }
.feature-list li[data-feature="rating"]::before { background: linear-gradient(135deg, #ffc107, #e0a800); }

.feature-list li[data-feature="messaging"] { border-left-color: #20c997; }
.feature-list li[data-feature="messaging"]:hover { border-left-color: #17a2b8; }
.feature-list li[data-feature="messaging"]::before { background: linear-gradient(135deg, #20c997, #17a2b8); }

.feature-list li[data-feature="responsive"] { border-left-color: #e83e8c; }
.feature-list li[data-feature="responsive"]:hover { border-left-color: #d91a72; }
.feature-list li[data-feature="responsive"]::before { background: linear-gradient(135deg, #e83e8c, #d91a72); }

.feature-list li[data-feature="admin"] { border-left-color: #6c757d; }
.feature-list li[data-feature="admin"]:hover { border-left-color: #545b62; }
.feature-list li[data-feature="admin"]::before { background: linear-gradient(135deg, #6c757d, #545b62); }

.feature-list li[data-feature="performance"] { border-left-color: #dc3545; }
.feature-list li[data-feature="performance"]:hover { border-left-color: #c82333; }
.feature-list li[data-feature="performance"]::before { background: linear-gradient(135deg, #dc3545, #c82333); }

.image-gallery {
	margin: 30px 0;
}

.project-image {
	width: 100%;
	max-width: 100%;
	height: auto;
	border-radius: 12px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
	margin-bottom: 20px;
	transition: transform 0.3s ease;
}

.project-image:hover {
	transform: scale(1.02);
	cursor: pointer;
}

.action-buttons {
	display: flex;
	gap: 20px;
	margin: 40px 0;
	justify-content: center;
	flex-wrap: wrap;
}

.btn-modern {
	padding: 15px 30px;
	border-radius: 30px;
	text-decoration: none;
	font-weight: 600;
	font-size: 16px;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
	position: relative;
	overflow: hidden;
}

.btn-modern::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
	transition: left 0.5s ease;
}

.btn-modern:hover::before {
	left: 100%;
}

.btn-primary-modern {
	background: linear-gradient(135deg, #17a2b8, #138496);
	color: white;
	border: none;
}

.btn-primary-modern:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(23, 162, 184, 0.3);
	color: white;
}

.btn-secondary-modern {
	background: var(--secondaryColor);
	color: var(--mainText);
	border: 2px solid var(--borderColor);
}

.btn-secondary-modern:hover {
	background: var(--previewBg);
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.project-status {
	display: inline-block;
	padding: 10px 20px;
	border-radius: 20px;
	font-size: 14px;
	font-weight: 600;
	margin: 20px 0;
}

.status-live {
	background: #d4edda;
	color: #155724;
	border: 1px solid #c3e6cb;
}

.status-development {
	background: #fff3cd;
	color: #856404;
	border: 1px solid #ffeaa7;
}

.status-planning {
	background: #d1ecf1;
	color: #0c5460;
	border: 1px solid #b8daff;
}

/* Responsive design for post pages */
@media screen and (max-width: 800px) {
	.post-title {
		font-size: 36px;
	}
	
	.post-subtitle {
		font-size: 18px;
	}
	
	.content-section {
		padding: 25px;
		margin-bottom: 20px;
	}
	
	.feature-list li {
		padding: 16px 20px 16px 55px;
		font-size: 15px;
		gap: 10px;
	}
	
	.feature-list li::before {
		left: 12px;
		width: 22px;
		height: 22px;
		font-size: 13px;
	}
	
	.feature-list li i {
		font-size: 16px;
		margin-left: -45px;
	}
	
	.action-buttons {
		flex-direction: column;
		align-items: center;
	}
	
	.btn-modern {
		width: 100%;
		max-width: 300px;
		text-align: center;
	}
}

@media screen and (max-width: 400px) {
	.post-title {
		font-size: 28px;
	}
	
	.content-section {
		padding: 20px;
	}
	
	.feature-list li {
		padding: 14px 18px 14px 50px;
		font-size: 14px;
		line-height: 1.4;
		gap: 8px;
	}
	
	.feature-list li::before {
		left: 10px;
		width: 20px;
		height: 20px;
		font-size: 12px;
	}
	
	.feature-list li i {
		font-size: 14px;
		margin-left: -42px;
	}
	
	.tech-list {
		grid-template-columns: 1fr;
	}
}

/* FOOTER SECTION */
.footer-section {
	background: var(--mainColor);
	border-top: 2px solid var(--borderColor);
	padding: 60px 0 20px;
	margin-top: 80px;
}

.footer-content {
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: 60px;
	margin-bottom: 40px;
}

.footer-about h3 {
	font-size: 24px;
	color: var(--mainText);
	margin-bottom: 15px;
}

.footer-about p {
	color: var(--secondaryText);
	line-height: 1.6;
	margin-bottom: 20px;
}

.footer-social {
	display: flex;
	gap: 15px;
	margin-top: 20px;
}

.footer-social a {
	width: 45px;
	height: 45px;
	background: var(--secondaryColor);
	border: 1px solid var(--borderColor);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--mainText);
	font-size: 20px;
	transition: all 0.3s ease;
}

.footer-social a:hover {
	background: var(--themeDotBorder);
	color: white;
	transform: translateY(-3px);
	box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.footer-links {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
}

.footer-column h4 {
	color: var(--mainText);
	font-size: 18px;
	margin-bottom: 15px;
	padding-bottom: 10px;
	border-bottom: 2px solid var(--borderColor);
}

.footer-column ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-column ul li {
	margin-bottom: 10px;
	color: var(--secondaryText);
	font-size: 14px;
	transition: all 0.3s ease;
}

.footer-column ul li a {
	color: var(--secondaryText);
	text-decoration: none;
	transition: all 0.3s ease;
}

.footer-column ul li a:hover {
	color: var(--themeDotBorder);
	padding-left: 5px;
}

.footer-column ul li i {
	margin-right: 8px;
	color: var(--themeDotBorder);
	font-size: 14px;
}

.footer-bottom {
	text-align: center;
	padding-top: 30px;
	border-top: 1px solid var(--borderColor);
	margin-top: 40px;
}

.footer-bottom p {
	color: var(--secondaryText);
	font-size: 14px;
	margin: 8px 0;
}

.footer-tagline {
	font-size: 13px;
	opacity: 0.8;
}

.footer-tagline i {
	color: #e74c3c;
	animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
	0%, 100% { transform: scale(1); }
	50% { transform: scale(1.2); }
}

/* Footer Responsive */
@media screen and (max-width: 800px) {
	.footer-content {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.footer-links {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.footer-section {
		padding: 40px 0 20px;
		margin-top: 60px;
	}

	.footer-social {
		justify-content: center;
	}
}

@media screen and (max-width: 480px) {
	.footer-about h3 {
		font-size: 20px;
	}

	.footer-social a {
		width: 40px;
		height: 40px;
		font-size: 18px;
	}

	.footer-column h4 {
		font-size: 16px;
	}
}



