body{
  background-image: url('../images/bg.webp');
}

.bg-breadcrums{
  background-image: url('../images/intro-sm-1.webp');
  background-size: cover;
 background-position: 0% 75%;
 background-attachment: fixed;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes zoomSlow {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

.animate-fadeUp {
  animation: fadeUp 1.2s ease-out forwards;
}

.animate-fadeDelay {
  animation: fadeUp 1.6s ease-out forwards;
}

.animate-zoomSlow {
  animation: zoomSlow 25s linear infinite alternate;
}


@keyframes scrollDot {
  0%   { transform: translateY(0); opacity: 1; }
  40%  { transform: translateY(14px); opacity: 0.4; }
  80%  { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(0); opacity: 1; }
}


/* NAV BAR BACKGROUND WITH REAL CIRCLE CUT */
.nav-cut-bg {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  z-index: 0;

  /* HARD SHARP CIRCLE CUT */
  -webkit-mask-image: radial-gradient(
    circle at 50% 52%,
    transparent 0 90px,
    black 90px
  );
  mask-image: radial-gradient(
    circle at 50% 52%,
    transparent 0 90px,
    black 90px
  );

  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;

  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}


/* FLOATING LOGO */
.logo-float {
  position: absolute;
  top: 100%;
  transform: translateY(-50%);
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: white;
  box-shadow: 0 25px 40px rgba(0,0,0,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.logo-float img {
  width: 145px;
  height: 145px;
  object-fit: contain;
}

[x-cloak] {
  display: none !important;
}

@media (max-width: 767px) {
  .logo-float {
        position: absolute;
        transform: none;
        width: 156px;
        height: 152px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, .12);
        top: -129%;
        left: 0;
        right: 0;
        margin: 0 auto;}

  .logo-float img {
    width: 130px;
    height: 130px;
  }

  .mobile-logo-float {
    margin: 0 auto;
  }
}
