/* style.css */
body {
  margin: 0;
  padding-top: 70px;
  font-family: 'Montserrat', sans-serif;
  background-color: #000;
  color: white;
  overflow-x: hidden; 
}

    nav {
      width: 100%;
      background: #111;
      padding: 1rem 2rem;
      position: fixed;
      top: 0;
      z-index: 999;
      display: flex;
      justify-content: flex-end;
      gap: 2rem;
    }

/* Animation tabbar */
.shine-link {
  position: relative;
  display: inline-block;
  font-weight: 500;
  background: linear-gradient(18deg, #c84de0 15%, #70c7f9 70%, #a5e8df 30%);
  background-size: 200% auto;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: shine 20.5s linear infinite;
  text-decoration: none;
}

@keyframes shine {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}

  .section {
      padding: 100px 20px;
      max-width: 1200px;
      margin: auto;
      text-align: center;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2rem;
      margin-top: 3rem;
    }

    .service-card {
      background: rgba(255, 255, 255, 0.05);
      border-radius: 10px;
      padding: 2rem;
      box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
      transition: transform 0.3s, box-shadow 0.3s;
    }

    .service-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 0 25px rgba(54, 244, 197, 0.5);
    }

    .service-title {
      font-size: 1.5rem;
      font-weight: bold;
      margin-bottom: 1rem;
      background: linear-gradient(90deg, #36F4C5, #FF3DFF);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .service-desc {
      font-size: 1rem;
      color: #ccc;
    }

.particle-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.particle {
  position: absolute;
  width: 4px; /* Increased from 4px */
  height: 4px; /* Increased from 4px */
  border-radius: 50%;
  background: radial-gradient(circle, rgba(222, 71, 222, 0.9), rgba(0, 255, 255, 0.9), rgba(0, 255, 136, 0.9)); /* Increased color opacity */
  opacity: 0.8; /* Increased from 0.6 */
  animation: floatParticle 15s linear infinite;
  box-shadow: 0 0 8px 2px rgba(255, 0, 255, 0.6); /* Added glow effect */
  filter: brightness(1.2); /* Make colors more vibrant */
}

/* .particle {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: radial-gradient(circle, #ff00ff, #00ffff, #00ff88);
  opacity: 10.8;
  animation: floatParticle s linear infinite;
} */

/* Create random positions and delays */
/* .particle:nth-child(1) { top: 10%; left: 20%; animation-delay: 0s; }
.particle:nth-child(2) { top: 50%; left: 80%; animation-delay: 2s; }
.particle:nth-child(3) { top: 70%; left: 40%; animation-delay: 4s; }
.particle:nth-child(4) { top: 30%; left: 60%; animation-delay: 1s; }
.particle:nth-child(5) { top: 90%; left: 10%; animation-delay: 3s; }
.particle:nth-child(6) { top: 20%; left: 90%; animation-delay: 5s; }
.particle:nth-child(7) { top: 40%; left: 30%; animation-delay: 2.5s; }
.particle:nth-child(8) { top: 60%; left: 50%; animation-delay: 1.8s; }
.particle:nth-child(9) { top: 80%; left: 70%; animation-delay: 3.6s; }
.particle:nth-child(10){ top: 15%; left: 15%; animation-delay: 0.7s; }
.particle:nth-child(11) { top: 50%; left: 50%; animation-delay: 1.8s; }
.particle:nth-child(12) { top: 80%; left: 70%; animation-delay: 3.6s; }
.particle:nth-child(13){ top: 10%; left: 15%; animation-delay: 0.7s; }
.particle:nth-child(14) { top: 40%; left: 30%; animation-delay: 2.5s; }
.particle:nth-child(15) { top: 60%; left: 80%; animation-delay: 1.8s; }
.particle:nth-child(16) { top: 80%; left: 90%; animation-delay: 3.6s; } */

@keyframes floatParticle {
  0% {
    transform: translateY(0) translateX(0) scale(1);
    opacity: 0.8;
  }
  25% {
    transform: translateY(-80px) translateX(40px) scale(1.3);
    opacity: 0.9;
  }
  50% {
    transform: translateY(-120px) translateX(80px) scale(1.5);
    opacity: 1;
  }
  75% {
    transform: translateY(-80px) translateX(40px) scale(1.3);
    opacity: 0.9;
  }
  100% {
    transform: translateY(0) translateX(0) scale(1);
    opacity: 0.8;
  }
}

/* Create more random positions and add more particles */
.particle:nth-child(1) { top: 10%; left: 20%; animation-delay: 0s; }
.particle:nth-child(2) { top: 50%; left: 80%; animation-delay: 2s; }
.particle:nth-child(3) { top: 70%; left: 40%; animation-delay: 7s; }
.particle:nth-child(4) { top: 30%; left: 60%; animation-delay: 1s; }
.particle:nth-child(5) { top: 90%; left: 10%; animation-delay: 3s; }
.particle:nth-child(6) { top: 20%; left: 90%; animation-delay: 5s; }
.particle:nth-child(7) { top: 40%; left: 30%; animation-delay: 2.5s; }
.particle:nth-child(8) { top: 60%; left: 50%; animation-delay: 1.8s; }
.particle:nth-child(9) { top: 80%; left: 70%; animation-delay: 3.6s; }
.particle:nth-child(10){ top: 15%; left: 15%; animation-delay: 0.7s; }
.particle:nth-child(11) { top: 50%; left: 50%; animation-delay: 1.8s; }
.particle:nth-child(12) { top: 80%; left: 70%; animation-delay: 3.6s; }
.particle:nth-child(13){ top: 10%; left: 15%; animation-delay: 0.7s; }
/* Add more particles */
.particle:nth-child(14) { top: 25%; left: 35%; animation-delay: 0.9s; }
.particle:nth-child(15) { top: 45%; left: 85%; animation-delay: 2.2s; }
.particle:nth-child(16) { top: 75%; left: 25%; animation-delay: 3.8s; }
.particle:nth-child(17) { top: 35%; left: 75%; animation-delay: 1.3s; }
.particle:nth-child(18) { top: 95%; left: 40%; animation-delay: 2.7s; }
.particle:nth-child(19) { top: 15%; left: 65%; animation-delay: 4.1s; }
.particle:nth-child(20) { top: 55%; left: 20%; animation-delay: 1.5s; }
.particle:nth-child(21) { top: 85%; left: 85%; animation-delay: 3.2s; }
.particle:nth-child(22) { top: 5%; left: 45%; animation-delay: 2.9s; }
.particle:nth-child(23) { top: 65%; left: 95%; animation-delay: 0.3s; }
.particle:nth-child(24) { top: 30%; left: 5%; animation-delay: 4.5s; }
.particle:nth-child(25) { top: 70%; left: 60%; animation-delay: 1.9s; }
.particle:nth-child(26) { top: 20%; left: 50%; animation-delay: 3.4s; }
.particle:nth-child(27) { top: 40%; left: 10%; animation-delay: 2.1s; }
.particle:nth-child(28) { top: 90%; left: 30%; animation-delay: 0.5s; }
.particle:nth-child(29) { top: 60%; left: 40%; animation-delay: 2.4s; }
.particle:nth-child(30) { top: 25%; left: 70%; animation-delay: 4.7s; }

@keyframes shine {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }

}

.clock-numbers-fixed {
  position: absolute;
  width: 120px;    /* Adjust this to match the yellow circle radius */
  height: 120px;
  top: 86px;       /* Manually adjust until it sits on the yellow ring */
  left: 89px;
  pointer-events: none;
}

.clock-numbers-fixed span {
  position: absolute;
  transform-origin: center;
  color: white;
  font-size: 10px;
  font-weight: bold;
}

/* Place numbers in circle */
.clock-numbers-fixed span:nth-child(1) { transform: rotate(0deg) translate(58px) rotate(0deg); }   /* 12 */
.clock-numbers-fixed span:nth-child(2) { transform: rotate(30deg) translate(58px) rotate(-30deg); }
.clock-numbers-fixed span:nth-child(3) { transform: rotate(60deg) translate(58px) rotate(-60deg); }
.clock-numbers-fixed span:nth-child(4) { transform: rotate(90deg) translate(58px) rotate(-90deg); }
.clock-numbers-fixed span:nth-child(5) { transform: rotate(120deg) translate(58px) rotate(-120deg); }
.clock-numbers-fixed span:nth-child(6) { transform: rotate(150deg) translate(58px) rotate(-150deg); }
.clock-numbers-fixed span:nth-child(7) { transform: rotate(180deg) translate(58px) rotate(-180deg); }
.clock-numbers-fixed span:nth-child(8) { transform: rotate(210deg) translate(58px) rotate(-210deg); }
.clock-numbers-fixed span:nth-child(9) { transform: rotate(240deg) translate(58px) rotate(-240deg); }
.clock-numbers-fixed span:nth-child(10) { transform: rotate(270deg) translate(58px) rotate(-270deg); }
.clock-numbers-fixed span:nth-child(11) { transform: rotate(300deg) translate(58px) rotate(-300deg); }
.clock-numbers-fixed span:nth-child(12) { transform: rotate(330deg) translate(58px) rotate(-330deg); }

.shape-image {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: contain;
  top: 0;
  left: 0;
  z-index: 2;
  pointer-events: none;
}
