.hero-actions {
  width: 100%;
  position: relative;
  background-color: #fff;
  height: 100%;
  text-align: left;
  font-size: 72px;
  color: #1e1e1e;
  font-family: Inter;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 40px;
  box-sizing: border-box;
}
.formal-picture-1 {
  border-radius: 29px;
  width: 389px;
  height: 518px;
  object-fit: cover;
  object-position: center 20%;
  flex-shrink: 0;
  margin-right: 50px;
  animation: slideInLeft 1s ease-out forwards;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.formal-picture-1:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 85px rgba(6, 118, 247, 0.7);
}
.text-content-title {
  max-width: 702px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  flex: 1;
  animation: slideInRight 1s ease-out forwards;
}

.title {
  transition: transform 0.3s ease;
}

.title:hover {
  transform: scale(1.02);
}

.aspiring {
  margin: 0;
  transition: color 0.3s ease;
}

.aspiring:hover {
  color: #4a90e2;
  text-shadow: 0 2px 4px rgba(74, 144, 226, 0.3);
}
.subtitle {
  max-width: 777px;
  position: relative;
  font-size: 20px;
  line-height: 120%;
  color: #757575;
  text-align: right;
  display: flex;
  align-items: center;
  min-height: 79px;
  flex-shrink: 0;
  transition: color 0.3s ease;
}

.subtitle:hover {
  color: #424242;
}

/* Responsive Design */
@media screen and (max-width: 1200px) {
  .hero-actions {
    display: flex;
    justify-content: center;
    padding: 40px 30px;
    height: auto;
    min-height: 600px;
  }

  .formal-picture-1 {
    width: 320px;
    height: 426px;
    margin-right: 40px;
  }

  .text-content-title {
    max-width: 700px;
  }

  .hero-actions {
    font-size: 60px;
  }
}

@media screen and (max-width: 850px) {
  .hero-actions {
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    padding: 40px 30px;
    height: auto;
    min-height: 600px;
  }

  .formal-picture-1 {
    width: 280px;
    height: 373px;
    margin-right: 0;
    margin-bottom: 30px;
  }

  .text-content-title {
    align-items: center;
    max-width: 100%;
  }

  .subtitle {
    text-align: center;
  }

  .hero-actions {
    font-size: 48px;
  }

  .buttons-container {
    gap: 20px;
  }
}

@media screen and (max-width: 480px) {
  .hero-actions {
    padding: 30px 15px;
    font-size: 36px;
  }

  .formal-picture-1 {
    width: 240px;
    height: 320px;
  }

  .subtitle {
    font-size: 18px;
  }

  .buttons-container {
    flex-direction: column;
    gap: 16px;
  }

  .contact-button,
  .resume-button {
    padding: 14px 28px;
    font-size: 16px;
  }
}

/* Keyframe Animations */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Buttons Container */
.buttons-container {
  margin-top: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  width: 100%;
  flex-wrap: wrap;
  animation: fadeInUp 1.2s ease-out forwards;
}

/* Contact Button Styles */
.contact-button-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-button {
  display: inline-flex;
  padding: 16px 32px;
  background-color: #4a90e2;
  color: #ffffff;
  text-decoration: none;
  border-radius: 32px;
  font-family: Inter, sans-serif;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(74, 144, 226, 0.2);
}

.contact-button:hover {
  background-color: #3578c7;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(74, 144, 226, 0.4);
}

/* Resume Button Styles */
.resume-button-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.resume-button {
  display: inline-flex;
  padding: 16px 32px;
  background-color: #f8f9fa;
  color: #4a90e2;
  text-decoration: none;
  border-radius: 32px;
  font-family: Inter, sans-serif;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid #4a90e2;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(74, 144, 226, 0.1);
}

.resume-button:hover {
  background-color: #4a90e2;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(74, 144, 226, 0.4);
}
