

.accounting-img {
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  width: 100%;
  height: auto;
  border-radius: 25px;
  display: block;
   max-width: 400px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.floating-img {
  animation: floatY 2.5s ease-in-out infinite alternate;
}

@keyframes floatY {
  0% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(-18px);
  }
}

.class-info-table th, .class-info-table td {
  vertical-align: middle;
  text-align: center;
}

@media (max-width: 991.98px) {
  .accounting-card {
    max-width: 100%;
    margin-bottom: 1.5rem;
  }
}


html {
  scroll-behavior: smooth;
}

.location-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
  background: #198754;
  color: #fff;
  padding: 0.7em 1.5em;
  border-radius: 2em;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.08em;
  box-shadow: 0 2px 8px rgba(25,135,84,0.12);
  margin-top: 1.2em;
  overflow: hidden;
  position: relative;
  border: none;
  transition: background 0.3s, color 0.3s, box-shadow 0.3s;
}

.location-icon {
  display: flex;
  align-items: center;
  transition: transform 0.5s cubic-bezier(.77,0,.18,1);
}

.location-text {
  position: relative;
  left: 0;
  transition: left 0.5s cubic-bezier(.77,0,.18,1);
}

.location-btn:hover,
.location-btn:focus {
  background: #157347;
  color: #fff;
  box-shadow: 0 6px 18px rgba(25,135,84,0.18);
}

.location-btn:hover .location-icon,
.location-btn:focus .location-icon {
  transform: translateX(10px) scale(1.1);
}

.location-btn:hover .location-text,
.location-btn:focus .location-text {
  left: 8px;
}

@media (max-width: 600px) {
  .location-btn {
    font-size: 0.97em;
    padding: 0.5em 1em;
  }
  .location-icon svg {
    width: 18px;
    height: 18px;
  }
  .location-text {
    font-size: 0.97em;
  }
}

