/* Contact Section Styling */
#contact {
  width: 100vw;
  height: 100vh;
  margin: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Contact Container */
.contact-container {
  max-width: 800px;
  width: 100%;
  text-align: center;
  padding: 20px;
  box-sizing: border-box;
  color: #fff;  /* White text for contrast on video background */
  margin: 30px auto 0;
}

/* Bottom Logo Styling */
.contact-logo {
  max-width: 300px;
  width: 100%;
  height: auto;
  margin-bottom: 20px;	
}





.contact-logo-wrapper {
  position: relative;
  display: inline-block;
  max-width: 300px;
  width: 100%;
}

.contact-logo-base,
.contact-logo-x {
  display: block;
  width: 100%;
  height: auto;
  pointer-events: none;
  user-select: none;
}

.contact-logo-base {
  position: relative;
  z-index: 1;
}

.contact-logo-x {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  animation: pulseX 3.5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes pulseX {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}


/* Social Media Container */
.social-media {
  text-align: center;
  margin: 20px 0;
}

/* Social Icon Link */
.social-icon {
  display: inline-block;
  margin: 0 10px;
}

/* Social Icon Images */
.social-icon img {
  width: 40px;
  height: 40px;
  transition: transform 1s ease;
}

/* Hover Effect for Social Icons */
.social-icon:hover img {
  transform: scale(1.1) translate3d(0px, -10px, 110px);
}

/* Copyright Text */
.contact-container .copyright {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  color: #fff;
  margin: 0;
}

.email {
  font-family: 'Open Sans', sans-serif;
  font-size: 12px;
  color: #fff;
  margin-bottom: 30px;
}


.copyright {
  display: inline-block;
  animation: bounce 3.5s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}










