/* About Section Styles */
.about {
  padding: 100px 20px;
  background: rgba(255, 255, 255, 0.01);
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-content {
  animation: slideUp 0.8s ease-out 0.2s both;
}

.about-description {
  font-size: 18px;
  font-family: Arial, sans-serif;
  font-weight: 400;
  letter-spacing: 0.5px;
  color: #9ca3af;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 500px;
}

.about-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: scaleIn 0.8s ease-out 0.4s both;
}

.security-graphic {
  position: relative;
  width: 400px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.security-shield {
  position: relative;
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.shield-icon {
  font-size: 80px;
  filter: drop-shadow(0 0 20px rgba(38, 255, 122, 0.5));
  animation: shieldPulse 2s ease-in-out infinite;
}

.security-layers {
  position: absolute;
  width: 100%;
  height: 100%;
}

.layer {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(38, 255, 122, 0.3);
  animation: layerRotate 4s linear infinite;
}

.layer-1 {
  width: 100%;
  height: 100%;
  animation-delay: 0s;
}

.layer-2 {
  width: 80%;
  height: 80%;
  top: 10%;
  left: 10%;
  animation-delay: -1s;
}

.layer-3 {
  width: 60%;
  height: 60%;
  top: 20%;
  left: 20%;
  animation-delay: -2s;
}

@keyframes shieldPulse {
  0%, 100% {
    transform: scale(1);
    filter: drop-shadow(0 0 20px rgba(38, 255, 122, 0.5));
  }
  50% {
    transform: scale(1.1);
    filter: drop-shadow(0 0 30px rgba(38, 255, 122, 0.7));
  }
}

@keyframes layerRotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Mobile About */
@media (max-width: 768px) {
  .about {
    padding: 80px 20px;
  }
  
  .about-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .about-description {
    font-size: 16px;
    margin: 0 auto 30px;
  }
  
  .security-graphic {
    width: 300px;
    height: 200px;
  }
  
  .security-shield {
    width: 150px;
    height: 150px;
  }
  
  .shield-icon {
    font-size: 60px;
  }
}

@media (max-width: 480px) {
  .about {
    padding: 60px 15px;
  }
  
  .about-description {
    font-size: 14px;
  }
  
  .security-graphic {
    width: 250px;
    height: 150px;
  }
  
  .security-shield {
    width: 120px;
    height: 120px;
  }
  
  .shield-icon {
    font-size: 50px;
  }
} 