body {
    margin: 0;
    padding: 0;
    width: 100%;
    color: #000000;
    background-color: #000000;
    overflow-x: hidden;
}

.main-container {
    background-color:#000000;
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    font-weight: 400;
}

.content-wrapper {
    z-index: 10;
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
}

.header {
    display: flex;
    justify-content: space-between;
    align-self: stretch;
    width: 100%;
    gap: 50px;
    font-size: 20px;
    color: #ffffff;
    line-height: 160%;
    padding: 16px 0;
}

.logo {
    aspect-ratio: 5.26;
    object-fit: auto;
    object-position: center;
    width: 300px;
    max-width: 100%;
    padding: 5px 80px 0px 50px;
}

.nav {
    display: flex;
    gap: 70px;
    justify-content: space-between;
    padding: 20px 0px 0px 0px;
    margin: auto;
}

.nav-item {
    font-family: Urbanist, sans-serif;
    text-decoration: none;
    color: #ffffff;
    margin: auto;
    transition: transform 50ms ease-in-out 0s;
}

.nav-item-active {
    font-weight: 700;
    border-bottom: 4px solid var(--Main-Gardient, #78beff);
}

.nav-item:hover {
    border-bottom: 4px solid var(--Main-Gardient, #78beff);
    transform: scale(1.05);
    text-decoration: none;
    color: #ffffff;
}

.hero-text {
    text-align: center;
    background: linear-gradient(95deg, #78beff 4.63%, #a8ff78 98.39%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-top: 20px;
    font: 700 72px/120px Urbanist, sans-serif;
    animation: move 2s;
    position: relative;
    z-index: 1;
}

@keyframes move {
    from {
        transform: translateX(-300px);
        opacity: 0%;
    }

    to {
        transform: translateX(0px);
        opacity: 100%;
    }
}

.contact-button {
    display: flex;
    justify-content: center;
    border-radius: 50px;
    border-style: none;
    background: linear-gradient(95deg, #17bb57 4.63%, #92f573 98.39%);
    gap: 10px;
    margin-top: 20px;
    color: #000000;
    padding: 16px 32px;
    font: 400 18px Inter, sans-serif;
    position: relative;
    z-index: 1;
    transition: transform 100ms ease-in-out 0s;
}
.contact-button:hover {
    transform: scale(1.25);
    
}


/* Responsive styles */
@media (max-width: 1200px) {
    .oval {
        display: none;
        /* Hide oval after 1200px */
    }

    .main-container,
    .content-wrapper {
        max-width: 100%;
        padding: 0;
    }

    .header {
        max-width: 100%;
        flex-wrap: wrap;
    }

    .nav {
        flex-wrap: wrap;
    }

    .hero-text {
        max-width: 90%;
        margin-top: 10px;
        font-size: 48px;
        line-height: 70px;
    }

    .contact-button {
        margin-top: 10px;
        padding: 12px 24px;
        font-size: 16px;
    }
}

@media (max-width: 991px) {
    .hero-text {
        font-size: 40px;
        line-height: 64px;
    }

    .contact-button {
        padding: 10px 20px;
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .hero-text {
        font-size: 36px;
        line-height: 60px;
    }

    .contact-button {
        padding: 10px 20px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .hero-text {
        font-size: 28px;
        line-height: 50px;
    }

    .contact-button {
        padding: 8px 16px;
        font-size: 12px;
    }
}

.team-container {
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}

.oval {
    z-index: -1;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 250px);
    width: 2800px;
    height: 800px;
    border-top-right-radius: 50%;
    border-top-left-radius: 50%;
    background: #000;
    box-shadow: 0 -120px  150px rgba(62, 158, 63, 0.7), inset 0 100px 500px#1a451a;
}

@media (max-width: 1600px) {
    .oval {
        width: 2200px;
        height: 800px;
        transform: translate(-50%, 200px);
    }
}

@media (max-width: 1200px) {
    .oval {
        display: none;
        /* Hide oval after 1200px */
    }
}

@media (max-width: 768px) {
    .oval {
        width: 1200px;
        height: 450px;
        transform: translate(-50%, 100px);
    }
}

@media (max-width: 480px) {
    .oval {
        width: 800px;
        height: 300px;
        transform: translate(-50%, 50px);
    }
}
.team-title {
    padding-top: 50px;
    padding-bottom: 15px;
    text-align: center;
    background: linear-gradient(95deg, #78beff 4.63%, #a8ff78 98.39%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-top: 74px;
    font: 700 72px/120px Urbanist, sans-serif;
    animation: move 2s;
}

.team-description {
    color: #fff;
    text-align: center;
    margin: 20px 120px;
    font: 400 18px/36px Lufga, sans-serif;
}

.read-more {
    display: flex;
    justify-content: center;
    border-bottom: 2px solid var(--fill-grad, #00b051);
    color: #fff;
    text-align: center;
    padding: 2px 4px;
    font: 700 16px/150% Urbanist, sans-serif;
    transition: transform 100ms ease-in-out 0s;
}

.read-more:hover {
    background: linear-gradient(95deg, #78beff 4.63%, #a8ff78 98.39%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transform: scale(1.25);
}

.image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000000;
    align-self: stretch;
    margin-top: 10px;
}

.team-image {
    aspect-ratio: 2.08;
    object-fit: auto;
    object-position: center;
    width: 80%;
    margin-bottom: 50px;
    max-width: 1000px;
    padding: 50px;
    background-color: #000000;
}

  .team-title {
    padding-top: 50px;
    padding-bottom: 15px;
    text-align: center;
    background: linear-gradient(95deg, #78beff 4.63%, #a8ff78 98.39%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-top: 74px;
    width: 834px;
    font: 700 72px/120px Urbanist, sans-serif;
    animation: move;
    animation-duration: 2s;
  }

  @media (max-width: 991px) {
      .team-title {
          font-size: 40px;
          line-height: 74px;
      }
  }

  .team-description {
      color: #fff;
      text-align: center;
      margin: 20px 120px;
      font: 400 18px/36px Lufga, sans-serif;
  }

  @media (max-width: 991px) {
      .team-description {
          max-width: 100%;
      }
  }

  .read-more {
      display: flex;
      justify-content: center;
      border-bottom: 2px solid var(--fill-grad, #00b051);
      color: #fff;
      text-align: center;
      padding: 2px 4px;
      font: 700 16px/150% Urbanist, sans-serif;
    transition: transform 100ms ease-in-out 0s;
  }
  .read-more:hover{
    background: linear-gradient(95deg, #78beff 4.63%, #a8ff78 98.39%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transform: scale(1.25);
  }
  .popup {
      position: relative;
      display: inline-block;
      cursor: pointer;
      -webkit-user-select: none;
      -moz-user-select: none;
      -ms-user-select: none;
      user-select: none;
  }


  .popup .popuptext {
      visibility: hidden;
      width: 160px;
      background-color: #555;
      color: #fff;
      text-align: center;
      border-radius: 6px;
      padding: 8px 0;
      position: absolute;
      z-index: 1;
      bottom: 125%;
      left: 50%;
      margin-left: -80px;
  }



  .popup .popuptext::after {
      content: "";
      position: absolute;
      top: 100%;
      left: 50%;
      margin-left: -5px;
      border-width: 5px;
      border-style: solid;
      border-color: #555 transparent transparent transparent;
  }

  span#myPopup.popuptext.show {
      visibility: visible;

  }
  .image-container {
      display: flex;
      justify-content: center;
      align-items: center;
      background-color: #000000;
      margin-top: 10px;
      width: 100%;
  }

  .team-image {
      object-fit: contain;
      /* Ensures the image scales within its container without distortion */
      width: 100%;
      max-width: 1600px;
      /* Default max width for larger screens */
      background-color: #000000;
  }

  /* Responsive behavior for screens up to 1600px */
  @media (max-width: 1600px) {
      .team-image {
          max-width: 1400px;
      }
  }

  /* Responsive behavior for screens up to 1200px */
  @media (max-width: 1200px) {
      .team-image {
          max-width: 1100px;
      }
  }

  /* Responsive behavior for screens up to 768px */
  @media (max-width: 768px) {
      .team-image {
          max-width: 700px;
      }
  }

  /* Responsive behavior for screens up to 480px */
  @media (max-width: 480px) {
      .team-image {
          max-width: 400px;
      }
  }
   .hero-container {
        z-index: 11;
       display: flex;
       flex-direction: column;
       position: relative;
       justify-content: center;
       align-items: center;
       overflow: hidden;
       width: 100%;
       color: #fff;
       text-align: center;
       padding: 376px 60px 280px;
       font: 700 120px/180px 'Outfit', sans-serif;
   }

   @media (max-width: 991px) {
       .hero-container {
           font-size: 40px;
           line-height: 67px;
           padding: 40px 20px;
       }
   }

   .hero-img {
       position: absolute;
       inset: 0;
       height: 100%;
       width: 100%;
       object-fit: cover;
       object-position: center;
   }

   .hero-text{
    z-index: 10;    
    text-align: center;
    background: #ffffff;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
     margin-top: 0;
    width: 834px;
    font: bold 80px/100px 'Outfit', sans-serif;
    animation: none;

   }

   .project-container {
       display: flex;
       flex-direction: column;
       background-color: #000000;
   }

   .header-text {
       z-index: 10;
       background:linear-gradient(95deg, #ffffff 4%, #17bb57 10%, #92f573 16%, #ffffff 70%); 
       text-align: left;
       background-clip: text;
       -webkit-background-clip: text;
       -webkit-text-fill-color: transparent;
       width: 100%;
       font: 700 48px/57.6px Urbanist, sans-serif;
       margin: 48px 0px -20px 100px;
       padding-bottom: 50px;

   }

   @media (max-width: 991px) {
       .header-text {
           max-width: 100%;
           font-size: 40px;
           line-height: 54px;
       }
   }

   .projects-section {
       margin: 48px 100px;
       padding-bottom: 25px;
   }

   @media (max-width: 991px) {
       .projects-section {
           max-width: 100%;
           margin-top: 40px;
       }
   }

   .projects-grid {
       gap: 20px;
       display: flex;
   }

   @media (max-width: 991px) {
       .projects-grid {
           flex-direction: column;
           align-items: stretch;
           gap: 0px;
       }
   }

   .project-column {
       display: flex;
       flex-direction: column;
       line-height: normal;
       width: 50%;
       margin-left: 0px;
   }

   @media (max-width: 991px) {
       .project-column {
           width: 100%;
       }
   }

   .project-card {
       border-radius: 50px;
       background-color: #171d16;
       display: flex;
       flex-grow: 1;
       padding: 0 0px 25px 0;
       flex-direction: column;
       width: 100%;
   }
   
   @media (max-width: 991px) {
       .project-card {
           max-width: 100%;
           margin-top: 40px;
       }
   }

   .img-container {
       justify-content: center;
       background-color: #000000;
       display: flex;
       flex-direction: column;

   }

   @media (max-width: 991px) {
       .img-container {
           max-width: 100%;
       }
   }

   .project-image {
       aspect-ratio: 1.19;
       object-fit: auto;
       object-position: center;
       width: 100%;
       border-top-left-radius: 50px;
       border-top-right-radius: 50px;
   }

   @media (max-width: 991px) {
       .project-image {
           max-width: 100%;
       }
   }

   .project-title {

       color: #fff;
       margin: 28px 30px 0 31px;
       font: 700 24px/120% Urbanist, sans-serif;
   }

   @media (max-width: 991px) {
       .project-title {
           max-width: 100%;
           margin-right: 10px;
       }
   }
   .project-title:hover {
       text-decoration:none;
   }
   .project-description {
       color: #fff;
       margin: 8px 30px 0 31px;
       font: 400 16px/22px Urbanist, sans-serif;
   }
   
   @media (max-width: 991px) {
       .project-description {
           max-width: 100%;
           margin-right: 10px;
       }
   }

   

   .project-column-2 {
       display: flex;
       flex-direction: column;
       line-height: normal;
       width: 50%;
       margin-left: 20px;
   }

   @media (max-width: 991px) {
       .project-column-2 {
           width: 100%;
       }
   }
   .tesla-container {
       display: flex;
       max-width: 100%;
       padding: 0;
       overflow: hidden;
   }

   .tesla-img {
       width: 100%;
       height: auto;
       object-fit: cover;
   }

         .sponsors-container {
            background-color: #000000;
             display: flex;
             flex-direction: column;
             font-size: 48px;
             color: #fff;
             font-weight: 700;
             text-align: center;
             line-height: 80px;
             padding-left: 10%;
         }

 .team-section {
     display: flex;
     flex-direction: column;
     background-color: #000000;
 }

 .team-title {
     color: #fff;
     background: var(--Main-Gardient, linear-gradient(95deg, #78beff 4.63%, #a8ff78 98.39%));
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     width: 100%;
     font: 700 48px/57.6px Urbanist, sans-serif;
 }

 @media (max-width: 991px) {
     .team-title {
         font-size: 40px;
         line-height: 54px;
     }
 }

 .team-container {
     margin-top: 48px;
     width: 100%;
     margin-left: 20px;
 }

 @media (max-width: 991px) {
     .team-container {
         margin-top: 40px;
     }
 }

 .team-wrapper {
     display: flex;
     gap: 20px;
 }

 @media (max-width: 991px) {
     .team-wrapper {
         flex-direction: column;
         gap: 0;
     }
 }

 .team-text-content,
 .team-image-content {
     display: flex;
     flex-direction: column;
     width: 100%;
 }

 .team-image-content {
     width: 55%;
 }

 .team-text-content {
     width: 45%;
     padding: 0 20px;
     margin: auto 0;
     color: #fff;
 }

 @media (max-width: 991px) {
     .team-image-content {
         width: 100%;
     }

     .team-text-content {
         width: 100%;
         margin-top: 40px;
     }
 }

 .team-subtitle {
     font: 700 32px/90% Urbanist, sans-serif;
 }

 

 .learn-more-button {
     display: flex;
     justify-content: center;
     align-items: center;
     background: var(--fill-grad, linear-gradient(95deg, #00b051 4.63%, #a8ff78 98.39%));
     border-radius: 50px;
     padding: 16px 32px;
     margin-top: 48px;
     color: #1c1a1a;
     font: 600 18px Inter, sans-serif;
 }

 .team-image {
     object-fit: contain;
     object-position: center;
     width: 100%;
 }

 @media (max-width: 991px) {
     .team-image {
         margin-top: 40px;
     }
 }

 .section {
     margin-top: 120px;
 }

 @media (max-width: 991px) {
     .section {
         margin-top: 40px;
     }
 }
 
 .sponsors-container {
    width: 100%;
     display: flex;
     flex-direction: column;
     background-color: #000000;
 }


   .image-row img {
    margin-left: 20%;
       width: 100%;
       height: 40%;
       object-fit:contain;
   }
 .image-row:last-child img {
     width: auto;
 }

   .sub-teams-container {
       display: flex;
       flex-direction: column;
       align-items: center;
       font-family: Urbanist, sans-serif;
       color: #fff;
       background: #000;
       width: 100%;
   }

   .section-title {
       font-size: 48px;
       font-weight: 700;
       line-height: 1.2;
       font-family: Anton, sans-serif;
       background: linear-gradient(95deg, #ffffff 15%, #17bb57 35%, #92f573 50%);
       text-align: left;
       background-clip: text;
       -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
   }

   .teams-grid {
       display: flex;
       margin-top: 64px;
       align-items: flex-start;
       gap: 40px 88px;
       font-size: 28px;
       font-weight: 600;
       text-align: center;
       justify-content: center;
       flex-wrap: wrap;
   }

   .team-card {
       display: flex;
       flex-direction: column;
       align-items: center;
       line-height: 42px;
   }

   .team-icon {
       aspect-ratio: 1;
       object-fit: contain;
       object-position: center;
       width: 80px;
   }

   .team-name {
       margin-top: 24px;
   }

   @media (max-width: 991px) {
       .section-title {
           font-size: 40px;
       }

       .teams-grid {
           max-width: 100%;
           margin-top: 40px;
       }
   }

.photo-container {
    background-color: #000;
    max-width: 1500px;
    padding-left: 50px;
    padding-right: 50px;
}
.photo-grid img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: none;
    object-fit: cover;
}

.photo{
    border-radius: 25px;
    padding-left: 10px;
    padding-bottom: 10px;
}
.footer-container{
    background-color: #000;
    width: 100%;
}
.footer {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px 100px;
    padding: 120px;
    width: 100%;
}

.contact-info {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 478px;
    min-width: 240px;
}

.contact-header {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 100%;
    max-width: 478px;
    color: #fff;
    font-weight: 400;
}

.contact-title {
    font: 80px Anton, sans-serif;
}

.contact-email {
    align-self: flex-start;
    border-bottom: 2px solid #78beff;
    padding: 10px 0;
    font: 20px/1.6 Urbanist, sans-serif;
    white-space: nowrap;
}

.social-media {
    display: flex;
    flex-direction: column;
    width: 344px;
    max-width: 100%;
    margin-top: 44px;
}

.social-media-title {
    color: #fff;
    text-align: center;
    align-self: flex-start;
    font: 500 18px/1 Lufga, sans-serif;
}

.social-icons {
    display: flex;
    align-items: flex-start;
    gap: 40px 56px;
    justify-content: flex-start;
    margin-top: 16px;
}

.social-icon {
    width: 24px;
    aspect-ratio: 1;
    object-fit: contain;
    object-position: center;
}

.contact-details {
    display: flex;
    align-items: flex-start;
    gap: 40px 124px;
    justify-content: flex-end;
    width: 251px;
    min-width: 240px;
}

.contact-column {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 251px;
    min-width: 240px;
}

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 251px;
    max-width: 100%;
    font-family: Urbanist, sans-serif;
    color: #fff;
}

.contact-section {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 100%;
}

.contact-label {
    font-size: 16px;
    font-weight: 600;
}

.contact-list {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 100%;
    margin-top: 14px;
    font-size: 14px;
    font-weight: 400;
}

.contact-item {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 251px;
}

.contact-item-wrapper {
    display: flex;
    align-items: center;
    gap: 13px;
    justify-content: flex-start;
}

.contact-icon {
    width: 24px;
    aspect-ratio: 1;
    object-fit: contain;
    object-position: center;
    align-self: stretch;
    margin: auto 0;
}

.contact-text {
    align-self: stretch;
    width: 214px;
    margin: auto 0;
    padding: 2px 0;
}

.email-wrapper {
    display: flex;
    flex-direction: column;
    width: 186px;
    max-width: 100%;
    margin-top: 16px;
    white-space: nowrap;
}

.email-item {
    display: flex;
    align-items: center;
    gap: 13px;
    justify-content: flex-start;
}

.email-text {
    align-self: stretch;
    width: 149px;
    margin: auto 0;
    padding: 2px 1px;
}

.contact-button-footer {
    align-self: stretch;
    width: 213px;
    max-width: 100%;
    min-height: 60px;
    margin-top: 32px;
    padding: 18px 32px;
    border-radius: 50px;
    background: linear-gradient(95deg, #00b051 4.63%, #a8ff78 98.39%);
    color: #141313;
    font: 600 20px Inter, sans-serif;
    border: none;
    cursor: pointer;
}

@media (max-width: 991px) {
    .footer {
        padding: 100px 20px;
    }

    .contact-info,
    .contact-header {
        max-width: 100%;
    }

    .contact-title {
        max-width: 100%;
        font-size: 40px;
    }

    .contact-email {
        white-space: initial;
    }

    .social-media {
        margin-top: 40px;
    }

    .email-wrapper,
    .email-item {
        white-space: initial;
    }

    .email-text {
        padding-right: 20px;
        white-space: initial;
    }

    .contact-button {
        padding: 18px 20px;
    }
}