:root {
  --navy-700: #0f2b46;
  --navy-800: #0a2036;
  --navy-900: #051625;
  --teal-400: #2dd4bf;
  --teal-500: #14b8a6;
  --teal-600: #0d9488;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-700: #334155;
  --white: #ffffff;
  --success: #10b981;
  --warning: #f59e0b;
}

#website-maintanace {
  background: linear-gradient(
    135deg,
    var(--navy-900),
    var(--navy-800),
    var(--navy-900)
  );
  color: var(--slate-100);
  overflow-x: hidden;
  margin-top: 5vw;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

@media (max-width: 600px) {
  #website-maintanace {
    background: linear-gradient(
      135deg,
      var(--navy-900),
      var(--navy-800),
      var(--navy-900)
    );
    color: var(--slate-100);
    overflow-x: hidden;
    margin-top: 19vw;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
      Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  }
}
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  font-weight: 600;
  font-size: 1.125rem;
  border-radius: 0.75rem;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(to right, var(--teal-600), var(--teal-500));
  color: white;
  box-shadow: 0 10px 25px rgba(13, 148, 136, 0.25);
}

.btn-primary:hover {
  background: linear-gradient(to right, #0d9488, #14b8a6);
  transform: scale(1.05);
  box-shadow: 0 15px 30px rgba(13, 148, 136, 0.4);
}

.btn-secondary {
  border: 2px solid rgba(45, 212, 191, 0.5);
  color: white;
  background: rgba(15, 43, 70, 0.5);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(13, 148, 136, 0.2);
  border-color: rgba(45, 212, 191, 0.6);
}

.section {
  padding: 4rem 1rem;
  width: 100%;
}

.text-center {
  text-align: center;
}

.text-gradient {
  background: linear-gradient(to right, var(--white), var(--slate-200));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.text-gradient-teal {
  background: linear-gradient(to right, var(--teal-400), var(--teal-500));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.heading-1 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.heading-2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.heading-3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.paragraph {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--slate-300);
  margin-bottom: 2rem;
}

.backdrop-blur {
  backdrop-filter: blur(10px);
}

.card {
  background: linear-gradient(
    135deg,
    rgba(15, 43, 70, 0.4),
    rgba(13, 148, 136, 0.3)
  );
  border: 1px solid rgba(45, 212, 191, 0.3);
  border-radius: 1rem;
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.card:hover {
  border-color: rgba(45, 212, 191, 0.5);
  transform: scale(1.02);
  box-shadow: 0 20px 40px rgba(13, 148, 136, 0.2);
}

.grid {
  display: grid;
  gap: 2rem;
}

.grid-cols-1 {
  grid-template-columns: repeat(1, 1fr);
}

.grid-cols-2 {
  grid-template-columns: repeat(2, 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-8 {
  gap: 2rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mb-16 {
  margin-bottom: 4rem;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.py-8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.py-16 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.py-20 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.inset-0 {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.max-w-3xl {
  max-width: 48rem;
}

.max-w-4xl {
  max-width: 56rem;
}

.max-w-7xl {
  max-width: 80rem;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  background: rgba(13, 148, 136, 0.2);
  border: 1px solid rgba(45, 212, 191, 0.3);
  border-radius: 9999px;
  backdrop-filter: blur(10px);
  margin-bottom: 2rem;
}

.tag-icon {
  margin-right: 0.5rem;
  color: var(--teal-400);
}

.icon-box {
  display: inline-flex;
  padding: 0.75rem;
  background: linear-gradient(to right, var(--teal-600), var(--teal-500));
  border-radius: 0.75rem;
  color: white;
  transition: transform 0.3s ease;
}

.card:hover .icon-box {
  transform: scale(1.1);
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.feature-icon {
  color: var(--success);
  flex-shrink: 0;
}

.tech-pill {
  padding: 0.75rem 1.5rem;
  background: linear-gradient(
    to right,
    rgba(15, 43, 70, 0.6),
    rgba(13, 148, 136, 0.4)
  );
  border: 1px solid rgba(45, 212, 191, 0.3);
  border-radius: 9999px;
  backdrop-filter: blur(10px);
  color: var(--slate-200);
  font-weight: 500;
  transition: all 0.3s ease;
}

.tech-pill:hover {
  border-color: rgba(45, 212, 191, 0.6);
  transform: scale(1.05);
}

.process-step {
  position: relative;
  text-align: center;
}

.process-number {
  position: absolute;
  top: -1rem;
  right: -1rem;
  width: 2rem;
  height: 2rem;
  background: var(--teal-600);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
}

.process-icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1.5rem;
  background: linear-gradient(to right, var(--teal-600), var(--teal-500));
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  transition: transform 0.3s ease;
}

.process-step:hover .process-icon {
  transform: scale(1.1);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 1s ease-out forwards;
}

.delay-100 {
  animation-delay: 0.1s;
}

.delay-200 {
  animation-delay: 0.2s;
}

.delay-300 {
  animation-delay: 0.3s;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .heading-1 {
    font-size: 2.5rem;
  }

  .heading-2 {
    font-size: 2.5rem;
  }

  .grid-cols-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .heading-1 {
    font-size: 2rem;
  }

  .heading-2 {
    font-size: 2rem;
  }

  .grid-cols-2,
  .grid-cols-4 {
    grid-template-columns: repeat(1, 1fr);
  }

  .flex-row {
    flex-direction: column;
  }

  .feature-list {
    grid-template-columns: repeat(1, 1fr);
  }

  .btn {
    width: 100%;
    margin-bottom: 1rem;
  }

  .section {
    padding: 3rem 1rem;
  }

  .py-20 {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .py-16 {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}
