/* Modern Portfolio Styles - Updated with Lexend Font and Hot Pink/Purple Color Scheme */

/* Import Lexend Font */
@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@300;400;500;600;700&display=swap');

/* Base Reset and Typography */
body, html {
	font-family: 'Lexend', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	font-size: 16px;
	line-height: 1.6;
	color: #333;
	background-color: #fff;
	margin: 0;
	padding: 0;
	scroll-behavior: smooth;
}

:root {
	--primary-color: #e94d9e; /* Hot pink */
	--secondary-color: #8a4baf; /* Purple */
	--accent-color: #b83dba; /* Accent purple */
	--light-bg: #f8f5ff; /* Light purple background */
	--dark-text: #2d2d2d;
	--light-text: #666;
}

h1, h2, h3, h4, h5, h6 {
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 1rem;
}

h1 {
	font-size: 3.5rem;
	letter-spacing: -0.02em;
}

h2 {
	font-size: 2.5rem;
	letter-spacing: -0.01em;
	margin-bottom: 2rem;
}

p {
	margin-bottom: 1.5rem;
}

a {
	color: var(--primary-color);
	text-decoration: none;
	transition: color 0.3s ease;
}

a:hover {
	color: var(--secondary-color);
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
}

.subtitle {
	color: var(--secondary-color);
	font-weight: 600;
	letter-spacing: 0.05em;
}

.accent {
	color: var(--primary-color);
}

.section-intro {
	font-size: 1.1rem;
	max-width: 800px;
	margin: 0 auto 3rem auto;
}

/* Header and Navigation */
.header {
	padding: 1.5rem 0;
	position: sticky;
	top: 0;
	background-color: #fff;
	z-index: 1000;
	box-shadow: 0 1px 10px rgba(138, 75, 175, 0.1);
}

.header-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	font-weight: 700;
	font-size: 1.5rem;
	color: var(--primary-color);
}

.nav {
	display: flex;
	gap: 2rem;
}

.nav a {
	font-weight: 500;
	color: var(--dark-text);
}

.nav a:hover, .nav a.active {
	color: var(--primary-color);
}

/* Hero Section */
.hero {
	padding: 6rem 0;
	background: linear-gradient(135deg, rgba(233, 77, 158, 0.05) 0%, rgba(138, 75, 175, 0.05) 100%);
}

.hero-content {
	max-width: 800px;
	margin: 0 auto;
}

.text-center {
	text-align: center;
}

.profile-image-container {
	margin-bottom: 2rem;
}

.profile-image {
	width: 180px;
	height: 180px;
	border-radius: 50%;
	object-fit: cover;
	object-position: center;
	box-shadow: 0 5px 20px rgba(138, 75, 175, 0.2);
	border: 4px solid white;
}

.hero h1 {
	margin-bottom: 1.5rem;
	background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-fill-color: transparent;
}

.hero-description {
	font-size: 1.25rem;
	color: var(--light-text);
	margin-bottom: 2rem;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

/* Button Styles */
.btn {
	display: inline-block;
	padding: 0.75rem 1.75rem;
	font-weight: 600;
	border-radius: 50px;
	transition: all 0.3s ease;
	cursor: pointer;
	margin: 0 0.5rem;
	letter-spacing: 0.03em;
}

.btn-primary {
	background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
	color: #fff;
	border: none;
	box-shadow: 0 4px 15px rgba(233, 77, 158, 0.3);
}

.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(233, 77, 158, 0.4);
}

.btn-secondary {
	background-color: transparent;
	color: var(--dark-text);
	border: 2px solid var(--secondary-color);
}

.btn-secondary:hover {
	background-color: var(--secondary-color);
	color: #fff;
	transform: translateY(-2px);
}

.hero-buttons {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 1rem;
}

/* Project Cards */
.projects-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.project-card {
	background-color: #fff;
	border-radius: 12px;
	overflow: hidden;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	box-shadow: 0 5px 15px rgba(0,0,0,0.05);
	border: 1px solid rgba(138, 75, 175, 0.1);
}

.project-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 12px 30px rgba(138, 75, 175, 0.15);
}

.project-image {
	width: 100%;
	height: 220px;
	object-fit: cover;
}

.project-details {
	padding: 1.5rem;
}

.project-title {
	font-size: 1.5rem;
	margin-bottom: 0.5rem;
	color: var(--dark-text);
}

.project-category {
	color: var(--primary-color);
	text-transform: uppercase;
	font-size: 0.875rem;
	font-weight: 600;
	margin-bottom: 1rem;
	letter-spacing: 0.05em;
}

.project-description {
	color: var(--light-text);
	margin-bottom: 1.5rem;
}

/* About Section */
.about {
	padding: 6rem 0;
}

.about-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}

.about-image-container {
	position: relative;
}

.about-image {
	width: 100%;
	height: auto;
	border-radius: 12px;
	box-shadow: 0 10px 30px rgba(138, 75, 175, 0.15);
}

/* Professional Overview Section */
.overview {
  padding: 4rem 0;
  background-color: var(--light-bg);
}

.logo-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  margin: 2rem 0 3rem;
}

.logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  background-color: white;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(138, 75, 175, 0.08);
}

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

.company-logo {
  height: 40px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  transition: all 0.3s ease;
}

.logo-item:hover .company-logo {
  transform: scale(1.05);
}

/* Skills Columns Styling */
.skills-container {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}

.skills-column {
  flex: 1;
  background-color: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(138, 75, 175, 0.08);
}

.skills-column h3 {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  color: var(--dark-text);
  position: relative;
  padding-bottom: 1rem;
}

.skills-column h3:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.skills-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.skills-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
  color: var(--light-text);
  font-size: 1.1rem;
}

.skills-list li:before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

/* Education/Certifications Section Styling */
.education {
  padding: 6rem 0 3rem; /* Reduced bottom padding */
}

/* Certification Grid Layout */
.certifications-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 2rem;
  margin: 2.5rem 0 0; /* Removed bottom margin */
}

.certification-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease;
}

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

.certification-logo-container {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  background-color: white;
  box-shadow: 0 8px 20px rgba(138, 75, 175, 0.12);
  border: 1px solid rgba(233, 77, 158, 0.08);
  transition: all 0.3s ease;
}

.certification-item:hover .certification-logo-container {
  box-shadow: 0 12px 25px rgba(233, 77, 158, 0.18);
}

.certification-logo {
  width: 90px;
  height: 90px;
  object-fit: contain;
}

.certification-name {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--dark-text); /* Changed to dark text for better readability */
  max-width: 150px;
  margin-top: 0.5rem;
  line-height: 1.4;
}

/* Strengths Section */
.strengths {
	padding: 6rem 0;
}

.strengths-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	gap: 2rem;
}

.strength-card {
	text-align: center;
	padding: 2rem;
	background-color: white;
	border-radius: 12px;
	transition: transform 0.3s ease;
	box-shadow: 0 5px 15px rgba(0,0,0,0.05);
	border: 1px solid rgba(138, 75, 175, 0.1);
}

.strength-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 12px 25px rgba(138, 75, 175, 0.12);
}

.strength-icon {
	font-size: 2.5rem;
	color: var(--primary-color);
	margin-bottom: 1.5rem;
	height: 60px;
	width: 60px;
	line-height: 60px;
	border-radius: 50%;
	background: linear-gradient(135deg, rgba(233, 77, 158, 0.1) 0%, rgba(138, 75, 175, 0.1) 100%);
	margin: 0 auto 1.5rem auto;
}

.strength-title {
	font-weight: 600;
	margin-bottom: 1rem;
	color: var(--secondary-color);
}

/* Testimonials */
.testimonials {
	padding: 6rem 0;
	background-color: var(--light-bg);
}

.testimonial-container {
	max-width: 900px;
	margin: 0 auto;
}

.testimonial-card {
	background-color: white;
	border-radius: 12px;
	padding: 2rem;
	margin-bottom: 2rem;
	box-shadow: 0 5px 15px rgba(138, 75, 175, 0.08);
	position: relative;
}

.testimonial-card:before {
	content: """;
	position: absolute;
	top: 1.5rem;
	left: 2rem;
	font-size: 4rem;
	color: rgba(233, 77, 158, 0.1);
	font-family: serif;
}

.testimonial-content {
	font-style: italic;
	margin-bottom: 1.5rem;
	padding-left: 1rem;
	color: var(--light-text);
}

.testimonial-author {
	display: flex;
	align-items: center;
}

.testimonial-avatar {
	width: 55px;
	height: 55px;
	border-radius: 50%;
	object-fit: cover;
	margin-right: 1rem;
	border: 3px solid white;
	box-shadow: 0 3px 10px rgba(138, 75, 175, 0.1);
}

.testimonial-name {
	font-weight: 600;
	color: var(--dark-text);
}

.testimonial-role {
	color: var(--primary-color);
	font-size: 0.875rem;
}

/* Footer */
.footer {
	padding: 4rem 0;
	background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
	color: #fff;
}

.footer-content {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

.footer-col {
	flex: 1;
}

.footer-heading {
	font-size: 1.25rem;
	margin-bottom: 1.5rem;
	color: white;
}

.social-links {
	display: flex;
	gap: 1rem;
}

.social-link {
	color: #fff;
	font-size: 1.5rem;
	transition: transform 0.3s ease;
}

.social-link:hover {
	transform: translateY(-3px);
}

.copyright {
	text-align: center;
	margin-top: 3rem;
	padding-top: 1.5rem;
	border-top: 1px solid rgba(255,255,255,0.2);
	font-size: 0.9rem;
	color: rgba(255,255,255,0.8);
}

/* Social media in header */
.header-social {
	margin-left: 1.5rem;
	display: flex;
	align-items: center;
}

.header-social a {
	color: var(--primary-color);
	font-size: 1.25rem;
	transition: color 0.3s ease;
}

.header-social a:hover {
	color: var(--secondary-color);
	background: none;
}

/* LinkedIn CTA */
.linkedin-cta {
	text-align: center;
	margin-top: 3rem;
}

.linkedin-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
	color: white;
	padding: 0.8rem 2rem;
	border-radius: 50px;
	font-weight: 500;
	font-size: 1.1rem;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	box-shadow: 0 4px 15px rgba(233, 77, 158, 0.2);
	text-decoration: none;
}

.linkedin-button i {
	margin-right: 0.75rem;
	font-size: 1.2rem;
}

.linkedin-button:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(233, 77, 158, 0.3);
	background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
	color: white;
}

.linkedin-button:focus {
	outline: none;
	box-shadow: 0 0 0 3px rgba(233, 77, 158, 0.4), 0 4px 15px rgba(233, 77, 158, 0.2);
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
	display: none;
	background: transparent;
	border: none;
	cursor: pointer;
	padding: 10px;
	position: relative;
	width: 40px;
	height: 40px;
	z-index: 1001;
}

.mobile-menu-toggle span, 
.mobile-menu-toggle span:before, 
.mobile-menu-toggle span:after {
	content: '';
	display: block;
	height: 3px;
	width: 24px;
	background: var(--primary-color);
	position: absolute;
	border-radius: 3px;
	transition: all 0.3s ease;
}

.mobile-menu-toggle span {
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.mobile-menu-toggle span:before {
	top: -8px;
	left: 0;
}

.mobile-menu-toggle span:after {
	bottom: -8px;
	left: 0;
}

.mobile-menu-toggle.active span {
	background: transparent;
}

.mobile-menu-toggle.active span:before {
	top: 0;
	transform: rotate(45deg);
}

.mobile-menu-toggle.active span:after {
	bottom: 0;
	transform: rotate(-45deg);
}

/* Responsive Styles */
@media (max-width: 992px) {
	h1 {
		font-size: 2.5rem;
	}
	
	h2 {
		font-size: 2rem;
	}
	
	.about-content {
		grid-template-columns: 1fr;
		gap: 2rem;
	}
	
	.certifications-grid {
		grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
	}
	
	.skills-container {
		flex-direction: column;
	}
	  
	.skills-column {
		margin-bottom: 1.5rem;
	}
}

@media (max-width: 768px) {
	.mobile-menu-toggle {
		display: block;
	}
	
	.nav {
		position: fixed;
		top: 70px;
		left: 0;
		right: 0;
		background-color: white;
		flex-direction: column;
		padding: 2rem;
		box-shadow: 0 5px 15px rgba(138, 75, 175, 0.1);
		transform: translateY(-150%);
		opacity: 0;
		pointer-events: none;
		transition: all 0.3s ease;
		z-index: 1000;
	}
	
	.nav a {
		padding: 15px 0;
		font-size: 1.1rem;
	}
	
	.nav.active {
		transform: translateY(0);
		opacity: 1;
		pointer-events: auto;
	}
	
	.hero h1 {
		font-size: 2.2rem;
	}
	
	.project-card {
		max-width: 350px;
		margin: 0 auto;
	}
	
	.header-social {
		margin-right: 1rem;
	}
	
	.certifications-grid {
		grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
		gap: 1.5rem;
	}
	  
	.certification-logo-container {
		width: 100px;
		height: 100px;
	}
	  
	.certification-logo {
		width: 75px;
		height: 75px;
	}
	
	.logo-grid {
		gap: 1.5rem;
	}
	  
	.company-logo {
		height: 30px;
		max-width: 120px;
	}
	  
	.skills-column h3 {
		font-size: 1.5rem;
	}
}

@media (max-width: 576px) {
	.container {
		padding: 0 1.5rem;
	}
	
	.hero {
		padding: 4rem 0;
	}
	
	.about, .projects, .education, .strengths, .testimonials {
		padding: 4rem 0;
	}
	
	.strength-card, .testimonial-card {
		padding: 1.5rem;
	}
	
	.certifications-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	  
	.certification-name {
		font-size: 0.85rem;
	}
}