    @font-face {
    font-family: 'TT Octosquares Trial';
    src: url('https://fonts.cdnfonts.com/css/tt-octosquares-trial') format('woff2');
    font-weight: normal;
    font-style: normal;
    }

body {
    margin: 0;
    padding: 0;
    overflow: hidden;
    background: #0a0a1a;
    overflow-y: auto;
    font-family: 'Arial', sans-serif;
    cursor:none;
    
}

.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    cursor: none;
}

.circuit-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(90deg, #0a0a1a 20px, transparent 1%) center,
        linear-gradient(#0a0a1a 20px, transparent 1%) center,
        rgba(20, 100, 255, 0.2);
    background-size: 22px 22px;
    animation: circuitAnim 4s linear infinite;
}

@keyframes circuitAnim {
    0% {
        background-position: 0 0, 0 0;
    }
    100% {
        background-position: 22px 22px, 22px 22px;
    }
}

.particle {
    position: absolute;
    background: rgba(100, 180, 255, 0.6);
    border-radius: 50%;
    filter: blur(1px);
    animation: floatAnim 15s infinite linear;
}

.particle:nth-child(1) {
    width: 2px;
    height: 2px;
    top: 20%;
    left: 15%;
    animation-duration: 20s;
}

.particle:nth-child(2) {
    width: 3px;
    height: 3px;
    top: 60%;
    left: 30%;
    animation-duration: 15s;
}

.particle:nth-child(3) {
    width: 2px;
    height: 2px;
    top: 80%;
    left: 45%;
    animation-duration: 25s;
}

.particle:nth-child(4) {
    width: 4px;
    height: 4px;
    top: 40%;
    left: 70%;
    animation-duration: 12s;
}

.particle:nth-child(5) {
    width: 2px;
    height: 2px;
    top: 30%;
    left: 85%;
    animation-duration: 18s;
}

.particle:nth-child(6) {
    width: 3px;
    height: 3px;
    top: 75%;
    left: 10%;
    animation-duration: 22s;
}

.particle:nth-child(7) {
    width: 1px;
    height: 1px;
    top: 50%;
    left: 50%;
    animation-duration: 30s;
}

.particle:nth-child(8) {
    width: 2px;
    height: 2px;
    top: 15%;
    left: 65%;
    animation-duration: 17s;
}

.particle:nth-child(9) {
    width: 3px;
    height: 3px;
    top: 90%;
    left: 80%;
    animation-duration: 14s;
}

.particle:nth-child(10) {
    width: 1px;
    height: 1px;
    top: 65%;
    left: 25%;
    animation-duration: 28s;
}

@keyframes floatAnim {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) translateX(50px);
        opacity: 0;
    }
}

/* Hex grid pattern */
.hex-grid {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    background: radial-gradient(circle at center, rgba(50, 150, 255, 0.3) 0%, transparent 70%);
}

.hex {
    position: absolute;
    width: 60px;
    height: 34px;
    background-color: rgba(100, 180, 255, 0.1);
    border-left: 1px solid rgba(100, 180, 255, 0.3);
    border-right: 1px solid rgba(100, 180, 255, 0.3);
    animation: pulse 4s infinite ease-in-out;
}

.hex:before, .hex:after {
    content: "";
    position: absolute;
    width: 0;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
}

.hex:before {
    bottom: 100%;
    border-bottom: 17px solid rgba(100, 180, 255, 0.1);
}

.hex:after {
    top: 100%;
    border-top: 17px solid rgba(100, 180, 255, 0.1);
}

.hex:nth-child(1) {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.hex:nth-child(2) {
    top: 30%;
    left: 25%;
    animation-delay: 0.5s;
}

.hex:nth-child(3) {
    top: 60%;
    left: 15%;
    animation-delay: 1s;
}

.hex:nth-child(4) {
    top: 20%;
    left: 65%;
    animation-delay: 1.5s;
}

.hex:nth-child(5) {
    top: 70%;
    left: 75%;
    animation-delay: 2s;
}

.hex:nth-child(6) {
    top: 50%;
    left: 50%;
    animation-delay: 2.5s;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.2;
    }
}

.nav-buttons {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10;
    display: flex;
    gap: 15px;
    
}

.nav-button {
    font-family: 'Courier New', monospace;
    font-size: 1rem;
    text-transform: uppercase;
    color: white;
    background: transparent;
    border: none;
    padding: 8px 12px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    text-shadow: 0px 0px 0px #ffffff,
                0px 0px 5px #ffffff,
                0px 0px 15px #dddddd,
                0px 0px 30px #bbbbbb,
                0px 0px 50px #999999;
    text-decoration: none;
}

.nav-button::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: white;
    transition: width 0.3s ease;
}

.nav-button:hover::after {
    width: 100%;
}

.left-nav {
    position: fixed;
    top: -30px;
    left: -10px;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 0px;
    cursor: none;
}

.main-logo {
    width: 150px;
    height: 150px;
}

.main-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-button {
    width: 28px;
    height: 28px;
    background: transparent;
    border: none;
    padding: 0;
    transition: transform 0.3s ease;
}

.social-button img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: filter 0.3s ease;
}

.social-button:hover img {
    filter: brightness(0) invert(0.8);
}

.social-button:hover {
    transform: scale(1.1);
}

.typewriter-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 30vh;
    position: relative;
}

.typewriter {
    font-family: 'TT Octosquares Trial', sans-serif;
    font-size: 5rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5rem;
    color: white;
    position: relative;
    text-shadow: 0px 0px 0px #d4d4d4,
                0px 0px 40px #b1b0b0,
                0px 0px 80px #757575,
                0px 0px 120px #757575,
                0px 0px 160px #333333;
    z-index: 3;
    text-align: center;
    line-height: 1;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease;
}

.typewriter.visible {
    opacity: 1;
    visibility: visible;
}

.typewriter.typing::after {
    content: "|";
    position: absolute;
    right: -2rem;
    animation: blink 0.7s infinite;
}

.typewriter.completed::after {
    display: none;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}
.logo-container {
  display: flex;
  align-items: center; /* This ensures vertical alignment */
  justify-content: center;
  gap: 5%; /* Space between elements */
  width: 100%;
  padding: 20px;
}

.logo-right {
  flex: 0 0 auto; /* Don't grow or shrink */
  display: flex;
  align-items: center;
  height: 100px; /* Adjust based on your logo sizes */
}
.logo-left{
  flex: 0 0 auto; /* Don't grow or shrink */
  display: flex;
  align-items: center;
  height: 100px;
  top: 100%;
}

.logo-left img, .logo-right img {
  max-height: 450%;
  width: auto;
  object-fit: contain;
}

/* Global Animation Styles */
.left-nav,
.nav-buttons,
.typewriter-container,
.logo-container,
.team-grid,
.team-card {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

/* Staggered Animation Delays */
.left-nav {
    transition-delay: 0.2s;
}

.nav-buttons {
    transition-delay: 0.4s;
}

.typewriter-container {
    transition-delay: 0.6s;
}

.logo-container {
    transition-delay: 0.8s;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 40px;
    padding: 0 5%;
    max-width: 1400px;
    margin: 0 auto;
}

/* Team Card Staggering */
.team-card:nth-child(1) { transition-delay: 1.2s; }
.team-card:nth-child(2) { transition-delay: 1.3s; }
.team-card:nth-child(3) { transition-delay: 1.4s; }
.team-card:nth-child(4) { transition-delay: 1.5s; }
.team-card:nth-child(5) { transition-delay: 1.6s; }
.team-card:nth-child(6) { transition-delay: 1.7s; }
.team-card:nth-child(7) { transition-delay: 1.8s; }
.team-card:nth-child(8) { transition-delay: 1.9s; }
.team-card:nth-child(9) { transition-delay: 2.0s; }
.team-card:nth-child(10) { transition-delay: 2.1s; }
.team-card:nth-child(11) { transition-delay: 2.2s; }
.team-card:nth-child(12) { transition-delay: 2.3s; }

/* Active State Trigger */
body.loaded .left-nav,
body.loaded .nav-buttons,
body.loaded .typewriter-container,
body.loaded .logo-container,
body.loaded .team-grid,
body.loaded .team-card {
    opacity: 1;
    transform: translateY(0);
}

.team-grid-container {
    width: 100%;
    padding: 50px 0;
    position: relative;
    z-index: 2;
    min-height: 100vh;
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    justify-content: center;
    gap: 40px;
    padding: 0 5%;
    max-width: 1400px;
    margin: 0 auto;
}


/* Team Card Styles - Enhanced */
.team-card {
    position: relative;
    height: 500px;
    perspective: 1200px;
    cursor: pointer;
    border-radius: 20px;
    margin: 15px;
}

.card-3d-effect {
    position: absolute;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    background: linear-gradient(135deg, rgba(50, 150, 255, 0.3) 0%, rgba(100, 200, 255, 0.1) 100%);
    border-radius: 20px;
    bottom: -15px;
    right: -15px;
    z-index: -1;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.card-main {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.4);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.team-card:hover .card-main {
    transform: translate(-10px, -10px) rotateX(5deg) rotateY(-5deg);
}

.team-card:hover .card-3d-effect {
    transform: translate(10px, 10px);
}

.card-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 30, 60, 0.9) 0%, rgba(20, 60, 120, 0.9) 100%);
    z-index: -1;
    transition: all 0.6s ease;
}

.card-glare {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.6s ease;
}

.team-card:hover .card-glare {
    opacity: 1;
}

.team-card:hover .card-background {
    background: linear-gradient(135deg, rgba(20, 60, 120, 0.95) 0%, rgba(40, 100, 200, 0.95) 100%);
}

.card-image {
    position: relative;
    width: 100%;
    height: 65%;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.4);
    filter: brightness(0.9);
}

.tech-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(100, 200, 255, 0.9);
    color: #0a1a2a;
    padding: 5px 12px;
    border-radius: 20px;
    font-family: 'TT Octosquares Trial', sans-serif;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
}

.team-card:hover .tech-badge {
    transform: scale(1.1);
    background: rgba(150, 220, 255, 1);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(10, 30, 60, 0.8) 0%, transparent 60%);
    transition: all 0.6s ease;
}

.team-card:hover .image-overlay {
    background: linear-gradient(to top, rgba(20, 60, 120, 0.95) 0%, transparent 60%);
}

.team-card:hover .card-image img {
    transform: scale(1.1);
    filter: brightness(1);
}

.card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 25px;
    box-sizing: border-box;
    color: white;
    text-align: center;
    transform: translateY(0);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.4);
    background: linear-gradient(to top, rgba(10, 30, 60, 0.9) 0%, rgba(10, 30, 60, 0.6) 100%);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.member-name {
    font-family: 'TT Octosquares Trial', sans-serif;
    font-size: 2rem;
    margin: 0 0 8px 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
    transition: all 0.4s ease;
    color: #ffffff;
}

.team-card:hover .member-name {
    color: #88ccff;
    text-shadow: 0 2px 15px rgba(136, 204, 255, 0.4);
}

.member-position {
    font-family: 'Courier New', monospace;
    font-size: 1.1rem;
    margin: 0 0 15px 0;
    color: rgba(200, 230, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: bold;
    transition: all 0.4s ease;
}

.team-card:hover .member-position {
    color: #aaddff;
    letter-spacing: 2.5px;
}

.member-bio {
    font-family: 'Arial', sans-serif;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0 0 20px 0;
    color: rgba(255, 255, 255, 0.8);
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.6s ease;
}

.team-card:hover .member-bio {
    opacity: 1;
    max-height: 100px;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.6s ease;
    cursor: none;
}

.team-card:hover .social-links {
    transform: translateY(0);
    opacity: 1;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(100, 180, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.4);
    position: relative;
    overflow: hidden;
}

.social-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(100, 200, 255, 0.4) 0%, rgba(50, 150, 255, 0.6) 100%);
    transform: scale(0);
    border-radius: 50%;
    transition: transform 0.4s ease;
}

.social-links a:hover::before {
    transform: scale(1);
}

.social-links a img {
    width: 60%;
    height: 60%;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.social-links a:hover img {
    filter: brightness(0) invert(0.9) sepia(1) saturate(5) hue-rotate(180deg);
    transform: scale(1.2) rotate(10deg);
}

    .neural-cursor {
      position: fixed;
      width: 32px;
      height: 32px;
      pointer-events: none;
      z-index: 9999;
      transform: translate(-50%, -50%);
      filter: drop-shadow(0 0 8px rgba(100, 220, 255, 0.3));
    }
    
    .cursor-center {
      position: absolute;
      width: 8px;
      height: 8px;
      background: #70f0ff;
   box-shadow: 0px 0px 0px #00ffc8,
                0px 0px 5px #00ffc8,
                0px 0px 15px #00dcae,
                0px 0px 30px #00b38d,
                0px 0px 50px #008c6f;
      border-radius: 50%;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      transition: all 0.15s ease-out;
    }
    
    .neural-ring {
      position: absolute;
      border: 1px solid rgba(100, 220, 255, 0.6);
      
   box-shadow: 0px 0px 0px #00ffc8,
                0px 0px 5px #00ffc8,
                0px 0px 15px #00dcae,
                0px 0px 30px #00b38d,
                0px 0px 50px #008c6f;
      border-radius: 50%;
      transition: all 0.3s cubic-bezier(0.17, 0.67, 0.21, 0.99);
    }
    
    .neural-node {
      position: absolute;
      width: 3px;
      height: 3px;
      background: #70f0ff;
      
   box-shadow: 0px 0px 0px #00ffc8,
                0px 0px 5px #00ffc8,
                0px 0px 15px #00dcae,
                0px 0px 30px #00b38d,
                0px 0px 50px #008c6f;
      border-radius: 50%;
      transform: translate(-50%, -50%);
    }
    
    .connection-path {
      position: absolute;
      height: 1px;
      background: linear-gradient(90deg, rgba(100, 220, 255, 0), rgba(100, 220, 255, 0.7));
      transform-origin: left center;
    }
    
    .hover-pulse {
      position: absolute;
      width: 1px;
      height: 1px;
      border-radius: 50%;
      background: rgba(100, 220, 255, 0.3);
      transform: translate(-50%, -50%);
    }

@media screen and (max-width: 767px) {
  body {
    overflow-x: hidden;
    -webkit-tap-highlight-color: transparent;
  }

  .particle {
    transform: scale(0.7);
  }
  
  .hex {
    transform: scale(0.8);
  }

  .mobile-nav-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 30px;
    height: 24px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.3s ease;
    mix-blend-mode: difference;
  }

  .toggle-line {
    width: 100%;
    height: 3px;
    background: white;
    transition: all 0.3s ease;
    border-radius: 2px;
    box-shadow: 0 0 5px rgba(100, 220, 255, 0.8);
  }

  .mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 26, 0.95);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
  }

  .mobile-menu-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .mobile-nav-link {
    color: white;
    font-family: 'TT Octosquares Trial', sans-serif;
    font-size: 1.8rem;
    text-decoration: none;
    position: relative;
    padding: 10px 20px;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 0 10px rgba(100, 220, 255, 0.8);
  }

  .left-nav {
    top: 10px;
    left: 10px;
  }

  .main-logo {
    width: 80px;
    height: 80px;
  }

  .nav-buttons {
    display: none;
  }

  .typewriter {
    font-size: 2.2rem;
    letter-spacing: 0.2rem;
    margin-top: 20px;
  }

  .logo-container {
    flex-direction: column;
    gap: 15px;
    padding: 10px;
  }

  .logo-left, .logo-right {
    height: 70px;
  }

  .team-grid {
    grid-template-columns: 1fr;
    padding: 0 15px;
    gap: 25px;
  }

  .team-card {
    height: 380px;
    margin: 5px 0;
  }

  .neural-cursor {
    display: none; 
    transform: scale(0.7);
  }
}



@media screen and (max-width: 767px) {
  body {
    overflow-x: hidden;
    -webkit-tap-highlight-color: transparent;
    cursor: default;
  }
  
.logo-left img, .logo-right img {
  max-height: 350%;
  width: auto;
  object-fit: contain;
}
  .particle {
    transform: scale(0.7);
  }
  
  .hex {
    transform: scale(0.8);
  }

  .mobile-nav-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 30px;
    height: 24px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.3s ease;
    mix-blend-mode: difference;
  }

  .toggle-line {
    width: 100%;
    height: 3px;
    background: white;
    transition: all 0.3s ease;
    border-radius: 2px;
    box-shadow: 0 0 5px rgba(100, 220, 255, 0.8);
  }

  .mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 26, 0.95);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
  }

  .mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  .mobile-menu-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .mobile-nav-link {
    color: white;
    font-family: 'TT Octosquares Trial', sans-serif;
    font-size: 1.8rem;
    text-decoration: none;
    position: relative;
    padding: 10px 20px;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 0 10px rgba(100, 220, 255, 0.8);
    transition: all 0.3s ease;
  }

  .mobile-nav-link:hover {
    color: #70f0ff;
  }

  .left-nav {
    top: 10px;
    left: 10px;
    flex-direction: column;
    align-items: flex-start;
  }

  .main-logo {
    width: 80px;
    height: 80px;
  }

  .nav-buttons {
    display: none;
  }

  .typewriter-container {
    height: 20vh;
    margin-top: 30px;
  }

  .typewriter {
    font-size: 2.2rem;
    letter-spacing: 0.2rem;
  }

  .logo-container {
    flex-direction: column;
    gap: 15px;
    padding: 10px;
    margin-top: 20px;
  }

  .logo-left, .logo-right {
    height: 70px;
  }

  .team-grid {
    grid-template-columns: 1fr;
    padding: 0 15px;
    gap: 25px;
    margin-top: 30px;
  }

  .team-card {
    height: 380px;
    margin: 5px 0;
  }

  .neural-cursor {
    display: none !important;
  }
}

@media screen and (max-width: 480px) {
  .typewriter {
    font-size: 1.8rem;
  }

  .team-card {
    height: 340px;
  }

  .member-name {
    font-size: 1.5rem;
  }

  .member-position {
    font-size: 0.9rem;
  }
  
  .particle:nth-child(n+6) {
    display: none;
  }
  
  .hex:nth-child(n+4) {
    display: none;
  }
}

@media screen and (max-width: 767px) and (orientation: landscape) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-card {
    height: 280px;
  }

  .mobile-menu-content {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .mobile-nav-link {
    font-size: 1.4rem;
  }
  
  .particle {
    display: block;
    transform: scale(0.6);
  }
} 
