/* Industry Details Page Styles */

/* Animations */
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-24px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(24px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-left {
  animation: fadeInLeft 0.5s ease-out forwards;
}

.fade-in-right {
  animation: fadeInRight 0.5s ease-out forwards;
}

.fade-in-up {
  animation: fadeInUp 0.5s ease-out forwards;
}

/* Service Cards */
.service-card {
  animation: slideInUp 0.45s ease-out forwards;
  opacity: 0;
}

.service-card:nth-child(1) { animation-delay: 0s; }
.service-card:nth-child(2) { animation-delay: 0.06s; }
.service-card:nth-child(3) { animation-delay: 0.12s; }
.service-card:nth-child(4) { animation-delay: 0.18s; }
.service-card:nth-child(5) { animation-delay: 0.24s; }
.service-card:nth-child(6) { animation-delay: 0.30s; }

.service-card {
  background: linear-gradient(to bottom right, #0b0b10, #08080a);
  border-radius: 0.75rem;
  padding: 1.5rem;
  border: 1px solid rgba(30, 136, 229, 0.3);
  transition: all 0.3s ease;
}

.service-card:hover {
  border-color: rgba(30, 136, 229, 0.6);
  box-shadow: 0 10px 30px rgba(30, 136, 229, 0.15);
  transform: translateY(-4px);
}

.service-card-dot {
  width: 0.875rem;
  height: 0.875rem;
  border-radius: 50%;
  background-color: #00BCD4;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.service-card-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.service-card-description {
  color: #cbd5e1;
  font-size: 0.875rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background-color: #1E88E5;
  color: #ffffff;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.service-card-link:hover {
  background-color: #9C27B0;
}

/* Responsive Grid */
@media (max-width: 768px) {
  .grid.grid-cols-1 {
    grid-template-columns: 1fr;
  }

  .grid.md\:grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid.lg\:grid-cols-3 {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .grid.md\:grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid.lg\:grid-cols-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1025px) {
  .grid.lg\:grid-cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .grid.lg\:grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Utility Classes */
.inline-flex {
  display: inline-flex;
}

.items-center {
  align-items: center;
}

.items-start {
  align-items: flex-start;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-3 {
  gap: 0.75rem;
}

.gap-4 {
  gap: 1rem;
}

.gap-6 {
  gap: 1.5rem;
}

.gap-8 {
  gap: 2rem;
}

.gap-10 {
  gap: 2.5rem;
}

.px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.px-5 {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.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;
}

.mb-3 {
  margin-bottom: 0.75rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mt-1 {
  margin-top: 0.25rem;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mt-3 {
  margin-top: 0.75rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mt-8 {
  margin-top: 2rem;
}

.rounded-full {
  border-radius: 9999px;
}

.rounded-lg {
  border-radius: 0.5rem;
}

.rounded-md {
  border-radius: 0.375rem;
}

.rounded-xl {
  border-radius: 0.75rem;
}

.rounded-3xl {
  border-radius: 1.5rem;
}

.text-sm {
  font-size: 0.875rem;
}

.text-lg {
  font-size: 1.125rem;
}

.text-2xl {
  font-size: 1.5rem;
}

.text-3xl {
  font-size: 1.875rem;
}

.text-4xl {
  font-size: 2.25rem;
}

.text-5xl {
  font-size: 3rem;
}

.text-6xl {
  font-size: 3.75rem;
}

.font-medium {
  font-weight: 500;
}

.font-semibold {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}

.font-extrabold {
  font-weight: 800;
}

.text-white {
  color: #ffffff;
}

.text-slate-200 {
  color: #e2e8f0;
}

.text-slate-300 {
  color: #cbd5e1;
}

.text-slate-400 {
  color: #94a3b8;
}

.leading-tight {
  line-height: 1.25;
}

.leading-relaxed {
  line-height: 1.625;
}

.max-w-md {
  max-width: 28rem;
}

.max-w-xl {
  max-width: 36rem;
}

.max-w-2xl {
  max-width: 42rem;
}

.max-w-3xl {
  max-width: 48rem;
}

.max-w-lg {
  max-width: 32rem;
}

.w-full {
  width: 100%;
}

.h-56 {
  height: 14rem;
}

.h-64 {
  height: 16rem;
}

.border {
  border: 1px solid;
}

.border-slate-700 {
  border-color: #334155;
}

.shadow-md {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.shadow-lg {
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.shadow-2xl {
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.transition-colors {
  transition: color 0.2s ease;
}

.transition-all {
  transition: all 0.3s ease;
}

.hover\:text-\[\#00BCD4\]:hover {
  color: #00BCD4;
}

.hover\:border-\[\#00BCD4\]:hover {
  border-color: #00BCD4;
}

.hover\:bg-\[\#9C27B0\]:hover {
  background-color: #9C27B0;
}

.pointer-events-none {
  pointer-events: none;
}

.overflow-hidden {
  overflow: hidden;
}

.object-cover {
  object-fit: cover;
}

.block {
  display: block;
}

.flex {
  display: flex;
}

.grid {
  display: grid;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-shrink-0 {
  flex-shrink: 0;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.left-1\/2 {
  left: 50%;
}

.top-1\/2 {
  top: 50%;
}

.-translate-x-1\/2 {
  transform: translateX(-50%);
}

.-translate-y-1\/2 {
  transform: translateY(-50%);
}

.blur-3xl {
  filter: blur(64px);
}

.opacity-70 {
  opacity: 0.7;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.pt-8 {
  padding-top: 2rem;
}

.pt-20 {
  padding-top: 5rem;
}

.min-h-screen {
  min-height: 100vh;
}

.w-\[98\%\] {
  width: 98%;
}

.w-\[96\%\] {
  width: 96%;
}

.w-\[94\%\] {
  width: 94%;
}

.lg\:w-\[94\%\] {
  width: 94%;
}

.lg\:px-8 {
  padding-left: 2rem;
  padding-right: 2rem;
}

.lg\:py-28 {
  padding-top: 7rem;
  padding-bottom: 7rem;
}

.lg\:col-span-2 {
  grid-column: span 2;
}

.lg\:max-w-lg {
  max-width: 32rem;
}

.md\:text-5xl {
  font-size: 3rem;
}

.md\:text-3xl {
  font-size: 1.875rem;
}

.md\:h-64 {
  height: 16rem;
}

.md\:w-\[96\%\] {
  width: 96%;
}

@media (max-width: 768px) {
  .md\:grid-cols-2 {
    grid-template-columns: 1fr;
  }

  .md\:text-5xl {
    font-size: 2.25rem;
  }

  .md\:text-3xl {
    font-size: 1.5rem;
  }

  .md\:h-64 {
    height: 14rem;
  }

  .md\:w-\[96\%\] {
    width: 98%;
  }
}

@media (min-width: 1024px) {
  .lg\:col-span-2 {
    grid-column: span 2;
  }

  .lg\:max-w-lg {
    max-width: 32rem;
  }

  .lg\:py-28 {
    padding-top: 7rem;
    padding-bottom: 7rem;
  }

  .lg\:py-20 {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .lg\:w-\[94\%\] {
    width: 94%;
  }

  .lg\:px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
