body {
  margin: 0;
  font-family: 'Arial', sans-serif;
  background: #ffffff;
  overflow-x: hidden;
  color: #333333;
  position: relative;
}

/* RGB Lava-Lamp Blobs Background */
.blob-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  overflow: hidden;
}

.blob {
  position: absolute;
  filter: blur(30px) contrast(1.2) saturate(1.5);
  opacity: 0.7; /* more visible colors */
  transition: border-radius 0.3s ease-out;
}

/* Red blobs */
.blob-red {
  background: radial-gradient(circle at 50% 50%, rgba(255,0,0,0.6) 0%, transparent 70%);
}

/* Yellow blobs */
.blob-yellow {
  background: radial-gradient(circle at 50% 50%, rgba(255,255,0,0.6) 0%, transparent 70%);
}

/* Blue blob */
.blob-blue {
  background: radial-gradient(circle at 50% 50%, rgba(0,0,255,0.6) 0%, transparent 70%);
}

/* Cyan blob */
.blob-cyan {
  background: radial-gradient(circle at 50% 50%, rgba(0,255,255,0.6) 0%, transparent 70%);
}

/* Amoebic initial shapes */
.blob.amoebic {
  border-radius: 60% 40% 30% 70% / 50% 60% 40% 50%;
}

/* Smaller yellow blob */
.blob.small-blob {
  width: 250px;
  height: 250px;
}

/* Individual blob sizes and positions */
.blob-1 { width: 400px; height: 400px; top: 10%; left: 10%; }
.blob-2 { width: 350px; height: 350px; top: 60%; right: 15%; }
.blob-3 { width: 500px; height: 500px; top: 30%; left: 50%; }
.blob-4 { width: 300px; height: 300px; bottom: 20%; left: 20%; }
.blob-5 { width: 250px; height: 250px; top: 5%; right: 30%; }
.blob-6 { width: 380px; height: 380px; bottom: 40%; right: 5%; }

/* UI Island with Fluted Glass Effect */
.ui-island {
  position: relative;
  background: rgba(255, 255, 255, 0.15); /* base transparency */
  backdrop-filter: blur(20px); /* frosted glass blur */
  -webkit-backdrop-filter: blur(20px);

  /* Vertical fluted stripes */
  background-image: repeating-linear-gradient(
    90deg,                     /* vertical stripes */
    rgba(255, 255, 255, 0.05) 0px,
    rgba(255, 255, 255, 0.05) 2px,
    rgba(255, 255, 255, 0.15) 4px,
    rgba(255, 255, 255, 0.15) 6px
  );

  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  overflow: hidden;

  /* Optional: slight shimmer animation for liveliness */
  animation: flutedShimmer 6s linear infinite;
}

@keyframes flutedShimmer {
  0% { background-position: 0 0; }
  100% { background-position: 6px 0; } /* scroll the stripes slightly */
}

/* Small Logo in Top-Left Corner */
.corner-logo {
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 1000;
  width: 120px;
  height: auto;
}

.corner-logo img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Top Navigation Tabs */
.top-nav {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
  display: flex;
  gap: 1rem;
}

.nav-tab {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 0.75rem 1.5rem;
  color: #333333;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.nav-tab:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Bottom Navigation */
.bottom-nav {
  position: fixed;
  bottom: 20px;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  pointer-events: none;
  gap: 2rem;
}

.bottom-nav .nav-tab {
  pointer-events: auto;
}

.bottom-left {
  margin-right: 0;
}

.bottom-center {
  position: relative;
  left: auto;
  transform: none;
}

.bottom-right {
  margin-left: 0;
}

.panel {
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 3rem;
  margin: 2rem auto;
  max-width: 1000px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.05);
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  z-index: 1;
}

.panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.4) 0%, 
    rgba(255, 255, 255, 0.2) 50%, 
    rgba(255, 255, 255, 0.4) 100%);
  border-radius: 20px;
  z-index: -1;
}

/* Footer panel: reduce height by trimming padding and margin */
.footer-panel {
  padding: 1rem 1.5rem;
  margin: 1rem auto;
}

/* Demo Text */
.demo-text {
  font-style: italic;
  color: #333;
  margin-bottom: 2rem;
}

/* Contact Link */
.contact-link {
  color: #333;
  text-decoration: none;
  font-weight: normal;
  transition: all 0.3s ease;
}

.contact-link:hover {
  color: #666;
}

/* CV Upload Island */
.cv-upload-island {
  margin: 3rem 0;
  display: flex;
  justify-content: center;
}

.upload-blob {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 2px dashed rgba(255, 255, 255, 0.3);
  border-radius: 30px;
  padding: 3rem;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  min-width: 400px;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.upload-blob:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.upload-blob.dragover {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.02);
}

.upload-content {
  z-index: 2;
  position: relative;
}

.upload-icon {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  opacity: 0.8;
  color: #333;
  letter-spacing: 2px;
}

.upload-blob h3 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  color: #333;
  font-weight: 600;
}

.upload-blob p {
  color: #666;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.upload-btn {
  background: rgba(255, 255, 0, 0.3);
  color: #333;
  border: 2px solid rgba(255, 255, 0, 0.5);
  padding: 1rem 2rem;
  border-radius: 25px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 255, 0, 0.2);
}

.upload-btn:hover {
  background: rgba(255, 255, 0, 0.4);
  border-color: rgba(255, 255, 0, 0.7);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 255, 0, 0.3);
}

/* Bouncing Ball Animation */
.bouncing-ball {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #666, #888);
  border-radius: 50%;
  margin: 2rem auto;
  animation: bounce 1s infinite;
  box-shadow: 0 4px 15px rgba(102, 102, 102, 0.3);
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-50px);
  }
  60% {
    transform: translateY(-25px);
  }
}

/* Progress Bar for Upload Sequence */
.progress-bar {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 3px;
  overflow: hidden;
  margin-top: 1.5rem;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #00ffff, #00cccc);
  border-radius: 3px;
  transition: width 0.1s ease;
  position: relative;
}

.progress-fill::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* Job Results */
.job-results {
  margin-top: 3rem;
  animation: fadeInUp 0.6s ease-out;
}

.job-results h3 {
  text-align: center;
  margin-bottom: 1rem;
  color: #333;
  font-size: 2rem;
}

.demo-label {
  background: linear-gradient(135deg, #ff9800, #f57c00);
  color: #fff;
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-left: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.demo-subtitle {
  text-align: center;
  color: #666;
  font-style: italic;
  margin-bottom: 2rem;
  font-size: 1rem;
}

.job-listings {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}

.job-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.job-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-color: rgba(0, 255, 255, 0.4);
}

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

.job-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #333;
  margin: 0;
  background: rgba(200, 200, 200, 0.3);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  display: inline-block;
}

/* Center Product Manager title specifically */
.job-card:nth-child(2) .job-title {
  display: block;
  text-align: center;
  margin: 0 auto;
}

.job-rating {
  background: rgba(255, 255, 255, 0.2);
  color: #333;
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-weight: 600;
  font-size: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.job-company {
  color: #666;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.job-description {
  color: #555;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.job-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.metric {
  text-align: center;
  padding: 0.8rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.metric-value {
  font-size: 1.2rem;
  font-weight: 700;
  color: #333;
  display: block;
}

.metric-label {
  font-size: 0.8rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.job-skills {
  margin-bottom: 1rem;
}

.skills-title {
  font-weight: 600;
  color: #333;
  margin-bottom: 0.5rem;
  background: rgba(255, 255, 255, 0.2);
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: inline-block;
  font-size: 0.9rem;
}

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

.skill-tag {
  background: rgba(255, 255, 255, 0.15);
  color: #333;
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.skill-tag.missing {
  background: rgba(255, 255, 255, 0.1);
  color: #666;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.job-gaps {
  margin-bottom: 1rem;
}

.gap-item {
  background: rgba(255, 255, 255, 0.1);
  color: #666;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  border-left: 3px solid rgba(255, 255, 255, 0.3);
}

.job-actions {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.job-btn {
  flex: 1;
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  text-align: center;
  display: inline-block;
}

.job-btn.primary {
  background: rgba(255, 255, 255, 0.2);
  color: #333;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.job-btn.secondary {
  background: rgba(255, 255, 255, 0.2);
  color: #333;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.job-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.job-status {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.job-status.open {
  background: rgba(255, 255, 255, 0.2);
  color: #333;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.job-status.closed {
  background: rgba(255, 255, 255, 0.15);
  color: #666;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.job-status.urgent {
  background: rgba(255, 255, 255, 0.25);
  color: #333;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design for Job Cards */
@media (max-width: 768px) {
  .upload-blob {
    min-width: 300px;
    min-height: 250px;
    padding: 2rem;
  }
  
  .job-listings {
    grid-template-columns: 1fr;
  }
  
  .job-metrics {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .job-actions {
    flex-direction: column;
  }
}

.hero-panel {
  margin-top: 5rem;
}

h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

button {
  padding: 0.7rem 1.5rem;
  background: linear-gradient(45deg, #00bcd4, #00acc1);
  color: #ffffff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  margin-top: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 188, 212, 0.3);
}

button:hover {
  background: linear-gradient(45deg, #00acc1, #0097a7);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 188, 212, 0.4);
}

.team-cards {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 2rem;
}

.card {
  flex: 1 1 250px;
  padding: 2rem;
  border-radius: 15px;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(15px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.05);
  border: 1px solid rgba(255, 255, 255, 0.3);
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.3) 0%, 
    rgba(255, 255, 255, 0.1) 50%, 
    rgba(255, 255, 255, 0.3) 100%);
  border-radius: 15px;
  z-index: -1;
}

/* Section Styles with Side Margins */
section {
  padding: 5rem 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Hero Section - Text Only */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 0 4rem;
  text-align: center;
}

/* Background Logo */
.background-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  opacity: 0.25;
  filter: blur(8px);
  pointer-events: none;
}

.background-logo img {
  max-width: 80vw;
  max-height: 80vh;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* Contact Form Styles */
.contact-form {
  max-width: 600px;
  margin: 2rem auto;
  text-align: left;
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #333333;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  font-size: 1rem;
  color: #333333;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: rgba(0, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 0 3px rgba(0, 255, 255, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(0, 0, 0, 0.6);
}

.submit-btn {
  background: linear-gradient(135deg, #00ffff, #00cccc);
  color: #000;
  border: none;
  padding: 1rem 2rem;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  margin-top: 1rem;
}

.submit-btn:hover {
  background: linear-gradient(135deg, #00cccc, #00aaaa);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 255, 255, 0.3);
}

.contact-info {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
}

.contact-info p {
  margin: 0.5rem 0;
  color: #333333;
}

.contact-info strong {
  color: #333333;
  font-size: 1.1rem;
}

.hero-text {
  text-align: center;
  z-index: 2;
  animation: textFadeIn 2s ease-out;
  margin-bottom: 2rem;
}

.hero-text h1 {
  font-size: 4rem;
  font-weight: 700;
  background: linear-gradient(45deg, #c7ced5, #e0e5ea, #c7ced5); /* slightly darker tone */
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow:
    1px 1px 0 rgba(0, 0, 0, 0.25),      /* inner shadow bottom-right */
    2px 2px 4px rgba(0, 0, 0, 0.15),    /* soft depth */
    -1px -1px 0 rgba(255, 255, 255, 0.75); /* highlight top-left */
  margin: 0;
  letter-spacing: 2px;
  opacity: 0;
  animation: mainTextFadeIn 3s ease-out 1s forwards;
}

@keyframes mainTextFadeIn {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}


@keyframes textFadeIn {
  0% {
    opacity: 0;
    transform: scale(0.8) translateY(30px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}


/* Responsive Design */
@media (max-width: 768px) {
  section {
    padding: 3rem 2rem;
  }
  
  .hero {
    padding: 0 2rem;
  }
  
  .hero-logo img {
    max-width: 480px;
    height: auto;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .nav-links {
    gap: 1rem;
  }
  
  .nav-link {
    font-size: 0.9rem;
  }
  
  .panel {
    padding: 2rem;
    margin: 1rem 0;
  }
  
  .team-cards {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  section {
    padding: 2rem 1rem;
  }
  
  .hero {
    padding: 0 1rem;
  }
  
  .hero-logo img {
    max-width: 400px;
    height: auto;
  }
  
  .nav-container {
    padding: 0 1rem;
  }
  
  .nav-links {
    display: none;
  }
  
  .panel {
    padding: 1.5rem;
  }
  
  .hero-text h1 {
    font-size: 3rem;
  }
  
  .corner-logo {
    width: 100px;
    height: auto;
    top: 15px;
    left: 15px;
  }
}

@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 2.5rem;
  }
  
  .corner-logo {
    width: 80px;
    height: auto;
    top: 10px;
    left: 10px;
  }
  
  .top-nav {
    top: 10px;
    right: 10px;
    gap: 0.5rem;
  }
  
  .nav-tab {
    padding: 0.5rem 1rem;
    font-size: 1rem;
  }
  
  .bottom-nav {
    bottom: 10px;
    padding: 0 10px;
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .bottom-center {
    order: 1;
  }
  
  .bottom-left {
    order: 2;
  }
  
  .bottom-right {
    order: 3;
  }
}