
@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,opsz,wght@0,18..144,300..900;1,18..144,300..900&family=Space+Grotesk:wght@300..700&display=swap');


.merriweather-font {
  font-family: "Merriweather", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}


.space-grotesk-font {
  font-family: "Space Grotesk", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}



/* navbtn */
.navbutton {
  position: relative;
  padding: 14px 42px;
  font-size: 18px;
  font-weight: bold;
  color: white;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  overflow: hidden;
  background: transparent;
  display: inline-block;
  z-index: 1;
  transition: transform 0.2s ease;
}

.navbutton span {
  position: relative;
  z-index: 15;
}

.navbutton:active {
  transform: scale(0.96);
}

.navbutton::before {
  content: "";
  background: rgb(0 0 0);
  border-radius: inherit;
  height: calc(100% - 4px);
  width: calc(100% - 4px);
  position: absolute;
  top: 2px;
  left: 2px;
  z-index: 12;
  opacity: 1;
  transform: scale(0.95);
  transition: all 0.5s ease;
}

.navbutton:hover::before {
  opacity: 0.25;
  transform: scale(1);
}

.bubble-layer {
  position: absolute;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  filter: blur(10px);
  z-index: 0;
}

.bubble-1 {
  background: #ff007f;
  top: -20%;
  left: -10%;
  animation: moveUpRight 6s ease-in-out infinite;
}
.bubble-2 {
  background: #ff6a00;
  top: 0%;
  left: 10%;
  animation: moveDownLeft 5s ease-in-out infinite;
  animation-delay: 1s;
}
.bubble-3 {
  background: #ffcc00;
  top: 20%;
  left: 50%;
  animation: moveRight 4s ease-in-out infinite;
  animation-delay: 2s;
}
.bubble-4 {
  background: #00fff0;
  top: -20%;
  left: 70%;
  animation: moveUpLeft 7s ease-in-out infinite;
  animation-delay: 3s;
}
.bubble-5 {
  background: #9d00ff;
  top: 30%;
  left: -10%;
  animation: moveDownRight 3s ease-in-out infinite;
  animation-delay: 4s;
}
.bubble-6 {
  background: #ff007f;
  top: -10%;
  left: 30%;
  animation: moveLeft 8s ease-in-out infinite;
  animation-delay: 0.5s;
}
.bubble-7 {
  background: #ff6a00;
  top: 40%;
  left: 60%;
  animation: moveUp 6s ease-in-out infinite;
  animation-delay: 1.5s;
}

.bubble-8 {
  background: #E9C647;
  top: -10%;
  left: -10%;
  animation: moveUp 6s ease-in-out infinite;
  animation-delay: 1.5s;
}

@keyframes moveUpRight {
  0% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(100%, -100%);
  }
  50% {
    transform: translate(-50%, 50%);
  }
  75% {
    transform: translate(50%, -50%);
  }
  100% {
    transform: translate(0, 0);
  }
}
@keyframes moveDownLeft {
  0% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(-100%, 100%);
  }
  50% {
    transform: translate(50%, -50%);
  }
  75% {
    transform: translate(-50%, 50%);
  }
  100% {
    transform: translate(0, 0);
  }
}
@keyframes moveRight {
  0% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(100%, 0);
  }
  50% {
    transform: translate(-100%, 50%);
  }
  75% {
    transform: translate(50%, -50%);
  }
  100% {
    transform: translate(0, 0);
  }
}
@keyframes moveUpLeft {
  0% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(-100%, -100%);
  }
  50% {
    transform: translate(50%, 50%);
  }
  75% {
    transform: translate(-50%, -50%);
  }
  100% {
    transform: translate(0, 0);
  }
}
@keyframes moveDownRight {
  0% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(100%, 100%);
  }
  50% {
    transform: translate(-50%, -50%);
  }
  75% {
    transform: translate(50%, 50%);
  }
  100% {
    transform: translate(0, 0);
  }
}
@keyframes moveLeft {
  0% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(-100%, 0);
  }
  50% {
    transform: translate(100%, -50%);
  }
  75% {
    transform: translate(-50%, 50%);
  }
  100% {
    transform: translate(0, 0);
  }
}
@keyframes moveUp {
  0% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(0, -100%);
  }
  50% {
    transform: translate(50%, 50%);
  }
  75% {
    transform: translate(-50%, -50%);
  }
  100% {
    transform: translate(0, 0);
  }
}



/* ==========================
   🔥 Global Animations
========================== */
@keyframes moveGradient {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes jelly {
  0% {
    transform: scale(1, 1);
  }

  25% {
    transform: scale(1.2, 0.8);
  }

  50% {
    transform: scale(0.9, 1.1);
  }

  75% {
    transform: scale(1.05, 0.95);
  }

  100% {
    transform: scale(1, 1);
  }
}

.group:hover span.ml-4 {
  animation: jelly 0.6s;
}

.animate-moveGradient {
  animation: moveGradient 4s ease infinite;
}

/* navbar  */
.nav-link {
  position: relative;
  text-decoration: none;
  /* color: #374151; */
  transition: color 0.3s ease;
}

/* Underline element */
.nav-link::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  /* start at center */
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  /* background-color: #FFEA00;  */
  background: linear-gradient(to right, #e9bdb6, #ffff51);

  transition: width 0.3s ease;
}

/* Hover effects */
.nav-link:hover {
  /* color: #ecff5e; */
  /* hover text color  #c46f55*/
}

.nav-link:hover::after {
  width: 100%;
  /* animate outward */
}


/* why */
@keyframes slowMove {
  0% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(-10px);
  }

  100% {
    transform: translateX(0);
  }
}

.animate-slowMove {
  animation: slowMove 4s ease-in-out infinite;
}

.spinner {
  width: 100px;
  height: 100px;
  /* background: royalblue; */
  margin: 100px auto;
  border-radius: 8px;

  /* Animation */
  animation: spin 20s linear infinite;
  transform-origin: center center;
  /* ensures it rotates around its center */
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}



/*  */
/* Float fix */
.clearfix::after {
  content: "";
  display: table;
  clear: both;
}

/*  ====== STEAM ANIMATION ======  */
@keyframes steamFlow {
  0% {
    transform: translate(-50%, 0) scale(1);
    opacity: 0.7;
  }

  50% {
    transform: translate(-50%, -20px) scale(1.05);
    opacity: 1;
  }

  100% {
    transform: translate(-50%, -40px) scale(1.1);
    opacity: 0.2;
  }
}

.animate-steamFlow {
  animation: steamFlow 4s ease-in-out infinite;
}

/* product description */
.expanded-image {
  transition-property: all;
  transition-duration: 12s; /* very slow & smooth */
  transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
  opacity: 0.95;
}

.hover\:expanded-image:hover {
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 86% !important;
  border-radius: 0 !important;
  border: none !important;
  transform: none !important;
  z-index: 30 !important;
  opacity: 1 !important;
}


/* ==========================
   💫 Sticky Navbar Animation
========================== */
@keyframes slideDown {
  0% {
    transform: translateY(-100%);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.slide-down {
  animation: slideDown 0.4s ease forwards;
  z-index: 999;
}

/* Logo smooth transition on scroll */
#navbarlogo {
  /* transition: width 0.4s ease, height 0.4s ease; */
  transition: all 0.4s ease;
}

/* ==========================
   📱 Mobile Menu Animation
========================== */
@keyframes slideDownMenu {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-slideDown {
  animation: slideDownMenu 0.3s ease forwards;
}

/* ==========================
   📂 Mobile Dropdown Expand Animation
========================== */
@keyframes slideDownMenuDropdown {
  from {
    opacity: 0;
    transform: translateY(-8px);
    max-height: 0;
  }

  to {
    opacity: 1;
    transform: translateY(0);
    max-height: 500px;
  }
}

.animate-slideDownMenu {
  animation: slideDownMenuDropdown 0.35s ease forwards;
  overflow: hidden;
}

/* ==========================
   🌈 Utility Fixes
========================== */
#navbar.fixed {
  transition: all 0.3s ease-in-out;
  backdrop-filter: blur(8px);
}

#mobileMenu a {
  transition: color 0.2s ease;
}

#mobileMenu a:hover {
  color: #003366;
}

/* Improve dropdown hover */
nav ul li ul {
  transition: all 0.25s ease-in-out;
}

/* Prevent flicker when dropdown opens */
nav ul li:hover>ul {
  visibility: visible;
  opacity: 1;
}

/* Mobile Dropdown subtle spacing */
#mobileDropdown li a {
  display: block;
  padding: 6px 0;
  transition: all 0.2s ease;
}

#mobileDropdown li a:hover {
  color: #0056A1;
  transform: translateX(4px);
}

/* ==========================
   💎 Optional Style Polish
========================== */
header {
  font-family: 'Poppins', sans-serif;
}

button,
a {
  cursor: pointer;
}

.fixed+* {
  margin-top: 90px;
}


@keyframes slideDownMenu {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-slideDownMenu {
  animation: slideDownMenu .25s ease-out;
}




/* footer */
/* WebKit browsers (Chrome, Safari, Edge) */
.scrollbar-thin::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

.scrollbar-thin::-webkit-scrollbar-thumb {
  background-color: #0056A1;
  /* brown */
  border-radius: 9999px;
}

.scrollbar-thin::-webkit-scrollbar-track {
  background: transparent;
}

/* Firefox */
.scrollbar-thin {
  scrollbar-width: thin;
  scrollbar-color: #0056A1 transparent;
}

@keyframes moveLeft {
  0% {
    transform: translateX(100%);
    /* Starts off-screen to the right */
  }

  100% {
    transform: translateX(-170%);
    /* Ends off-screen to the left */
  }
}

.animate-move-left {
  animation: moveLeft 10s linear infinite;
  /* Adjust 10s for speed */
}