
/* Hero Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes scaleUp {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

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

/* Apply Animations */
.hero {
  animation: fadeIn 1s ease-out;
}

.hero-overlay {
  animation: fadeIn 1.5s ease-out;
}

/* Title Animation */
.hero h1 {
  opacity: 0;
  animation: scaleUp 0.8s ease-out forwards;
  animation-delay: 0.3s;
}

/* Tagline Animation */
.hero h1 + p {
  opacity: 0;
  animation: slideUp 0.8s ease-out forwards;
  animation-delay: 0.6s;
}

/* Other Content Animations */
.space-y-2 > *,
.collapse,
.flex.flex-wrap {
  opacity: 0;
  animation: slideUp 0.8s ease-out forwards;
}

.space-y-2 > *:nth-child(1) {
  animation-delay: 0.9s;
}
.space-y-2 > *:nth-child(2) {
  animation-delay: 1.1s;
}
.collapse {
  animation-delay: 1.3s;
}
.flex.flex-wrap {
  animation-delay: 1.5s;
}

/* Interactive Elements */
.btn {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  color: white;
}

.btn-primary {
  background-color: #3674a8;
  text-transform: uppercase;
}

.btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
}

.collapse-content {
  transition: all 0.3s ease-out;
}

.collapse[open] .collapse-content {
  animation: slideUp 0.4s ease-out;
}

.custom-title {
  font-style: italic;
}
.card-animation {
  animation: slideUp 0.8s ease-out forwards;
  animation-delay: 0.9s;
  padding: 0px;
}
.card-animation h2 {
  line-height: 0.9;
  font-size: larger;
  margin-bottom: 0.5em;
  margin-top: 0.5em;

  color: #3674a8;
}
.card-animation p {
  line-height: 1;
  word-spacing: 0.01rem;
  text-align: center;
  font-size: 12px;
  /* font-size: small; */
}
/* Responsive Adjustments */
@media (max-width: 768px) {
  .hero-content {
    padding: 2rem 1rem;
  }

  .hero h1 {
    font-size: clamp(2.5rem, 8vw, 4rem);
    line-height: 1.2;
  }
}


.hero-custom-title {
  border-radius: 0.5em;
  padding: 0.5em;
  color: white;
  line-height: 1em;
  position: relative;
  background: linear-gradient(to right, #3675a8a1, #1e4d7fa1) !important;
  background-size: 200% 100%;
  border: none;
  transition: all 0.3s ease;
}

.hero-custom-title:hover {
  transform: translateY(-2px);
  animation-play-state: paused;
}



.hero-custom-para{
  margin-bottom: 1rem;
}


.industries-card{
  cursor: default;
  text-align: center;
}
