.hero-content {
  z-index: 3;
  text-align: center;
}

.luxury-card {
  display: grid;
  place-items: center;
  gap: 2rem;
  /* border: 1px solid transparent;
  border-image: linear-gradient(transparent, #ffe0a6, transparent) 1;
  border-width: 0 2px 0px 2px;
  background: radial-gradient(
      100% 61.73% at 100% 50%,
      rgba(255, 224, 166, 0.05) 0%,
      transparent 100%
    ),
    radial-gradient(
      91.09% 56.23% at 0% 50%,
      rgba(255, 224, 166, 0.05) 0%,
      transparent 100%
    ); */
  cursor: pointer;
  width: 450px;
  height: 100%;
  transition: transform 0.3s ease;
}

/* .luxury-card::before,
.luxury-card::after {
  content: "";
  position: absolute;
  border: 1px solid transparent;
  border: inherit;
  z-index: -1;
}

.luxury-card::before {
  inset: -1rem;
  opacity: 15%;
}

.luxury-card::after {
  inset: -2rem;
  opacity: 5%;
} */

.title {
  color: white;
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 5px;
  text-transform: uppercase;
  background: linear-gradient(rgb(255, 224, 166), rgb(200, 150, 100));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 10px;
  display: block;
}

.title a.contact {
  margin-bottom: 30px;
  font-size: 20px;
  text-decoration: none;
  display: block;
}

.mobile-no.title {
  font-size: 20px;
  text-decoration: none;
  display: block;
  margin-bottom: 0;;
}

.diamond-container {
  width: 250px;
  height: 250px;
  position: relative;
  border-radius: 20px;
}

.dot {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
}

/* Diamond glass colors - different facets get different refracting colors */
.dot.diamond-white {
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.9),
    rgba(230, 245, 255, 0.6)
  );
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.8),
    0 0 4px rgba(200, 220, 255, 0.6);
}

.dot.diamond-blue {
  background: radial-gradient(
    circle,
    rgba(173, 216, 230, 0.9),
    rgba(135, 206, 250, 0.6)
  );
  box-shadow: 0 0 12px rgba(173, 216, 230, 0.7),
    0 0 4px rgba(100, 150, 255, 0.5);
}

.dot.diamond-purple {
  background: radial-gradient(
    circle,
    rgba(221, 160, 221, 0.9),
    rgba(186, 85, 211, 0.6)
  );
  box-shadow: 0 0 12px rgba(221, 160, 221, 0.7),
    0 0 4px rgba(150, 100, 200, 0.5);
}

.dot.diamond-cyan {
  background: radial-gradient(
    circle,
    rgba(224, 255, 255, 0.9),
    rgba(175, 238, 238, 0.6)
  );
  box-shadow: 0 0 12px rgba(224, 255, 255, 0.7),
    0 0 4px rgba(100, 200, 220, 0.5);
}

.dot.diamond-pink {
  background: radial-gradient(
    circle,
    rgba(255, 192, 203, 0.9),
    rgba(255, 182, 193, 0.6)
  );
  box-shadow: 0 0 12px rgba(255, 192, 203, 0.7),
    0 0 4px rgba(255, 150, 180, 0.5);
}

.dot.diamond-rainbow {
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.9) 0%,
    rgba(173, 216, 230, 0.8) 25%,
    rgba(221, 160, 221, 0.8) 50%,
    rgba(255, 192, 203, 0.8) 75%,
    rgba(224, 255, 255, 0.7) 100%
  );
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.9),
    0 0 8px rgba(173, 216, 230, 0.6), 0 0 4px rgba(221, 160, 221, 0.4);
  animation: rainbow-sparkle 3s ease-in-out infinite;
}

@keyframes rainbow-sparkle {
  0%,
  100% {
    transform: scale(1);
    filter: brightness(1) saturate(1);
  }
  50% {
    transform: scale(1.2);
    filter: brightness(1.3) saturate(1.4);
  }
}

/* .texture {
  position: absolute;
  background-image: linear-gradient(0deg, #ffffff 1px, transparent 1px);
  background-size: 1px 5px;
  inset: 0;
  mix-blend-mode: soft-light;
  -webkit-mask-image: radial-gradient(
      30% 45% at 100% 50%,
      white 0%,
      transparent 100%
    ),
    radial-gradient(30% 45% at 0% 50%, white 0%, transparent 100%);
  mask-image: radial-gradient(30% 45% at 100% 50%, white 0%, transparent 100%),
    radial-gradient(30% 45% at 0% 50%, white 0%, transparent 100%);
  pointer-events: none;
  animation: movingLines 2s linear infinite;
}

@keyframes movingLines {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 0 5px;
  }
} */
#openModal {
  border: 1px solid #cec6bf;
  padding: 10px 20px;
  font-size: 18px;
  line-height: 20px;
  cursor: pointer;
  border-radius: 50px;
  background: transparent;
  transition: all 0.5s;
  color: #cec6bf;
}

#openModal:hover {
  background-color: #cec6bf;
  color: #261c28;
}
