:root {
  --navy-900: #0a192f;
  --navy-800: #112240;
  --navy-700: #233554;
  --teal-500: #64ffda;
  --teal-400: #8affdf;
  --slate-100: #f8f9fa;
  --slate-200: #e9ecef;
  --slate-300: #ccd6f6;
  --slate-400: #a8b2d1;
  --slate-500: #8892b0;
  --white: #ffffff;
  --success: #64ffda;
  --accent: #ff6b6b;
  --transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
}

#main-webs {
   font-family: "Inter", sans-serif;
  background-color: var(--navy-900);
  color: var(--slate-300);
  line-height: 1.6;
  overflow-x: hidden;
  margin-top: 5vw;
}

@media (max-width:600px) {
  #main-webs {
   font-family: "Inter", sans-serif;
  background-color: var(--navy-900);
  color: var(--slate-300);
  line-height: 1.6;
  overflow-x: hidden;
  margin-top: 19vw;
}
.section {
  padding: 30px 0;
}
}
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
.text-center {
  text-align: center;
}

.heading-1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--slate-100);
}

.heading-2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--slate-100);
}

.heading-3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--slate-100);
}

.paragraph {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--slate-400);
  margin-bottom: 2rem;
}

.text-gradient {
  background: linear-gradient(135deg, var(--teal-500), var(--teal-400));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  font-weight: 600;
  font-size: 1.125rem;
  border-radius: 4px;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  outline: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--teal-500), var(--teal-400));
  color: var(--navy-900);
  box-shadow: 0 10px 30px rgba(100, 255, 218, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(100, 255, 218, 0.4);
}

.btn-secondary {
  border: 2px solid var(--teal-500);
  color: var(--teal-500);
  background: transparent;
}

.btn-secondary:hover {
  background: rgba(100, 255, 218, 0.1);
  transform: translateY(-3px);
}

/* Layout */
.section {
  padding: 40px 0;
}

.grid {
  display: grid;
  gap: 30px;
}

.grid-cols-1 {
  grid-template-columns: repeat(1, 1fr);
}

.grid-cols-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-cols-4 {
  grid-template-columns: repeat(4, 1fr);
}

.flex {
  display: flex;
}

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flex-col {
  flex-direction: column;
}

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.gap-4 {
  gap: 1rem;
}

.gap-6 {
  gap: 1.5rem;
}

.gap-8 {
  gap: 2rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mb-12 {
  margin-bottom: 3rem;
}

.mb-16 {
  margin-bottom: 4rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.max-w-2xl {
  max-width: 42rem;
}

.max-w-3xl {
  max-width: 48rem;
}

.max-w-4xl {
  max-width: 56rem;
}

/* Components */
.tag {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  background: rgba(100, 255, 218, 0.1);
  border-radius: 100px;
  margin-bottom: 2rem;
  color: var(--teal-500);
  font-size: 0.875rem;
  font-weight: 500;
}

.tag-icon {
  margin-right: 8px;
}

.card {
  background: var(--navy-800);
  border: 1px solid var(--navy-700);
  border-radius: 8px;
  padding: 2rem;
  transition: var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--teal-500), var(--teal-400));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 30px rgba(2, 12, 27, 0.7);
}

.card:hover::before {
  transform: scaleX(1);
}

.icon-box {
  color: var(--teal-500);
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  transition: var(--transition);
}

.card:hover .icon-box {
  transform: scale(1.1);
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.feature-icon {
  color: var(--success);
  flex-shrink: 0;
}

.tech-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--navy-800);
  border: 1px solid var(--navy-700);
  border-radius: 8px;
  padding: 1.5rem;
  transition: var(--transition);
}

.tech-pill:hover {
  transform: translateY(-5px);
  border-color: var(--teal-500);
  box-shadow: 0 10px 25px rgba(2, 12, 27, 0.5);
}

.tech-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.process-step {
  position: relative;
  text-align: center;
  padding: 0 15px;
}

.process-step::after {
  content: "";
  position: absolute;
  top: 40px;
  right: -15px;
  width: 30px;
  height: 2px;
  background: var(--teal-500);
  display: none;
}

.process-step:last-child::after {
  display: none;
}

.process-number {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--navy-800);
  border: 2px solid var(--teal-500);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--teal-500);
  margin: 0 auto 1.5rem;
  transition: var(--transition);
}

.process-step:hover .process-number {
  background: var(--teal-500);
  color: var(--navy-900);
  transform: scale(1.1);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      circle at 20% 30%,
      rgba(100, 255, 218, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(100, 255, 218, 0.1) 0%,
      transparent 50%
    );
  z-index: -1;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 1s ease-out forwards;
}

.animate-float {
  animation: float 5s ease-in-out infinite;
}

.delay-100 {
  animation-delay: 0.1s;
}

.delay-200 {
  animation-delay: 0.2s;
}

.delay-300 {
  animation-delay: 0.3s;
}

.delay-400 {
  animation-delay: 0.4s;
}

.delay-500 {
  animation-delay: 0.5s;
}

/* Responsive Design */
@media (min-width: 1024px) {
  .process-step::after {
    display: block;
  }
}

@media (max-width: 1024px) {
  .grid-cols-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-cols-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .section {
    padding: 80px 0;
  }
}

@media (max-width: 768px) {
  .grid-cols-2,
  .grid-cols-3,
  .grid-cols-4 {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding: 100px 0;
  }

  .btn {
    width: 100%;
    margin-bottom: 1rem;
  }

  .flex-row {
    flex-direction: column;
  }

  .process-step {
    margin-bottom: 2rem;
  }

  .process-step::after {
    display: none;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .heading-1 {
    font-size: 2.25rem;
  }

  .heading-2 {
    font-size: 1.875rem;
  }

  .card {
    padding: 1.5rem;
  }

  .section {
    padding: 60px 0;
  }
}
