/*body {
  padding: 50px;
  font: 14px "Lucida Grande", Helvetica, Arial, sans-serif;
}

a {
  color: #00B7FF;
}*/

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background: url('/assets/img/001.jpg') no-repeat center center fixed;
    background-size: cover;
}

.text-container {
    position: absolute;
    top: 20%;
    left: 10%;
    max-width: 80%;
    padding: 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    color: white;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 2s ease-out, transform 2s ease-out;
}

.visible {
    opacity: 1;
    transform: translateY(0);
}

.wrapper {
  min-height: 100%;

  /* Equal to height of footer */
  /* But also accounting for potential margin-bottom of last child */
  margin-bottom: -50px;
}
.footer,
.push {
  height: 50px;
}

.footer {
    background: #002061; /* Dark blue background */
    color: #666; /* White text */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    position: relative;
    height: 100px;
    font-size: 10px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.footer-logo img {
    max-height: 100px; /* Adjust according to your design */
    object-fit: contain;
}

.footer-details {
    text-align: right;
}

.footer-details p {
    margin: 0;
    line-height: 1.5;
}

.footer-details a {
    color: #ffcc00; /* Yellow text for links */
    text-decoration: none;
}

.footer-details a:hover {
    text-decoration: underline;
}

.footer-logo {
    position: absolute;
    bottom: 50%;
    left: 0;
    transform: translateY(-50%);
}

.footer-content::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: #ffcc00; /* Yellow background */
    clip-path: polygon(50% 0%, 100% 0%, 100% 100%, 0% 100%);
    z-index: 0;
}

.footer-content > div {
    position: relative;
    z-index: 1;
}        