 :root {
      --text-color: #fff;
      --bg-dark: #000;
    }

    body {
      margin: 0;
      font-family: 'Inter', sans-serif;
      background-color: var(--bg-dark);
      color: var(--text-color);
      overflow-x: hidden;
    }

    header {
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 1em 2em;
      background: #000;
	  font-weight:900;
      color: #fff;
    }
	.logo {
      max-width: 470px;
    }


       .hero {
      height: 100vh;
      position: relative;
      overflow: hidden;
    }

    .hero video {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: -1;
    }

    .scroll-arrow {
      position: absolute;
      bottom: 40px;
      left: 50%;
      transform: translateX(-50%);
      font-size: 2rem;
      color: #fff;
      cursor: pointer;
      animation: bounce 1.5s infinite;
    }

    @keyframes bounce {
      0%, 100% { transform: translate(-50%, 0); }
      50% { transform: translate(-50%, 10px); }
    }

    .about-section {
      z-index: 3;
      margin-top: 0;
      padding: 5em 10em;
      position: relative;
      background-color: #111;
      min-height: 100vh;
    }

    .about-text {
      font-size: 3.4em;
      font-weight: 300;
      line-height: 1.4;
      display: inline-block;
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 1s ease, transform 1s ease;
    }

    .about-text.visible {
      opacity: 1;
      transform: translateY(0px);
    }

    .contact-section {
      position: relative;
      display: grid;
      grid-template-columns: 1fr 3fr;
      background-color: #000;
      height: 100vh;
      overflow: hidden;
      padding: 0;
    }

    .contact-sidebar {
      display: flex;
      flex-direction: column;
      align-items:  start;
      justify-content: center;
      gap: 1em;
       padding: 3em 70px;  
	   
    }

    .tab {
      color: #aaa;
      font-size: 7em;
      cursor: pointer;
      transition: all 0.2s;
      background: none;
      border: none;
    }

    .tab:hover, .tab:focus {
      color: #fff;
      
    }

    .tab[aria-selected="true"] {
      color: #fff;
    }

    .tab:focus-visible {
      outline: 2px dashed #fff;
      outline-offset: 4px;
    }

    .contact-content {
      padding: 3em;
      color: #fff;
      font-size: 1.5em;
      display: none;
    }

    .contact-content.active {
      display: block;
    }

    footer {
      background-color: #000;
      color: #fff;
      text-align: center;
      padding: 1em;
      font-size: 0.9rem;
    }

    @media (max-width: 1024px) {
      .contact-section {
        grid-template-columns: 1fr;
        height: auto;
      }
      .contact-sidebar {
        flex-direction: row;
        justify-content: space-around;
        padding: 1em;
      }
      .contact-content {
        padding: 2em;
      }
    }

    @media (max-width: 768px) {
      .about-section {
        padding: 3em 2em;
      }
      .about-text {
        font-size: 2em;
      }
	  .logo {
      max-width: 150px;
    }


       .hero {
      height: 50vh;
      position: relative;
      overflow: hidden;
    }
      .tab {
        font-size: 1.2em;
      }
	  .hero video {
        height: auto;
        width: 100%;
        object-fit: cover;
      }
	  
    }