
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #1a1a1a;
  color: white;
  font-family: Arial, sans-serif;
  line-height: 1.5;
}

.container {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
}

/* Header */
.hero {
  background: #2a2a2a;
  padding: 60px 20px;
  text-align: center;
  margin-bottom: 40px;
  border-radius: 10px;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #00d4aa;
}

.subtitle {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: #ccc;
}

.hero-description {
  font-size: 1.1rem;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.social-links a {
  color: white;
  background: #00d4aa;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.social-links a.cv-link {
  width: auto;
  padding: 0 15px;
  border-radius: 20px;
}

.social-links a:hover {
  background: #00b894;
}

#theme-toggle {
  position: fixed;
  top: 20px;
  right: 20px;
  background: #00d4aa;
  border: none;
  color: white;
  padding: 10px;
  border-radius: 50%;
  cursor: pointer;
}

/* Sections */
section {
  background: #2a2a2a;
  padding: 40px;
  margin-bottom: 30px;
  border-radius: 10px;
}

h2 {
  color: #00d4aa;
  font-size: 2rem;
  margin-bottom: 25px;
  text-align: center;
}

/* About */
.about-content p {
  margin-bottom: 15px;
  text-align: center;
}

/* Projects */
.projects-grid {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.project {
  background: #333;
  padding: 25px;
  border-radius: 8px;
  border-left: 4px solid #00d4aa;
}

.project h3 {
  color: #00d4aa;
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.project p {
  margin-bottom: 15px;
  color: #ccc;
}

.project-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 15px;
}

.project-tech span {
  background: rgba(0, 212, 170, 0.2);
  color: #00d4aa;
  padding: 5px 10px;
  border-radius: 15px;
  font-size: 0.9rem;
}

.project-link {
  color: #00d4aa;
  text-decoration: none;
  font-weight: bold;
}

.project-link:hover {
  text-decoration: underline;
}

/* Skills */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.skill-category {
  background: #333;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
}

.skill-category h3 {
  color: #00d4aa;
  margin-bottom: 15px;
}

.skill-items {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.skill-item {
  background: #00d4aa;
  color: #1a1a1a;
  padding: 6px 12px;
  border-radius: 15px;
  font-weight: bold;
  font-size: 0.9rem;
}

/* Contact */
.contact-content {
  text-align: center;
}

.contact-content > p {
  margin-bottom: 25px;
  font-size: 1.1rem;
}

.btn {
  display: inline-block;
  background: #00d4aa;
  color: #1a1a1a;
  padding: 12px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  margin-bottom: 30px;
}

.btn:hover {
  background: #00b894;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ccc;
}

.contact-item a {
  color: #00d4aa;
  text-decoration: none;
}

.contact-item a:hover {
  text-decoration: underline;
}

/* Footer */
footer {
  background: #2a2a2a;
  padding: 30px;
  text-align: center;
  border-radius: 10px;
  margin-top: 40px;
}

footer p {
  margin-bottom: 5px;
}

.footer-built {
  color: #666;
  font-size: 0.9rem;
}

/* Light Mode */
body.light-mode {
  background: #f5f5f5;
  color: #333;
}

body.light-mode .hero,
body.light-mode section,
body.light-mode footer {
  background: white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

body.light-mode .project,
body.light-mode .skill-category {
  background: #f9f9f9;
}

body.light-mode .skill-item {
  background: #00b894;
  color: white;
}

/* Responsive */
@media (max-width: 768px) {
  .container {
    width: 95%;
    padding: 10px;
  }
  
  section {
    padding: 25px;
  }
  
  .skills-grid {
    grid-template-columns: 1fr;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.7rem;
  }
}

/* ===== CSS Reset & Variables ===== */
/** {*/
/*  margin: 0;*/
/*  padding: 0;*/
/*  box-sizing: border-box;*/
/*}*/

/*:root {*/
/*  --primary-color: #1de9b6;*/
/*  --primary-dark: #14bfa0;*/
/*  --secondary-color: #1dc4e9;*/
/*  --text-dark: #121212;*/
/*  --text-light: #f5f5f5;*/
/*  --bg-dark: #121212;*/
/*  --bg-dark-secondary: #1e1e1e;*/
/*  --bg-light: #f5f5f5;*/
/*  --bg-light-secondary: #ffffff;*/
/*  --shadow-dark: rgba(0, 0, 0, 0.4);*/
/*  --shadow-light: rgba(0, 0, 0, 0.1);*/
/*  --focus-outline: 3px solid #1de9b6;*/
/*}*/

/* ===== Accessibility Improvements ===== */
/*.skip-link {*/
/*  position: absolute;*/
/*  top: -40px;*/
/*  left: 6px;*/
/*  background: var(--primary-color);*/
/*  color: var(--text-dark);*/
/*  padding: 8px;*/
/*  text-decoration: none;*/
/*  font-weight: 600;*/
/*  border-radius: 4px;*/
/*  z-index: 1000;*/
/*  transition: top 0.3s;*/
/*}*/

/*.skip-link:focus {*/
/*  top: 6px;*/
/*  outline: var(--focus-outline);*/
/*}*/

/* Focus styles for all interactive elements */
/*a:focus,*/
/*button:focus,*/
/*.skill-item:focus,*/
/*.project:focus,*/
/*.skill-category:focus,*/
/*.contact-item:focus {*/
/*  outline: var(--focus-outline);*/
/*  outline-offset: 2px;*/
/*}*/

/* High contrast support */
/*@media (prefers-contrast: high) {*/
/*  :root {*/
/*    --primary-color: #00ff00;*/
/*    --primary-dark: #00cc00;*/
/*  }*/
/*}*/

/* Reduced motion support */
/*@media (prefers-reduced-motion: reduce) {*/
/*  * {*/
/*    animation-duration: 0.01ms !important;*/
/*    animation-iteration-count: 1 !important;*/
/*    transition-duration: 0.01ms !important;*/
/*  }*/
/*}*/

/*body {*/
/*  background-color: var(--bg-dark);*/
/*  color: var(--text-light);*/
/*  font-family: 'Inter', sans-serif;*/
/*  line-height: 1.6;*/
/*  -webkit-font-smoothing: antialiased;*/
/*  -moz-osx-font-smoothing: grayscale;*/
/*  transition: background-color 0.3s ease, color 0.3s ease;*/
/*}*/

/* ===== Container & Layout ===== */
/*.container {*/
/*  max-width: 1200px;*/
/*  margin: 0 auto;*/
/*  padding: 0 2rem;*/
/*}*/

/* ===== Header & Hero Section ===== */
/*header.hero {*/
/*  text-align: center;*/
/*  padding: 8rem 1rem 6rem;*/
/*  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);*/
/*  color: var(--text-dark);*/
/*  margin-bottom: 4rem;*/
/*  position: relative;*/
/*}*/

/*header.hero h1 {*/
/*  font-size: clamp(2.5rem, 5vw, 3.5rem);*/
/*  font-weight: 700;*/
/*  margin-bottom: 1rem;*/
/*  letter-spacing: 1px;*/
/*}*/

/*header.hero .subtitle {*/
/*  font-size: clamp(1.2rem, 3vw, 1.5rem);*/
/*  font-weight: 500;*/
/*  margin-bottom: 1.5rem;*/
/*  opacity: 0.9;*/
/*}*/

/*.hero-description {*/
/*  font-size: clamp(1rem, 2vw, 1.2rem);*/
/*  max-width: 600px;*/
/*  margin: 0 auto 2.5rem;*/
/*  opacity: 0.9;*/
/*  line-height: 1.7;*/
/*}*/

/* ===== Image Optimization Styles ===== */
/*.profile-image {*/
/*  width: 150px;*/
/*  height: 150px;*/
/*  border-radius: 50%;*/
/*  object-fit: cover;*/
/*  margin: 0 auto 2rem;*/
/*  border: 4px solid var(--bg-light-secondary);*/
/*  box-shadow: 0 8px 20px var(--shadow-dark);*/
/*}*/

/* Lazy loading for images */
/*img[loading="lazy"] {*/
/*  opacity: 0;*/
/*  transition: opacity 0.3s;*/
/*}*/

/*img[loading="lazy"].loaded {*/
/*  opacity: 1;*/
/*}*/

/* ===== Social Links ===== */
/*.social-links {*/
/*  display: flex;*/
/*  justify-content: center;*/
/*  align-items: center;*/
/*  gap: 1.5rem;*/
/*  flex-wrap: wrap;*/
/*}*/

/*.social-links a {*/
/*  font-size: 1.5rem;*/
/*  color: var(--text-dark);*/
/*  background: var(--bg-light-secondary);*/
/*  width: 50px;*/
/*  height: 50px;*/
/*  display: flex;*/
/*  align-items: center;*/
/*  justify-content: center;*/
/*  border-radius: 50%;*/
/*  box-shadow: 0 4px 12px var(--shadow-dark);*/
/*  transition: all 0.3s ease;*/
/*  position: relative;*/
/*}*/

/*.social-links a.cv-link {*/
/*  font-size: 1rem;*/
/*  width: auto;*/
/*  padding: 0.75rem 1.5rem;*/
/*  border-radius: 25px;*/
/*  font-weight: 600;*/
/*}*/

/*.social-links a:hover,*/
/*.social-links a:focus {*/
/*  transform: translateY(-5px);*/
/*  box-shadow: 0 8px 20px var(--shadow-dark);*/
/*}*/

/* ===== Theme Toggle ===== */
/*#theme-toggle {*/
/*  position: absolute;*/
/*  top: 2rem;*/
/*  right: 2rem;*/
/*  background: transparent;*/
/*  border: none;*/
/*  color: var(--text-dark);*/
/*  font-size: 1.5rem;*/
/*  cursor: pointer;*/
/*  transition: color 0.3s ease;*/
/*  z-index: 100;*/
/*  padding: 0.5rem;*/
/*  border-radius: 50%;*/
/*}*/

/*#theme-toggle:hover,*/
/*#theme-toggle:focus {*/
/*  color: var(--primary-dark);*/
/*  background: rgba(255, 255, 255, 0.2);*/
/*}*/

/* ===== Sections ===== */
/*section {*/
/*  margin-bottom: 6rem;*/
/*  scroll-margin-top: 2rem;*/
/*}*/

/*.section-title {*/
/*  font-size: clamp(2rem, 4vw, 2.5rem);*/
/*  font-weight: 700;*/
/*  margin-bottom: 3rem;*/
/*  color: var(--primary-color);*/
/*  text-align: center;*/
/*  letter-spacing: 1px;*/
/*}*/

/* ===== About Section ===== */
/*.about-content {*/
/*  max-width: 800px;*/
/*  margin: 0 auto;*/
/*}*/

/*.about-content p {*/
/*  font-size: 1.1rem;*/
/*  text-align: center;*/
/*  margin-bottom: 1.5rem;*/
/*  opacity: 0.9;*/
/*  line-height: 1.8;*/
/*}*/

/* ===== Projects Section ===== */
/*.projects-grid {*/
/*  display: grid;*/
/*  gap: 2rem;*/
/*  max-width: 800px;*/
/*  margin: 0 auto;*/
/*}*/

/*.project {*/
/*  background-color: var(--bg-dark-secondary);*/
/*  padding: 2.5rem;*/
/*  border-radius: 12px;*/
/*  box-shadow: 0 6px 12px var(--shadow-dark);*/
/*  transition: all 0.3s ease;*/
/*  border: 1px solid rgba(255, 255, 255, 0.1);*/
/*  position: relative;*/
/*}*/

/*.project:hover,*/
/*.project:focus {*/
/*  transform: translateY(-5px);*/
/*  box-shadow: 0 12px 24px rgba(29, 196, 233, 0.3);*/
/*}*/

/*.project-icon {*/
/*  font-size: 2.5rem;*/
/*  color: var(--primary-color);*/
/*  margin-bottom: 1rem;*/
/*}*/

/*.project h3 {*/
/*  font-size: 1.5rem;*/
/*  margin-bottom: 1rem;*/
/*  color: var(--primary-color);*/
/*  font-weight: 600;*/
/*}*/

/*.project p {*/
/*  font-size: 1rem;*/
/*  opacity: 0.85;*/
/*  margin-bottom: 1.5rem;*/
/*  line-height: 1.7;*/
/*}*/

/*.project-tech {*/
/*  display: flex;*/
/*  flex-wrap: wrap;*/
/*  gap: 0.5rem;*/
/*  margin-bottom: 1.5rem;*/
/*}*/

/*.project-tech span {*/
/*  background: rgba(29, 233, 182, 0.2);*/
/*  color: var(--primary-color);*/
/*  padding: 0.4rem 0.8rem;*/
/*  border-radius: 20px;*/
/*  font-size: 0.9rem;*/
/*  font-weight: 500;*/
/*}*/

/*.project-link {*/
/*  font-weight: 600;*/
/*  color: var(--primary-color);*/
/*  text-decoration: none;*/
/*  border-bottom: 2px solid transparent;*/
/*  transition: border-color 0.3s ease;*/
/*  display: inline-flex;*/
/*  align-items: center;*/
/*  gap: 0.5rem;*/
/*  padding: 0.5rem 0;*/
/*}*/

/*.project-link:hover,*/
/*.project-link:focus {*/
/*  border-color: var(--primary-color);*/
/*}*/

/* ===== Skills Section ===== */
/*.skills-grid {*/
/*  display: grid;*/
/*  gap: 2rem;*/
/*  max-width: 900px;*/
/*  margin: 0 auto;*/
/*}*/

/*.skill-category {*/
/*  background-color: var(--bg-dark-secondary);*/
/*  padding: 2rem;*/
/*  border-radius: 12px;*/
/*  border: 1px solid rgba(255, 255, 255, 0.1);*/
/*  transition: all 0.3s ease;*/
/*}*/

/*.skill-category:hover,*/
/*.skill-category:focus {*/
/*  transform: translateY(-3px);*/
/*  box-shadow: 0 8px 20px var(--shadow-dark);*/
/*}*/

/*.skill-category h3 {*/
/*  color: var(--primary-color);*/
/*  margin-bottom: 1.5rem;*/
/*  font-size: 1.3rem;*/
/*  font-weight: 600;*/
/*  text-align: center;*/
/*}*/

/*.skill-items {*/
/*  display: flex;*/
/*  flex-wrap: wrap;*/
/*  gap: 1rem;*/
/*  justify-content: center;*/
/*}*/

/*.skill-item {*/
/*  background: var(--primary-color);*/
/*  color: var(--text-dark);*/
/*  font-weight: 600;*/
/*  padding: 0.7rem 1.2rem;*/
/*  border-radius: 25px;*/
/*  font-size: 1rem;*/
/*  box-shadow: 0 4px 12px rgba(29, 233, 182, 0.3);*/
/*  transition: all 0.3s ease;*/
/*  cursor: default;*/
/*  border: 2px solid transparent;*/
/*}*/

/*.skill-item:hover,*/
/*.skill-item:focus {*/
/*  background: var(--primary-dark);*/
/*  transform: translateY(-2px);*/
/*  border-color: var(--text-dark);*/
/*}*/

/* ===== Contact Section ===== */
/*.contact-content {*/
/*  text-align: center;*/
/*  max-width: 600px;*/
/*  margin: 0 auto;*/
/*}*/

/*.contact-content > p {*/
/*  font-size: 1.2rem;*/
/*  margin-bottom: 2rem;*/
/*  opacity: 0.8;*/
/*}*/

/*.btn {*/
/*  display: inline-flex;*/
/*  align-items: center;*/
/*  gap: 0.5rem;*/
/*  background: var(--primary-color);*/
/*  color: var(--text-dark);*/
/*  font-weight: 600;*/
/*  padding: 1rem 2.5rem;*/
/*  border-radius: 30px;*/
/*  box-shadow: 0 6px 12px rgba(29, 233, 182, 0.4);*/
/*  transition: all 0.3s ease;*/
/*  text-decoration: none;*/
/*  font-size: 1.1rem;*/
/*  margin-bottom: 3rem;*/
/*  border: 2px solid transparent;*/
/*}*/

/*.btn:hover,*/
/*.btn:focus {*/
/*  background: var(--primary-dark);*/
/*  transform: translateY(-2px);*/
/*  box-shadow: 0 8px 16px rgba(29, 233, 182, 0.5);*/
/*  border-color: var(--text-dark);*/
/*}*/

/*.contact-info {*/
/*  display: flex;*/
/*  flex-direction: column;*/
/*  gap: 1rem;*/
/*  align-items: center;*/
/*}*/

/*.contact-item {*/
/*  display: flex;*/
/*  align-items: center;*/
/*  gap: 1rem;*/
/*  padding: 1rem 2rem;*/
/*  background: var(--bg-dark-secondary);*/
/*  border-radius: 10px;*/
/*  transition: all 0.3s ease;*/
/*  width: 100%;*/
/*  max-width: 300px;*/
/*  justify-content: flex-start;*/
/*}*/

/*.contact-item:hover,*/
/*.contact-item:focus {*/
/*  transform: translateX(5px);*/
/*  background: var(--bg-dark);*/
/*}*/

/*.contact-item i {*/
/*  color: var(--primary-color);*/
/*  font-size: 1.2rem;*/
/*  width: 20px;*/
/*  text-align: center;*/
/*}*/

/*.contact-item a {*/
/*  color: var(--text-light);*/
/*  text-decoration: none;*/
/*  transition: color 0.3s ease;*/
/*}*/

/*.contact-item a:hover,*/
/*.contact-item a:focus {*/
/*  color: var(--primary-color);*/
/*  outline: none;*/
/*}*/

/* ===== Footer ===== */
/*footer {*/
/*  text-align: center;*/
/*  padding: 3rem 1rem;*/
/*  background: var(--bg-dark-secondary);*/
/*  border-top: 1px solid rgba(255, 255, 255, 0.1);*/
/*}*/

/*footer p {*/
/*  margin-bottom: 0.5rem;*/
/*  opacity: 0.7;*/
/*}*/

/*.footer-built {*/
/*  font-size: 0.9rem;*/
/*  opacity: 0.5 !important;*/
/*}*/

/* ===== Light Mode ===== */
/*body.light-mode {*/
/*  background-color: var(--bg-light);*/
/*  color: var(--text-dark);*/
/*}*/

/*body.light-mode a {*/
/*  color: var(--primary-dark);*/
/*}*/

/*body.light-mode a:hover,*/
/*body.light-mode a:focus {*/
/*  color: var(--primary-color);*/
/*}*/

/*body.light-mode header.hero {*/
/*  background: linear-gradient(135deg, #80cbc4 0%, #4db6ac 100%);*/
/*  color: var(--text-light);*/
/*}*/

/*body.light-mode .social-links a {*/
/*  background: var(--text-dark);*/
/*  color: var(--bg-light);*/
/*}*/

/*body.light-mode #theme-toggle {*/
/*  color: var(--text-light);*/
/*}*/

/*body.light-mode #theme-toggle:hover,*/
/*body.light-mode #theme-toggle:focus {*/
/*  background: rgba(0, 0, 0, 0.2);*/
/*}*/

/*body.light-mode .project,*/
/*body.light-mode .skill-category,*/
/*body.light-mode .contact-item {*/
/*  background-color: var(--bg-light-secondary);*/
/*  border-color: rgba(0, 0, 0, 0.1);*/
/*}*/

/*body.light-mode .skill-item {*/
/*  background: #4db6ac;*/
/*  color: var(--text-light);*/
/*}*/

/*body.light-mode .project-tech span {*/
/*  background: rgba(77, 182, 172, 0.2);*/
/*  color: #00796b;*/
/*}*/

/*body.light-mode footer {*/
/*  background: var(--bg-light-secondary);*/
/*  border-top-color: rgba(0, 0, 0, 0.1);*/
/*}*/

/* ===== Print Styles ===== */
/*@media print {*/
/*  .social-links,*/
/*  #theme-toggle,*/
/*  .btn {*/
/*    display: none;*/
/*  }*/
  
/*  body {*/
/*    background: white !important;*/
/*    color: black !important;*/
/*  }*/
/*}*/

/* ===== Responsive Design ===== */
/*@media (max-width: 768px) {*/
/*  .container {*/
/*    padding: 0 1rem;*/
/*  }*/
  
/*  header.hero {*/
/*    padding: 6rem 1rem 4rem;*/
/*  }*/
  
/*  .section-title {*/
/*    font-size: 2rem;*/
/*  }*/
  
/*  .project {*/
/*    padding: 1.5rem;*/
/*  }*/
  
/*  .skills-grid {*/
/*    gap: 1.5rem;*/
/*  }*/
  
/*  .skill-category {*/
/*    padding: 1.5rem;*/
/*  }*/
  
/*  .social-links {*/
/*    gap: 1rem;*/
/*  }*/
  
/*  .social-links a {*/
/*    width: 45px;*/
/*    height: 45px;*/
/*    font-size: 1.3rem;*/
/*  }*/
  
/*  #theme-toggle {*/
/*    top: 1.5rem;*/
/*    right: 1.5rem;*/
/*    font-size: 1.3rem;*/
/*  }*/

/*  .contact-item {*/
/*    flex-direction: column;*/
/*    text-align: center;*/
/*    gap: 0.5rem;*/
/*    padding: 1rem;*/
/*  }*/
/*}*/

/*@media (max-width: 480px) {*/
/*  .project-tech {*/
/*    justify-content: center;*/
/*  }*/
  
/*  .skill-items {*/
/*    gap: 0.5rem;*/
/*  }*/
  
/*  .skill-item {*/
/*    padding: 0.5rem 1rem;*/
/*    font-size: 0.9rem;*/
/*  }*/
/*}*/



/* Reset & basics */
/** {*/
/*  margin: 0;*/
/*  padding: 0;*/
/*  box-sizing: border-box;*/
/*}*/

/*body {*/
/*  background-color: #121212;*/
/*  color: #e0e0e0;*/
/*  font-family: 'Inter', sans-serif;*/
/*  line-height: 1.6;*/
/*  -webkit-font-smoothing: antialiased;*/
/*  -moz-osx-font-smoothing: grayscale;*/
/*}*/

/*a {*/
/*  color: #80cbc4;*/
/*  text-decoration: none;*/
/*  transition: color 0.3s ease;*/
/*}*/

/*a:hover {*/
/*  color: #4db6ac;*/
/*}*/

/*.container {*/
/*  max-width: 900px;*/
/*  margin: 0 auto;*/
  /*padding: 2rem 1rem;*/
/*    padding: 6rem 1rem;*/

/*}*/

/*header.hero {*/
/*  text-align: center;*/
/*  padding: 8rem 1rem 4rem;*/
/*  background: linear-gradient(135deg, #1de9b6 0%, #1dc4e9 100%);*/
/*  color: #121212;*/
/*  border-radius: 3px;*/
/*  box-shadow: 0 12px 30px rgba(29, 196, 233, 0.4);*/
/*  margin-bottom: 4rem;*/
/*}*/

/*header.hero h1 {*/
/*  font-size: 3.8rem;*/
/*  font-weight: 700;*/
/*  margin-bottom: 0.5rem;*/
/*  letter-spacing: 2px;*/
/*}*/

/*header.hero .subtitle {*/
/*  font-size: 1.5rem;*/
/*  font-weight: 400;*/
/*  opacity: 0.85;*/
/*  margin-bottom: 2rem;*/
/*}*/

/*.social-links {*/
/*  display: flex;*/
/*  justify-content: center;*/
/*  gap: 1.5rem;*/
/*}*/

/*.social-links a {*/
/*  font-size: 1.8rem;*/
/*  color: #121212;*/
/*  background: white;*/
/*  width: 48px;*/
/*  height: 48px;*/
/*  display: flex;*/
/*  align-items: center;*/
/*  justify-content: center;*/
/*  border-radius: 50%;*/
/*  box-shadow: 0 4px 12px rgba(29, 196, 233, 0.4);*/
/*  transition: transform 0.3s ease, box-shadow 0.3s ease;*/
/*}*/

/*.social-links a:hover {*/
/*  transform: translateY(-5px);*/
/*  box-shadow: 0 8px 20px rgba(29, 196, 233, 0.7);*/
/*}*/

/*section {*/
/*  margin-bottom: 4rem;*/
/*}*/

/*h2 {*/
/*  font-size: 2.5rem;*/
/*  font-weight: 700;*/
/*  margin-bottom: 1.5rem;*/
/*  color: #80cbc4;*/
/*  text-align: center;*/
/*  letter-spacing: 1.5px;*/
/*}*/

/*.about p {*/
/*  max-width: 700px;*/
/*  margin: 0 auto;*/
/*  font-size: 1.125rem;*/
/*  text-align: center;*/
/*  opacity: 0.8;*/
/*}*/

/*.skills ul.skill-list {*/
/*  list-style: none;*/
/*  display: flex;*/
/*  flex-wrap: wrap;*/
/*  justify-content: center;*/
/*  gap: 1rem;*/
/*}*/

/*.skills li {*/
/*  background: #1de9b6;*/
/*  color: #121212;*/
/*  font-weight: 600;*/
/*  padding: 0.7rem 1.2rem;*/
/*  border-radius: 24px;*/
/*  font-size: 1rem;*/
/*  box-shadow: 0 4px 12px rgba(29, 233, 182, 0.5);*/
/*  transition: background 0.3s ease;*/
/*}*/

/*.skills li:hover {*/
/*  background: #14bfa0;*/
/*  cursor: default;*/
/*}*/

/*.project {*/
/*  background-color: #1e1e1e;*/
/*  padding: 1.8rem 2rem;*/
/*  border-radius: 10px;*/
/*  box-shadow: 0 6px 12px rgba(0,0,0,0.4);*/
/*  transition: box-shadow 0.3s ease;*/
/*  margin-bottom: 2rem;*/
/*}*/

/*.project:hover {*/
/*  box-shadow: 0 10px 24px rgba(29, 196, 233, 0.7);*/
/*}*/

/*.project h3 {*/
/*  margin-bottom: 0.75rem;*/
/*  color: #1de9b6;*/
/*  font-weight: 700;*/
/*}*/

/*.project p {*/
/*  font-size: 1rem;*/
/*  opacity: 0.85;*/
/*  margin-bottom: 1rem;*/
/*}*/

/*.project a {*/
/*  font-weight: 600;*/
/*  color: #80cbc4;*/
/*  border-bottom: 1px solid transparent;*/
/*  transition: border-color 0.3s ease;*/
/*}*/

/*.project a:hover {*/
/*  border-color: #1de9b6;*/
/*}*/

/*.contact {*/
/*  text-align: center;*/
/*}*/

/*.contact p {*/
/*  font-size: 1.2rem;*/
/*  margin-bottom: 1rem;*/
/*  opacity: 0.75;*/
/*}*/

/*.btn {*/
/*  display: inline-block;*/
/*  background: #1de9b6;*/
/*  color: #121212;*/
/*  font-weight: 700;*/
/*  padding: 0.75rem 2rem;*/
/*  border-radius: 30px;*/
/*  box-shadow: 0 6px 12px rgba(29, 233, 182, 0.7);*/
/*  transition: background 0.3s ease;*/
/*  cursor: pointer;*/
/*  text-decoration: none;*/
/*  font-size: 1.1rem;*/
/*}*/

/*.btn:hover {*/
/*  background: #14bfa0;*/
/*}*/

/*footer {*/
/*  text-align: center;*/
/*  padding: 2rem 1rem;*/
/*  font-size: 0.9rem;*/
/*  color: #666;*/
/*  opacity: 0.7;*/
/*  border-top: 1px solid #222;*/
/*}*/

/*@media (max-width: 600px) {*/
/*  header.hero h1 {*/
/*    font-size: 2.8rem;*/
/*  }*/
/*  header.hero .subtitle {*/
/*    font-size: 1.1rem;*/
/*  }*/
/*  .skills ul.skill-list {*/
/*    flex-direction: column;*/
/*    gap: 0.8rem;*/
/*    align-items: center;*/
/*  }*/
/*}*/




/*#theme-toggle {*/
/*  position: absolute;*/
/*  top: 1.5rem;*/
/*  right: 1.5rem;*/
/*  background: transparent;*/
/*  border: none;*/
/*  color: #121212;*/
/*  font-size: 1.6rem;*/
/*  cursor: pointer;*/
/*  transition: color 0.3s ease;*/
/*  z-index: 100;*/
/*}*/

/*#theme-toggle:hover {*/
/*  color: #4db6ac;*/
/*}*/

/*body.light-mode {*/
/*  background-color: #f5f5f5;*/
/*  color: #121212;*/
/*}*/

/*body.light-mode a {*/
/*  color: #00796b;*/
/*}*/

/*body.light-mode a:hover {*/
/*  color: #004d40;*/
/*}*/

/*body.light-mode header.hero {*/
/*  background: linear-gradient(135deg, #80cbc4 0%, #4db6ac 100%);*/
/*  color: #f5f5f5;*/
/*  box-shadow: 0 12px 30px rgba(77, 182, 172, 0.5);*/
/*}*/

/*body.light-mode .social-links a {*/
/*  background: #121212;*/
/*  color: #f5f5f5;*/
/*  box-shadow: 0 4px 12px rgba(0,0,0,0.3);*/
/*}*/

/*body.light-mode .social-links a:hover {*/
/*  box-shadow: 0 8px 20px rgba(77, 182, 172, 0.7);*/
/*}*/

/*body.light-mode .skills li {*/
/*  background: #4db6ac;*/
/*  color: #f5f5f5;*/
/*  box-shadow: 0 4px 12px rgba(77, 182, 172, 0.5);*/
/*}*/

/*body.light-mode .skills li:hover {*/
/*  background: #00796b;*/
/*}*/

/*body.light-mode .project {*/
/*  background-color: #e0e0e0;*/
/*  color: #121212;*/
/*  box-shadow: 0 6px 12px rgba(0,0,0,0.15);*/
/*}*/

/*body.light-mode .project:hover {*/
/*  box-shadow: 0 10px 24px rgba(77, 182, 172, 0.7);*/
/*}*/

/*body.light-mode .btn {*/
/*  background: #4db6ac;*/
/*  color: #f5f5f5;*/
/*  box-shadow: 0 6px 12px rgba(77, 182, 172, 0.7);*/
/*}*/

/*body.light-mode .btn:hover {*/
/*  background: #00796b;*/
/*}*/

/*body.light-mode footer {*/
/*  color: #999;*/
/*  border-top: 1px solid #ccc;*/
/*}*/

/*body.light-mode #theme-toggle {*/
/*  color: #f5f5f5;*/
/*}*/





/* style.css 
 
:root {
  --primary-color: #6366f1; 
  --bg-color: #f9fafb;      
  --text-color: #1f2937;     
  --accent-color: #ffffff;   
  --link-hover: #e0e7ff;     
  --card-color: #f3f4f6;
  --shadow-color: rgba(0, 0, 0, 0.05);
  --font-main: 'Poppins', sans-serif;
}

body.dark {
  --bg-color: #0f172a;
  --text-color: #e2e8f0;
  --accent-color: #1e293b;
  --link-hover: #334155;
  --card-color: #1e293b;
  --shadow-color: rgba(255, 255, 255, 0.05);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--font-main);
}

body {
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
  transition: background-color 0.3s, color 0.3s;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem;
}

.hero {
  background: linear-gradient(to right, #4f46e5, var(--primary-color));
  color: white;
  text-align: center;
  padding: 6rem 2rem 4rem;
  border-radius: 0 0 30px 30px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.hero h1 {
  font-size: 3.2rem;
  margin-bottom: 1rem;
  font-weight: 700;
  animation: fadeInUp 1s forwards;
  opacity: 0;
  transform: translateY(-20px);
}

.hero h2 {
  font-size: 1.75rem;
  font-weight: 400;
  margin-bottom: 1rem;
  animation: fadeInUp 1s 0.3s forwards;
  opacity: 0;
  transform: translateY(-20px);
}

.hero p {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 2rem;
  animation: fadeInUp 1s 0.6s forwards;
  opacity: 0;
  transform: translateY(-20px);
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.social-links a {
  background: var(--accent-color);
  color: var(--primary-color);
  padding: 0.7rem 1.5rem;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px var(--shadow-color);
}

.social-links a:hover {
  background-color: var(--link-hover);
  transform: scale(1.05);
}

section {
  padding: 4rem 2rem;
  background-color: var(--card-color);
  margin-bottom: 2rem;
  border-radius: 20px;
  box-shadow: 0 4px 8px var(--shadow-color);
  transition: background-color 0.3s;
}

h2 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  font-size: 2.2rem;
  text-align: center;
  font-weight: 600;
}

.skills ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  padding: 0;
}

.skills li {
  background-color: var(--accent-color);
  padding: 1.5rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 2px 6px var(--shadow-color);
  transition: background-color 0.3s, transform 0.3s;
}

.skills li:hover {
  transform: translateY(-5px);
}

.project {
  background-color: var(--accent-color);
  padding: 1.5rem;
  margin-bottom: 1rem;
  border-left: 5px solid var(--primary-color);
  border-radius: 10px;
  box-shadow: 0 2px 6px var(--shadow-color);
  transition: background-color 0.3s, transform 0.3s;
}

.project:hover {
  transform: scale(1.02);
}

.contact a {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
}

footer {
  text-align: center;
  padding: 2rem;
  background-color: #f1f5f9;
  font-size: 0.9rem;
  color: #64748b;
  transition: background-color 0.3s, color 0.3s;
}

body.dark footer {
  background-color: #0f172a;
  color: #94a3b8;
}

.theme-toggle, .language-toggle {
  position: fixed;
  top: 1rem;
  right: 1rem;
  background: var(--accent-color);
  border: none;
  padding: 0.5rem 1rem;
  cursor: pointer;
  z-index: 1000;
  border-radius: 8px;
  font-weight: bold;
  box-shadow: 0 2px 6px var(--shadow-color);
  transition: background-color 0.3s;
} 

.language-toggle {
  right: 7rem;
}

.theme-toggle:hover, .language-toggle:hover {
  background-color: var(--link-hover);
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.4rem;
  }

  .hero h2 {
    font-size: 1.3rem;
  }

  .social-links a {
    padding: 0.5rem 1.2rem;
    font-size: 0.9rem;
  }
}

*/



/* style.css

:root {
  --primary-color: #2a5298;
  --bg-color: #f4f7fa;
  --text-color: #333;
  --accent-color: #ffffff;
  --link-hover: #dcdcdc;
}

body.dark {
  --bg-color: #1e1e1e;
  --text-color: #f4f4f4;
  --accent-color: #333;
  --link-hover: #444;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
  transition: background-color 0.3s, color 0.3s;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem;
}

.hero {
  background: linear-gradient(to right, #1e3c72, var(--primary-color));
  color: white;
  text-align: center;
  padding: 6rem 2rem 4rem;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(-20px);
  animation: fadeInUp 1s forwards;
}

.hero h2 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  font-weight: normal;
  opacity: 0;
  transform: translateY(-20px);
  animation: fadeInUp 1s 0.3s forwards;
}

.hero p {
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto 2rem;
  opacity: 0;
  transform: translateY(-20px);
  animation: fadeInUp 1s 0.6s forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.social-links a {
  background: var(--accent-color);
  color: var(--primary-color);
  padding: 0.7rem 1.5rem;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.social-links a:hover {
  background-color: var(--link-hover);
  transform: scale(1.05);
}

section {
  padding: 4rem 2rem;
  background-color: white;
  margin-bottom: 2rem;
  transition: background-color 0.3s;
}

body.dark section {
  background-color: #2c2c2c;
}

h2 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  font-size: 2rem;
  text-align: center;
}

.skills ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  padding: 0;
}

.skills li {
  background-color: #f2f2f2;
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: background-color 0.3s;
}

body.dark .skills li {
  background-color: #3a3a3a;
}

.project {
  background-color: #f9f9f9;
  padding: 1.5rem;
  margin-bottom: 1rem;
  border-left: 5px solid var(--primary-color);
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  transition: background-color 0.3s;
}

body.dark .project {
  background-color: #2a2a2a;
}

.contact a {
  color: var(--primary-color);
  font-weight: bold;
  text-decoration: none;
}

footer {
  text-align: center;
  padding: 2rem;
  background-color: #eaeaea;
  font-size: 0.9rem;
  color: #666;
  transition: background-color 0.3s, color 0.3s;
}

body.dark footer {
  background-color: #1e1e1e;
  color: #aaa;
}


.theme-toggle, .language-toggle {
  position: fixed;
  top: 1rem;
  right: 1rem;
  background: var(--accent-color);
  border: none;
  padding: 0.5rem 1rem;
  cursor: pointer;
  z-index: 1000;
  border-radius: 5px;
  font-weight: bold;
  margin-left: 0.5rem;
}

.language-toggle {
  right: 7rem;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .hero h2 {
    font-size: 1.3rem;
  }

  .social-links a {
    padding: 0.5rem 1.2rem;
    font-size: 0.9rem;
  }
} */



/* style.css

:root {
  --primary-color: #2a5298;
  --bg-color: #f4f7fa;
  --text-color: #333;
  --accent-color: #ffffff;
  --link-hover: #dcdcdc;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem;
}

.hero {
  background: linear-gradient(to right, #1e3c72, var(--primary-color));
  color: white;
  text-align: center;
  padding: 6rem 2rem 4rem;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero h2 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  font-weight: normal;
}

.hero p {
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.social-links a {
  background: var(--accent-color);
  color: var(--primary-color);
  padding: 0.7rem 1.5rem;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.social-links a:hover {
  background-color: var(--link-hover);
  transform: scale(1.05);
}

section {
  padding: 4rem 2rem;
  background-color: white;
  margin-bottom: 2rem;
}

h2 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  font-size: 2rem;
  text-align: center;
}

.skills ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  padding: 0;
}

.skills li {
  background-color: #f2f2f2;
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.project {
  background-color: #f9f9f9;
  padding: 1.5rem;
  margin-bottom: 1rem;
  border-left: 5px solid var(--primary-color);
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.contact a {
  color: var(--primary-color);
  font-weight: bold;
  text-decoration: none;
}

footer {
  text-align: center;
  padding: 2rem;
  background-color: #eaeaea;
  font-size: 0.9rem;
  color: #666;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .hero h2 {
    font-size: 1.3rem;
  }

  .social-links a {
    padding: 0.5rem 1.2rem;
    font-size: 0.9rem;
  }
} */