@import url("./base/_variables.css");
@import url("./components/_buttons.css");
@import url("./components/_cards.css");
@import url("./layout/_header.css");
@import url("./components/dropdown.css");
@import url("./components/_mobile_btn.css");
@import url("./components/herosection.css");
@import url("./components/products-section.css");
@import url("./layout/_media_quries.css");


body {
  background-color: var(--color-light)
}

.card-hover {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-hover:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.nav-link {
  position: relative;
  padding-bottom: 4px;
  transition: all 0.3s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background-color: #3b82f6;
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link.active {
  color: #2563eb;
  font-weight: 600;
}

.bubble {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  z-index: 0;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.btn-hover-effect {
  transition: all 0.3s ease-in-out;
  transform: translateZ(0);
  /* Fix for Safari */
}

.btn-hover-effect:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  filter: brightness(1.1);
}

/* NEW: Custom styling for the hero section to create a more dynamic background */
.cta-bg {
  background-image: url('data:image/svg+xml,%3Csvg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="%239C92AC" fill-opacity="0.1" fill-rule="evenodd"%3E%3Cpath d="M10 0h12L10 22v2h12v24L10 34v2h12v24L10 46v2h12v12H0V10h10V0zm2 10V0h10v12h-8v10h8v12h-8v10h8v12H2v-6h8V42H2v-6h8V22H2v-6h8z" fill="%239C92AC"%3E%3C/path%3E%3C/g%3E%3C/svg%3E');
}

@keyframes pulse-once {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

/* Apply the custom animation to the button */
.animate-pulse-once {
  animation: pulse-once 2s ease-in-out infinite;
}

.unicorn-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  /* 16:9 aspect ratio */
}

/* .unicorn-wrapper > div {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
 /* Hide Unicorn watermark on small screens */
@media (max-width: 768px) {
  .unicorn-wrapper {
    display: none !important;
  }
}



.cursor-dot {
  width: 16px;
  height: 16px;
  background-color: rgb(12, 110, 238);
}

.cursor-outline {
  width: 60px;
  height: 60px;
  border: 3px solid rgba(105, 157, 255, 0.5);
}

.cursor-dot,
.cursor-outline {
  position: fixed;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  z-index: 9999;
  pointer-events: none;
  transition: opacity 0.3s ease-in-out;
}

/* Hide cursor on mobile devices */
@media (max-width: 768px) {
  /* body {
          cursor: auto;
        } */
  .cursor-dot,
  .cursor-outline {
    display: none;
  }
}

#bubbles-container {
  position: absolute;
  /* or fixed if you want it as background */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  /* prevents scrollbars from bubbles */
  z-index: -1;
  /* keep behind content */
}

button,
a,
[role="button"] {
  cursor: pointer;
}

.cursor-dot.hovered {
  background-color: rgb(255, 127, 80);
  /* Your desired color for the dot */
}

.cursor-outline.hovered {
  border-color: rgb(255, 127, 80);
  /* Your desired color for the ring */
}

