
  /* gloab css ..
   */
   .hero-right{
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-img-wrapper{
  position: relative;
  width: 600px;
  height: 700px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ROTATING GLOBE */
.rotating-globe{
  position: absolute;
  width: 650px;
  height: 650px;

  background: url("./myimages/Property\ 1=Default.png")
    center/contain no-repeat;

  opacity: 0.28;

  animation: rotateGlobe 60s linear infinite;
    top: -276px;
    right: -227px;
  z-index: 1;
}

/* Nurse image */
.hero-img-placeholder{
  position: relative;
  z-index: 3;
}

.bannerrightimag{
  width: 430px;
  position: relative;
  z-index: 3;
}

/* Rotation animation */
@keyframes rotateGlobe{
  from{
    transform: rotate(0deg);
  }
  to{
    transform: rotate(360deg);
  }
}

/* Stat Cards */
.stat-card{
  position: absolute;
  width: 220px;
  padding: 22px;
  border-radius: 24px;

  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(18px);

  box-shadow:
    0 10px 40px rgba(0,0,0,0.08);

  z-index: 5;
}

.stat-label{
  font-size: 13px;
  color: #6b7280;
  margin-bottom: 10px;
}

.stat-num{
  font-size: 42px;
  font-weight: 700;
  color: #0a2a66;
  margin-bottom: 10px;
}

.stat-sub{
  font-size: 14px;
  line-height: 1.5;
  color: #1f2937;
}

/* Card positions */
.card-1{
  top: 70px;
  right: -10px;
}

.card-2{
  top: 280px;
  right: -40px;
}

.card-3{
  bottom: 80px;
  right: -10px;
}
/* ══════════════════════════════════════
   GLOBAL CSS — RESPONSIVE ADDITIONS
══════════════════════════════════════ */

@media (max-width: 1024px) {
  .hero-img-wrapper {
    width: 100%;
    height: 420px;
  }
  .rotating-globe {
    width: 480px;
    height: 480px;
    top: -160px;
    right: -120px;
  }
  .stat-card {
    width: auto;
    min-width: 150px;
  }
  .card-1 { top: 40px; right: 10px; }
  .card-2 { top: 230px; right: -20px; }
  .card-3 { bottom: 60px; right: 10px; }
}

@media (max-width: 768px) {
  .hero-img-wrapper {
    height: 360px;
  }
  .rotating-globe {
    width: 340px;
    height: 340px;
    top: -100px;
    right: -70px;
  }
  .bannerrightimag {
    width: 260px;
  }
  .stat-card {
    padding: 12px 14px;
    border-radius: 16px;
    min-width: 130px;
  }
  .stat-num { font-size: 28px; }
  .stat-label { font-size: 11px; }
  .stat-sub { font-size: 12px; }
  .card-1 { top: 20px; right: 5px; }
  .card-2 { top: 180px; right: -10px; }
  .card-3 { bottom: 40px; right: 5px; }
}

@media (max-width: 480px) {
  .rotating-globe {
    width: 260px;
    height: 260px;
    top: -70px;
    right: -50px;
  }
  .bannerrightimag {
    width: 200px;
  }
  .card-1, .card-2, .card-3 {
    display: none;
  }
}
