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

html {
  background-color: #0a0e1a;
}

body {
  color: #ffffff;
  font-family: 'Kode Mono', monospace;
  line-height: 1.6;
  padding: 20px;
  max-width: 1400px;
  margin: 0 auto;
}

.navbar {
  display: flex;
  justify-content: center;
  padding: 20px 0;
  margin-bottom: 60px;
}

.nav-links {
  display: flex;
  gap: 100px;
}

.nav-link {
  color: #6b7280;
  text-decoration: none;
  font-size: 20px;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: #ffffff;
}

.hero {
  margin-bottom: 100px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
}

.text-content {
  flex: 1;
  max-width: 600px;
}

.hero-title {
  font-size: 37px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.hero-subtitle {
  font-size: 15px;
  margin-bottom: 10px;
  color: #e5e7eb;
  font-family: 'ABeeZee', sans-serif;
  font-weight: bold;
}

.hero-description {
  font-size: 14px;
  color: #9ca3af;
  margin-bottom: 20px;
  line-height: 1.8;
  font-family: 'ABeeZee', sans-serif;
}

.buttons-container {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 40px;
}

.btn-resume {
  background-color: transparent;
  border: 1px solid #4b5563;
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 4px;
  cursor: pointer;
  font-family: 'Kode Mono', monospace;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.btn-resume:hover {
  border-color: #22d3ee;
  color: #22d3ee;
}

.social-icons {
  display: flex;
  gap: 20px;
}

.social-icon {
  color: #6b7280;
  font-size: 20px;
  transition: color 0.3s ease;
  text-decoration: none;
}

.social-icon:hover {
  color: #22d3ee;
}

.profile-image {
  flex-shrink: 0;
}

.image-placeholder {
  width: 300px;
  height: 400px;
  background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b7280;
}

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

.all-projects-section {
  max-width: 1200px;
  margin: 0 auto 100px auto;
  padding: 0 20px;
}

.page-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.back-link {
  position: absolute;
  left: 0;
  top: 0;
  color: #22d3ee;
  text-decoration: none;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.back-link:hover {
  gap: 12px;
  color: #67e8f9;
}

.page-title {
  font-size: 48px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
  font-family: 'Kode Mono', monospace;
}

.page-subtitle {
  font-size: 16px;
  color: #9ca3af;
  font-family: 'ABeeZee', sans-serif;
}

.all-projects-section .projects-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.projects-section {
  margin: 0 auto 100px auto;
  max-width: 800px;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  font-family: 'Kode Mono', monospace;
}

.view-more {
  color: #22d3ee;
  text-decoration: none;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.view-more:hover {
  gap: 12px;
  color: #67e8f9;
}

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

.project-card {
  background-color: rgba(31, 41, 55, 0.3);
  border: 1px solid #1f2937;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.project-card:hover {
  border-color: #374151;
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.project-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background-color: #1f2937;
}

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

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

.project-info {
  padding: 25px;
}

.project-title {
  font-size: 22px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 12px;
  font-family: 'Aldrich', sans-serif;
}

.project-description {
  font-size: 14px;
  color: #9ca3af;
  margin-bottom: 20px;
  line-height: 1.6;
  font-family: 'ABeeZee', sans-serif;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.tag {
  background-color: rgba(55, 65, 81, 0.8);
  color: #d1d5db;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 500;
  font-family: 'Kode Mono', monospace;
  transition: all 0.3s ease;
}

.tag:hover {
  background-color: rgba(34, 211, 238, 0.2);
  color: #22d3ee;
}

.project-links {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.project-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background-color: transparent;
  border: 1px solid #374151;
  border-radius: 6px;
  color: #9ca3af;
  text-decoration: none;
  font-size: 13px;
  transition: all 0.3s ease;
}

.project-link:hover {
  border-color: #22d3ee;
  color: #22d3ee;
  background-color: rgba(34, 211, 238, 0.1);
}

.tabs-section {
  max-width: 800px;
  margin: 0 auto 100px auto;
}

.tabs {
  display: flex;
  gap: 2px;
  margin-bottom: 40px;
}

.tab-btn {
  flex: 1;
  padding: 15px 30px;
  background-color: transparent;
  border: 1px solid #1f2937;
  color: #6b7280;
  font-family: 'Aldrich', monospace;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 4px;
}

.tab-btn:hover {
  background-color: #1f2937;
  color: #ffffff;
}

.tab-btn.active {
  background-color: transparent;
  border-color: #22d3ee;
  color: #ffffff;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.timeline-item {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
  padding: 20px;
  background-color: rgba(31, 41, 55, 0.3);
  border-radius: 8px;
  border: 1px solid #1f2937;
  transition: all 0.3s ease;
}

.timeline-item:hover {
  border-color: #374151;
  background-color: rgba(31, 41, 55, 0.5);
}

.timeline-logo {
  flex-shrink: 0;
}

.logo-placeholder,
.logo-box {
  width: 60px;
  height: 60px;
  background-color: #374151;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
  color: #9ca3af;
  border-radius: 50%;
  overflow: hidden;
}

.logo-box {
  background: transparent;
  color: #ffffff;
  font-size: 14px;
  overflow: hidden;
  padding: 5px;
}

.logo-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.timeline-details {
  flex: 1;
}

.timeline-date {
  font-size: 12px;
  color: #6b7280;
  margin-bottom: 8px;
}

.timeline-title {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 4px;
  color: #ffffff;
  font-family: 'Aldrich', sans-serif;
}

.timeline-role {
  font-size: 14px;
  color: #9ca3af;
}

@media (max-width: 968px) {
  .hero-content {
    flex-direction: column;
  }

  .profile-image {
    order: -1;
    align-self: center;
  }

  .nav-links {
    gap: 40px;
  }

  .hero-title {
    font-size: 36px;
  }

  .all-projects-section .projects-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .nav-links {
    gap: 20px;
  }

  .nav-link {
    font-size: 12px;
  }

  .hero-title {
    font-size: 28px;
  }

  .image-placeholder {
    width: 250px;
    height: 330px;
  }

  .buttons-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

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

  .section-title {
    font-size: 24px;
  }
}

.contact-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(10, 14, 26, 0.98);
  z-index: 1000;
  overflow-y: auto;
  padding: 40px 20px;
}

.contact-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-content {
  background-color: #0a0e1a;
  max-width: 700px;
  width: 100%;
  position: relative;
  padding: 60px 40px 40px;
}

.close-modal {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  color: #6b7280;
  font-size: 40px;
  cursor: pointer;
  transition: color 0.3s ease;
  line-height: 1;
}

.close-modal:hover {
  color: #22d3ee;
}

.contact-title {
  font-size: 48px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 40px;
  font-family: 'Kode Mono', monospace;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-input,
.form-textarea {
  background-color: transparent;
  border: 1px solid #374151;
  border-radius: 8px;
  padding: 15px;
  color: #ffffff;
  font-family: 'Kode Mono', monospace;
  font-size: 14px;
  transition: border-color 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: #22d3ee;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: #6b7280;
}

.form-textarea {
  min-height: 150px;
  resize: vertical;
}

.send-btn {
  background-color: #374151;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  padding: 15px 30px;
  font-family: 'Kode Mono', monospace;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.send-btn:hover {
  background-color: #22d3ee;
  transform: translateY(-2px);
}

.form-footer {
  font-size: 12px;
  color: #6b7280;
  text-align: left;
  margin-top: 10px;
}

.privacy-link {
  color: #22d3ee;
  text-decoration: none;
  transition: color 0.3s ease;
}

.privacy-link:hover {
  color: #67e8f9;
}

.footer-icons {
  display: flex;
  gap: 20px;
}

.footer-icon {
  color: #6b7280;
  font-size: 18px;
  transition: color 0.3s ease;
  text-decoration: none;
}

.footer-icon:hover {
  color: #22d3ee;
}

.Home-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 60px auto 0 auto;
  padding: 30px 20px 0 20px;
  max-width: 800px;
  font-size: 13px;
  color: #6b7280;
}

.privacy-section {
  max-width: 800px;
  margin: 0 auto 100px auto;
  padding: 0 20px;
}

.privacy-container {
  padding: 40px 0;
}

.privacy-title {
  font-size: 48px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
  font-family: 'Kode Mono', monospace;
}

.privacy-updated {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 40px;
  font-family: 'ABeeZee', sans-serif;
}

.privacy-content {
  line-height: 1.8;
}

.privacy-heading {
  font-size: 24px;
  font-weight: 600;
  color: #ffffff;
  margin-top: 40px;
  margin-bottom: 15px;
  font-family: 'Aldrich', sans-serif;
}

.privacy-subheading {
  font-size: 18px;
  font-weight: 500;
  color: #22d3ee;
  margin-top: 25px;
  margin-bottom: 12px;
  font-family: 'Kode Mono', monospace;
}

.privacy-text {
  font-size: 15px;
  color: #9ca3af;
  margin-bottom: 20px;
  font-family: 'ABeeZee', sans-serif;
}

.privacy-list {
  list-style-position: inside;
  margin-bottom: 20px;
  color: #9ca3af;
  font-family: 'ABeeZee', sans-serif;
  font-size: 15px;
}

.privacy-list li {
  margin-bottom: 8px;
  padding-left: 10px;
}

.contact-page-section {
  max-width: 800px;
  margin: 0 auto 100px auto;
  padding: 0 20px;
}

.contact-page-content {
  margin-top: 40px;
}

@media (max-width: 640px) {
  .contact-content {
    padding: 40px 20px;
  }

  .contact-title {
    font-size: 32px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-footer {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}