body::before{
      filter: brightness(0.3);
}
.screen-section{
}
.intro-wrapper{
    height:70%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: space-between;
    justify-content: center;
}
.partner-carousel-wrapper{
    height: 30%;
    width: 100%;
    background: rgb(10,10,10);
    border-top: 3px white solid;
     display: flex;
     text-align: center;
     flex-direction: column;
     justify-content: space-evenly;
}

.partner-carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap; /* allows wrapping on smaller screens */
  gap: 35px;
  height: 45%;
}

.partner {
  aspect-ratio: 1 / 1;
  height: 100%; /* or use a percentage if inside a defined container */
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease, filter 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
}

.partner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 20px;
  transition: inherit;
}

/* Hover effects */
.partner:hover {
  filter: brightness(0.8);
  cursor: pointer;
}

/* Optional: subtle shadow for depth */
.partner:hover img {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.logo-container{
    display: flex;
    align-items: center;
    height: 100%;
    margin-left: 5%;
    width: 45%;
}
.logo-container img{
  width: 100%;
  height: auto; /* preserves native aspect ratio */
  max-height: 100%; /* or 90% of parent if you prefer */
  object-fit: contain; /* ensures full image is visible */
  display: block;
    filter: drop-shadow(8px 8px 10px black);
}
.intro-text-container{
    color: white;
    width:40%;
    margin-right: 10%;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    text-align: end;
}
/*socails*/
.contact-container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 18px; /* space between icons */
  padding-top: 16px;
}

.contact-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 42px;
  height: 42px;
  overflow: hidden;
  transition: transform 0.3s ease, filter 0.3s ease, background 0.3s ease;
}

.contact-icon img {
  width: 70%;
  height: 70%;
  object-fit: contain;
  transition: inherit;
}
.contact-iconl:hover {
  filter: brightness(0.8);
  cursor: pointer;
}

/*main body*/
.main-body-container{
    width:100%;
    height: auto;
    border-top: 3px solid white;
    background: rgb(40, 40, 44);
    box-sizing: border-box;
    position: relative;
}
.nav-header-wrapper {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  list-style: none;
  width: 250px;
  padding: 0;
  margin: 20px auto;
}

.nav-element {
  position: relative;
  cursor: pointer;
  font-weight: 600;
  color: white;
  font-size: 20px;
  padding-bottom: 6px;
  transition: color 0.3s ease;
}

/* underline effect */
.nav-element::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 100%;
  background-color: rgb(240, 179, 71);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

/* animate underline on hover */
.nav-element:hover::after {
  transform: scaleX(1);
}

/* animate underline for the active/selected tab */
.nav-element.selected::after {
  transform: scaleX(1);
}

/* optional: color shift on hover */
.nav-element:hover, .nav-element.selected {
  color: rgb(240, 179, 71);
}

.entry-container.builds{
    width: 100%;
    margin: 0px auto;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 25px;
    justify-content: center;
}



