html, body {
  overflow-x: hidden;
}
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html,
    body {
      height: 100%;
      background: #000;
      font-family: 'Arial', sans-serif;
      overflow-x: hidden;
    }

    #welcome {
      position: relative;
      height: 100vh;
      width: 100vw;
      overflow: hidden;
      display: flex;
      justify-content: center;
      align-items: center;
      text-align: center;
    }

    #welcome video {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.5;
      filter: brightness(0.6);
    }

    .overlay {
      top: -160px;
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 20px;
      z-index: 1;
    }

    .neon-text {
         font-family: sans-serif;
    color: #fff;
    font-size: 5rem;
    text-shadow: 0 0 5px #ff005e, 0 0 10px #ff005e, 0 0 20px #ff005e, 0 0 40px #ff005e, 0 0 80px #ff005e;
    animation: glow 1.5s infinite alternate;
    margin-bottom: 1rem;
    }

    @keyframes glow {
      0% {
        text-shadow: 0 0 5px #ff005e, 0 0 10px #ff005e, 0 0 20px #ff005e, 0 0 40px #ff005e, 0 0 80px #ff005e;
      }

      100% {
        text-shadow: 0 0 10px #00d4ff, 0 0 20px #00d4ff, 0 0 40px #00d4ff, 0 0 80px #00d4ff, 0 0 160px #00d4ff;
      }
    }

    .name-title {
      font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 4rem;
    background-image: url(https://media.giphy.com/media/26BROrSHlmyzzHf3i/giphy.gif);
    font-weight: bold;
    background-size: cover;
    color: transparent;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    text-transform: uppercase;
    line-height: 1.2;
    }

    @media (max-width: 768px) {
      .neon-text {
        font-size: 2.5rem;
      }

      .name-title {
        font-size: 2rem;
      }
    }

    @media (max-width: 480px) {
      .neon-text {
        font-size: 2rem;
      }

      .name-title {
        font-size: 1.5rem;
      }
    }

    .glowing {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      pointer-events: none;
      z-index: 0;
      animation: colorChange 5s linear infinite;
    }

    @keyframes colorChange {
      0% {
        filter: hue-rotate(0deg);
        transform: rotate(0deg);
      }

      100% {
        filter: hue-rotate(360deg);
        transform: rotate(360deg);
      }
    }

    .glowing span {
      position: absolute;
      top: calc(80px * var(--i));
      left: calc(80px * var(--i));
      bottom: calc(80px * var(--i));
      right: calc(80px * var(--i));
    }

    .glowing span::before {
      content: "";
      position: absolute;
      top: 50%;
      left: -8px;
      width: 15px;
      height: 15px;
      background: #f00;
      border-radius: 50%;
    }

    .glowing span:nth-child(3n+1)::before {
      background: rgba(134, 255, 0, 1);
      box-shadow: 0 0 20px rgba(134, 255, 0, 1), 0 0 40px rgba(134, 255, 0, 1), 0 0 60px rgba(134, 255, 0, 1), 0 0 80px rgba(134, 255, 0, 1), 0 0 0 8px rgba(134, 255, 0, 0.1);
    }

    .glowing span:nth-child(3n+2)::before {
      background: rgba(255, 214, 0, 1);
      box-shadow: 0 0 20px rgba(255, 214, 0, 1), 0 0 40px rgba(255, 214, 0, 1), 0 0 60px rgba(255, 214, 0, 1), 0 0 80px rgba(255, 214, 0, 1), 0 0 0 8px rgba(255, 214, 0, 0.1);
    }

    .glowing span:nth-child(3n+3)::before {
      background: rgba(0, 226, 255, 1);
      box-shadow: 0 0 20px rgba(0, 226, 255, 1), 0 0 40px rgba(0, 226, 255, 1), 0 0 60px rgba(0, 226, 255, 1), 0 0 80px rgba(0, 226, 255, 1), 0 0 0 8px rgba(0, 226, 255, 0.1);
    }

    .glowing span:nth-child(3n+1) {
      animation: animate 10s alternate infinite;
    }

    .glowing span:nth-child(3n+2) {
      animation: animate-reverse 3s alternate infinite;
    }

    .glowing span:nth-child(3n+3) {
      animation: animate 8s alternate infinite;
    }

    @keyframes animate {
      0% {
        transform: rotate(180deg);
      }

      50% {
        transform: rotate(0deg);
      }

      100% {
        transform: rotate(360deg);
      }
    }

    @keyframes animate-reverse {
      0% {
        transform: rotate(360deg);
      }

      50% {
        transform: rotate(180deg);
      }

      100% {
        transform: rotate(0deg);
      }
    }

    .section-title {
      font-size: 2.5rem;
      text-align: center;
      color: #fff;
      padding: 60px 20px 20px;
      font-family: 'Cairo', sans-serif;
    }

    .video-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 20px;
      max-width: 1200px;
      margin: 0 auto 80px;
      padding: 0 20px;
    }

    .video-item {
      position: relative;
      overflow: hidden;
      border-radius: 10px;
      padding-top: 56.25%;
    }

    .video-item.portrait {
      padding-top: 177.77%;
    }

    .video-item iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      border: none;
    }



    /*Form section*/
    /* CONTACT SECTION */
    #contact {
      background: rgba(255, 255, 255, 0.07);
      /* translucent overlay */
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      /* for Safari */
      border-radius: 12px;
      
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
      padding: 80px 20px;
      font-family: 'Nunito', sans-serif;
    }

    .contact-container {
      max-width: 1100px;
      margin: auto;
      display: flex;
      flex-wrap: wrap;
      gap: 40px;
      justify-content: space-between;
      align-items: flex-start;
    }

    .contact-info,
    .contact-form {
      flex: 1 1 300px;
    }

    .contact-title {
      font-size: 2.5rem;
      margin-bottom: 20px;
      color: white;
      font-family: 'Cairo', sans-serif;
    }

    .contact-desc {
      font-size: 1rem;
      line-height: 1.6;
      color: white;
    }

    /* Form Styles */
    .contact-form form {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .contact-form input,
    .contact-form textarea {
      padding: 16px;
      border-radius: 8px;
      background: rgba(255, 255, 255, 0.07);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.15);
      font-size: 1rem;
      font-family: 'Nunito', sans-serif;
      color: #fff;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    }

    .contact-form button {
      padding: 16px;
      width: 100%;
      background-color: yellow;
      color: black;
      font-size: 1rem;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      font-weight: 600;
    }

    .contact-form button:hover {
      background-color: #9c9740;
    }

    /* Social icons */
    .social-links {
      margin-top: 24px;
      display: flex;
      justify-content: center;
      gap: 15px;
      font-size: 1.5rem;
    }

    .social-links a {
      color: yellow;
      text-decoration: none;
      transition: transform 0.3s;
    }

    .social-links a:hover {
      transform: scale(1.2);
    }
 