.menu-icon-container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  position: auto;
  backdrop-filter: blur(50px);
  top: 0;
  left: 0;
  padding: 30px 60px;
  box-sizing: border-box;
  border-bottom: 2px solid #ff0000;
  border-radius: 0 0 100px 100px;
}

.menu-icon-container svg {
  height: 40px;
  cursor: pointer;
}

.menu-container {
  position: fixed;
  background: rgb(238, 174, 202);
  background: radial-gradient(
    circle,
    #672a2a7d 5%,
    rgba(121, 123, 132, 0.594) 40%,
    rgb(177, 181, 181) 100%
  );

  /* background: rgba(138, 220, 220, 0.2); */
  border-radius: 6px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  transform-origin: center center;
  inset: 0;
  font-family: "Roboto", sans-serif;
  height: 0;
  z-index: 1000;
  overflow: hidden;
}
.logo {
  font-size: 30px;
  font-weight: 900;
  color: #ff0000;
  font-family: "Roboto", sans-serif;
}
.motto{
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  font-weight: 600;
}
.menu-container .logo {
  transform: translateX(-30px);
  opacity: 0;
}

.menu-container .close-icon svg {
  height: 40px;
  cursor: pointer;
  transform: translateX(30px);
  opacity: 0;
}

.menu-container .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.menu-container .content {
  padding: 30px 60px;
  height: 100%;
}

.menu-container .menu-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  justify-content: center;
  height: 100%;
  margin-top: -74px;
}

.menu-container .menu-items a {
  font-size: 50px;
  text-decoration: none;
  color: #000;
  transform: translateY(-20px);
  opacity: 0;
}

.menu-container .menu-items a::after {
  content: attr(data-menu);
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(calc(-50% - 100px), -50%);
  font-size: 100px;
  font-weight: 900;
  opacity: 0;
  text-align: center;
  text-transform: uppercase;
  pointer-events: none;
  transition: all 500ms ease;
}

.menu-container .menu-items a:hover::after {
  opacity: 0.1;
  transform: translate(-50%, -50%);
}
/* Your existing CSS remains unchanged */

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
  overflow-x: hidden;
}
.app-section {
  padding: 80px 20px;
  background-color: transparent;
  text-align: center;
  z-index: -100;
}

.app-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(
    360deg,
    rgba(100, 143, 192, 0.521) 50%,
    rgba(104, 8, 8, 0.443)
  );
  animation: footer-animation 5s ease-in-out infinite;
  border-radius: 16px;
  backdrop-filter: blur(50px);
  -webkit-backdrop-filter: blur(5px);
  border: 5px solid rgb(255, 0, 0);
  overflow: hidden;
  transition: all 0.5s ease;
  position: relative;
}
@media screen and (max-width: 778px) {
  .app-section{
    padding: 80px 10px;
  }
  .app-card {
    flex-direction: column;
    border: 3px solid red;;
  }
  .app-card .app-info {
    text-align: center;
  }
  .app-card .app-image {
    height: 50vh;
  }
  .menu-icon-container {
    justify-items: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    border-radius: 0 0 50px 50px;
  }
  .menu-items {
    text-align: center;
  }
  .menu-items a {
    font-size: 10px;
  }
  .menu-container .content {
    padding: 30px 10px;
  }
  .app-card:hover .app-image {
    transform: translateX(0) !important;
    transform: translateY(-50%) !important;
  }
  .app-card:hover .app-info {
    transform: translateX(0) !important;
    transform: translateY(50%) !important;
  }
}
.card-2 {
  display: flex;
  flex-direction: row-reverse;
}

.app-card:hover {
  transform: translateY(-5px);
  cursor: pointer;
  box-shadow: 1px 40px 30px rgba(111, 110, 110, 0.352);
  background: rgba(81, 2, 2, 0.384);
  border: 5px solid goldenrod;
}

.app-card:hover .app-image {
  transition: all 2s ease;
  transform: translateX(-50%);
  animation: blink 2s ease 0.3s 1;
  transition-delay: 0.3s;
  z-index: -1;
  filter: blur(50px);
}

.app-card:hover .app-info {
  transition: all 2s ease;
  transition-delay: 0.3s;
  transform: translateX(50%);
}
.app-card:hover .app-info * {
  color: white;
  transition: all 2s ease 0.3s;
}

@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}

.app-info {
  flex: 1;
  padding: 20px;
  text-align: left;
  transition: all.5s ease;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.app-info h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: black;
}

.app-info p {
  font-size: 1.2rem;
  color: #343434;
  line-height: 1.6;
}

.app-info a {
  display: inline-block;
  padding: 10px 20px;
  background-color: #d62828;
  color: #fff;
  margin: auto;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.app-info a:hover {
  background-color: #b71c1c;
}

.app-image {
  flex: 1;
  max-height: 80vh;
  transition: all 0.5s ease;
}
.app-image img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  object-fit: cover;
}

footer {
  background: linear-gradient(
    360deg,
    rgba(100, 143, 192, 0.521) 50%,
    rgba(104, 8, 8, 0.443)
  );
  animation: footer-animation 5s ease-in-out infinite;
  height: 100%;
  /* Center and scale the image nicely */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
  padding: 40px 20px;
  text-align: center;
  border-radius: 100px 100px 0 0px;
  transition: all 0.3s;
}
@keyframes footer-animation {
  0% {
    background: linear-gradient(
      360deg,
      rgba(100, 143, 192, 0.521),
      rgba(104, 8, 8, 0.443)
    );
  }
  25% {
    background: linear-gradient(
      90deg,
      rgba(100, 143, 192, 0.521) 50%,
      rgba(104, 8, 8, 0.443)
    );
  }
  50% {
    background: linear-gradient(
      180deg,
      rgba(100, 143, 192, 0.521) 50%,
      rgba(104, 8, 8, 0.443)
    );
  }
  75% {
    background: linear-gradient(
      270deg,
      rgba(100, 143, 192, 0.521) 50%,
      rgba(104, 8, 8, 0.443)
    );
  }
  100% {
    background: linear-gradient(
      360deg,
      rgba(100, 143, 192, 0.521) 50%,
      rgba(104, 8, 8, 0.443)
    );
  }
}

footer .contact-me {
  max-width: 400px;
  margin: 0 auto 30px;
}

footer .contact-me h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

footer .contact-me p {
  font-size: 1rem;
  margin-bottom: 20px;
}

footer .contact-me a {
  display: block;
  margin-bottom: 10px;
  color: #fff;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

footer .contact-me a:hover {
  opacity: 0.8;
}

footer .footer-menu {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

footer .footer-menu a {
  color: #fff;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

footer .footer-menu a:hover {
  opacity: 0.8;
}