* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  background: linear-gradient(135deg, #e0f2fe 0%, #0ea5e9 50%, #0284c7 100%);
  color: #1e293b;
  min-height: 100vh;
  overflow-x: hidden;
  font-size: 14px;
  line-height: 1.6;
}

/* Screen Management */
.screen {
  display: none;
  min-height: 100vh;
}

.screen.active {
  display: block;
}

#workScreen {
  height: 100vh;
  overflow: auto;
}

/* Landing Page Styles */
#landingPage {
  background: linear-gradient(135deg, #e0f2fe 0%, #0ea5e9 50%, #0284c7 100%);
  min-height: 100vh;
  overflow-y: auto;
  overflow-x: hidden;
  animation: fadeIn 0.5s ease-in;
  position: relative;
}

#landingPage::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #e0f2fe 0%, #0ea5e9 50%, #0284c7 100%);
  pointer-events: none;
  z-index: 0;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Navigation Bar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 0 1.5rem;
  height: 60px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(14, 165, 233, 0.2);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.nav-container {
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-name {
  display: flex;
  align-items: center;
}

.nav-logo {
  height: 45px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease, filter 0.3s ease;
  filter: drop-shadow(0 2px 6px rgba(2, 132, 199, 0.2));
}

.nav-logo:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 4px 12px rgba(0, 255, 136, 0.5));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-link {
  color: #475569;
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 500;
  transition: color 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.nav-link:hover,
.nav-link.active {
  color: #0284c7;
}

.nav-resume-btn {
  background: #0284c7;
  color: #ffffff;
  border: none;
  padding: 0.4rem 0.85rem;
  border-radius: 5px;
  font-size: 0.7rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
  text-decoration: none;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 6px rgba(2, 132, 199, 0.25);
}

.nav-resume-btn:hover {
  background: #0369a1;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.4);
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  padding: 0 2rem;
  padding-top: 80px;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-main {
  width: 100%;
}

.hero-header {
  margin-bottom: 2.5rem;
}

.hero-title-wrapper {
  position: relative;
}

.hero-subtitle {
  font-size: 0.7rem;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.hero-title {
  font-size: clamp(1.75rem, 4.5vw, 3rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
  position: relative;
}

.hero-title-secondary {
  font-size: 0.7em;
  font-weight: 600;
  display: block;
  text-align: center;
  margin-top: 0.5rem;
}

.k8s-icon {
  font-size: 1.2em;
  color: #00d9ff;
  display: inline-block;
  margin-right: 0.5rem;
  filter: drop-shadow(0 0 10px rgba(0, 217, 255, 0.5));
}

.hero-description {
  font-size: 0.85rem;
  line-height: 1.5;
  color: #475569;
  margin-bottom: 1.5rem;
  font-weight: 400;
  max-width: 550px;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-btn {
  padding: 0.6rem 1.25rem;
  border: none;
  background: #ffffff;
  color: #0284c7;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 5px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.hero-btn.primary {
  background: #0284c7;
  color: #ffffff;
}

.hero-btn.primary:hover {
  background: #0369a1;
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.4);
  transform: translateY(-2px);
}

.hero-btn.secondary {
  background: #ffffff;
  color: #0284c7;
}

.hero-btn.secondary:hover {
  background: #f1f5f9;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

/* Tech Sections */
.tech-sections {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  margin-top: 4rem;
}

.tech-section {
  background: #ffffff;
  border: none;
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.section-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

/* Tech Radar */
.tech-radar-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.radar-circle {
  width: 400px;
  height: 400px;
  border: 2px solid rgba(0, 217, 255, 0.3);
  border-radius: 50%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(
    circle,
    rgba(0, 217, 255, 0.1) 0%,
    transparent 70%
  );
}

.radar-center {
  font-size: 2rem;
  color: #00d9ff;
  font-weight: 700;
}

.tech-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.tech-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  padding: 1rem;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

.tech-card h3 {
  color: #0f172a;
  font-size: 0.85rem;
  margin-bottom: 0.6rem;
  font-weight: 600;
}

.tech-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 0.75rem;
}

.tech-card li {
  color: #475569;
  margin-bottom: 0.4rem;
  font-size: 0.8rem;
}

.progress-bar {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 1rem;
}

.progress-fill {
  height: 100%;
  width: 60%;
  background: linear-gradient(90deg, #0284c7, #0ea5e9);
  box-shadow: 0 2px 4px rgba(2, 132, 199, 0.3);
}

.card-footer {
  color: #888;
  font-size: 0.85rem;
  margin-top: 1rem;
}

/* Case Studies Grid */
.case-studies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.case-study-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 1.25rem;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.case-study-card:hover {
  transform: translateY(-4px);
  border-color: #0284c7;
  box-shadow: 0 8px 24px rgba(2, 132, 199, 0.2);
}

.card-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 10px rgba(0, 217, 255, 0.5));
}

.case-study-card h3 {
  color: #0f172a;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.case-study-card p {
  color: #64748b;
  font-size: 0.75rem;
  line-height: 1.5;
}

/* Gen AI Section */
.genai-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.code-snippet {
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(0, 255, 136, 0.3);
  border-radius: 6px;
  padding: 1.5rem;
  font-family: "Courier New", monospace;
}

.code-snippet pre {
  margin: 0;
  color: #00ff88;
  font-size: 0.9rem;
}

.architect-toggle {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 255, 136, 0.2);
  border-radius: 6px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.architect-toggle span {
  color: #ffffff;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.toggle-switch {
  width: 80px;
  height: 30px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  position: relative;
  border: 1px solid rgba(0, 255, 136, 0.3);
}

.toggle-handle {
  width: 24px;
  height: 24px;
  background: #00ff88;
  border-radius: 50%;
  position: absolute;
  right: 3px;
  top: 50%;
  transform: translateY(-50%);
  box-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.brain-icon {
  font-size: 4rem;
  text-align: center;
  filter: drop-shadow(0 0 20px rgba(0, 217, 255, 0.6));
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.05);
  }
}

/* Responsive adjustments for tech dashboard */
@media (max-width: 1200px) {
  .tech-radar-container {
    grid-template-columns: 1fr;
  }

  .radar-circle {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }

  .genai-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 0 1.5rem;
    padding-top: 100px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-btn {
    width: 100%;
  }

  .tech-section {
    padding: 1.5rem;
  }

  .case-studies-grid {
    grid-template-columns: 1fr;
  }

  .radar-circle {
    width: 300px;
    height: 300px;
  }
}

/* Login Container */
.login-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 2rem;
  background: linear-gradient(135deg, #e0f2fe 0%, #0ea5e9 50%, #0284c7 100%);
  position: relative;
}

.login-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #e0f2fe 0%, #0ea5e9 50%, #0284c7 100%);
  opacity: 1;
}

.login-card {
  background: rgba(255, 255, 255, 0.98);
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  max-width: 450px;
  width: 100%;
  position: relative;
  z-index: 1;
}

.login-title {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #0f172a;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Form Styles */
.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: #333;
  font-weight: 500;
}

.required {
  color: #e74c3c;
}

.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.input-icon {
  position: absolute;
  left: 1rem;
  pointer-events: none;
}

input[type="email"],
input[type="text"] {
  width: 100%;
  padding: 0.75rem 1rem 0.75rem 2.5rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

input[type="text"]#code {
  padding-left: 1rem;
  text-align: center;
  font-size: 1.5rem;
  letter-spacing: 0.5rem;
}

input:focus {
  outline: none;
  border-color: #1a237e;
}

/* Buttons */
.btn-primary {
  width: 100%;
  padding: 0.6rem;
  background: #0284c7;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  margin-bottom: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 6px rgba(2, 132, 199, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.4);
  background: #0369a1;
}

.btn-primary:active {
  transform: translateY(0);
}

.login-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.login-buttons .btn-primary {
  flex: 1;
  min-width: 120px;
  margin-bottom: 0;
}

.login-buttons .btn-secondary {
  flex: 1;
  min-width: 120px;
}

.btn-secondary {
  width: 100%;
  padding: 0.6rem;
  background: transparent;
  color: #0284c7;
  border: 2px solid #0284c7;
  border-radius: 5px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-secondary:hover {
  background: #0284c7;
  color: white;
}

/* Messages */
.error-message {
  color: #e74c3c;
  font-size: 0.9rem;
  margin-top: 0.5rem;
  display: none;
}

.error-message.show {
  display: block;
}

.success-message {
  color: #27ae60;
  font-size: 0.9rem;
  margin-top: 0.5rem;
  display: none;
}

.success-message.show {
  display: block;
}

.info-message {
  background: rgba(26, 35, 126, 0.1);
  color: #0a1929;
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  border-left: 3px solid #1a237e;
}

/* Main Projects Container */
.main-container {
  padding: 2rem;
  max-width: 1400px;
  margin: 0 auto;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: linear-gradient(135deg, #e0f2fe 0%, #0ea5e9 50%, #0284c7 100%);
}

.header-section {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  padding: 2rem 0;
}

.main-title {
  font-size: 2rem;
  color: #0f172a;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
}

.subtitle {
  color: #475569;
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.logout-btn {
  position: absolute;
  top: 0;
  right: 0;
  padding: 0.75rem 2rem;
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.logout-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #1a237e;
  color: #1a237e;
}

/* Projects Grid */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  flex: 1;
}

/* Project Wrapper - contains card and button */
.project-wrapper {
  display: flex;
  flex-direction: column;
}

.project-card {
  background: #ffffff;
  padding: 1.25rem;
  border-radius: 8px;
  color: #0f172a;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e2e8f0;
  text-align: left;
}

.project-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(2, 132, 199, 0.2);
  border-color: #0284c7;
}

.project-wrapper:hover .project-link {
  background: #0369a1;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.4);
}

.project-title {
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #0f172a;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  line-height: 1.4;
  text-align: left;
  flex-shrink: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.project-description {
  font-size: 0.75rem;
  color: #64748b;
  margin-bottom: 0;
  flex-grow: 1;
  line-height: 1.5;
  text-align: left;
  flex-shrink: 1;
}

.project-link {
  background: #0284c7;
  padding: 0.5rem 0.85rem;
  border-radius: 5px;
  text-decoration: none;
  color: white;
  font-weight: 600;
  text-align: center;
  display: block;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.7rem;
  margin-top: 0.75rem;
  width: 100%;
  box-shadow: 0 2px 6px rgba(2, 132, 199, 0.25);
}

.project-link:hover {
  background: #0369a1;
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.4);
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-section {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 0 2rem;
    padding-top: 100px;
  }

  .hero-right {
    order: -1;
    justify-content: center;
  }

  .hero-image-frame {
    width: 300px;
    height: 400px;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 0 1.5rem;
    height: 70px;
  }

  .nav-name {
    font-size: 1rem;
  }

  .nav-links {
    gap: 1rem;
  }

  .nav-link {
    font-size: 0.75rem;
  }

  .nav-resume-btn {
    padding: 0.5rem 0.8rem;
    font-size: 0.7rem;
  }

  .hero-section {
    padding: 0 1.5rem;
    padding-top: 90px;
    gap: 2rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-tagline {
    font-size: 1rem;
  }

  .hero-image-frame {
    width: 250px;
    height: 320px;
  }

  .cta-button {
    padding: 0.875rem 1.5rem;
    font-size: 0.75rem;
  }

  .projects-grid {
    grid-template-columns: 1fr;
  }

  .main-title {
    font-size: 2rem;
    letter-spacing: 1px;
  }

  .logout-btn {
    position: static;
    margin-top: 1rem;
    width: 100%;
  }

  .header-section {
    text-align: center;
    padding: 1rem 0;
  }

  .login-container::before {
    opacity: 0.2;
  }
}

@media (max-width: 480px) {
  .nav-links {
    gap: 0.5rem;
  }

  .nav-link {
    font-size: 0.7rem;
  }

  .nav-resume-btn {
    padding: 0.5rem 0.75rem;
    font-size: 0.7rem;
  }
}

/* Not Implemented Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  animation: fadeIn 0.3s ease-in;
}

.modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 0;
  max-width: 480px;
  width: 90%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  animation: slideDown 0.3s ease-out;
  overflow: hidden;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-header {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid #e2e8f0;
  background: #f8fafc;
}

.modal-header h2 {
  margin: 0;
  color: #0f172a;
  font-size: 1.1rem;
  font-weight: 700;
}

.modal-body {
  padding: 1.25rem;
  color: #475569;
  font-size: 0.8rem;
  line-height: 1.5;
}

.modal-body p {
  margin: 0;
  color: #64748b;
}

.modal-footer {
  padding: 1rem 1.25rem;
  border-top: 1px solid #e2e8f0;
  display: flex;
  justify-content: flex-end;
  background: #f8fafc;
}

.modal-ok-btn {
  background: #0284c7;
  color: #ffffff;
  border: none;
  padding: 0.55rem 1.25rem;
  border-radius: 5px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(2, 132, 199, 0.25);
}

.modal-ok-btn:hover {
  background: #0369a1;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.4);
}

.modal-ok-btn:active {
  transform: translateY(0);
}

@media (max-width: 768px) {
  .modal-content {
    width: 95%;
    max-width: none;
  }

  .modal-header,
  .modal-body,
  .modal-footer {
    padding: 1.25rem 1.5rem;
  }

  .modal-header h2 {
    font-size: 1.25rem;
  }

  .modal-body {
    font-size: 0.9rem;
  }

  .modal-ok-btn {
    padding: 0.625rem 1.5rem;
    font-size: 0.9rem;
  }
}

/* Contact Screen Styles */
.contact-content {
  max-width: 500px;
  margin: 3rem auto;
  padding: 0 2rem;
}

.contact-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(2, 132, 199, 0.2);
}

.contact-image-container {
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-image {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(0, 255, 136, 0.3);
  box-shadow: 0 8px 24px rgba(0, 255, 136, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-image:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 32px rgba(0, 255, 136, 0.4);
}

.contact-name {
  color: #0f172a;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  letter-spacing: 0.5px;
}

.contact-email-section {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 255, 136, 0.2);
}

.contact-email-label {
  color: #64748b;
  font-size: 0.75rem;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.contact-email-link {
  color: #0284c7;
  font-size: 0.9rem;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  word-break: break-all;
  font-weight: 500;
}

.contact-email-link:hover {
  color: #0369a1;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .contact-content {
    max-width: 90%;
    margin: 2rem auto;
    padding: 0 1rem;
  }

  .contact-card {
    padding: 1.5rem 1rem;
  }

  .contact-image {
    width: 120px;
    height: 120px;
  }

  .contact-name {
    font-size: 1.25rem;
  }

  .contact-email-link {
    font-size: 0.9rem;
  }
}

/* Work Screen Styles */
.work-wip-banner {
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: white;
  text-align: center;
  padding: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 999;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.work-container {
  padding: 2rem;
  max-width: 1400px;
  margin: 0 auto;
  min-height: 100vh;
  padding-top: 120px; /* Account for navbar + banner */
  background: linear-gradient(135deg, #e0f2fe 0%, #0ea5e9 50%, #0284c7 100%);
}

.work-header {
  text-align: center;
  margin-bottom: 3rem;
}

.work-title {
  font-size: 2.5rem;
  color: #0f172a;
  margin-bottom: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.work-subtitle {
  color: #475569;
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.work-description {
  color: #64748b;
  font-size: 1rem;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

.work-applications-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.work-app-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(2, 132, 199, 0.2);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.work-app-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #0284c7, #0ea5e9);
}

.work-app-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(2, 132, 199, 0.3);
  border-color: #0284c7;
}

.work-app-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.work-app-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.work-app-description {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  min-height: 4.8rem; /* Ensure consistent card heights */
}

.work-app-button {
  background: linear-gradient(135deg, #0284c7 0%, #0ea5e9 100%);
  color: white;
  border: none;
  border-radius: 8px;
  padding: 0.75rem 2rem;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(2, 132, 199, 0.3);
  width: 100%;
}

.work-app-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(2, 132, 199, 0.4);
  background: linear-gradient(135deg, #0369a1 0%, #0284c7 100%);
}

.work-app-button-disabled {
  background: #94a3b8;
  cursor: not-allowed;
  box-shadow: none;
}

.work-app-button-disabled:hover {
  transform: none;
  box-shadow: none;
  background: #94a3b8;
}

/* Semantic Search Screen Styles */
.semantic-search-wip-banner {
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  text-align: center;
  padding: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 999;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Responsive Design for Work Screen */
@media (max-width: 768px) {
  .work-container {
    padding: 1rem;
    padding-top: 100px;
  }
  
  .work-title {
    font-size: 2rem;
  }
  
  .work-applications-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .work-app-card {
    padding: 1.5rem;
  }
}

/* About Me Section */
.about-me-container {
  min-height: 100vh;
  background: linear-gradient(135deg, #e0f2fe 0%, #0ea5e9 50%, #0284c7 100%);
  padding: 90px 2rem 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  color: #0f172a;
}

.about-me-hero {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  max-width: 1400px;
  width: 100%;
  padding: 0 2rem;
  margin-bottom: 0.5rem;
}

.about-me-profile {
  flex-shrink: 0;
}

.profile-image-container {
  width: 210px;
  height: 210px;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(135deg, #bae6fd 0%, #60a5fa 100%);
  padding: 8px;
  box-shadow: 0 20px 40px rgba(2, 132, 199, 0.3);
}

.profile-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.about-me-content {
  flex: 1;
  color: #0f172a;
}

.about-me-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #0369a1;
  margin-bottom: 0.5rem;
}

.about-me-title {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.about-me-subtitle {
  font-size: 1.05rem;
  font-weight: 400;
  margin-bottom: 0.85rem;
  color: #1e293b;
}

.about-me-summary {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #1f2937;
  margin-bottom: 0.5rem;
  max-width: 680px;
}

.about-me-tagline {
  font-size: 0.9rem;
  color: #0f172a;
  margin-bottom: 0.85rem;
}

.about-me-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
}

.about-me-btn {
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.about-me-btn.primary {
  background: #0284c7;
  color: #ffffff;
}

.about-me-btn.secondary {
  background: transparent;
  color: #0284c7;
  border: 2px solid #0284c7;
}

.about-me-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-icon {
  display: inline-block;
  margin-right: 8px;
  font-size: 0.9em;
}

.about-me-description {
  max-width: 1200px;
  text-align: center;
  padding: 0 2rem;
}

.about-me-description p {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1rem;
}

.about-me-description p:last-child {
  margin-bottom: 0;
}

.about-me-section {
  width: 100%;
  max-width: 1400px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(2, 132, 199, 0.2);
  border-radius: 16px;
  padding: 1.75rem;
  box-shadow: 0 10px 30px rgba(2, 132, 199, 0.15);
}

.about-me-section-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-me-section-subtitle {
  color: #475569;
  margin-bottom: 1rem;
  font-size: 0.85rem;
}

.strengths-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.strength-card {
  background: #ffffff;
  border: 1px solid rgba(2, 132, 199, 0.2);
  border-radius: 12px;
  padding: 1.1rem;
  box-shadow: 0 6px 16px rgba(2, 132, 199, 0.12);
}

.strength-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.strength-list {
  list-style: none;
  padding: 0;
  margin: 0;
  color: #475569;
  font-size: 0.82rem;
  line-height: 1.5;
}

.strength-list li {
  margin-bottom: 0.35rem;
}

.impact-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.impact-card {
  background: #ffffff;
  border: 1px solid rgba(2, 132, 199, 0.2);
  border-radius: 12px;
  padding: 1.25rem;
  box-shadow: 0 6px 18px rgba(2, 132, 199, 0.12);
  display: grid;
  grid-template-columns: minmax(240px, 320px) 1fr;
  gap: 1rem;
  align-items: start;
}

.impact-header {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.impact-role {
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
}

.impact-meta {
  font-size: 0.75rem;
  color: #475569;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.impact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  color: #475569;
  font-size: 0.85rem;
  line-height: 1.5;
}

.impact-list li {
  margin-bottom: 0.45rem;
}

.impact-label {
  color: #0284c7;
  font-weight: 700;
}

.highlight-management,
.highlight-distributed,
.highlight-ai {
  display: inline-block;
  padding: 0 6px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.highlight-management {
  color: #0f172a;
  background: rgba(59, 130, 246, 0.15);
  border: 1px solid rgba(59, 130, 246, 0.35);
}

.highlight-distributed {
  color: #0f172a;
  background: rgba(14, 165, 233, 0.18);
  border: 1px solid rgba(14, 165, 233, 0.4);
}

.highlight-ai {
  color: #0f172a;
  background: rgba(16, 185, 129, 0.2);
  border: 1px solid rgba(16, 185, 129, 0.45);
}

@media (max-width: 900px) {
  .about-me-hero {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }

  .profile-image-container {
    width: 220px;
    height: 220px;
  }

  .about-me-title {
    font-size: 2.4rem;
  }

  .about-me-subtitle {
    font-size: 1.1rem;
  }

  .impact-card {
    grid-template-columns: 1fr;
  }
}

/* Repositories Section */
.repositories-container {
  min-height: 100vh;
  background: linear-gradient(135deg, #e0f2fe 0%, #0ea5e9 50%, #0284c7 100%);
  padding: 120px 2rem 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.repositories-header {
  text-align: center;
  margin-bottom: 3rem;
  max-width: 900px;
}

.repositories-title {
  font-size: 2.5rem;
  color: #0f172a;
  margin-bottom: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.repositories-subtitle {
  font-size: 1.1rem;
  color: #475569;
  font-weight: 500;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.repositories-description {
  font-size: 1rem;
  color: #64748b;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

.repositories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  max-width: 1400px;
  width: 100%;
}

.repository-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(2, 132, 199, 0.2);
  border-radius: 15px;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.repository-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #0284c7, #0ea5e9);
}

.repository-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(2, 132, 199, 0.3);
  border-color: #0284c7;
}

.repository-icon {
  font-size: 4rem;
  margin-bottom: 0.5rem;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.repository-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.3;
}

.repository-description {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.7;
  flex-grow: 1;
  text-align: left;
}

.repository-link {
  background: linear-gradient(135deg, #0284c7 0%, #0ea5e9 100%);
  color: white;
  border: none;
  border-radius: 8px;
  padding: 0.9rem 2rem;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(2, 132, 199, 0.3);
  text-decoration: none;
  display: inline-block;
  width: 100%;
}

.repository-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(2, 132, 199, 0.4);
  background: linear-gradient(135deg, #0369a1 0%, #0284c7 100%);
}

@media (max-width: 768px) {
  .repositories-container {
    padding: 100px 1rem 2rem;
  }

  .repositories-title {
    font-size: 2rem;
  }

  .repositories-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .repository-card {
    padding: 2rem;
  }
}

/* Testimonials Section */
.testimonials-main-container {
  min-height: 100vh;
  background: linear-gradient(135deg, #e0f2fe 0%, #0ea5e9 50%, #0284c7 100%);
  padding: 120px 2rem 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.testimonials-header-section {
  text-align: center;
  margin-bottom: 3rem;
  max-width: 900px;
}

.testimonials-main-title {
  font-size: 2.5rem;
  color: #0f172a;
  margin-bottom: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.testimonials-subtitle {
  font-size: 1.1rem;
  color: #475569;
  font-weight: 500;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  max-width: 1400px;
  width: 100%;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(2, 132, 199, 0.2);
  border-radius: 15px;
  padding: 2rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #0284c7, #0ea5e9);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(2, 132, 199, 0.3);
  border-color: #0284c7;
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  flex-shrink: 0;
}

.avatar-placeholder {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0284c7, #0ea5e9);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.3);
}

.testimonial-avatar img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.3);
}

.testimonial-author-info {
  flex: 1;
}

.testimonial-author-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.25rem;
}

.testimonial-author-title {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.4;
}

.testimonial-content {
  flex-grow: 1;
}

.testimonial-text {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.7;
  font-style: italic;
  position: relative;
  padding-left: 1.5rem;
}

.testimonial-text::before {
  content: """;
  position: absolute;
  left: 0;
  top: -0.5rem;
  font-size: 3rem;
  color: #0284c7;
  opacity: 0.3;
  font-family: Georgia, serif;
}

.testimonial-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(2, 132, 199, 0.1);
}

.testimonial-date {
  font-size: 0.85rem;
  color: #0284c7;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (max-width: 768px) {
  .testimonials-main-container {
    padding: 100px 1rem 2rem;
  }

  .testimonials-main-title {
    font-size: 2rem;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .testimonial-card {
    padding: 1.5rem;
  }
}