* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Inter', sans-serif;
	background-color: #e6f7f9;
	color: #1f1f1f;
	line-height: 1.6;
	overflow-x: hidden;
}

/* Container System */
.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 clamp(20px, 5vw, 60px);
}

header {
	position: relative;
	top: 0;
	padding: clamp(16px, 3vw, 24px) 0;
	background: rgba(208, 240, 239, 0.95);
	backdrop-filter: blur(10px);
	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
	z-index: 100;
}

.header-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 clamp(20px, 5vw, 60px);
	flex-wrap: wrap;
	gap: 20px;
}

.headerName {
	font-family: "Poppins", sans-serif;
	font-size: clamp(24px, 5vw, 36px);
	font-weight: 700;
	color: #007a7c;
}

header nav {
	display: flex;
	gap: clamp(15px, 3vw, 30px);
	flex-wrap: wrap;
}

header nav a {
	text-decoration: none;
	color: #007a7c;
	font-weight: 500;
	font-size: clamp(14px, 2vw, 16px);
	transition: all 0.3s ease;
	position: relative;
	padding: 5px 0;
}

header nav a::after {
	content: '';
	position: absolute;
	width: 0;
	height: 2px;
	bottom: -5px;
	left: 0;
	background-color: #00c88c;
	transition: width 0.3s ease;
}

header nav a:hover::after,
.activePage::after {
	width: 100%;
}

.activePage {
	font-weight: 700;
	color: #00c88c;
}

.cv-btn {
	background: linear-gradient(135deg, #00c88c, #00a876);
	color: white;
	padding: clamp(10px, 2vw, 12px) clamp(16px, 3vw, 24px);
	border-radius: 12px;
	font-size: clamp(12px, 2vw, 14px);
	font-weight: 600;
	border: none;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(0, 200, 140, 0.3);
	white-space: nowrap;
}

.cv-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(0, 200, 140, 0.4);
}

.hero {
	background: linear-gradient(135deg, #cdeef2, #b0e8f1, #a8e6f0);
	padding: clamp(40px, 8vw, 80px) 0 clamp(60px, 12vw, 120px);
	position: relative;
	min-height: 100vh;
	overflow: hidden;
}

.hero-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 clamp(20px, 5vw, 60px);
	display: flex;
	align-items: center;
	gap: clamp(40px, 8vw, 80px);
}

.hero-content {
	flex: 1;
	max-width: 600px;
	z-index: 10;
}

.hero .tag {
	background: rgba(178, 235, 242, 0.8);
	padding: clamp(6px, 1.5vw, 8px) clamp(12px, 3vw, 16px);
	border-radius: 12px;
	font-weight: 600;
	display: inline-block;
	margin-bottom: clamp(16px, 4vw, 24px);
	font-size: clamp(14px, 2.5vw, 16px);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero h1 {
	font-size: clamp(32px, 7vw, 48px);
	font-weight: 700;
	margin-bottom: clamp(12px, 3vw, 16px);
	color: #1f1f1f;
	line-height: 1.2;
}

.hero p {
	font-size: clamp(18px, 3.5vw, 24px);
	margin-bottom: clamp(30px, 6vw, 40px);
	color: #333;
	line-height: 1.4;
}

.btn-group {
	display: flex;
	gap: clamp(15px, 3vw, 20px);
	margin-bottom: clamp(30px, 6vw, 40px);
	flex-wrap: wrap;
}

.btn {
	padding: clamp(12px, 2.5vw, 16px) clamp(20px, 4vw, 32px);
	border-radius: 12px;
	font-weight: 600;
	font-size: clamp(14px, 2.5vw, 16px);
	border: none;
	cursor: pointer;
	transition: all 0.3s ease;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	white-space: nowrap;
}

.btn-filled {
	background: linear-gradient(135deg, #00c88c, #00a876);
	color: #fff;
	box-shadow: 0 4px 15px rgba(0, 200, 140, 0.3);
}

.btn-outline {
	border: 2px solid #00c88c;
	background: rgba(255, 255, 255, 0.9);
	color: #00c88c;
	backdrop-filter: blur(10px);
}

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

.hero-visual {
	flex: 1;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	height: clamp(400px, 60vw, 600px);
	min-width: 280px;
}

.hero-image-container {
	position: relative;
	width: clamp(280px, 40vw, 400px);
	height: clamp(350px, 50vw, 500px);
	z-index: 5;
}

.hero-image {
	width: 100%;
	height: 100%;
	border-radius: 20px;
	object-fit: cover;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
	transition: transform 0.3s ease;
}

.hero-image:hover {
	transform: scale(1.02);
}

.floating-bubble {
	position: absolute;
	background: rgba(255, 255, 255, 0.95);
	padding: clamp(8px, 2vw, 12px) clamp(12px, 3vw, 20px);
	border-radius: 15px;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
	font-weight: 600;
	color: #007a7c;
	white-space: nowrap;
	font-size: clamp(12px, 2vw, 14px);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.3);
	animation: float 6s ease-in-out infinite;
	z-index: 3;
}

.bubble-1 {
	top: clamp(30px, 8vw, 50px);
	right: clamp(-10px, -2vw, -20px);
	animation-delay: 0s;
}

.bubble-2 {
	top: clamp(100px, 20vw, 150px);
	right: clamp(-30px, -5vw, -50px);
	animation-delay: 2s;
}

.bubble-3 {
	bottom: clamp(60px, 12vw, 100px);
	left: clamp(-20px, -3vw, -30px);
	animation-delay: 4s;
	cursor: pointer;
}

.bubble-4 {
	top: clamp(180px, 30vw, 250px);
	left: clamp(-40px, -6vw, -60px);
	animation-delay: 1s;
}

.bubble-5 {
	bottom: clamp(120px, 25vw, 200px);
	right: clamp(-25px, -4vw, -40px);
	animation-delay: 3s;
}

@keyframes float {

	0%,
	100% {
		transform: translateY(0px) rotate(0deg);
	}

	33% {
		transform: translateY(-20px) rotate(1deg);
	}

	66% {
		transform: translateY(10px) rotate(-1deg);
	}
}

.section {
	padding: clamp(60px, 12vw, 100px) 0;
	position: relative;
}

.section h2 {
	font-size: clamp(28px, 5vw, 36px);
	font-weight: 700;
	margin-bottom: clamp(16px, 3vw, 20px);
	color: #1f1f1f;
}

.section h4 {
	color: #007a7c;
	font-weight: 500;
	font-size: clamp(14px, 2.5vw, 16px);
	margin-bottom: clamp(30px, 6vw, 50px);
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	transition: all 0.3s ease;
}

.section h4:hover {
	color: #00c88c;
	transform: translateX(5px);
}

.projects {
	display: flex;
	flex-direction: column;
	gap: clamp(30px, 6vw, 40px);
}

.project-card {
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: rgba(244, 253, 255, 0.8);
	border-radius: 24px;
	padding: clamp(30px, 6vw, 50px);
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.3);
	gap: clamp(20px, 4vw, 40px);
}

.project-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.project-content {
	flex: 1;
	max-width: 60%;
}

.project-content h3 {
	font-size: clamp(22px, 4vw, 28px);
	font-weight: 700;
	margin-bottom: clamp(12px, 3vw, 16px);
	color: #1f1f1f;
}

.project-content p {
	font-size: clamp(16px, 3vw, 18px);
	line-height: 1.6;
	color: #555;
	margin-bottom: clamp(18px, 4vw, 24px);
}

.project-content a {
	font-size: clamp(14px, 2.5vw, 16px);
	color: #00c88c;
	font-weight: 700;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	transition: all 0.3s ease;
}

.project-content a:hover {
	color: #007a7c;
	transform: translateX(5px);
}

.project-image {
	width: clamp(300px, 40vw, 500px);
	height: auto;
	border-radius: 16px;
	object-fit: cover;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease;
}

.project-image:hover {
	transform: scale(1.05);
}

.about-section {
	background: linear-gradient(135deg, #f0fdff, #e6f7f9);
	border-radius: 30px;
	margin: clamp(20px, 4vw, 40px) auto;
	max-width: 1200px;
	padding: clamp(40px, 8vw, 80px) clamp(30px, 6vw, 60px);
}

.about-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(40px, 8vw, 60px);
	align-items: center;
}

.about-text h3 {
	font-size: clamp(24px, 4.5vw, 32px);
	font-weight: 700;
	margin-bottom: clamp(18px, 4vw, 24px);
	color: #1f1f1f;
}

.about-text p {
	font-size: clamp(16px, 3vw, 18px);
	line-height: 1.7;
	color: #444;
	margin-bottom: clamp(16px, 3vw, 20px);
}

.skills-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
	gap: clamp(15px, 3vw, 20px);
	margin-top: clamp(20px, 4vw, 30px);
}

.skill-item {
	background: rgba(255, 255, 255, 0.8);
	padding: clamp(16px, 3vw, 20px);
	border-radius: 16px;
	text-align: center;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
	transition: transform 0.3s ease;
}

.skill-item:hover {
	transform: translateY(-5px);
}

.skill-item .icon {
	font-size: clamp(24px, 4vw, 32px);
	margin-bottom: clamp(8px, 2vw, 10px);
}

.skill-item h4 {
	font-size: clamp(14px, 2.5vw, 16px);
	font-weight: 600;
	color: #1f1f1f;
	margin: 0;
}

.contact-section {
	background: linear-gradient(135deg, #007a7c, #00c88c);
	color: white;
	text-align: center;
	border-radius: 30px;
	margin: clamp(20px, 4vw, 40px) auto;
	max-width: 1200px;
	padding: clamp(40px, 8vw, 80px) clamp(30px, 6vw, 60px);
}

.contact-section h2 {
	color: white;
	margin-bottom: clamp(16px, 3vw, 20px);
}

.contact-section p {
	font-size: clamp(16px, 3.5vw, 20px);
	margin-bottom: clamp(30px, 6vw, 40px);
	opacity: 0.9;
}

.contact-buttons {
	display: flex;
	justify-content: center;
	gap: clamp(15px, 3vw, 20px);
	flex-wrap: wrap;
}

.contact-btn {
	background: rgba(255, 255, 255, 0.2);
	color: white;
	padding: clamp(12px, 2.5vw, 16px) clamp(20px, 4vw, 32px);
	border-radius: 12px;
	text-decoration: none;
	font-weight: 600;
	font-size: clamp(14px, 2.5vw, 16px);
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.3);
	white-space: nowrap;
}

.contact-btn:hover {
	background: rgba(255, 255, 255, 0.3);
	transform: translateY(-3px);
}

footer {
	background: #1f1f1f;
	color: white;
	text-align: center;
	padding: clamp(30px, 6vw, 40px) 0;
	margin-top: clamp(40px, 8vw, 60px);
}

.footer-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 clamp(20px, 5vw, 60px);
}

footer p {
	opacity: 0.8;
	margin-bottom: clamp(16px, 3vw, 20px);
	font-size: clamp(14px, 2.5vw, 16px);
}

.social-links {
	display: flex;
	justify-content: center;
	gap: clamp(15px, 3vw, 20px);
	flex-wrap: wrap;
}

.social-links a {
	color: #00c88c;
	text-decoration: none;
	font-weight: 600;
	font-size: clamp(14px, 2.5vw, 16px);
	transition: color 0.3s ease;
}

.social-links a:hover {
	color: white;
}

/* Tablet Breakpoint */
@media (max-width: 1024px) {
	.hero-container {
		flex-direction: column;
		text-align: center;
	}

	.hero-visual {
		order: -1;
		margin-bottom: 30px;
	}

	.floating-bubble {
		display: none;
	}

	.project-card {
		flex-direction: column;
		text-align: center;
	}

	.project-content {
		max-width: 100%;
	}

	.project-image {
		width: 100%;
		max-width: 500px;
	}

	.about-content {
		grid-template-columns: 1fr;
		text-align: center;
	}
}

/* Mobile Breakpoint */
@media (max-width: 768px) {
	.header-container {
		flex-direction: column;
		gap: 15px;
	}

	header nav {
		order: 1;
		width: 100%;
		justify-content: center;
	}

	.cv-btn {
		order: 2;
	}

	.hero {
		min-height: auto;
		padding: 40px 0 60px;
	}

	.hero-container {
		gap: 30px;
	}

	.hero-visual {
		height: 350px;
	}

	.hero-image-container {
		width: 250px;
		height: 320px;
	}

	.btn-group {
		flex-direction: column;
		align-items: center;
	}

	.btn {
		width: 100%;
		max-width: 280px;
		justify-content: center;
	}

	.skills-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.contact-buttons {
		flex-direction: column;
		align-items: center;
	}

	.contact-btn {
		width: 100%;
		max-width: 280px;
	}
}

/* Small Mobile Breakpoint */
@media (max-width: 480px) {
	.container {
		padding: 0 15px;
	}

	.header-container,
	.hero-container,
	.footer-container {
		padding: 0 15px;
	}

	.about-section,
	.contact-section {
		margin: 15px;
		padding: 30px 20px;
		border-radius: 20px;
	}

	.project-card {
		border-radius: 16px;
		padding: 20px;
	}

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

	.hero-image-container {
		width: 200px;
		height: 250px;
	}

	.hero-visual {
		height: 280px;
	}
}

/* About Me Page Styles */
.hero-section {
	background: linear-gradient(135deg, #cdeef2, #b0e8f1, #a8e6f0);
	padding: clamp(80px, 12vw, 120px) 0 clamp(60px, 10vw, 80px);
	text-align: center;
	position: relative;
	overflow: hidden;
}

.hero-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="80" cy="40" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="40" cy="70" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
	opacity: 0.3;
	z-index: 1;
}

.hero-section h1 {
	font-size: clamp(36px, 8vw, 56px);
	font-weight: 700;
	color: #1f1f1f;
	margin-bottom: clamp(16px, 3vw, 24px);
	position: relative;
	z-index: 2;
}

.hero-section p {
	font-size: clamp(16px, 3vw, 20px);
	color: #333;
	max-width: 600px;
	margin: 0 auto;
	line-height: 1.6;
	position: relative;
	z-index: 2;
}

/* Introduction Section */
.intro-section {
	padding: clamp(60px, 10vw, 80px) 0;
	background: linear-gradient(135deg, #f0fdff, #e6f7f9);
	border-radius: 30px;
	margin: clamp(40px, 6vw, 60px) 0;
}

.intro-content {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: clamp(40px, 8vw, 60px);
	align-items: center;
	max-width: 1000px;
	margin: 0 auto;
	padding: 0 clamp(20px, 4vw, 40px);
}

.profile-image {
	width: clamp(200px, 25vw, 300px);
	height: clamp(250px, 32vw, 380px);
	border-radius: 20px;
	object-fit: cover;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
	transition: transform 0.3s ease;
}

.profile-image:hover {
	transform: scale(1.02);
}

.intro-text {
	display: flex;
	flex-direction: column;
	gap: clamp(20px, 4vw, 24px);
}

.intro-text p {
	font-size: clamp(16px, 3vw, 18px);
	line-height: 1.7;
	color: #444;
	margin: 0;
}

/* Stats Section */
.stats-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: clamp(20px, 4vw, 30px);
	margin: clamp(40px, 8vw, 60px) 0;
}

.stat-item {
	background: rgba(255, 255, 255, 0.9);
	border-radius: 20px;
	padding: clamp(30px, 5vw, 40px) clamp(20px, 4vw, 30px);
	text-align: center;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.3);
}

.stat-item:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
	background: rgba(255, 255, 255, 0.95);
}

.stat-number {
	font-size: clamp(32px, 6vw, 48px);
	font-weight: 700;
	color: #00c88c;
	margin-bottom: clamp(8px, 2vw, 12px);
	display: block;
}

.stat-label {
	font-size: clamp(14px, 2.5vw, 16px);
	color: #555;
	font-weight: 500;
	line-height: 1.4;
}

/* Interests Section */
.interests-section {
	padding: clamp(60px, 10vw, 80px) 0;
	background: linear-gradient(135deg, #007a7c, #00c88c);
	border-radius: 30px;
	margin: clamp(40px, 6vw, 60px) 0;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.interests-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
		radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
	z-index: 1;
}

.interests-section h2 {
	color: white;
	font-size: clamp(28px, 5vw, 36px);
	font-weight: 700;
	margin-bottom: clamp(16px, 3vw, 20px);
	position: relative;
	z-index: 2;
}

.interests-section>p {
	color: rgba(255, 255, 255, 0.9);
	font-size: clamp(16px, 3vw, 18px);
	margin-bottom: clamp(40px, 6vw, 50px);
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
	position: relative;
	z-index: 2;
}

.interests-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: clamp(20px, 4vw, 30px);
	max-width: 1000px;
	margin: 0 auto;
	padding: 0 clamp(20px, 4vw, 40px);
	position: relative;
	z-index: 2;
}

.interest-item {
	background: rgba(255, 255, 255, 0.15);
	border-radius: 20px;
	padding: clamp(30px, 5vw, 40px) clamp(20px, 4vw, 30px);
	text-align: center;
	transition: all 0.3s ease;
	backdrop-filter: blur(15px);
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.interest-item:hover {
	transform: translateY(-8px);
	background: rgba(255, 255, 255, 0.25);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.interest-icon {
	font-size: clamp(32px, 6vw, 48px);
	margin-bottom: clamp(16px, 3vw, 20px);
	display: block;
}

.interest-title {
	color: white;
	font-size: clamp(16px, 3vw, 18px);
	font-weight: 600;
	line-height: 1.4;
}

/* Mobile Adjustments for About Page */
@media (max-width: 768px) {
	.intro-content {
		grid-template-columns: 1fr;
		text-align: center;
		gap: 30px;
	}

	.profile-image {
		justify-self: center;
		width: 200px;
		height: 250px;
	}

	.stats-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}

	.interests-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}

	.interests-section,
	.intro-section {
		margin: 20px 0;
		border-radius: 20px;
	}
}

@media (max-width: 480px) {
	.stats-grid {
		grid-template-columns: 1fr;
	}

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

	.intro-section,
	.interests-section {
		padding: 40px 20px;
		margin: 15px 0;
	}

	.profile-image {
		width: 180px;
		height: 220px;
	}
}

/* Extra Large Screens */
@media (min-width: 1400px) {

	.container,
	.header-container,
	.hero-container,
	.footer-container {
		max-width: 1400px;
	}

	.about-section,
	.contact-section,
	.intro-section,
	.interests-section {
		max-width: 1400px;
	}
}

/* Hero Section for Projects */
.projects-hero {
    background: linear-gradient(135deg, #cdeef2, #b0e8f1, #a8e6f0);
    padding: clamp(60px, 10vw, 100px) 0 clamp(40px, 8vw, 60px);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.projects-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.projects-hero h1 {
    font-size: clamp(32px, 7vw, 48px);
    font-weight: 700;
    color: #1f1f1f;
    margin-bottom: clamp(16px, 3vw, 20px);
    position: relative;
    z-index: 2;
}

.projects-hero p {
    font-size: clamp(16px, 3vw, 20px);
    color: #333;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

/* Projects Grid */
.projects-section {
    padding: clamp(60px, 10vw, 80px) 0;
}

.section-title {
    font-size: clamp(28px, 5vw, 36px);
    font-weight: 700;
    margin-bottom: clamp(40px, 6vw, 60px);
    color: #1f1f1f;
    text-align: center;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #00c88c, #007a7c);
    border-radius: 2px;
}

.projects_grid {
    display: grid;
    grid-template-rows: repeat(auto-fit, minmax(350px, 1fr));
    gap: clamp(30px, 5vw, 40px);
    margin-bottom: clamp(60px, 10vw, 80px);
}

.project-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 24px;
    padding: clamp(30px, 5vw, 40px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #00c88c, #007a7c);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

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

.project-card h2 {
    font-size: clamp(20px, 4vw, 24px);
    font-weight: 700;
    margin-bottom: clamp(16px, 3vw, 20px);
    color: #1f1f1f;
    line-height: 1.3;
}

.project-card p {
    font-size: clamp(14px, 2.5vw, 16px);
    line-height: 1.6;
    color: #555;
    margin-bottom: clamp(20px, 4vw, 24px);
}

.project-status {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: clamp(16px, 3vw, 20px);
}

.status-completed {
    background: rgba(0, 200, 140, 0.1);
    color: #00c88c;
    border: 1px solid rgba(0, 200, 140, 0.2);
}

.status-inprogress {
    background: rgba(255, 159, 67, 0.1);
    color: #ff9f43;
    border: 1px solid rgba(255, 159, 67, 0.2);
}

.status-planned {
    background: rgba(116, 185, 255, 0.1);
    color: #74b9ff;
    border: 1px solid rgba(116, 185, 255, 0.2);
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: clamp(16px, 3vw, 20px);
}

.tech-tag {
    background: rgba(0, 122, 124, 0.1);
    color: #007a7c;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid rgba(0, 122, 124, 0.2);
}

.project-links {
    display: flex;
    gap: 12px;
    margin-top: clamp(20px, 4vw, 24px);
}

.project-link {
    padding: 8px 16px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.link-primary {
    background: linear-gradient(135deg, #00c88c, #00a876);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 200, 140, 0.3);
}

.link-secondary {
    border: 1px solid #007a7c;
    color: #007a7c;
    background: rgba(255, 255, 255, 0.8);
}

.project-link:hover {
    transform: translateY(-2px);
}

.link-primary:hover {
    box-shadow: 0 6px 20px rgba(0, 200, 140, 0.4);
}

/* Special styling for different project types */
.project-card.featured {
    background: linear-gradient(135deg, rgba(0, 200, 140, 0.05), rgba(0, 122, 124, 0.05));
    border: 2px solid rgba(0, 200, 140, 0.2);
}

.project-card.ml-project {
    background: linear-gradient(135deg, rgba(116, 185, 255, 0.05), rgba(116, 185, 255, 0.1));
}

.project-card.web-project {
    background: linear-gradient(135deg, rgba(255, 159, 67, 0.05), rgba(255, 159, 67, 0.1));
}

/* Responsive Design */
@media (max-width: 768px) {
    .projects_grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .project-links {
        flex-direction: column;
    }
    
    .project-link {
        text-align: center;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .project-card {
        padding: 20px;
        border-radius: 16px;
    }
    
    .project-tech {
        justify-content: center;
    }
}