/* 
==============================
GENERAL STYLES & VARIABLES
==============================
*/
:root { 
  /* Base colors */
  --background: #0a0a0a;
  --foreground: #f0f4f8;
  --muted: #27272a;
  --muted-foreground: #a5adba;
  
  /* Card & Pop-up colors */
  --card: #171717;
  --card-foreground: #f0f4f8;
  --popover: #121212;
  --popover-foreground: #f0f4f8;


  
  /* Border & input colors */
  --border: #27272a;
  --input: #27272a;
  
  /* Primary & Secondary colors */
  --primary: #a78bfa; /* Light purple */
  --primary-foreground: #f0f4f8;
  --secondary: #7c3aed; /* Darker purple */
  --secondary-foreground: #f0f4f8;
  
  /* Accent colors */
  --accent: #27272a;
  --accent-foreground: #f0f4f8;
  
  /* Destructive colors */
  --destructive: #b91c1c;
  --destructive-foreground: #f0f4f8;
  
  /* Other variables */
  --radius: 0.5rem;
  
  /* Dark theme variants */
  --dark-100: #171717;
  --dark-200: #121212;
  --dark-300: #0a0a0a;
}

/* Light theme variables */
.light {
  --background: #ffffff;
  --foreground: #0a0a0a;
  --muted: #f5f5f5;
  --muted-foreground: #737373;
  
  --card: #ffffff;
  --card-foreground: #0a0a0a;
  --popover: #ffffff;
  --popover-foreground: #0a0a0a;
  
  --border: #e5e5e5;
  --input: #e5e5e5;
  
  --primary: #7c3aed;
  --primary-foreground: #ffffff;
  --secondary: #a78bfa;
  --secondary-foreground: #1a1a1a;
  
  --accent: #f5f5f5;
  --accent-foreground: #1a1a1a;
  
  --destructive: #ef4444;
  --destructive-foreground: #f5f5f5;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
}

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

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

/* Utilities */
.text-center {
  text-align: center;
}

.font-mono {
  font-family: 'Fira Code', monospace;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease,
              box-shadow 0.2s ease,
              background-color 0.3s ease,
              color 0.3s ease;
}

.btn-primary {
  background: linear-gradient(to right, var(--primary), var(--secondary));
  color: var(--primary-foreground);
}

.btn-primary:hover {
  opacity: 0.95;
  color: var(--primary-foreground);
}

.btn-secondary {
  background-color: var(--card);
  color: var(--foreground);
  border: 2px solid;
  border-image: linear-gradient(to right, var(--primary), var(--secondary)) 1;
}

.btn-secondary:hover {
  background-color: var(--accent);
  color: var(--foreground);
}

/* Generic button hover/click */
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.btn:active {
  transform: translateY(0);
  box-shadow: none;
}

/* Shine effect */
.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 40%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.45),
    transparent
  );
  transform: skewX(-20deg);
  transition: left 0.5s ease;
}

.btn:hover::before {
  left: 130%;
}

/* Animations */
.animate-fade-in {
  opacity: 0;
  transform: translateY(10px);
  animation: fadeInUp 0.6s ease-out forwards;
}

.animate-slide-up {
  animation: slideUp 0.5s ease-out;
}

@keyframes fadeInUp {
  0% { 
    opacity: 0;
    transform: translateY(10px);
  }
  100% { 
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  0% { transform: translateY(20px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* 
==============================
HEADER STYLES
==============================
*/
#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  z-index: 100;
  transition: all 0.3s ease;
}

.light #header {
  background-color: rgba(255, 255, 255, 0.9);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

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

.logo span {
  color: var(--foreground);
}

.nav-menu {
  display: flex;
  list-style: none;
  align-items: center;
}

.nav-menu li {
  margin-left: 2rem;
}

.nav-menu a {
  color: var(--muted-foreground);
  font-weight: 500;
  transition: color 0.3s ease;
}

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

.menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--foreground);
}

#theme-toggle-btn {
  background: none;
  border: none;
  color: var(--muted-foreground);
  font-size: 1.2rem;
  cursor: pointer;
  transition: color 0.3s ease;
}

#theme-toggle-btn:hover {
  color: var(--primary);
}

/* 
==============================
HERO SECTION
==============================
*/
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 60px;
  background: linear-gradient(to bottom, var(--dark-300), var(--dark-200));
}

.light .hero-section {
  background: linear-gradient(to bottom, #f8f9fa, #e9ecef);
}

.hero-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.hero-text {
  flex: 1;
}

.hero-image {
  flex: 0.7;
  display: flex;
  justify-content: center;
}

.subtitle {
  font-family: 'Fira Code', monospace;
  color: var(--primary);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.hero-section h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.hero-section h2 {
  font-size: 1.75rem;
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

.description {
  font-size: 1.125rem;
  max-width: 600px;
  margin-bottom: 2rem;
  color: var(--foreground);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

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

.social-links a {
  color: var(--muted-foreground);
  font-size: 1.5rem;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: var(--primary);
}

.profile-image {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  border: 4px solid rgba(167, 139, 250, 0.3);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  animation: float 4s ease-in-out infinite;
}

.profile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

/* 
==============================
SECTION STYLES
==============================
*/
section {
  padding: 80px 0;
}

.section-heading {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.section-heading span {
  color: var(--primary);
}

/* 
==============================
ABOUT SECTION
==============================
*/
.about-section {
  background-color: var(--card);
  background-color: rgba(23, 23, 23, 0.3);
}

.light .about-section {
  background-color: rgba(245, 245, 245, 0.5);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.about-text p {
  color: var(--foreground);
  margin-bottom: 1.5rem;
}

.education-card {
  background-color: var(--card);
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
}

.education-card::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  padding: 1px;
  border-radius: var(--radius);
  background: linear-gradient(to right, var(--primary), var(--secondary));
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.education-item {
  margin-bottom: 1.5rem;
}

.education-item:last-child {
  margin-bottom: 0;
}

.education-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.5rem;
}

.education-header h4 {
  font-weight: 600;
  margin-bottom: 0;
}

.education-header span {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.institution {
  color: var(--primary);
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}

.location {
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

/* 
==============================
SKILLS SECTION
==============================
*/
.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.skill-card {
  background-color: var(--card);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.skill-card:hover {
  transform: translateY(-5px);
  background-color: var(--muted);
}

.skill-header {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.skill-header i {
  font-size: 1.5rem;
  color: var(--primary);
  margin-right: 1rem;
}

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

.skill-list li {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.skill-name {
  width: 100px;
  color: var(--muted-foreground);
}

.skill-bar {
  flex: 1;
  height: 8px;
  background-color: var(--background);
  border-radius: 4px;
  margin-left: 1rem;
  overflow: hidden;
}

.skill-progress {
  height: 100%;
  background: linear-gradient(to right, var(--primary), var(--secondary));
  border-radius: 4px;
}

.soft-skills-card {
  background-color: var(--card);
  border-radius: var(--radius);
  padding: 1.5rem;
  grid-column: 1 / -1;
}

.soft-skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
}

.soft-skill-item {
  background-color: var(--background);
  padding: 1rem;
  border-radius: var(--radius);
  text-align: center;
}

.soft-skill-item i {
  color: var(--primary);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.soft-skill-item p {
  font-size: 0.875rem;
  margin-bottom: 0;
}

.experience-card {
  background-color: var(--card);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-top: 2rem;
}

.experience-heading {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.experience-heading i {
  color: var(--primary);
  margin-right: 0.75rem;
}

.experience-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.experience-header h4 {
  font-size: 1.125rem;
  font-weight: 600;
}

.experience-header span {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.experience-company {
  color: var(--primary);
  margin-bottom: 1rem;
}

.experience-list {
  list-style-position: inside;
  color: var(--foreground);
}

.experience-list li {
  margin-bottom: 0.5rem;
}

/* 
==============================
PROJECTS SECTION
==============================
*/
.projects-section {
  background-color: rgba(23, 23, 23, 0.3);
}

.light .projects-section {
  background-color: rgba(245, 245, 245, 0.5);
}

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

/* Featured project styling */
.featured-project {
  grid-column: 1 / -1;
}

@media (min-width: 992px) {
  .featured-project .project-image {
    height: 350px;
  }
}

.project-card {
  background-color: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.03);
  transition: transform 0.3s ease,
              box-shadow 0.3s ease,
              border-color 0.3s ease;
  cursor: pointer;
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.55);
  border-color: rgba(167, 139, 250, 0.7);
}

.project-image {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.project-card:hover .project-image img {
  transform: scale(1.1);
}

.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 10, 10, 0.9),
    rgba(10, 10, 10, 0.4)
  );
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  padding: 1.5rem;
}

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

.project-info {
  padding: 1.5rem;
}

.project-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.project-description {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.project-tag {
  display: inline-block;
  background-color: rgba(167, 139, 250, 0.2);
  color: var(--primary);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  overflow-y: auto;
  padding: 2rem 0;
}

.modal-content {
  position: relative;
  background-color: var(--card);
  margin: auto;
  width: 90%;
  max-width: 800px;
  border-radius: var(--radius);
  padding: 2rem;
  animation: fadeInUp 0.3s ease-in-out;
}

.close-modal {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 1.5rem;
  color: var(--muted-foreground);
  cursor: pointer;
  transition: color 0.3s ease;
}

.close-modal:hover {
  color: var(--primary);
}

.modal-header {
  border-bottom: 1px solid var(--border);
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
}

.modal-title {
  font-size: 1.75rem;
  color: var(--primary);
}

.modal-body img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
}

.modal-description {
  margin-bottom: 1.5rem;
}

.tech-stack {
  margin-bottom: 1.5rem;
}

.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tech-tag {
  background-color: var(--background);
  color: var(--foreground);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
}

.modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  margin-top: 2rem;
}

.modal-btn {
  display: flex;
  align-items: center;
}

.modal-btn i {
  margin-right: 0.5rem;
}

/* 
==============================
RESUME SECTION
==============================
*/
.resume-content {
  max-width: 800px;
  margin: 0 auto;
}

.resume-card {
  background-color: var(--card);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  margin-bottom: 3rem;
}

.resume-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.resume-card p {
  color: var(--foreground);
  margin-bottom: 2rem;
}

.download-btn {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
}

.download-btn i {
  margin-right: 0.5rem;
}

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

.languages-container h3 {
  margin-bottom: 1.5rem;
}

.languages-grid {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.language-item {
  padding: 0.5rem 1rem;
  background-color: var(--card);
  border-radius: var(--radius);
  font-weight: 500;
}

/* 
==============================
CONTACT SECTION
==============================
*/
.contact-section {
  background-color: rgba(23, 23, 23, 0.3);
}

.light .contact-section {
  background-color: rgba(245, 245, 245, 0.5);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-info h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.contact-info p {
  color: var(--foreground);
  margin-bottom: 2rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: rgba(167, 139, 250, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  flex-shrink: 0;
}

.contact-icon i {
  color: var(--primary);
  font-size: 1.25rem;
}

.contact-text h4 {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.contact-text a {
  color: var(--foreground);
  transition: color 0.3s ease;
  word-break: break-all;
}

.contact-text a:hover {
  color: var(--primary);
}

.contact-form-container {
  background-color: var(--card);
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
}

.contact-form-container::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  padding: 1px;
  border-radius: var(--radius);
  background: linear-gradient(to right, var(--primary), var(--secondary));
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.contact-form-container h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  background-color: var(--background);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--foreground);
  font-family: 'Inter', sans-serif;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(167, 139, 250, 0.2);
}

/* 
==============================
FOOTER
==============================
*/
#footer {
  background-color: var(--background);
  border-top: 1px solid var(--border);
  padding: 2rem 0;
}

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

.copyright {
  color: var(--muted-foreground);
}

.footer-social {
  display: flex;
  gap: 1.5rem;
}

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

.footer-social a:hover {
  color: var(--primary);
}

/* 
==============================
SCROLL TO TOP BUTTON
==============================
*/
#scroll-to-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 2.5rem;
  height: 2.5rem;
  background-color: var(--primary);
  color: white;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 99;
}

#scroll-to-top.visible {
  opacity: 0.8;
  visibility: visible;
}

#scroll-to-top:hover {
  opacity: 1;
  transform: translateY(-3px);
}

/* 
==============================
TOAST NOTIFICATION
==============================
*/
.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background-color: var(--card);
  border-radius: var(--radius);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  min-width: 300px;
  transform: translateY(100px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.toast-content {
  display: flex;
  align-items: center;
}

.toast-icon {
  color: #10b981;
  font-size: 1.5rem;
  margin-right: 0.75rem;
}

.toast-message {
  font-weight: 500;
}

.toast-progress {
  height: 4px;
  background: linear-gradient(to right, var(--primary), var(--secondary));
  border-radius: 2px;
  margin-top: 0.75rem;
  width: 100%;
  animation: toast-progress 3s linear forwards;
}

@keyframes toast-progress {
  0% { width: 100%; }
  100% { width: 0%; }
}

/* 
==============================
RESPONSIVE DESIGN
==============================
*/
@media (max-width: 992px) {
  .hero-content {
    flex-direction: column-reverse;
    text-align: center;
  }
  
  .hero-text {
    margin-top: 2rem;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .social-links {
    justify-content: center;
  }
  
  .about-content {
    grid-template-columns: 1fr;
  }
  
  .contact-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  section {
    padding: 60px 0;
  }
  
  .menu-toggle {
    display: block;
  }
  
  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: var(--background);
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 2rem 2rem;
    gap: 1rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--border);
  }
  
  .nav-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  
  .nav-menu li {
    margin-left: 0;
    width: 100%;
  }
  
  .nav-menu a {
    display: block;
    padding: 0.5rem 0;
  }
  
  .profile-image {
    width: 200px;
    height: 200px;
  }
  
  .modal-content {
    width: 95%;
    padding: 1.5rem;
  }
  
  .project-card {
    max-width: 350px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .hero-section h1 {
    font-size: 1.75rem;
  }
  
  .hero-section h2 {
    font-size: 1.25rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
  }
  
  .btn {
    width: 100%;
  }
  
  .profile-image {
    width: 150px;
    height: 150px;
  }
  
  .section-heading {
    font-size: 1.5rem;
  }
}
