.elementor-571 .elementor-element.elementor-element-f971b88{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-571 .elementor-element.elementor-element-2235638{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-0943acd */.accounting-hero {
  padding: 90px 20px;
  background: linear-gradient(135deg, #f8fffb, #f3fbff);
}

.accounting-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* LEFT SIDE */
.accounting-left {
  flex: 1 1 50%;
  animation: slideInLeft 0.8s ease forwards;
}

.section-label {
  text-transform: uppercase;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #0599AD;
  display: inline-block;
  margin-bottom: 12px;
}

.accounting-gradient-title {
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  background: linear-gradient(-45deg, #6FD062, #0599AD, #6FD062);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientMove 4s ease infinite;
}

.accounting-description {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 28px;
}

/* Highlights */
.accounting-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-bottom: 30px;
}

.highlight-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background-color: #e0f7eb;
  border: 1px solid rgba(111, 208, 98, 0.6);
  font-size: 0.9rem;
  color: #055a66;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.highlight-item .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #0599AD;
}

.highlight-item:hover {
  background-color: #d2f0f9;
  transform: translateY(-2px);
}

/* CTA Button – same style as Learn More, a bit bigger, now radiating */
.accounting-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 32px; /* slightly bigger than default */
  border-radius: 999px;
  background: linear-gradient(135deg, #6FD062, #0599AD);
  color: #ffffff;
  font-size: 24px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(5, 153, 173, 0.28);
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
  animation: ops-cta-radiate 2.8s ease-in-out infinite; /* 🔹 radiating effect */
}

.accounting-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(5, 153, 173, 0.35);
  filter: brightness(1.03);
}

/* RIGHT SIDE IMAGE */
.accounting-right {
  flex: 1 1 45%;
  display: flex;
  justify-content: center;
  animation: slideInRight 0.8s ease forwards;
}

.accounting-image-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.accounting-image-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(111, 208, 98, 0.25), transparent 60%),
              radial-gradient(circle at bottom right, rgba(5, 153, 173, 0.25), transparent 60%);
  pointer-events: none;
}

.accounting-image-wrap img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.4s ease;
}

.accounting-image-wrap:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}

.accounting-image-wrap:hover img {
  transform: scale(1.04);
}

/* ANIMATIONS */
@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* 🔹 Radiating CTA animation – same as Learn More button */
@keyframes ops-cta-radiate {
  0% {
    box-shadow: 0 0 0 0 rgba(5, 153, 173, 0.45);
    transform: translateY(0) scale(1);
  }
  50% {
    box-shadow: 0 0 0 14px rgba(5, 153, 173, 0);
    transform: translateY(-1px) scale(1.02);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(5, 153, 173, 0);
    transform: translateY(0) scale(1);
  }
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .accounting-container {
    flex-direction:
  }
}/* End custom CSS */