/* Essential Styles for Counter Section */

/* Root font styles */
:root {
  --primary: #78d5ef;
  --dark: #343a40;
  --light-bg: #f8f9fa;
}

/* General Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-family: sans-serif;
  line-height: 1.15;
}

body {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  color: #212529;
  background-color: #fff;
}

/* Counter Section Styling */
#section-counter {
  background-color: var(--light-bg);
  padding: 3rem 0;
}

.container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 15px;
  padding-left: 15px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.col-md-10 {
  flex: 0 0 83.33333%;
  max-width: 83.33333%;
  margin: auto;
}

.counter-wrap {
  padding: 1.5rem;
}

.block-18 {
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}

.block-18 .text {
  text-align: center;
}

.number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
}

span {
  display: block;
  font-size: 1rem;
  color: var(--dark);
  margin-top: 0.5rem;
}

/* Animation Classes */
.ftco-animate {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.3s ease-out;
}

.ftco-animate.active {
  opacity: 1;
  transform: translateY(0);
}
