* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	width: 100%;
	overflow-x: hidden;
}

:root {
	--theme: #007bff;
	--header: #1a1a1a;
	--white: #ffffff;
	--green: #4ade80;
	--green-dark: #22c55e;
}

body {
	font-family: Arial, sans-serif;
	line-height: 1.6;
	font-size: 16px;
	color: #666666;
	background: #fff;
	scroll-behavior: smooth;
	width: 100%;
	overflow-x: hidden;
	margin: 0;
	padding: 0;
}

/* === SCROLL ANIMATIONS === */

/* Base scroll animation class */
.scroll-animate {
	opacity: 0;
	transition: all 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.scroll-animate.animate {
	opacity: 1;
}

/* Fade In Up */
.fade-in-up {
	transform: translateY(60px);
}

.fade-in-up.animate {
	transform: translateY(0);
}

/* Fade In Left */
.fade-in-left {
	transform: translateX(-60px);
}

.fade-in-left.animate {
	transform: translateX(0);
}

/* Fade In Right */
.fade-in-right {
	transform: translateX(60px);
}

.fade-in-right.animate {
	transform: translateX(0);
}

/* Scale In */
.scale-in {
	transform: scale(0.8);
}

.scale-in.animate {
	transform: scale(1);
}

/* Rotate In */
.rotate-in {
	transform: rotate(-10deg) scale(0.8);
}

.rotate-in.animate {
	transform: rotate(0deg) scale(1);
}

/* Slide In Bottom */
.slide-in-bottom {
	transform: translateY(100px);
}

.slide-in-bottom.animate {
	transform: translateY(0);
}

/* Bounce In */
.bounce-in {
	transform: scale(0.7);
	transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.bounce-in.animate {
	transform: scale(1);
}

/* Stagger animation delays */
.scroll-animate[data-delay="0.1"] {
	transition-delay: 0.1s;
}

.scroll-animate[data-delay="0.2"] {
	transition-delay: 0.2s;
}

.scroll-animate[data-delay="0.3"] {
	transition-delay: 0.3s;
}

.scroll-animate[data-delay="0.4"] {
	transition-delay: 0.4s;
}

.scroll-animate[data-delay="0.5"] {
	transition-delay: 0.5s;
}

.about-star-decoration{
    width:10%
}

/* === FLOATING ANIMATIONS === */

/* Hero floating animation */
.hero-center img {
	animation: float 3s ease-in-out infinite;
}

@keyframes float {
	0%, 100% {
		transform: translateY(0px);
	}
	50% {
		transform: translateY(-10px);
	}
}

/* Star rotation animation */
.hero-star, .about-star-decoration, .star-icon-img {
	animation: rotate 10s linear infinite;
}

@keyframes rotate {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

/* Pulse animation for buttons */
.lets-talk, .hire-me, .theme-btn {
	position: relative;
	overflow: hidden;
}

.lets-talk::before, .hire-me::before, .theme-btn::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	background: rgba(255, 255, 255, 0.3);
	border-radius: 50%;
	transform: translate(-50%, -50%);
	transition: width 0.6s, height 0.6s;
}

.lets-talk:hover::before, .hire-me:hover::before, .theme-btn:hover::before {
	width: 300px;
	height: 300px;
}

/* Enhanced hover effects */
.project-card {
	transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.project-card:hover {
	transform: translateY(-8px) scale(1.02);
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.skill-badge {
	transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.skill-badge:hover {
	transform: translateY(-5px) rotate(2deg);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Stats number styling - no glow effect */
.stat-number {
	position: static;
}

/* Typewriter cursor enhanced animation */
.typewriter-lineone, .typewriter-linetwo {
	position: relative;
}

.typewriter-lineone::after, .typewriter-linetwo::after {
	content: '';
	position: absolute;
	right: -3px;
	top: 0;
	bottom: 0;
	width: 3px;
	background: #00ff88;
	animation: blink-enhanced 1s step-end infinite;
}

@keyframes blink-enhanced {
	0%, 50% {
		opacity: 1;
		box-shadow: 0 0 10px #00ff88;
	}
	51%, 100% {
		opacity: 0;
		box-shadow: none;
	}
}

/* Parallax scrolling effect */
.hero-star {
	animation: float 3s ease-in-out infinite, rotate 15s linear infinite;
}

/* Magnetic hover effect for links */
.project-link, .view-all-btn, .about-btn, .contact-btn {
	transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
	position: relative;
}

.project-link:hover, .view-all-btn:hover, .about-btn:hover, .contact-btn:hover {
	transform: translateX(5px);
}

.project-link::after, .view-all-btn::after, .about-btn::after, .contact-btn::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 0;
	height: 2px;
	background: linear-gradient(90deg, #4ade80, #22c55e);
	transition: width 0.3s ease;
}

.project-link:hover::after, .view-all-btn:hover::after, .about-btn:hover::after, .contact-btn:hover::after {
	width: 100%;
}

/* === PAGE TRANSITIONS ===
*/

/* Section stagger animations */
section {
	opacity: 0;
	animation: sectionFadeIn 1s ease-out forwards;
}

@keyframes sectionFadeIn {
	0% {
		opacity: 0;
		transform: translateY(30px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

/* === ENHANCED VISUAL EFFECTS === */

/* Gradient background animation */
.hero-section {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	background-size: 400% 400%;
	animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

/* Particle effect simulation */
.hero-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-image: 
		radial-gradient(2px 2px at 40px 60px, rgba(255, 255, 255, 0.3), transparent),
		radial-gradient(2px 2px at 90px 40px, rgba(255, 255, 255, 0.2), transparent),
		radial-gradient(1px 1px at 130px 80px, rgba(255, 255, 255, 0.4), transparent),
		radial-gradient(1px 1px at 160px 30px, rgba(255, 255, 255, 0.3), transparent);
	background-size: 200px 100px;
	animation: particles 20s linear infinite;
	pointer-events: none;
}

@keyframes particles {
	0% {
		background-position: 0% 0%;
	}
	100% {
		background-position: 100% 100%;
	}
}

/* Text shimmer effect */
.typewriter-lineone, .typewriter-linetwo {
	background: linear-gradient(90deg, #ffffff 25%, #f0f0f0 50%, #ffffff 75%);
	background-size: 200% 100%;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
	0% {
		background-position: -200% 0;
	}
	100% {
		background-position: 200% 0;
	}
}

/* Enhanced box shadows with animation */
.project-card, .skill-badge {
	box-shadow: 
		0 4px 15px rgba(0, 0, 0, 0.1),
		0 1px 6px rgba(0, 0, 0, 0.1);
	transition: box-shadow 0.3s ease;
}

.project-card:hover, .skill-badge:hover {
	box-shadow: 
		0 15px 35px rgba(0, 0, 0, 0.15),
		0 5px 15px rgba(0, 0, 0, 0.1),
		0 0 0 1px rgba(255, 255, 255, 0.05);
}

/* Smooth scrollbar */
::-webkit-scrollbar {
	width: 8px;
}

::-webkit-scrollbar-track {
	background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
	background: linear-gradient(180deg, #4ade80, #22c55e);
	border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
	background: linear-gradient(180deg, #22c55e, #16a34a);
}

/* Loading animation for blog and project images only */
.blog-card img, .project-card img, .blog-grid img {
	opacity: 0;
	animation: imageLoad 0.5s ease-out 0.1s forwards;
}

@keyframes imageLoad {
	0% {
		opacity: 0;
		transform: scale(1.1);
	}
	100% {
		opacity: 1;
		transform: scale(1);
	}
}
.fade-in-right {
	opacity: 1;
	transform: translateX(0);
	transition: all 0.8s ease-out;
}

.fade-in-right.animate-in {
	opacity: 1;
	transform: translateX(0);
}

/* Scale animation - Disabled */
.scale-in {
	opacity: 1;
	transform: scale(1);
	transition: all 0.6s ease-out;
}

.scale-in.animate-in {
	opacity: 1;
	transform: scale(1);
}

/* Rotate animation */
.rotate-in {
	opacity: 0;
	transform: rotate(-10deg) scale(0.8);
	transition: all 0.8s ease-out;
}

.rotate-in.animate-in {
	opacity: 1;
	transform: rotate(0deg) scale(1);
}

/* Stagger animation delays */
.animate-on-scroll:nth-child(1) { animation-delay: 0ms; }
.animate-on-scroll:nth-child(2) { animation-delay: 100ms; }
.animate-on-scroll:nth-child(3) { animation-delay: 200ms; }
.animate-on-scroll:nth-child(4) { animation-delay: 300ms; }
.animate-on-scroll:nth-child(5) { animation-delay: 400ms; }
.animate-on-scroll:nth-child(6) { animation-delay: 500ms; }

/* Enhanced existing animations */
@keyframes bounce {
	0%, 20%, 50%, 80%, 100% {
		transform: translateY(0);
	}
	40% {
		transform: translateY(-10px);
	}
	60% {
		transform: translateY(-5px);
	}
}

.bouncing-star {
	animation: bounce 2s infinite;
}

@keyframes arrowBounce {
	0%, 100% {
		transform: translateX(0);
	}
	50% {
		transform: translateX(10px);
	}
}

.bouncing-arrow {
	animation: arrowBounce 2s ease-in-out infinite;
}

@keyframes rotate {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(360deg);
	}
}

.rotating-badge .badge-circle,
.badge-image {
	animation: rotate 10s linear infinite;
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@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 marqueeScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Hover animations for interactive elements */
.project-card:hover {
	transform: translateY(-10px) scale(1.02);
	transition: all 0.4s ease;
}

.skill-badge:hover {
	transform: translateY(-5px);
	transition: all 0.3s ease;
}

.blog-card:hover {
	transform: translateY(-8px);
	transition: all 0.4s ease;
}

.nav-btn:hover,
.send-btn:hover,
.contact-btn:hover {
	transform: translateY(-3px);
	transition: all 0.3s ease;
}

/* Page load animations */
@keyframes pageLoad {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

body {
	animation: pageLoad 0.8s ease-out;
}

/* Parallax elements */
.parallax-element {
	will-change: transform;
}

/* Floating animation for decorative elements */
@keyframes float {
	0%, 100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-20px);
	}
}

.floating-element {
	animation: float 3s ease-in-out infinite;
}

/* Counter animation */
@keyframes countUp {
	from {
		opacity: 0;
		transform: scale(0.5);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}

.stat-number {
	animation: countUp 0.8s ease-out;
}

/* Pulse animation for call-to-action elements */
@keyframes pulse {
	0%, 100% {
		transform: scale(1);
		box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7);
	}
	50% {
		transform: scale(1.05);
		box-shadow: 0 0 0 10px rgba(74, 222, 128, 0);
	}
}

.hire-me:hover,
.send-btn:hover {
	animation: pulse 1.5s infinite;
}

/* Loading animation for images */
@keyframes imageLoad {
	from {
		opacity: 0;
		filter: blur(5px);
	}
	to {
		opacity: 1;
		filter: blur(0);
	}
}

img {
	animation: imageLoad 0.6s ease-out;
	max-width: 100%;
	height: auto;
	display: block;
}

/* Header/Logo responsive styles */
.logo {
	display: flex;
	align-items: center;
}

.logo img {
	max-width: 200px;
	height: auto;
	width: 100%;
}

.footer-logo img {
	max-width: 100%;
	height: auto;
}

/* Text reveal animation */
@keyframes textReveal {
	from {
		opacity: 0;
		transform: translateY(30px);
		clip-path: inset(100% 0 0 0);
	}
	to {
		opacity: 1;
		transform: translateY(0);
		clip-path: inset(0 0 0 0);
	}
}

.animate-text {
	animation: textReveal 0.8s ease-out;
}

/* header/nav */
nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem 5%;
	background: #fff;
	box-shadow: 0 2px 5px rgba(0,0,0,0.06);
	position: relative;
}

nav ul {
	display: flex;
	list-style: none;
	gap: 1rem;
}

nav ul li a {
	text-decoration: none;
	color: #333;
	padding: .5rem 1rem;
}

/* Hamburger menu styles */
.hamburger {
	display: none;
	flex-direction: column;
	cursor: pointer;
	z-index: 1001;
}

.hamburger span {
	width: 25px;
	height: 3px;
	background: #333;
	margin: 3px 0;
	transition: 0.3s;
	border-radius: 2px;
}

/* Hamburger animation when active */
.hamburger.active span:nth-child(1) {
	transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
	opacity: 0;
}

.hamburger.active span:nth-child(3) {
	transform: rotate(45deg) translate(-5px, -6px);
}

/* buttons */
.hire-me {
	padding: 12px 30px;
	background: var(--header);
	color: var(--white);
	display: inline-block;
	font-size: 16px;
	font-weight: 600;
	border-radius: 100px;
	transition: all .3s ease-in-out;
	border: none;
	cursor: pointer;
}

.hire-me:hover {
	background: var(--theme);
	color: var(--header);
}

.theme-btn { /* generic fallback */
	padding: 12px 24px;
	border-radius: 100px;
	border: none;
	cursor: pointer;
}

/* hero */
#hero {
	position: relative;
	min-height: 90vh;
	background: #1c1d20;
	color: var(--white);
	overflow: hidden;
	padding: 3rem 5%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.hero-heading {
	position: absolute;
	top: 15%; 
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	text-align: center;
	z-index: 3;
	pointer-events: none;
}

.typewriter-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.typewriter-lineone, .typewriter-linetwo {
  overflow: hidden;
  white-space: nowrap;
  font-size: 4.0rem;
  font-weight: 700;
  margin: 0;
  display: inline-block;
  max-width: 0;
  transition: none;
}

.typewriter-lineone {
  max-width: 0;
  border-right: 3px solid #00ff88;
  animation: typewriter-line1 14s infinite;
}

.typewriter-linetwo {
  max-width: 0;
  border-right: 3px solid #00ff88;
  animation: typewriter-line2 14s infinite;
}

@keyframes typewriter-line1 {
  0% { 
    max-width: 0ch; 
    border-right: 3px solid #00ff88; 
  }
  15% { 
    max-width: 21ch; 
    border-right: 3px solid #00ff88; 
  }
  20% { 
    max-width: 21ch; 
    border-right: 3px solid transparent; 
  }
  55% { 
    max-width: 21ch; 
    border-right: 3px solid transparent; 
  }
  60% { 
    max-width: 21ch; 
    border-right: 3px solid #00ff88; 
  }
  75% { 
    max-width: 1ch; 
    border-right: 3px solid #00ff88; 
  }
  80% { 
    max-width: 0ch; 
    border-right: 3px solid #00ff88; 
  }
  85% { 
    max-width: 0ch; 
    border-right: 3px solid transparent; 
  }
  100% { 
    max-width: 0ch; 
    border-right: 3px solid transparent; 
  }
}

/* Typing effect for line two - "Innovative Development" (21 chars) */
@keyframes typewriter-line2 {
  0% { 
    max-width: 0ch; 
    border-right: 3px solid transparent; 
  }
  20% { 
    max-width: 0ch; 
    border-right: 3px solid transparent; 
  }
  25% { 
    max-width: 0ch; 
    border-right: 3px solid #00ff88; 
  }
  45% { 
    max-width: 22ch; 
    border-right: 3px solid #00ff88; 
  }
  50% { 
    max-width: 22ch; 
    border-right: 3px solid transparent; 
  }
  55% { 
    max-width: 22ch; 
    border-right: 3px solid transparent; 
  }
  60% { 
    max-width: 22ch; 
    border-right: 3px solid #00ff88; 
  }
  75% { 
    max-width: 1ch; 
    border-right: 3px solid #00ff88; 
  }
  80% { 
    max-width: 0ch; 
    border-right: 3px solid #00ff88; 
  }
  85% { 
    max-width: 0ch; 
    border-right: 3px solid transparent; 
  }
  100% { 
    max-width: 0ch; 
    border-right: 3px solid transparent; 
  }
}


/* Star behind heading with bouncing motion */
@keyframes bounce {
	0%, 100% {
		transform: translateX(0);
	}
	50% {
		transform: translateX(16.9293px);
	}
}

.hero-star {
    position: absolute;
    top: 30%;
    left: 12%;
    transform: translate(-50%, -50%);
    width: 179px;
    height: 120px;
    background-image: url('assets/star-4.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.4;
    z-index: 2;
    animation: bounce 2s ease-in-out infinite;
}
/* Arrow animation */
@keyframes arrowBounce {
	0%, 100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-10px);
	}
}

.hero-arrow {
	position: absolute;
	left: -150px;
	top: 57%;
	transform: translateY(-50%);
	width: 160px;
	height: 160px;
	background-image: url('assets/angle-arrow-4.png');
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	opacity: 0.7;
	z-index: 2;
	animation: arrowBounce 2.5s ease-in-out infinite;
}

.lets-talk-style {
    width: 170px;
    height: 59px;
    padding: 0;
    background-color: var(--green);
    color: black;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 600;
    border-radius: 100px;
    transition: all .3s ease-in-out;
    border: none;
    cursor: pointer;
    margin-right: 1rem;
}

.lets-talk-style:hover {
    background: var(--green-dark);
}
/* Responsive adjustments for heading */
@media (max-width: 1200px) {
	.hero-heading {
		top: 28%;
	}
	.hero-heading h1 {
		font-size: 3rem;
		max-width: 700px;
	}
	.hero-center img {
		max-width: 420px;
		height: auto;
	}
	.hero-right {
		right: 3%;
	}
}

/* tablet and small laptop: stack layout, heading becomes relative */
@media (max-width: 992px) {
	.logo img {
		max-width: 160px;
	}

	#hero {
		padding: 2rem;
		min-height: auto;
		display: block;
	}
	.hero-heading {
		position: relative;
		top: auto;
		left: auto;
		transform: none;
		padding-top: 0.75rem;
		margin-bottom: 1rem;
	}
	.hero-heading h1 {
		font-size: 2.6rem;
		line-height: 1.06;
	}
	/* stack left / center / right vertically */
	.hero-left, .hero-center, .hero-right {
		position: relative;
		left: auto;
		right: auto;
		top: auto;
		transform: none;
		margin: 0.75rem auto;
		max-width: 92%;
		text-align: center;
	}
	/* image scales and stays centered */
	.hero-center {
		margin-top: 0.5rem;
	}
	.hero-center img {
		width: 100%;
		max-width: 460px;
		height: auto;
		object-fit: cover;
	}
	/* center the Let's Talk button when stacked */
	.hero-left .lets-talk {
		margin: 0.75rem auto 0;
		display: inline-flex;
	}
	/* tech card becomes centered block below image */
	.hero-right {
		width: 320px;
		height: auto;
		padding: 18px;
		margin-top: 0.75rem;
	}
}

/* phones: improve spacing and font sizes */
@media (max-width: 576px) {
	nav {
		padding: 0.75rem 4%;
	}
	
	.hamburger {
		display: flex;
	}
	
	.nav-menu {
		position: fixed;
		left: -100%;
		top: 70px;
		flex-direction: column;
		background-color: white;
		width: 100%;
		text-align: center;
		transition: 0.3s;
		box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
		z-index: 1000;
		padding: 2rem 0;
	}

	.nav-menu.active {
		left: 0;
	}

	.nav-menu li {
		margin: 1rem 0;
	}

	.nav-menu li a {
		padding: 0.5rem 1rem;
		display: block;
		font-size: 1.1rem;
	}
	
	.hire-me {
		display: none; /* Hide hire me button on mobile to save space */
	}
	
	.hero-heading h1 {
		font-size: 1.9rem;
		padding: 0 .5rem;
	}
	.hero-left p {
		font-size: 16px; /* keep requested 16px */
		color: #666666;
		padding: 0 .5rem;
	}
	.hero-left .lets-talk {
		width: 170px;
		height: 59px;
		margin: 0.75rem auto;
	}
	.hero-center img {
		max-width: 360px;
		height: auto;
	}
	.hero-right {
		width: 280px;
		padding: 14px;
		border-radius: 10px;
	}
	.tech-stack-header h2 {
		font-size: 1.1rem;
	}
	/* reduce vertical gap between heading and image on small phones */
	.hero-heading { padding-top: 0.5rem; margin-bottom: 0.5rem; }
}

/* very small screens: ensure readability */
@media (max-width: 420px) {
	.hero-heading h1 {
		font-size: 1.6rem;
	}
	.lets-talk { width: 160px; height: 54px; }
	.hero-right { width: 260px; padding: 12px; }
}

/* left content block (description + button) */
.hero-left {
	max-width: 30%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	position: absolute;
	left: 7%;
	top: 65%;
	transform: translateY(-50%);
	z-index: 2;
}

.hero-left p {
	margin-bottom: 2rem;
	line-height: 1.6;
	color: #666666;
	font-size: 16px;
}

/* Let's Talk button — match hire-me style but green and fixed size */
.lets-talk {
	width: 170px;
	height: 59px;
	padding: 0;
	background: var(--green);
	color: var(--white);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	font-weight: 600;
	border-radius: 100px;
	transition: all .3s ease-in-out;
	border: none;
	cursor: pointer;
	margin-right: 1rem;
}
.send-message {
	width: 100%;
	height: 59px;
	padding: 0;
	background: var(--green);
	color: black;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	font-weight: 600;
	border-radius: 100px;
	transition: all .3s ease-in-out;
	border: none;
	cursor: pointer;
	margin-right: 1rem;
}

.lets-talk:hover {
	background: var(--green-dark);
}

/* center developer image */
.hero-center {
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	z-index: 1;
}

.hero-center img {
	width: 460px;
	height: 534.33px;
	object-fit: cover;
	object-position: top;
	border-radius: 0; /* ensure no rounding */
	display: block;
}

/* right tech stack card */
.hero-right {
	width: 304px;
	height: 161.44px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: left;
	z-index: 2;
	padding: 20px;
	border-radius: 12px;
	border: 1px solid rgba(255,255,255,0.08);
	background: transparent;
	position: absolute;
	right: 10%;
	top: 65%;
	transform: translateY(-50%);
}

.tech-stack-header {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 8px;
	white-space: nowrap;
}

.star-icon {
	color: #4ade80;
	font-size: 20px;
	line-height: 1;
	display: inline-block;
}

.tech-stack-header h2 {
	font-size: 1.25rem;
	color: #fff;
	margin: 0;
}

/* stats, testimonials, contact basics */
#stats {
	display: flex;
	justify-content: space-around;
	padding: 3rem 5%;
	background: #fff;
	color: #333;
}

.stat-box {
	text-align: center;
}

.testimonial {
	display: flex;
	gap: 1rem;
	padding: 1.5rem;
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}

/* contact form */
#contact {
	padding: 3rem 5%;
	background: #f8f9fa;
}

#contactForm {
	max-width: 600px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: .5rem;
}

#contactForm input,
#contactForm textarea,
#contactForm button {
	padding: .75rem;
	border: 1px solid #ddd;
	border-radius: 6px;
	font-size: 16px;
}

#contactForm button {
	background: var(--theme);
	color: #fff;
	border: none;
	cursor: pointer;
}

/* footer */
footer {
	background: #111;
	color: #fff;
	padding: 2rem 5%;
	text-align: center;
}

/* responsive rules */
@media (max-width: 1200px) {
	.hero-heading {
		top: 28%;
	}
	.hero-heading h1 {
		font-size: 3rem;
		max-width: 700px;
	}
	.hero-center img {
		max-width: 420px;
		height: auto;
	}
	.hero-right {
		right: 3%;
	}
}

@media (max-width: 992px) {
	#hero {
		padding: 2rem;
		min-height: auto;
		display: block;
	}
	.hero-heading {
		position: relative;
		top: auto;
		left: auto;
		transform: none;
		padding-top: 0.75rem;
		margin-bottom: 1rem;
	}
	.hero-heading h1 {
		font-size: 2.6rem;
		line-height: 1.06;
	}
	/* stack left / center / right vertically */
	.hero-left, .hero-center, .hero-right {
		position: relative;
		left: auto;
		right: auto;
		top: auto;
		transform: none;
		margin: 0.75rem auto;
		max-width: 92%;
		text-align: center;
	}
	/* image scales and stays centered */
	.hero-center {
		margin-top: 0.5rem;
	}
	.hero-center img {
		width: 100%;
		max-width: 460px;
		height: auto;
		object-fit: cover;
	}
	/* center the Let's Talk button when stacked */
	.hero-left .lets-talk {
		margin: 0.75rem auto 0;
		display: inline-flex;
	}
	/* tech card becomes centered block below image */
	.hero-right {
		width: 320px;
		height: auto;
		padding: 18px;
		margin-top: 0.75rem;
	}
}

@media (max-width: 576px) {
	nav {
		padding: 0.75rem 4%;
	}
	
	.hamburger {
		display: flex;
	}
	
	.nav-menu {
		position: fixed;
		left: -100%;
		top: 70px;
		flex-direction: column;
		background-color: white;
		width: 100%;
		text-align: center;
		transition: 0.3s;
		box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
		z-index: 1000;
		padding: 2rem 0;
	}

	.nav-menu.active {
		left: 0;
	}

	.nav-menu li {
		margin: 1rem 0;
	}

	.nav-menu li a {
		padding: 0.5rem 1rem;
		display: block;
		font-size: 1.1rem;
	}
	
	.hire-me {
		display: none; /* Hide hire me button on mobile to save space */
	}
	
	.hero-heading h1 {
		font-size: 1.9rem;
		padding: 0 .5rem;
	}
	.hero-left p {
		font-size: 16px; /* keep requested 16px */
		color: #666666;
		padding: 0 .5rem;
	}
	.hero-left .lets-talk {
		width: 170px;
		height: 59px;
		margin: 0.75rem auto;
	}
	.hero-center img {
		max-width: 360px;
		height: auto;
	}
	.hero-right {
		width: 280px;
		padding: 14px;
		border-radius: 10px;
	}
	.tech-stack-header h2 {
		font-size: 1.1rem;
	}
	/* reduce vertical gap between heading and image on small phones */
	.hero-heading { padding-top: 0.5rem; margin-bottom: 0.5rem; }
}

@media (max-width: 420px) {
	.hero-heading h1 {
		font-size: 1.6rem;
	}
	.lets-talk { width: 160px; height: 54px; }
	.hero-right { width: 260px; padding: 12px; }
}
.about-section {
    padding: 5rem 2rem;
    background-color: #F9F9F9;
    position: relative;
    overflow: hidden;
}

.about-container {
    /* display: flex; */
    max-width: 1200px;
    margin: 0 auto;
    gap: 4rem;
    align-items: center;
    position: relative;
}

.about-image-container {
    position: relative;
    flex-basis: 45%;
}

.about-image-wrapper {
    position: relative;
    
    
    width: 100%;
    padding-bottom: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.about-image {
    position: absolute;
    width: 80%;
    height: 80%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    border-radius: 50%;
    z-index: 2;
}

.about-star-decoration {
    position: absolute;
    width: 28%;
    height: auto;
    top: 81%;
    right: -5%;
    z-index: 3;
    opacity: 0.3;
    animation: starBounce 3s ease-in-out infinite;
}

@keyframes starBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

.about-content {
    flex: 1;
    padding-right: 2rem;
}

.about-heading {
    margin-bottom: 1.5rem;
}

.about-label {
	border: 2px solid rgba(74, 222, 128, 0.5);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #4ade80;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    position: relative;
}

.star-icon-img {
    display: inline-block;
    width: 18px;
    height: 18px;
    margin-right: 5px;
    vertical-align: middle;
}

.about-content h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1.5rem;
    font-weight: 700;
}


.about-description {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.stat-item {
    text-align: left;
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
}

.about-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.about-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #4ade80;
    color: #333;
    font-weight: 600;
    padding: 0.875rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.about-btn:hover {
    background-color: #22c55e;
    transform: translateY(-3px);
}

.btn-icon-img {
    width: 16px;
    height: 16px;
    vertical-align: middle;
    margin-right: 3px;
}

.btn-arrow {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.about-btn:hover .btn-arrow {
    transform: translateX(3px);
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: white;
    color: #333;
    font-weight: 600;
    padding: 0.875rem 1.5rem;
    border-radius: 50px;
    border: 2px solid rgba(74, 222, 128, 0.5);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    border-color: #4ade80;
    background-color: rgba(74, 222, 128, 0.1);
    transform: translateY(-3px);
}

.contact-btn:hover .btn-arrow {
    transform: translateX(3px);
}

@keyframes rotate-text {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.hire-me-badge {
    position: absolute;
    width: 120px;
    height: 120px;
    top: 0;
    left: 0;
    z-index: 2;
    transform: translate(-25%, -25%);
    border-radius: 50%;
}

.badge-outer {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: rotate-text 12s linear infinite;
    overflow: hidden;
}

/* Using the actual badge structure but without text */
.badge-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.badge-text {
    display: none;
}

.badge-inner-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50%;
    height: 50%;
    border-radius: 50%;
    background-color: #4ade80;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 3;
}

.badge-arrow {
    color: #000;
    font-size: 1.2rem;
    font-weight: bold;
}

.about-decor {
    position: absolute;
    width: 50px;
    height: 50px;
    opacity: 0.5;
}

.star-1 {
    top: 20%;
    left: -5%;
    background-color: #4ade80;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.star-2 {
    bottom: 10%;
    right: -5%;
    background-color: #4ade80;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    transform: scale(1.5) rotate(15deg);
}

/* Responsive styles for About section */
@media (max-width: 992px) {
    .about-container {
        flex-direction: column;
        gap: 3rem;
    }
    
    .about-image-container {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .about-content {
        padding-right: 0;
    }
    
    .about-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
	.logo img {
		max-width: 140px;
	}

    .about-section {
        padding: 3rem 1.5rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
    
    .about-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .about-btn, .contact-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
	.logo img {
		max-width: 120px;
	}

    .about-section {
        padding: 2.5rem 1rem;
    }
    
    .about-content h2 {
        font-size: 1.75rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(1, 1fr);
        text-align: center;
    }
    
    .stat-item {
        text-align: center;
    }
    
    .hire-me-badge {
        width: 100px;
        height: 100px;
    }
}

/* About Page Specific Styles */
.about-page {
    padding-top: 0;
}

/* About Hero Section */
.about-hero {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.about-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.about-hero-content {
    flex: 1;
}

.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(74, 222, 128, 0.1);
    color: #4ade80;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 2px solid rgba(74, 222, 128, 0.3);
}

.about-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.about-hero-content p {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.about-hero-image {
    flex: 1;
    text-align: center;
}

.hero-img {
    max-width: 400px;
    width: 100%;
    height: auto;
    border-radius: 211px;
}

/* About Skills Section */
.about-skills-section {
    padding: 5rem 2rem;
    background: white;
}

.about-skills-section .skills-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.about-skills-section .skills-header {
    margin-bottom: 3rem;
}

.skills-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(74, 222, 128, 0.1);
    color: #4ade80;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border: 2px solid rgba(74, 222, 128, 0.3);
}

.about-skills-section .skills-header h2 {
    font-size: 2.5rem;
    color: #1a1a1a;
    font-weight: 700;
    margin: 0;
}

/* Personal Info Section */
.personal-info-section {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

.personal-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.personal-content {
    flex: 1;
}

.personal-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(74, 222, 128, 0.1);
    color: #4ade80;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border: 2px solid rgba(74, 222, 128, 0.3);
}

.personal-header h2 {
    font-size: 2.5rem;
    color: #1a1a1a;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.personal-details p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.info-label {
    font-weight: 600;
    color: #333;
}

.info-value {
    color: #4ade80;
    font-weight: 600;
}

.personal-buttons {
    display: flex;
    gap: 1rem;
}

.cta-btn, .download-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-btn {
    background: #4ade80;
    color: white;
}

.cta-btn:hover {
    background: #22c55e;
    transform: translateY(-3px);
}

.download-btn {
    background: white;
    color: #333;
    border: 2px solid rgba(74, 222, 128, 0.5);
}

.download-btn:hover {
    border-color: #4ade80;
    background: rgba(74, 222, 128, 0.1);
    transform: translateY(-3px);
}

.personal-image {
    flex: 1;
    text-align: center;
}

.image-wrapper {
    position: relative;
    display: inline-block;
}

.personal-img {
    max-width: 350px;
    width: 100%;
    height: auto;
    border-radius: 20px;
}

/* About Page Responsive */
@media (max-width: 992px) {
    .about-hero-container,
    .personal-container {
        flex-direction: column;
        gap: 3rem;
    }
    
    .about-hero-content h1 {
        font-size: 2.5rem;
        text-align: center;
    }
    
    .about-hero-content p {
        text-align: center;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .personal-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .about-hero,
    .about-skills-section,
    .personal-info-section {
        padding: 3rem 1.5rem;
    }
    
    .about-hero-content h1 {
        font-size: 2rem;
    }
    
    .about-hero-content p {
        font-size: 1.1rem;
    }
    
    .personal-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-btn, .download-btn {
        width: 100%;
        justify-content: center;
        padding: 1rem 1.5rem;
    }
    
    .info-item {
        padding: 0.875rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .info-label,
    .info-value {
        font-size: 0.95rem;
    }
    
    .personal-header h2 {
        font-size: 2rem;
        text-align: center;
    }
    
    .personal-details p {
        text-align: center;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .about-hero,
    .about-skills-section,
    .personal-info-section {
        padding: 2.5rem 1rem;
    }
    
    .about-hero-content h1 {
        font-size: 1.75rem;
    }
    
    .about-hero-content p {
        font-size: 1rem;
    }
    
    .about-badge,
    .skills-label,
    .personal-label {
        font-size: 0.85rem;
        padding: 0.4rem 0.8rem;
    }
    
    .personal-header h2 {
        font-size: 1.75rem;
    }
    
    .personal-details p {
        font-size: 0.95rem;
    }
    
    .cta-btn, .download-btn {
        padding: 0.875rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .info-item {
        padding: 0.75rem;
    }
    
    .info-label,
    .info-value {
        font-size: 0.9rem;
    }
    
    .hero-img,
    .personal-img {
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .about-hero-content h1 {
        font-size: 1.6rem;
        line-height: 1.2;
    }
    
    .personal-header h2 {
        font-size: 1.6rem;
    }
    
    .cta-btn, .download-btn {
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
    }
    
    .hero-img,
    .personal-img {
        max-width: 280px;
    }
}

@media (max-width: 320px) {
    .about-hero,
    .about-skills-section,
    .personal-info-section {
        padding: 2rem 0.5rem;
    }
    
    .about-hero-content h1 {
        font-size: 1.4rem;
    }
    
    .personal-header h2 {
        font-size: 1.4rem;
    }
    
    .about-hero-content p,
    .personal-details p {
        font-size: 0.9rem;
    }
    
    .cta-btn, .download-btn {
        padding: 0.625rem 0.875rem;
        font-size: 0.8rem;
    }
    
    .info-item {
        padding: 0.625rem;
    }
    
    .hero-img,
    .personal-img {
        max-width: 250px;
    }
}

/* Experience Section */
.experience-section {
    padding: 5rem 2rem;
    background-color: #1a1a1a;
    color: white;
    position: relative;
    overflow: hidden;
}

.experience-container {
    max-width: 1200px;
    margin: 0 auto;
}

.experience-header {
    text-align: center;
    margin-bottom: 4rem;
}

.experience-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(74, 222, 128, 0.1);
    color: #4ade80;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border: 2px solid rgba(74, 222, 128, 0.3);
}

.experience-header h2 {
    font-size: 2.5rem;
    color: white;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
}

.highlight-text {
    color: #4ade80;
}

.experience-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.experience-timeline::before {
    content: '';
    position: absolute;
    left: 100px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #4ade80, #22c55e);
}

.experience-item {
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
    position: relative;
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;
}

.experience-item.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.experience-item::before {
    content: '';
    position: absolute;
    left: 89px;
    width: 24px;
    height: 24px;
    background: #4ade80;
    border-radius: 50%;
    border: 4px solid #1a1a1a;
    z-index: 2;
}

.experience-year {
    font-size: 1.2rem;
    font-weight: 700;
    color: #4ade80;
    width: 80px;
    text-align: center;
    margin-right: 2rem;
}

.experience-details {
    flex: 1;
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(74, 222, 128, 0.2);
    margin-left: 2rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.experience-details:hover {
    background: rgba(74, 222, 128, 0.1);
    border-color: #4ade80;
    transform: translateY(-5px);
}

.experience-details h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
    margin: 0 0 0.5rem 0;
}

.experience-type {
    color: #4ade80;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.25rem 0.75rem;
    background: rgba(74, 222, 128, 0.2);
    border-radius: 15px;
    display: inline-block;
}

/* Experience Responsive */
@media (max-width: 992px) {
    .experience-section {
        padding: 3rem 1.5rem;
    }
    
    .experience-header h2 {
        font-size: 2rem;
    }
    
    .experience-timeline::before {
        left: 60px;
    }
    
    .experience-item::before {
        left: 49px;
    }
    
    .experience-year {
        width: 60px;
        font-size: 1rem;
        margin-right: 1.5rem;
    }
    
    .experience-details {
        margin-left: 1.5rem;
        padding: 1rem 1.5rem;
    }
}

@media (max-width: 768px) {
    .experience-section {
        padding: 2.5rem 1rem;
    }
    
    .experience-timeline::before {
        left: 40px;
    }
    
    .experience-item::before {
        left: 29px;
    }
    
    .experience-item {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 3rem;
    }
    
    .experience-year {
        width: auto;
        margin-bottom: 1rem;
        margin-right: 0;
        margin-left: 50px;
    }
    
    .experience-details {
        margin-left: 0;
        width: 100%;
    }
    
    .experience-details h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .experience-timeline::before {
        left: 20px;
    }
    
    .experience-item::before {
        left: 9px;
    }
    
    .experience-year {
        margin-left: 30px;
    }
}

/* New Experience Section */
.experience-section-new {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    position: relative;
    overflow: hidden;
}

.experience-section-new::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.experience-container-new {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.experience-header-new {
    text-align: center;
    margin-bottom: 4rem;
}

.experience-badge-new {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 2px solid rgba(16, 185, 129, 0.3);
    backdrop-filter: blur(10px);
}

.star-icon-new {
    font-size: 1.1rem;
}

.experience-title-new {
    font-size: 3rem;
    color: white;
    font-weight: 800;
    margin: 0;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.highlight-green {
    color: #10b981;
    background: linear-gradient(45deg, #10b981, #4ade80);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.experience-timeline-new {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(15, 23, 42, 0.8);
    border-radius: 20px;
    padding: 3rem;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(16, 185, 129, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.experience-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 0;
    border-bottom: 1px solid rgba(71, 85, 105, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.experience-row:last-child {
    border-bottom: none;
}

.experience-row:hover {
    background: rgba(16, 185, 129, 0.05);
    border-radius: 12px;
    padding-left: 1rem;
    padding-right: 1rem;
}

.experience-year-new {
    font-size: 1.5rem;
    font-weight: 700;
    color: #10b981;
    min-width: 100px;
    text-align: left;
}

.experience-role-new {
    font-size: 1.8rem;
    font-weight: 600;
    color: white;
    flex: 1;
    text-align: center;
    letter-spacing: -0.01em;
}

.experience-type-new {
    font-size: 1.1rem;
    font-weight: 500;
    color: #94a3b8;
    min-width: 100px;
    text-align: right;
    padding: 0.5rem 1rem;
    background: rgba(71, 85, 105, 0.3);
    border-radius: 25px;
    border: 1px solid rgba(71, 85, 105, 0.5);
}

/* Responsive Design */
@media (max-width: 992px) {
    .experience-section-new {
        padding: 4rem 1.5rem;
    }
    
    .experience-title-new {
        font-size: 2.5rem;
    }
    
    .experience-timeline-new {
        padding: 2rem;
    }
    
    .experience-role-new {
        font-size: 1.5rem;
    }
    
    .experience-year-new {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .experience-section-new {
        padding: 3rem 1rem;
    }
    
    .experience-title-new {
        font-size: 2rem;
    }
    
    .experience-timeline-new {
        padding: 1.5rem;
    }
    
    .experience-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        padding: 1.5rem 0;
    }
    
    .experience-year-new,
    .experience-role-new,
    .experience-type-new {
        text-align: left;
        min-width: auto;
    }
    
    .experience-role-new {
        font-size: 1.3rem;
        order: 1;
    }
    
    .experience-year-new {
        font-size: 1.1rem;
        order: 0;
    }
    
    .experience-type-new {
        font-size: 1rem;
        order: 2;
        padding: 0.4rem 0.8rem;
    }
}

@media (max-width: 576px) {
    .experience-title-new {
        font-size: 1.8rem;
    }
    
    .experience-timeline-new {
        padding: 1rem;
    }
    
    .experience-role-new {
        font-size: 1.2rem;
    }
}

/* Projects Section */
.projects-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
    position: relative;
}

.projects-container {
    max-width: 1200px;
    margin: 0 auto;
}

.projects-header {
    margin-bottom: 3rem;
}

.projects-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(74, 222, 128, 0.1);
    color: #4ade80;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border: 2px solid rgba(74, 222, 128, 0.3);
}

.projects-title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.projects-title-row h2 {
    font-size: 2.5rem;
    color: #333;
    font-weight: 700;
    margin: 0;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #4ade80;
    color: #333;
    font-weight: 600;
    padding: 0.875rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.view-all-btn:hover {
    background-color: #22c55e;
    transform: translateY(-3px);
}

.view-all-btn .btn-arrow {
    transition: transform 0.3s ease;
}

.view-all-btn:hover .btn-arrow {
    transform: translateX(3px);
}

.projects-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.project-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.project-image {
    position: relative;
    overflow: hidden;
    height: 250px;
    background: #f8f9fa;
}

.project-screenshot {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-card:hover .project-screenshot {
    transform: scale(1.05);
}

.project-info {
    padding: 1.5rem;
    position: relative;
}

.project-category {
    font-size: 0.8rem;
    color: #4ade80;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.project-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #333;
    margin: 0;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.project-link {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #4ade80;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.project-link:hover {
    background: #22c55e;
    transform: scale(1.1);
}

.link-arrow {
    color: #000;
    font-size: 1.2rem;
    font-weight: bold;
    transform: rotate(-45deg);
}

/* Responsive styles for Projects section */
@media (max-width: 992px) {
    .projects-title-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
    
    .projects-title-row h2 {
        font-size: 2rem;
    }
    
    .projects-showcase {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .projects-section {
        padding: 3rem 1.5rem;
    }
    
    .projects-title-row h2 {
        font-size: 1.75rem;
    }
    
    .view-all-btn {
        width: 100%;
        justify-content: center;
    }
    
    .projects-showcase {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .project-image {
        height: 200px;
    }
}

@media (max-width: 576px) {
    .projects-section {
        padding: 2.5rem 1rem;
    }
    
    .projects-showcase {
        grid-template-columns: 1fr;
    }
    
    .project-info {
        padding: 1rem;
    }
    
    .project-link {
        bottom: 1rem;
        right: 1rem;
        width: 35px;
        height: 35px;
    }
}

/* Skills & Tools Section */
.skills-section {
    background-color: #1a1a1a;
    color: white;
    padding: 5rem 2rem 0;
    position: relative;
    overflow: hidden;
}

.skills-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.skills-header {
    margin-bottom: 3rem;
}

.skills-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(74, 222, 128, 0.1);
    color: #4ade80;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border: 2px solid rgba(74, 222, 128, 0.3);
}

.skills-header h2 {
    font-size: 2.5rem;
    color: white;
    font-weight: 700;
    margin: 0;
}

.skills-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.skill-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.skill-badge:hover {
    background-color: rgba(74, 222, 128, 0.2);
    border-color: #4ade80;
    transform: translateY(-3px);
}

.skill-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.skill-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
}

.challenge-cta {
    margin-bottom: 4rem;
}

.challenge-cta h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    margin: 0;
}

.highlight {
    color: #4ade80;
}

/* Marquee Animation - White Version */
.marquee-container {
    background-color:#1a1a1a;
    padding: 1rem 0;
    overflow: hidden;
    position: relative;
    
}

@keyframes marqueeScroll {	
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.marquee {
    display: flex;
    align-items: center;
    gap: 2rem;
    animation: marqueeScroll 20s linear infinite;
    width: 200%;
}

.marquee-text {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    white-space: nowrap;
}

.marquee-star {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

/* Responsive styles for Skills section */
@media (max-width: 992px) {
    .skills-header h2 {
        font-size: 2rem;
    }
    
    .skills-grid {
        gap: 0.75rem;
    }
    
    .challenge-cta h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .skills-section {
        padding: 3rem 1.5rem 0;
    }
    
    .skills-header h2 {
        font-size: 1.75rem;
    }
    
    .skills-grid {
        gap: 0.5rem;
    }
    
    .skill-badge {
        padding: 0.5rem 1rem;
        gap: 0.5rem;
    }
    
    .skill-name {
        font-size: 0.8rem;
    }
    
    .challenge-cta h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .skills-section {
        padding: 2.5rem 1rem 0;
    }
    
    .skills-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .skill-badge {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

/* FAQ Section */
#faq {
    padding: 5rem 0;
    background: #f8f9fa;
}

#faq .container {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-header {
    flex: 1;
    max-width: 500px;
}

.find-answer-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(74, 222, 128, 0.1);
    border: 1px solid #4ade80;
    border-radius: 25px;
    font-size: 0.9rem;
    color: #4ade80;
    margin-bottom: 1.5rem;
}

.star-icon {
    font-size: 1rem;
}

.faq-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.faq-header p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-prompt {
    margin-top: 2rem;
}

.contact-prompt p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 1rem;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 2rem;
    background: #4ade80;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background: #22c55e;
    transform: translateY(-2px);
}

.arrow {
    font-size: 1.2rem;
}

.faq-content {
    flex: 1;
    max-width: 600px;
}

.faq-item {
    background: white;
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}

.toggle-icon {
    font-size: 1rem;
    color: #4ade80;
    font-weight: bold;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.faq-answer.active {
    max-height: 200px;
    padding: 1.5rem;
}

.faq-answer p {
    margin: 0;
    color: #666;
    line-height: 1.6;
}

/* FAQ Responsive */
@media (max-width: 768px) {
    #faq {
        padding: 3rem 0;
    }
    
    .container {
        flex-direction: column;
    }
    
    .faq-header {
        max-width: 100%;
        margin-bottom: 2rem;
    }
    
    .faq-header h2 {
        font-size: 2rem;
    }
    
    .faq-content {
        max-width: 100%;
    }
    
    .faq-question {
        padding: 1rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .faq-answer.active {
        padding: 1rem;
    }
}

/* How It Works Section */
#how-it-works {
    padding: 5rem 0;
    background: #f8f9fa;
}

.process-header {
    text-align: center;
    margin-bottom: 4rem;
}

.how-it-works-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(74, 222, 128, 0.1);
    border: 1px solid #4ade80;
    border-radius: 25px;
    font-size: 0.9rem;
    color: #4ade80;
    margin-bottom: 1.5rem;
}

.process-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.2;
}

.process-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
    gap: 2rem;
}

.process-step {
    flex: 1;
    text-align: center;
    max-width: 280px;
}

.step-icon {
    margin-bottom: 2rem;
}

.icon-circle {
    width: 80px;
    height: 80px;
    border: 2px solid #4ade80;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    background: white;
    transition: all 0.3s ease;
}

.icon-circle:hover {
    background: #4ade80;
    transform: translateY(-5px);
}

.code-icon {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1a1a1a;
}

.rocket-icon,
.gear-icon {
    font-size: 1.8rem;
}

.process-step h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.process-step p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

.process-connector {
    flex: 0 0 auto;
    height: 2px;
    width: 80px;
    position: relative;
}

.connector-line {
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, #4ade80, #22c55e);
    position: relative;
}

.connector-line::after {
    content: '';
    position: absolute;
    right: -5px;
    top: -3px;
    width: 0;
    height: 0;
    border-left: 8px solid #22c55e;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
}

/* How It Works Responsive */
@media (max-width: 768px) {
    #how-it-works {
        padding: 3rem 0;
    }
    
    .process-header h2 {
        font-size: 2rem;
    }
    
    .process-steps {
        flex-direction: column;
        gap: 3rem;
    }
    
    .process-connector {
        display: none;
    }
    
    .process-step {
        max-width: 100%;
    }
    
    .icon-circle {
        width: 70px;
        height: 70px;
    }
    
    .process-step h3 {
        font-size: 1.2rem;
    }
}

/* Testimonials Section */
#testimonials {
    padding: 5rem 0;
    background: #f8f9fa;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 3rem;
}

.testimonial-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(74, 222, 128, 0.1);
    border: 1px solid #4ade80;
    border-radius: 25px;
    font-size: 0.9rem;
    color: #4ade80;
    margin-bottom: 1.5rem;
}

.testimonials-title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-title-row h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.2;
}

.testimonial-nav {
    display: flex;
    gap: 0.5rem;
}

.nav-btn {
    width: 50px;
    height: 50px;
    border: 2px solid #4ade80;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.5rem;
    color: #4ade80;
}

.nav-btn:hover {
    background: #4ade80;
    color: white;
    transform: translateY(-2px);
}

.nav-btn.next-btn {
    background: #4ade80;
    color: white;
}

.nav-btn.next-btn:hover {
    background: #22c55e;
}

.testimonials-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-card {
    display: none;
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: relative;
}

.testimonial-card.active {
    display: block;
}

.quote-icon {
    position: absolute;
    top: -10px;
    left: 2rem;
    background: #4ade80;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quote-mark {
    font-size: 2rem;
    color: white;
    font-weight: bold;
}

.testimonial-content {
    padding-top: 2rem;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.client-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.client-details h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 0.25rem 0;
}

.client-details .role {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1.5rem;
}

.rating {
    display: flex;
    gap: 0.25rem;
}

.star {
    font-size: 1.2rem;
}

/* Testimonials Responsive */
@media (max-width: 768px) {
    #testimonials {
        padding: 3rem 0;
    }
    
    .testimonials-title-row {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .testimonials-title-row h2 {
        font-size: 2rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .quote-icon {
        width: 50px;
        height: 50px;
        left: 1.5rem;
    }
    
    .quote-mark {
        font-size: 1.5rem;
    }
    
    .testimonial-content {
        padding-top: 1.5rem;
    }
    
    .client-info {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .testimonial-text {
        font-size: 0.95rem;
        text-align: center;
    }
    
    .rating {
        justify-content: center;
    }
}

/* Blog & Articles Section */
#blog {
    padding: 5rem 0;
    background: white;
}

.blog-header {
    text-align: center;
    margin-bottom: 3rem;
}

.blog-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(74, 222, 128, 0.1);
    border: 1px solid #4ade80;
    border-radius: 25px;
    font-size: 0.9rem;
    color: #4ade80;
    margin-bottom: 1.5rem;
}

.blog-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.2;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-card {
    background: white;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.blog-card:hover {
    border-color: #4ade80;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.blog-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.blog-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.blog-category {
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.blog-category.golang {
    background: rgba(74, 222, 128, 0.1);
    color: #4ade80;
}

.blog-category.security {
    background: rgba(74, 222, 128, 0.1);
    color: #4ade80;
}

.blog-date {
    color: #888;
    font-size: 0.85rem;
}

/* Blog Responsive */
@media (max-width: 768px) {
    #blog {
        padding: 3rem 0;
    }
    
    .blog-header h2 {
        font-size: 2rem;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .blog-card {
        padding: 1.5rem;
    }
    
    .blog-content h3 {
        font-size: 1.1rem;
    }
    
    .blog-meta {
        gap: 0.3rem;
    }
}

/* Contact Section */
#contact {
    padding: 5rem 0;
    background: #1a1a1a;
    color: white;
}

.contact-content {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-left {
    flex: 1;
}

.contact-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(74, 222, 128, 0.1);
    border: 1px solid #4ade80;
    border-radius: 25px;
    font-size: 0.9rem;
    color: #4ade80;
    margin-bottom: 1.5rem;
}

.contact-left h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.contact-left p {
    font-size: 1.1rem;
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.contact-image {
    margin-top: 2rem;
}

.image-placeholder {
    width: 100%;
    height: 300px;
    background: #2a2a2a;
    border: 2px dashed #4ade80;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4ade80;
    font-size: 1.1rem;
    font-weight: 500;
}

.contact-right {
    flex: 1;
}

.contact-form-container {
    background: #1a1a1a;
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid #4ade80;
}

.contact-form-container h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: white;
    margin-bottom: 2rem;
}

.form-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.form-row input {
    flex: 1;
}

#contactForm input,
#contactForm textarea {
    width: 100%;
    padding: 1rem;
    background: #1a1a1a;
    border: 1px solid #444;
    border-radius: 8px;
    color: white;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    transition: border-color 0.3s ease;
}

#contactForm input:focus,
#contactForm textarea:focus {
    outline: none;
    border-color: #4ade80;
}

#contactForm input::placeholder,
#contactForm textarea::placeholder {
    color: #888;
}

#contactForm textarea {
    min-height: 120px;
    resize: vertical;
}

.send-btn {
    width: 100%;
    padding: 1.2rem 2rem;
    background: #4ade80;
    color: #1a1a1a;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: none;
    letter-spacing: 0.5px;
}

.send-btn:hover {
    background: #22c55e;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(74, 222, 128, 0.3);
}

/* Contact Responsive */
@media (max-width: 992px) {
    #contact {
        padding: 4rem 1.5rem;
    }
    
    .contact-content {
        gap: 3rem;
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .contact-left h2 {
        font-size: 2.2rem;
    }
    
    .contact-form-container {
        padding: 2.2rem;
    }
    
    .form-row {
        gap: 0.75rem;
    }
    
    #contactForm input,
    #contactForm textarea {
        padding: 0.9rem;
    }
}

@media (max-width: 768px) {
    #contact {
        padding: 3rem 1rem;
    }
    
    .contact-content {
        flex-direction: column;
        gap: 2.5rem;
    }
    
    .contact-left h2 {
        font-size: 2rem;
        text-align: center;
    }
    
    .contact-left p {
        text-align: center;
        font-size: 1rem;
    }
    
    .image-placeholder {
        height: 200px;
        font-size: 1rem;
    }
    
    .contact-form-container {
        padding: 2rem;
        margin: 0;
    }
    
    .contact-form-container h3 {
        font-size: 1.6rem;
        text-align: center;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .form-row input {
        margin-bottom: 1.5rem;
    }
    
    #contactForm input,
    #contactForm textarea {
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 1rem;
    }
    
    .send-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    #contact {
        padding: 2.5rem 0.5rem;
    }
    
    .contact-left h2 {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .contact-left p {
        font-size: 0.95rem;
        padding: 0 0.5rem;
    }
    
    .contact-form-container {
        padding: 1.5rem;
        border-radius: 8px;
    }
    
    .contact-form-container h3 {
        font-size: 1.4rem;
        margin-bottom: 1.5rem;
    }
    
    #contactForm input,
    #contactForm textarea {
        padding: 0.875rem;
        margin-bottom: 1.25rem;
        border-radius: 6px;
    }
    
    #contactForm textarea {
        min-height: 100px;
    }
    
    .send-btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
        border-radius: 40px;
    }
    
    .image-placeholder {
        height: 150px;
        font-size: 0.9rem;
        margin-top: 1rem;
    }
}

@media (max-width: 480px) {
    .contact-left h2 {
        font-size: 1.6rem;
    }
    
    .contact-form-container {
        padding: 1.25rem;
    }
    
    .contact-form-container h3 {
        font-size: 1.3rem;
    }
    
    #contactForm input,
    #contactForm textarea {
        padding: 0.75rem;
        font-size: 15px;
    }
    
    .send-btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 320px) {
    #contact {
        padding: 2rem 0.25rem;
    }
    
    .contact-left h2 {
        font-size: 1.4rem;
        padding: 0 0.25rem;
    }
    
    .contact-left p {
        font-size: 0.9rem;
    }
    
    .contact-form-container {
        padding: 1rem;
    }
    
    .contact-form-container h3 {
        font-size: 1.2rem;
    }
    
    #contactForm input,
    #contactForm textarea {
        padding: 0.625rem;
    }
    
    .send-btn {
        padding: 0.625rem 1rem;
        font-size: 0.85rem;
    }
}

/* Footer Section */
footer {
    background: #1a1a1a;
    color: white;
    padding: 3rem 0 1rem;
    width: 100%;
    overflow-x: hidden;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
}

.footer-left {
    flex: 1;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: #4ade80;
    padding: 8px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.footer-right {
    flex: 1;
    text-align: right;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1rem;
}

.say-hello {
    color: #ccc;
    margin: 0;
    font-size: 1rem;
}

.email-link {
    color: #4ade80;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.email-link:hover {
    color: #22c55e;
}

.footer-social {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.75rem;
}

.social-title {
    color: #ccc;
    margin: 0;
    font-size: 1rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #4ade80;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1.5rem;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #4ade80;
}

/* Footer Responsive */
@media (max-width: 992px) {
    footer {
        padding: 2.5rem 1.5rem 1rem;
    }
    
    .footer-content {
        max-width: 100%;
        padding: 0 1rem;
        gap: 2rem;
    }
    
    .footer-left,
    .footer-right {
        flex: 1;
    }
    
    .footer-contact {
        gap: 0.75rem;
    }
    
    .email-link {
        font-size: 1.1rem;
        word-break: break-all;
    }
    
    .social-icons {
        gap: 0.75rem;
    }
    
    .social-icon {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 768px) {
    footer {
        padding: 2rem 1rem 1rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
        padding: 0 1rem;
    }
    
    .footer-left {
        display: flex;
        justify-content: center;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-right {
        text-align: center;
    }
    
    .footer-contact {
        align-items: center;
        gap: 1rem;
    }
    
    .footer-social {
        align-items: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .logo-text {
        font-size: 1.3rem;
    }
    
    .email-link {
        font-size: 1rem;
        word-break: break-word;
        text-align: center;
    }
    
    .social-icons {
        justify-content: center;
        gap: 1rem;
    }
}

@media (max-width: 576px) {
    footer {
        padding: 1.5rem 0.5rem 1rem;
    }
    
    .footer-logo {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }
    
    .logo-icon {
        width: 35px;
        height: 35px;
    }
    
    .logo-text {
        font-size: 1.2rem;
    }
    
    .email-link {
        font-size: 0.95rem;
    }
    
    .say-hello,
    .social-title {
        font-size: 0.9rem;
    }
    
    .social-icon {
        width: 32px;
        height: 32px;
    }
    
    .footer-links a {
        font-size: 0.85rem;
        padding: 0.5rem 0;
    }
}

@media (max-width: 320px) {
    .footer-content {
        gap: 1.5rem;
    }
    
    .email-link {
        font-size: 0.9rem;
        line-height: 1.3;
    }
    
    .social-icons {
        gap: 0.5rem;
    }
    
    .social-icon {
        width: 30px;
        height: 30px;
    }
}

@media (max-width: 480px) {
	.logo img {
		max-width: 100px;
	}
}

@media (max-width: 320px) {
	.logo img {
		max-width: 80px;
	}
}