
.card-box {
  width: 596px;
  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;
}


.bg-video {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.glass-box {
  width: 486px;
  height: 232px;
  border-radius: 20px;
  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: 30px;
  box-sizing: border-box;

  position: relative;
  z-index: 1;
}

.glass-box h2 {
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 30px;
}

.icons {
  display: flex;
  gap: 18px;
}

.icon-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  overflow: hidden; ئرة */
  transition: transform 0.3s;
}

.icon-circle img {
  width: 70%;
  height: 70%;
  object-fit: contain;
}

.icon-circle:hover {
  transform: scale(1.1);
}

.arrow {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  color: #7a3cff;
  font-size: 22px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  cursor: pointer;
}
