/* Global Styles */
body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
}

.landing-container {
  position: relative;
  height: 100vh;
  background-color: #000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  color: #fff;
  padding: 0 40px;
}

.landing-container .content {
  max-width: 600px;
  margin: 0
}

.hero-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80%;
  max-width: 420px;
  padding-right: 250px;
}

.hero-panel img {
  width: 200%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);

}

@keyframes moveBackground {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 100% 100%;
  }
}

.content {
  z-index: 10;
  max-width: 1200px;
  margin: 0 20px;
  animation: fadeInUp 1.5s ease-out;
}

h1 {
  font-family: 'Raleway', sans-serif;
  font-size: 4rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.subheading {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 30px;
}

.bio-section {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 0px;
  border-radius: 10px;
  margin-top: 30px;
  max-width: 600px;
  text-align: left;
}

.bio-section h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.bio-section p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  padding-right: 50px;
}

.btn {
  display: inline-block;
  background-color: #0078d4;
  color: #fff;
  padding: 12px 30px;
  border-radius: 50px;
  font-size: 1.2em;
  text-decoration: none;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.btn:hover {
  transform: translateY(-5px);
  background-color: #005a8b;
}

.contact-btn {
  background-color: #34d399;
}

.contact-btn:hover {
  background-color: #059669;
}

footer {
  margin-top: 50px;
  font-size: 0.9em;
  color: rgba(255, 255, 255, 0.6);
}

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

/* Responsive Design */
@media (max-width: 600px) {
  h1 {
    font-size: 2.5em;
  }

  .subheading {
    font-size: 1.1em;
  }

  .bio-section {
    padding: 20px;
  }

  .btn {
    font-size: 1em;
  }
}