
.card-box {
  width: 605px;
  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;
  color:white;
}

.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 12px rgba(0,0,0,0.15);
  transition: transform 0.3s, box-shadow 0.3s;
  overflow: hidden;           
}

.icon-circle img {
  width: 70%;       
  height: 70%;
  object-fit: contain;
}

.icon-circle:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(0,0,0,0.25);
}

.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;
  transition: transform 0.3s;
}

.arrow:hover {
  transform: rotate(15deg);
}

/* ✅ Responsive for mobile */
@media (max-width: 600px) {
  .card-box {
    width: 100%;
    max-width: 320px;
    height: auto;
  }

  .glass-box {
    width: 70%;
    height: auto;
    padding: 20px;
  }

  .glass-box h2 {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .icons {
    gap: 12px;
  }

  .icon-circle {
    width: 40px;
    height: 40px;
  }

  .arrow {
    width: 36px;
    height: 36px;
    font-size: 18px;
    top: 10px;
    right: 10px;
  }
}

  /* === Mobile fix: show card background video + full-width cards (added) === */
  @media (max-width: 768px) {
    .card-box .bg-video { display: block !important; }
  }
  @media (max-width: 600px) {
    .card-box { width: 100% !important; max-width: 100% !important; margin: 0 auto 20px !important; }
    .glass-box { width: 100% !important; }
  }

