: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;
  --accent: #ff6b6b;
  --transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
}
#software-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) {
  #software-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;
    padding-top: 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 {
  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);
  width: 30%;
  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);
  width: 30%;
  background: transparent;
}

.btn-secondary:hover {
  background: rgba(100, 255, 218, 0.1);
  transform: translateY(-3px);
}

#demo {
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  gap: 30px;
  width: 90%;
  margin-bottom: 4vw;
}

/* Layout */


.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-block;
  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-list {
  list-style-type: disc;
  list-style-position: inside;
  color: var(--slate-400);
}

.feature-item {
  margin-bottom: 0.5rem;
}

.tech-pill {
  padding: 12px 24px;
  background: var(--navy-800);
  border: 1px solid var(--navy-700);
  border-radius: 6px;
  color: var(--slate-300);
  font-weight: 500;
  transition: var(--transition);
}

.tech-pill:hover {
  border-color: var(--teal-500);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(2, 12, 27, 0.5);
}

.stat-card {
  background: var(--navy-800);
  border: 1px solid var(--navy-700);
  border-radius: 8px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  transition: var(--transition);
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 30px rgba(2, 12, 27, 0.7);
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--teal-500);
}

.process-list {
  list-style-type: decimal;
  list-style-position: inside;
  color: var(--slate-400);
  font-size: 1.125rem;
  line-height: 1.7;
  max-width: 48rem;
  margin: 0 auto;
}

.process-item {
  margin-bottom: 2rem;
  padding-left: 1rem;
}

.process-item strong {
  color: var(--teal-500);
}

/* Hero Section */
.hero {
  min-height: 80vh;
  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;
}

/* Responsive Design */
@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-item {
    margin-bottom: 2rem;
  }
}

@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;
  }

  .tech-pill {
    padding: 10px 20px;
    font-size: 0.875rem;
  }
  #demo {
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    align-items: center;
  }
  .my-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
