.analytics {
  background: #f4f6f9;
  padding: 100px 0;
}

.analytics-title {
  font-size: 42px;
  font-weight: 700;
  color: #0f172a;
}

.analytics-subtitle {
  color: #4a6a91;
  font-size: 16px;
  margin-top: 10px;
}

.analytics-image img{
  border-radius:20px;
  box-shadow:0 20px 60px rgba(0,0,0,0.08);
  animation: dashboardFloat 6s ease-in-out infinite;
}

@keyframes dashboardFloat{
  0%,100%{transform:translateY(0);}
  50%{transform:translateY(-10px);}
}

.analytics-card{
  background:#ffffff;
  padding:20px;
  border-radius:20px;
  box-shadow:0 10px 30px rgba(0,0,0,0.05);
  transition:all .35s ease;
}

.analytics-card:hover{
  transform:translateY(-8px);
  box-shadow:0 25px 50px rgba(0,0,0,0.1);
}

.card-icon {
  width: 40px;
  height: 40px;
  background: #e6f4f4;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #1ba7a7;
  margin-bottom: 15px;
}

.analytics-card h6 {
  color: #4a6a91;
  font-size: 12px;
  margin-bottom: 8px;
}

.analytics-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 6px;
}

.positive {
  color: #1ba7a7;
  font-weight: 300;
}

.small-text {
  font-size: 14px;
  color: #1ba7a7;
}
@media (max-width:576px){

.analytics-card{
padding:14px;
border-radius:14px;
}

.analytics-card h3{
font-size:16px;
}

.analytics-card h6{
font-size:11px;
}

.card-icon{
width:34px;
height:34px;
font-size:16px;
}
.analytics-card{
  background:#ffffff;
  padding:20px;
  border-radius:20px;
  box-shadow:0 10px 30px rgba(0,0,0,0.05);
  transition:all .35s ease;

  height:100%;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

}