@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');
    
body {
  font-family: 'Inter', sans-serif;
  scroll-behavior: smooth;
}

.gradient-text {
  background: linear-gradient(90deg, #000000, #ccff00);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.neon-shadow {
  box-shadow: 0 0 10px rgba(204, 255, 0, 0.5);
}

.neon-border {
  border: 2px solid #ccff00;
}
#home{
  clip-path: polygon(0 0, 102% 0, 100% 75%, 0% 100%);
  background-color: #f3f4f6;
}
nav{
  clip-path: polygon(0 0, 100% 0, 100% 50%, 0% 100%);
  height: 100px;
}
#innovation{
  clip-path: polygon(0 8%, 100% 0, 100% 92%, 0% 100%);
  background-color: #f3f4f6;
}
#about{
   clip-path: polygon(0 8%, 100% 0, 100% 92%, 0% 100%);
  background-color: #f3f4f6;
}
#areaNum{
  clip-path: polygon(0 20%, 100% 0, 100% 80%, 0% 100%);
}
#contact{
 
  background-color: #fff;
}
footer{
  clip-path:polygon(0 14%, 100% 0, 100% 100%, 0% 100%);
}
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

.tech-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.form-input:focus {
  outline: none;
  border-color: #ccff00;
  box-shadow: 0 0 0 2px rgba(204, 255, 0, 0.2);
}

.nav-link {
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: #ccff00;
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.scroll-indicator {
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
  40% {transform: translateY(-20px);}
  60% {transform: translateY(-10px);}
}

.counter {
  animation: counter 2s ease-out forwards;
  opacity: 0;
}

@keyframes counter {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 991px) {
    nav{
        height: auto;
      }
      nav,
      footer,
      #areaNum{
        clip-path: initial;
       
      }
      #home{
        clip-path: polygon(0 0%, 100% 0, 100% 92%, 0% 100%);
      }
      #innovation{
        clip-path: polygon(0 4%, 100% 0, 100% 96%, 0% 100%)
      }
      #areaNum{
        clip-path: polygon(0 10%, 100% 0, 100% 90%, 0% 100%);
      }
      #about{
        clip-path: polygon(0 3%, 100% 0, 100% 95%, 0% 100%);
      }
     
}
