
.small-card-box {
  width: 287px;
  height: 375px; 
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  margin: 0 auto;
  font-family: 'Poppins', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
}

.small-card-box .bg-video {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.small-glass-box {
  width: 224px;
  height: 180px; 
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  color: #fff;
  padding: 20px;
  box-sizing: border-box;

  position: relative;
  z-index: 1;
}

.small-glass-box h2 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 20px;
  color: white;
}

.small-glass-box .icons {
  display: flex;
  gap: 12px;
}

.small-glass-box .icon-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden; رة */
  box-shadow: 0 3px 8px rgba(0,0,0,0.15);
  transition: transform 0.3s;
}

.small-glass-box .icon-circle img {
  width: 70%;
  height: 70%;
  object-fit: contain;
  transition: transform 0.3s;
}

.small-glass-box .icon-circle:hover {
  transform: scale(1.1);
}

.small-glass-box .arrow {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  color: #7a3cff;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  cursor: pointer;
}
