/* Image and Text Landing Effects */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

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

h1 { font-size:2rem; margin-bottom:8px; }

/* Prevent horizontal scrolling */
body {
	overflow-x: hidden;
}
.container {
	overflow-x: hidden;
}

/* Modern Portfolio Home Styles */
.hero {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 100vh;
	width: 100%;
	position: relative;
	margin: 0;
	background: #1a1a2e;
	border-radius: 0;
	box-shadow: none;
	overflow: hidden;
	padding: 80px 60px;
	box-sizing: border-box;
}
.hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(circle at 30% 40%, rgba(0, 234, 255, 0.1) 0%, transparent 70%);
	pointer-events: none;
}
.hero-content {
	display: flex;
	gap: 60px;
	align-items: center;
	position: relative;
	z-index: 1;
	padding-left: 60px;
	max-width: 1300px;
	width: 100%;
}
.profile-img {
	width: 220px;
	height: 220px;
	border-radius: 50%;
	object-fit: cover;
	box-shadow: 0 16px 50px rgba(0, 234, 255, 0.4);
	border: 6px solid rgba(0, 234, 255, 0.8);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	flex-shrink: 0;
	margin-left: 20px;
	animation: slideInLeft 1.2s ease-out;
}
}
.profile-img:hover {
	transform: scale(1.08);
	box-shadow: 0 20px 70px rgba(0, 234, 255, 0.6);
}
.hero-title {
	font-size: 4rem;
	font-weight: 800;
	margin-bottom: 24px;
	letter-spacing: -2px;
	color: #ffffff;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
	animation: slideInRight 1s ease-out 0.5s both;
}
}
.highlight {
	color: #00eaff;
	background: linear-gradient(135deg, #00eaff 0%, #0090ff 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	filter: drop-shadow(0 1px 2px rgba(0, 234, 255, 0.5));
}

.highlight {
	color: #00eaff;
	background: linear-gradient(135deg, #00eaff 0%, #0090ff 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	filter: drop-shadow(0 1px 2px rgba(0, 234, 255, 0.5));
}
.wave {
	animation: wave 1.8s infinite;
	display: inline-block;
}
@keyframes wave {
	0% { transform: rotate(0deg); }
	10% { transform: rotate(14deg); }
	20% { transform: rotate(-8deg); }
	30% { transform: rotate(14deg); }
	40% { transform: rotate(-4deg); }
	50% { transform: rotate(10deg); }
	60% { transform: rotate(0deg); }
	100% { transform: rotate(0deg); }
}
.hero-subtitle {
	font-size: 1.6rem;
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 36px;
	line-height: 1.6;
	font-weight: 300;
	text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
	max-width: 600px;
	animation: fadeInUp 1s ease-out 1s both;
}
.hero-actions {
	display: flex;
	gap: 28px;
	margin-bottom: 36px;
}

@media (max-width: 768px) {
	.hero {
		min-height: 100vh;
		width: 100%;
		position: relative;
		margin: 0;
		padding: 100px 24px 60px;
		border-radius: 0;
		box-sizing: border-box;
	}
	.hero-content {
		flex-direction: column;
		gap: 36px;
		align-items: center;
		text-align: center;
		padding-left: 0;
	}
	.profile-img {
		width: 180px;
		height: 180px;
		border-width: 5px;
		margin-left: 0;
	}
	.hero-title {
		font-size: 3rem;
	}
	.hero-subtitle {
		font-size: 1.3rem;
	}
	.hero-actions {
		flex-direction: column;
		gap: 14px;
		align-items: center;
		width: 100%;
	}
	.btn {
		width: 100%;
		max-width: 280px;
		font-size: 1rem;
		padding: 12px 24px;
	}
	.hero-social {
		justify-content: center;
		gap: 16px;
		margin-bottom: 16px;
	}
}

@media (max-width: 480px) {
	.hero {
		min-height: 100vh;
		width: 100%;
		position: relative;
		margin: 0;
		padding: 120px 20px 40px;
		border-radius: 0;
		box-sizing: border-box;
	}
	.hero-content {
		gap: 20px;
	}
	.profile-img {
		width: 140px;
		height: 140px;
		border-width: 4px;
		margin-left: 0;
	}
	.hero-title {
		font-size: 2.2rem;
	}
	.hero-subtitle {
		font-size: 1.1rem;
	}
		border-width: 3px;
	}
	.hero-title {
		font-size: 1.8rem;
	}
	.hero-subtitle {
		font-size: 1rem;
	}
	.btn {
		padding: 10px 20px;
		font-size: 0.9rem;
	}
	.hero-social a {
		font-size: 1.5rem;
		padding: 6px;
	}
}

/* Button Styles */
.btn {
	padding: 16px 32px;
	border-radius: 50px;
	font-weight: 700;
	text-decoration: none;
	transition: all 0.3s ease;
	font-size: 1.1rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
	position: relative;
	overflow: hidden;
	display: inline-block;
}
.btn::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;
}
.btn:hover::before {
	left: 100%;
}
.btn-primary {
	background: linear-gradient(135deg, #00eaff 0%, #0090ff 100%);
	color: #ffffff;
	border: none;
	transform: translateY(0);
}
.btn-primary:hover {
	background: linear-gradient(135deg, #0090ff 0%, #0066cc 100%);
	transform: translateY(-3px);
	box-shadow: 0 10px 30px rgba(0, 234, 255, 0.4);
}
.btn-secondary {
	background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
	color: #ffffff;
	border: none;
}
.btn-secondary:hover {
	background: linear-gradient(135deg, #ee5a24 0%, #d63031 100%);
	transform: translateY(-3px);
	box-shadow: 0 10px 30px rgba(255, 107, 107, 0.4);
}

.hero-social {
	display: flex;
	gap: 20px;
	margin-top: 12px;
}
.hero-social a {
	font-size: 1.8rem;
	color: #00eaff;
	transition: all 0.3s ease;
	padding: 12px;
	border-radius: 50%;
	background: rgba(0, 234, 255, 0.2);
	backdrop-filter: blur(10px);
	border: 2px solid rgba(0, 234, 255, 0.5);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
}
.hero-social a:hover {
	color: #ffffff;
	background: rgba(0, 234, 255, 0.4);
	transform: translateY(-3px);
	box-shadow: 0 4px 16px rgba(0, 234, 255, 0.6);
	border-color: rgba(0, 234, 255, 0.8);
}

/* Font Awesome fallback for icons */
.fab, .fas {
	font-family: 'Font Awesome 5 Free', FontAwesome;
	font-weight: 900;
	font-style: normal;
}

/* Specific icon content for better visibility */
.fa-github:before {
	content: "\f09b";
}
.fa-linkedin:before {
	content: "\f08c";
}
.fa-envelope:before {
	content: "\f0e0";
}
