* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	outline: none;
	-webkit-tap-highlight-color: transparent;
}

body {
	font-family:
		'Inter',
		-apple-system,
		BlinkMacSystemFont,
		'Segoe UI',
		Roboto,
		sans-serif;
	line-height: 1.6;
	color: #2d3748;
	scroll-behavior: smooth;
	background: #ffffff;
	max-width: 100%;
	overflow-x: hidden;
}

html {
	max-width: 100%;
	overflow-x: hidden;
}

.container {
	margin: 0 auto;
	padding: 0 20px;
	max-width: 100%;
}

/* Navigation */
nav {
	position: fixed;
	top: 0;
	width: 100%;
	max-width: 100vw;
	background: rgba(255, 255, 255, 0.8);
	backdrop-filter: blur(20px);
	z-index: 1000;
	padding: 20px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.05);
	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.03);
}

nav .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	font-size: 1.8em;
	font-weight: 800;
	background: linear-gradient(135deg, #ff6b6b, #a855f7);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-decoration: none;
	letter-spacing: -1px;
}

.nav-links {
	display: flex;
	list-style: none;
	gap: 35px;
}

.nav-links a {
	color: #4a5568;
	text-decoration: none;
	font-weight: 600;
	font-size: 0.95em;
	transition: all 0.3s ease;
	position: relative;
}

.nav-links a:hover {
	color: #ff6b6b;
	transform: translateY(-2px);
}

.nav-links a::after {
	content: '';
	position: absolute;
	bottom: -8px;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 3px;
	background: linear-gradient(135deg, #ff6b6b, #a855f7);
	border-radius: 2px;
	transition: width 0.3s ease;
}

.nav-links a:hover::after {
	width: 100%;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
	display: none;
	flex-direction: column;
	gap: 6px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
	z-index: 1001;
	transition: all 0.3s ease;
}

.mobile-menu-toggle span {
	width: 28px;
	height: 3px;
	background: linear-gradient(135deg, #ff6b6b, #a855f7);
	border-radius: 3px;
	transition: all 0.3s ease;
	transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
	transform: translateY(9px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
	opacity: 0;
	transform: scaleX(0);
}

.mobile-menu-toggle.active span:nth-child(3) {
	transform: translateY(-9px) rotate(-45deg);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background: rgba(0, 0, 0, 0.5);
	backdrop-filter: blur(5px);
	z-index: 999;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
	display: block;
	opacity: 1;
}

/* Hero Section */
.hero {
	min-height: 100vh;
	display: flex;
	align-items: center;
	position: relative;
	overflow: hidden;
	background: linear-gradient(135deg, #fef3f3 0%, #f9fafb 50%, #f3f0ff 100%);
	padding-top: 80px;
}

.hero::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -10%;
	width: 600px;
	height: 600px;
	background: radial-gradient(
		circle,
		rgba(255, 107, 107, 0.15) 0%,
		transparent 70%
	);
	border-radius: 50%;
	animation: float 20s ease-in-out infinite;
	will-change: transform;
}

.hero::after {
	content: '';
	position: absolute;
	bottom: -30%;
	left: -5%;
	width: 500px;
	max-width: 100%;
	height: 500px;
	background: radial-gradient(
		circle,
		rgba(168, 85, 247, 0.12) 0%,
		transparent 70%
	);
	border-radius: 50%;
	animation: float 15s ease-in-out infinite reverse;
	will-change: transform;
}

.hero-content {
	display: grid;
	grid-template-columns: 50% 50%;
	gap: 50px;
	align-items: center;
	position: relative;
	z-index: 2;
	margin-top: 20px;
}

.hero-text h1 {
	font-size: 4.5em;
	font-weight: 900;
	color: #1a202c;
	margin-bottom: 20px;
	line-height: 1;
	letter-spacing: -2px;
}

.hero-text .highlight {
	background: linear-gradient(135deg, #ff6b6b, #a855f7);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	display: block;
	margin-top: 10px;
}

.hero-text .subtitle {
	font-size: 1.5em;
	color: #718096;
	margin-bottom: 25px;
	font-weight: 600;
}

.hero-text p {
	font-size: 1.15em;
	color: #4a5568;
	margin-bottom: 45px;
	max-width: 600px;
	line-height: 1.8;
}

.hero-image {
	position: relative;
	text-align: center;
	margin: auto;
}

.profile-pic {
	width: 320px;
	height: 320px;
	border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
	overflow: hidden;
	box-shadow:
		0 30px 60px rgba(255, 107, 107, 0.2),
		0 15px 30px rgba(168, 85, 247, 0.15);
	transition: all 0.5s ease;
	animation: morph 8s ease-in-out infinite;
	background: linear-gradient(135deg, #ff6b6b, #a855f7);
	padding: 8px;
}

@keyframes morph {
	0%,
	100% {
		border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
	}
	25% {
		border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
	}
	50% {
		border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
	}
	75% {
		border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
	}
}

.profile-pic:hover {
	transform: scale(1.05);
	box-shadow:
		0 40px 80px rgba(255, 107, 107, 0.25),
		0 20px 40px rgba(168, 85, 247, 0.2);
}

.profile-pic img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: inherit;
}

.cta-buttons {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
}

.btn {
	padding: 18px 36px;
	border-radius: 50px;
	text-decoration: none;
	font-weight: 700;
	font-size: 1em;
	transition: all 0.3s ease;
	border: 3px solid transparent;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	position: relative;
	overflow: hidden;
}

.btn-primary {
	background: linear-gradient(135deg, #ff6b6b, #a855f7);
	color: #ffffff;
	box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
}

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

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

.btn-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 15px 40px rgba(255, 107, 107, 0.4);
}

.btn-secondary {
	color: #ff6b6b;
	border-color: #ff6b6b;
	background: transparent;
}

.btn-secondary:hover {
	background: rgba(255, 107, 107, 0.1);
	transform: translateY(-3px);
	border-color: #a855f7;
	color: #a855f7;
}

/* About Section */
.about {
	padding: 120px 0;
	background: #ffffff;
	position: relative;
}

.about::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, #e2e8f0, transparent);
}

.section-title {
	font-size: 3.5em;
	font-weight: 900;
	color: #1a202c;
	text-align: center;
	margin-bottom: 70px;
	position: relative;
	letter-spacing: -1px;
}

.section-title::after {
	content: '';
	position: absolute;
	bottom: -15px;
	left: 50%;
	transform: translateX(-50%);
	width: 100px;
	height: 6px;
	background: linear-gradient(135deg, #ff6b6b, #a855f7);
	border-radius: 3px;
}

.about-content {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 80px;
	align-items: start;
}

.about-text {
	font-size: 1.15em;
	color: #4a5568;
	line-height: 1.9;
}

.about-text p {
	margin-bottom: 25px;
}

.skills-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 20px;
	margin-top: 0;
}

.skill-category {
	background: linear-gradient(135deg, #fff5f5, #faf5ff);
	padding: 30px;
	border-radius: 20px;
	border: 2px solid transparent;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.skill-category::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(135deg, #ff6b6b, #a855f7);
	transform: scaleX(0);
	transition: transform 0.3s ease;
}

.skill-category:hover {
	transform: translateY(-8px);
	border-color: rgba(255, 107, 107, 0.3);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.skill-category:hover::before {
	transform: scaleX(1);
}

.skill-category h3 {
	background: linear-gradient(135deg, #ff6b6b, #a855f7);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 18px;
	font-size: 1.3em;
	font-weight: 800;
}

.skill-category ul {
	list-style: none;
}

.skill-category li {
	color: #4a5568;
	margin-bottom: 10px;
	padding-left: 20px;
	position: relative;
	font-weight: 500;
	font-size: 0.95em;
}

.skill-category li::before {
	content: '●';
	position: absolute;
	left: 0;
	color: #ff6b6b;
	font-size: 1em;
}

/* AI Bot Section */
.ai-bot {
	padding: 120px 0;
	background: linear-gradient(135deg, #f9fafb 0%, #fef3f3 100%);
	text-align: center;
	position: relative;
}

.ai-bot::before {
	content: '';
	position: absolute;
	top: -200px;
	left: 50%;
	transform: translateX(-50%);
	width: 800px;
	height: 800px;
	background: radial-gradient(
		circle,
		rgba(37, 211, 102, 0.08) 0%,
		transparent 70%
	);
	border-radius: 50%;
	pointer-events: none;
}

.ai-bot-content {
	max-width: 800px;
	margin: 0 auto;
	position: relative;
	z-index: 2;
}

.ai-bot-card {
	background: #ffffff;
	border-radius: 30px;
	padding: 60px 50px;
	border: 3px solid #e2e8f0;
	position: relative;
	overflow: hidden;
	transition: all 0.4s ease;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.ai-bot-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 6px;
	background: linear-gradient(135deg, #25d366, #128c7e);
}

.ai-bot-card:hover {
	transform: translateY(-10px);
	border-color: #25d366;
	box-shadow: 0 30px 80px rgba(37, 211, 102, 0.15);
}

.ai-bot-icon {
	width: 100px;
	height: 100px;
	background: linear-gradient(135deg, #25d366, #128c7e);
	border-radius: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 35px;
	font-size: 3em;
	color: white;
	animation: pulse 3s infinite;
	box-shadow: 0 20px 40px rgba(37, 211, 102, 0.3);
	transform: rotate(5deg);
}

@keyframes pulse {
	0%,
	100% {
		transform: rotate(5deg) scale(1);
		box-shadow: 0 20px 40px rgba(37, 211, 102, 0.3);
	}
	50% {
		transform: rotate(-5deg) scale(1.05);
		box-shadow: 0 25px 50px rgba(37, 211, 102, 0.4);
	}
}

.ai-bot-card h2 {
	color: #1a202c;
	font-size: 2.5em;
	margin-bottom: 20px;
	line-height: 1.3;
	font-weight: 900;
	letter-spacing: -1px;
}

.ai-bot-card > p {
	color: #4a5568;
	font-size: 1.2em;
	margin-bottom: 40px;
	line-height: 1.7;
}

.ai-bot-features {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 20px;
	margin-bottom: 45px;
}

.feature-item {
	display: flex;
	align-items: center;
	gap: 15px;
	color: #4a5568;
	font-size: 1em;
	padding: 20px;
	background: linear-gradient(135deg, #f0fdf4, #ecfccb);
	border-radius: 15px;
	border: 2px solid #d1fae5;
	transition: all 0.3s ease;
	font-weight: 600;
}

.feature-item:hover {
	background: linear-gradient(135deg, #d1fae5, #d9f99d);
	border-color: #86efac;
	transform: translateY(-4px);
	box-shadow: 0 10px 20px rgba(37, 211, 102, 0.15);
}

.feature-item i {
	color: #22c55e;
	font-size: 1.5em;
	min-width: 24px;
}

.btn-whatsapp {
	background: linear-gradient(135deg, #25d366, #128c7e);
	color: white;
	padding: 20px 45px;
	border-radius: 50px;
	text-decoration: none;
	font-weight: 800;
	font-size: 1.15em;
	display: inline-flex;
	align-items: center;
	gap: 15px;
	transition: all 0.3s ease;
	border: 3px solid transparent;
	margin-bottom: 30px;
	box-shadow: 0 15px 35px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
	transform: translateY(-4px) scale(1.05);
	box-shadow: 0 20px 45px rgba(37, 211, 102, 0.45);
}

.btn-whatsapp i {
	font-size: 1.4em;
	animation: bounce 2s infinite;
}

@keyframes bounce {
	0%,
	20%,
	50%,
	80%,
	100% {
		transform: translateY(0);
	}
	40% {
		transform: translateY(-5px);
	}
	60% {
		transform: translateY(-3px);
	}
}

.ai-bot-cta {
	color: #4a5568;
	font-size: 1em;
	line-height: 1.7;
	margin-top: 25px;
	padding: 25px;
	background: linear-gradient(135deg, #fef3f3, #f3f0ff);
	border-radius: 15px;
	border-left: 6px solid #ff6b6b;
	font-weight: 500;
}

/* Resume Section */
.resume {
	padding: 120px 0;
	background: #ffffff;
	text-align: center;
	position: relative;
}

.resume::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, #e2e8f0, transparent);
}

.resume-content {
	max-width: 900px;
	margin: 0 auto;
}

.resume-preview {
	background: linear-gradient(135deg, #fff5f5, #faf5ff);
	border-radius: 30px;
	padding: 70px 50px;
	border: 3px solid #e2e8f0;
	position: relative;
	overflow: hidden;
	transition: all 0.4s ease;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.resume-preview::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 6px;
	background: linear-gradient(135deg, #ff6b6b, #a855f7);
}

.resume-preview:hover {
	transform: translateY(-8px);
	border-color: rgba(255, 107, 107, 0.4);
	box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
}

.resume-icon {
	width: 140px;
	height: 140px;
	background: linear-gradient(135deg, #ff6b6b, #a855f7);
	border-radius: 35px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 35px;
	transition: all 0.4s ease;
	position: relative;
	overflow: hidden;
	box-shadow: 0 20px 40px rgba(255, 107, 107, 0.3);
}

.resume-icon::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: linear-gradient(
		45deg,
		transparent,
		rgba(255, 255, 255, 0.2),
		transparent
	);
	animation: shimmer 3s infinite;
}

@keyframes shimmer {
	0% {
		transform: translateX(-100%) translateY(-100%) rotate(45deg);
	}
	100% {
		transform: translateX(100%) translateY(100%) rotate(45deg);
	}
}

.resume-icon i {
	font-size: 4em;
	color: #ffffff;
	z-index: 1;
}

.resume-preview:hover .resume-icon {
	transform: scale(1.1) rotate(-10deg);
	box-shadow: 0 25px 50px rgba(255, 107, 107, 0.4);
}

.resume-preview h3 {
	font-size: 2.5em;
	color: #1a202c;
	margin-bottom: 25px;
	font-weight: 900;
	letter-spacing: -1px;
}

.resume-preview p {
	font-size: 1.15em;
	color: #4a5568;
	line-height: 1.8;
	margin-bottom: 45px;
}

.resume-highlights {
	display: flex;
	justify-content: center;
	gap: 50px;
	margin-bottom: 45px;
	flex-wrap: wrap;
}

.highlight-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	color: #1a202c;
	transition: all 0.3s ease;
}

.highlight-item:hover {
	transform: scale(1.1);
}

.highlight-item i {
	font-size: 2.5em;
	background: linear-gradient(135deg, #ff6b6b, #a855f7);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 8px;
}

.highlight-item span {
	font-size: 0.95em;
	font-weight: 700;
	color: #4a5568;
}

.btn-resume {
	background: linear-gradient(135deg, #ff6b6b, #a855f7);
	color: #ffffff;
	padding: 20px 45px;
	border-radius: 50px;
	text-decoration: none;
	font-weight: 800;
	font-size: 1.15em;
	display: inline-flex;
	align-items: center;
	gap: 15px;
	transition: all 0.3s ease;
	border: 3px solid transparent;
	position: relative;
	overflow: hidden;
	box-shadow: 0 15px 35px rgba(255, 107, 107, 0.3);
}

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

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

.btn-resume:hover {
	transform: translateY(-4px) scale(1.05);
	box-shadow: 0 20px 45px rgba(255, 107, 107, 0.4);
}

.btn-resume i {
	font-size: 1.3em;
	transition: transform 0.3s ease;
}

.btn-resume:hover i {
	transform: scale(1.2) rotate(10deg);
}

/* Projects Section */
.projects {
	padding: 120px 0;
	background: linear-gradient(135deg, #fef3f3 0%, #f9fafb 50%, #f3f0ff 100%);
}

.projects-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
	gap: 35px;
	margin-top: 60px;
}

.project-card {
	background: #ffffff;
	border-radius: 25px;
	padding: 40px;
	border: 3px solid #e2e8f0;
	transition: all 0.4s ease;
	position: relative;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.project-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 6px;
	background: linear-gradient(135deg, #ff6b6b, #a855f7);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.4s ease;
}

.project-card:hover::before {
	transform: scaleX(1);
}

.project-card:hover {
	transform: translateY(-12px);
	border-color: rgba(255, 107, 107, 0.4);
	box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.project-card h3 {
	color: #1a202c;
	font-size: 1.6em;
	margin-bottom: 18px;
	font-weight: 900;
	letter-spacing: -0.5px;
}

.project-tech {
	background: linear-gradient(135deg, #ff6b6b, #a855f7);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	font-size: 0.95em;
	margin-bottom: 18px;
	font-weight: 700;
}

.project-card p {
	color: #4a5568;
	line-height: 1.7;
	margin-bottom: 25px;
	font-size: 1.05em;
}

.project-card ul {
	list-style: none;
	margin-bottom: 0;
}

.project-card li {
	color: #4a5568;
	margin-bottom: 12px;
	padding-left: 25px;
	position: relative;
	font-weight: 500;
	font-size: 0.95em;
}

.project-card li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: #ff6b6b;
	font-weight: 900;
	font-size: 1.2em;
}

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

.project-link {
	color: #ff6b6b;
	text-decoration: none;
	font-size: 0.95em;
	font-weight: 600;
	transition: all 0.3s ease;
}

.project-link:hover {
	color: #a855f7;
	transform: translateX(3px);
}

/* Portfolios Section */
.portfolios {
	padding: 120px 0;
	background: #ffffff;
	position: relative;
}

.portfolios::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, #e2e8f0, transparent);
}

.portfolios-intro {
	text-align: center;
	font-size: 1.2em;
	color: #4a5568;
	margin-bottom: 60px;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
	line-height: 1.8;
}

.portfolios-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 35px;
	margin-top: 60px;
}

.portfolio-card {
	background: #ffffff;
	border-radius: 25px;
	overflow: hidden;
	border: 3px solid #e2e8f0;
	transition: all 0.4s ease;
	position: relative;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.portfolio-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 6px;
	background: linear-gradient(135deg, #ff6b6b, #a855f7);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.4s ease;
	z-index: 2;
}

.portfolio-card:hover::before {
	transform: scaleX(1);
}

.portfolio-card:hover {
	transform: translateY(-12px);
	border-color: rgba(255, 107, 107, 0.4);
	box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.portfolio-image-container {
	position: relative;
	overflow: hidden;
	aspect-ratio: 16 / 10;
	background: linear-gradient(135deg, #fef3f3, #f3f0ff);
}

.portfolio-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.4s ease;
}

.portfolio-card:hover .portfolio-image {
	transform: scale(1.08);
}

.portfolio-hover {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(
		135deg,
		rgba(255, 107, 107, 0.95),
		rgba(168, 85, 247, 0.95)
	);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.4s ease;
}

.portfolio-card:hover .portfolio-hover {
	opacity: 1;
}

.portfolio-view-btn {
	padding: 18px 36px;
	background: #ffffff;
	color: #ff6b6b;
	text-decoration: none;
	border-radius: 50px;
	font-weight: 800;
	font-size: 1em;
	display: inline-flex;
	align-items: center;
	gap: 12px;
	transition: all 0.3s ease;
	border: 3px solid transparent;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.portfolio-view-btn:hover {
	transform: scale(1.1);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
	background: #ffffff;
	border-color: rgba(255, 107, 107, 0.3);
}

.portfolio-view-btn i {
	transition: transform 0.3s ease;
}

.portfolio-view-btn:hover i {
	transform: translateX(5px);
}

.portfolio-details {
	padding: 35px;
	background: linear-gradient(135deg, #fff5f5, #faf5ff);
}

.portfolio-details h3 {
	font-size: 1.5em;
	margin-bottom: 15px;
	font-weight: 900;
	color: #1a202c;
	letter-spacing: -0.5px;
	transition: all 0.3s ease;
}

.portfolio-card:hover .portfolio-details h3 {
	background: linear-gradient(135deg, #ff6b6b, #a855f7);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.portfolio-details p {
	color: #4a5568;
	line-height: 1.7;
	font-size: 1.05em;
	font-weight: 500;
}

/* Contact Section */
.contact {
	padding: 120px 0;
	background: #ffffff;
	text-align: center;
	position: relative;
}

.contact::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, #e2e8f0, transparent);
}

.contact-content {
	max-width: 700px;
	margin: 0 auto;
}

.contact p {
	font-size: 1.25em;
	color: #4a5568;
	margin-bottom: 50px;
	line-height: 1.8;
}

.contact-info {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 20px;
	margin-top: 50px;
}

.contact-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	color: #1a202c;
	text-decoration: none;
	transition: all 0.3s ease;
	-webkit-tap-highlight-color: transparent;
	-moz-tap-highlight-color: transparent;
	padding: 25px;
	border-radius: 20px;
	background: linear-gradient(135deg, #fff5f5, #faf5ff);
	border: 2px solid #e2e8f0;
}

.contact-item:hover {
	transform: translateY(-8px);
	border-color: rgba(255, 107, 107, 0.4);
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.contact-item:hover div {
	color: #a855f7;
	transform: scale(1.15);
}

.contact-item .icon {
	background: linear-gradient(135deg, #ff6b6b, #a855f7);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	font-size: 2.5em;
	margin-bottom: 5px;
	transition: all 0.3s ease;
}

.contact-item div:not(.icon) {
	font-weight: 600;
	font-size: 0.9em;
	color: #4a5568;
}

/* Footer */
footer {
	background: linear-gradient(135deg, #1a202c, #2d3748);
	padding: 50px 0;
	text-align: center;
	border-top: 4px solid transparent;
	border-image: linear-gradient(135deg, #ff6b6b, #a855f7) 1;
	position: relative;
}

footer::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #ff6b6b, #a855f7, #ff6b6b);
	background-size: 200% 100%;
	animation: gradient-shift 3s ease infinite;
}

@keyframes gradient-shift {
	0%,
	100% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
}

footer p {
	color: #e2e8f0;
	font-size: 1em;
	font-weight: 500;
}

/* Mobile Styles */
@media (max-width: 768px) {
	.mobile-menu-toggle {
		display: flex;
	}

	.nav-links {
		position: fixed;
		top: 0;
		right: -100%;
		height: 100vh;
		width: 280px;
		background: rgba(255, 255, 255, 0.98);
		backdrop-filter: blur(20px);
		flex-direction: column;
		padding: 100px 40px 40px;
		gap: 25px;
		box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
		transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
		z-index: 1000;
		border-left: 3px solid;
		border-image: linear-gradient(135deg, #ff6b6b, #a855f7) 1;
	}

	.nav-links.active {
		right: 0;
	}

	.nav-links a {
		font-size: 1.2em;
		padding: 12px 0;
		border-bottom: 2px solid #f7fafc;
		transition: all 0.3s ease;
	}

	.nav-links a::after {
		display: none;
	}

	.nav-links a:hover {
		padding-left: 10px;
		color: #a855f7;
		border-bottom-color: #ff6b6b;
	}

	.logo {
		font-size: 1.5em;
	}

	.hero {
		padding-top: 100px;
		min-height: auto;
		padding-bottom: 60px;
	}

	.hero-content {
		grid-template-columns: 1fr;
		text-align: center;
		gap: 40px;
		padding: 40px 0 0 0;
		margin-top: 20px;
	}

	.hero-text h1 {
		font-size: 3em;
		letter-spacing: -1px;
	}

	.hero-text .subtitle {
		font-size: 1.2em;
	}

	.hero-text p {
		font-size: 1.05em;
	}

	.about-content {
		grid-template-columns: 1fr;
		gap: 50px;
	}

	.section-title {
		font-size: 2.5em;
	}

	.profile-pic {
		width: 260px;
		height: 260px;
	}

	.about,
	.projects,
	.resume,
	.contact,
	.ai-bot,
	.portfolios {
		padding: 80px 0;
	}

	.projects-grid {
		grid-template-columns: 1fr;
	}

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

	.portfolios-intro {
		font-size: 1.05em;
		margin-bottom: 50px;
	}

	.portfolio-details {
		padding: 30px;
	}

	.portfolio-details h3 {
		font-size: 1.35em;
	}

	.portfolio-view-btn {
		padding: 16px 32px;
		font-size: 0.95em;
	}

	.resume-preview {
		padding: 50px 30px;
		margin: 0 10px;
	}

	.resume-highlights {
		gap: 30px;
	}

	.resume-icon {
		width: 110px;
		height: 110px;
	}

	.resume-icon i {
		font-size: 3.2em;
	}

	.resume-preview h3 {
		font-size: 2em;
	}

	.contact-info {
		grid-template-columns: repeat(2, 1fr);
		gap: 10px;
	}

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

	.btn {
		padding: 16px 32px;
		font-size: 0.95em;
	}

	.ai-bot-card {
		padding: 50px 30px;
		margin: 0 10px;
	}

	.ai-bot-card h2 {
		font-size: 2em;
	}

	.ai-bot-features {
		grid-template-columns: 1fr;
		gap: 15px;
	}

	.feature-item {
		padding: 18px;
		font-size: 0.95em;
	}

	.btn-whatsapp {
		padding: 18px 35px;
		font-size: 1.05em;
	}

	.skills-grid {
		grid-template-columns: 1fr;
	}

	.project-card {
		padding: 35px;
	}
}

@media (max-width: 480px) {
	.contact-info {
		grid-template-columns: repeat(1, 1fr) !important;
	}
}

/* Animations */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(40px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeInLeft {
	from {
		opacity: 0;
		transform: translateX(-40px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

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

.animate-in {
	animation: fadeInUp 0.8s ease-out;
}

/* Floating elements */
.floating {
	animation: float 8s ease-in-out infinite;
}

@keyframes float {
	0%,
	100% {
		transform: translateY(0px);
	}
	50% {
		transform: translateY(-25px);
	}
}

/* Scroll reveal animations */
.scroll-reveal {
	opacity: 0;
	transform: translateY(50px);
	transition: all 0.8s ease-out;
}

.scroll-reveal.revealed {
	opacity: 1;
	transform: translateY(0);
}

/* Smooth gradient animation */
@keyframes gradient-animate {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}
