
.protected {
    margin: 0; /* Remove default margin */
}

.navbar-brand img {
  max-height: 50px; /* Adjust this value to your liking */
  width: auto;
}

.project-box img {
  width: 100%;
  height: auto;
  max-height: 250px; /* Optional: limits vertical size */
  object-fit: cover; /* Ensures consistent cropping */
  border-radius: 8px;
}

.logo-box {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 70px; /* Optional: gives vertical space */
}

.logo-box img {
  max-height: 70px;
  object-fit: contain;
}

/* START LOGO TRACK SLIDER*/
.logo-slider {
  overflow: hidden;
  padding: 20px 0;
}

.logo-track {
  display: flex;
  width: max-content;
  animation: scroll-left 20s linear infinite;
}

.logo-track img {
  height: 80px;
  margin: 0 30px;
  transition: transform 0.3s ease;
}

.logo-track img:hover {
  transform: scale(1.1);
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/*END LOGO TRACK SLIDER*/

/* Style only the AUVSI logo */
.social-icon-logo img {
  height: 35px;       /* adjust size to align with LinkedIn icon */
  width: auto;
  margin-left: 35px;   /* space between LinkedIn and AUVSI */
/*  vertical-align: middle;*/
  transition: opacity 0.3s ease;
}

.social-icon-logo img:hover {
  opacity: 0.8;       /* subtle hover effect */
}

/*CONTACT FORM */
.contact-container{
/*  height: 100vh;*/
  display: flex;
  align-items: center;
  justify-content: space-evenly;

}
.contact-left {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 20px;

}
.contact-inputs{
  width: 400px;
  height: 50px;
  border: none;
  outline: none;
  padding-left: 25px;
  font-weight: 500;
  color: #666;
  border-radius: 50px;
}
.contact-left textarea {
  height: 140px;
  padding-top: 15px;
  border-radius: 20px;
}
.contact-inputs:focus {
  border: 2px solid #F4B02A;
}
.contact-inputs::placeholder {
  color: #a9a9a9;
}
.contact-left button {
  display: flex;
  align-items: center;
  padding: 10px 25px;
  font-size: 16px;
  color: #fff;
  gap: 10px;
  border: none;
  border-radius: 50px;
  background: linear-gradient(270deg, #f4b02a, #f38b2a);
  cursor: pointer;
}
.contact-left button img{
  height: 15px;
}
.contact-right img {
  width: 350px;
  opacity: 0.7;
}

@media (max-width:800px) {
  .contact-inputs{
    width: 80vw;
  }
  .contact-right {
    display: none;
  }

}

/*FOOTER*/
footer {
  width: 100vw;
  background-color: rgb(159, 159, 159);
}
footer div {
  background-color: rgb(159, 159, 159);   /* Sets the background to a blue shade */
  margin: 0px 0px 0px 0px;    /* Negative top margin pulls it upward slightly */
  padding: 0px;                /* No inner spacing */
  color: #fff;                 /* Text color is white */
  text-align: center;          /* Centers the text horizontally */
}

svg {
  width: 100%;
}
.arrow {

  stroke-width: 0.3px;   /* Makes the stroke (outline) very thin */
  stroke: orange;        /* Sets the stroke color to yellow */
}

.topball {
  animation: ball 1.5s ease-in-out;
  animation-iteration-count:infinite;
  animation-direction: alternate;
  animation-delay: 0.3s;
  cursor:pointer;
}
@keyframes ball {
  to { transform: translateY(20%); }
}
.wave {
  animation: wave 3s linear infinite;
  fill: #f3af3c;
}
@keyframes wave {
  to { transform: translateX(-100%); }
}
#wave2 {
  animation-duration: 5s;
  animation-direction: reverse;
  opacity: .6;
}
#wave3 {
  animation-duration: 7s;
  opacity: .3;
}
.drop {
  fill: transparent;
  animation: drop 5s ease infinite normal;
  stroke: #4478e3;
  stroke-width: 0.5;
  opacity: .6;
  transform: translateY(80%);
}
.drop1 {
  transform-origin: 20px 3px;
}
.drop2 {
  animation-delay: 3s;
  animation-duration: 3s;
  transform-origin: 25px 3px;
}
.drop3 {
  animation-delay: -2s;
  animation-duration: 3.4s;
  transform-origin: 16px 3px;
}
@keyframes drop {
  0% { transform: translateY(80%); opacity: .6; }
  80% { transform: translateY(80%); opacity: .6; }
  90% { transform: translateY(10%); opacity: .6; }
  100% {
    transform: translateY(0%) scale(1.5);
    stroke-width: 0.2;
    opacity: 0;
  }
}
.gooeff {
  filter: url(#goo);
}


.footer-text {
  background-color: #f3af3c;
  margin: 0px;
  font-size: 8px;
}

.social-footer-buttons {
  text-align: center;
  background-color: #f3af3c;
}
.social-footer-buttons .social-button {
  display: inline-block;
  position: relative;
  cursor: pointer;
  width: 3.125rem;
  height: 3.125rem;
  border: 0.125rem solid transparent;
  padding: 0;
  text-decoration: none;
  text-align: center;
  color: #fefefe;
  font-size: 1.5625rem;
  font-weight: normal;
  line-height: 2em;
  border-radius: 1.6875rem;
  transition: all 0.5s ease;
  margin-right: 0.25rem;
  margin-bottom: 0.25rem;

}
.social-footer-buttons .social-button:hover,
.social-footer-buttons .social-button:focus {
  -webkit-transform: rotate(360deg);
      -ms-transform: rotate(360deg);
          transform: rotate(360deg);
}
.fa-linkedin {
  font-size: 25px;
}
.social-footer-buttons .social-button.linkedin {
  background: #007bb5;
}
.social-footer-buttons .social-button.fa-auvsi {
  background: #04052a;
}

.social-button.fa-auvsi img {
  width: 35px;
  height: 35px;
  object-fit: contain;
  border-radius: 50%;
}












/* END NEW FOOTER*/