/* Announcement Header Animations */
#announcement-header {
  transition: all 0.3s ease-in-out;
}

/* Header animations */
#main-header {
  transition: all 0.3s ease-in-out;
}

.navbar-brand {
  transition: transform 0.3s ease;
}

.navbar-brand:hover {
  transform: scale(1.05);
}

.navbar-link-item {
  transition: all 0.2s ease;
  position: relative;
}

.navbar-link-item::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -2px;
  left: 0;
  /*background-color: currentColor;*/
  transition: width 0.3s ease;
}

.navbar-link-item:hover::after {
  width: 100%;
}

/* Hero section animations */
.hero-section {
  animation: fadeIn 0.8s ease-out;
}

.hero-title {
  animation: slideUp 0.8s ease-out 0.2s both;
}

.hero-description {
  animation: slideUp 0.8s ease-out 0.4s both;
}

.hero-buttons {
  animation: slideUp 0.8s ease-out 0.6s both;
}

/* Stats section animations */
.stats-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stats-card:hover {
  transform: translateY(-5px);
}

.stats-card-icon {
  transition: transform 0.5s ease;
}

.stats-card:hover .stats-card-icon {
  transform: rotate(15deg);
}

/* Services section animations */
.specialized-services-tab-item {
  transition: all 0.3s ease;
}

.specialized-services-tab-item:hover {
  transform: translateY(-2px);
}

.specialized-services-feature-card {
  transition: all 0.3s ease;
}

.specialized-services-feature-card:hover {
  transform: translateY(-5px);
}

/* Offices section animations */
.offices-card-col {
  transition: transform 0.3s ease;
}

.offices-card-col:hover {
  transform: translateY(-5px);
}

.offices-contact-card {
  transition: all 0.3s ease;
}

.offices-contact-card:hover {
  transform: scale(1.02);
}

/* Testimonials section animations */
.testimonials-card-col {
  transition: transform 0.3s ease;
}

.testimonials-card-col:hover {
  transform: translateY(-5px);
}

.testimonials-quote-icon-wrapper {
  animation: pulse 2s infinite;
}

/* Contact section animations */
.contact-info-item {
  transition: transform 0.3s ease;
}

.contact-info-item:hover {
  transform: translateX(5px);
}

.contact-form-group input,
.contact-form-group textarea {
}

.contact-form-group input:focus,
.contact-form-group textarea:focus {
}

/* Footer animations */
.footer-section {
  animation: fadeIn 0.8s ease-out;
}

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

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

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
