/* Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  color: white;
}

html {
  scroll-behavior: smooth;
}

html, body {
  overflow-x: hidden;
  margin: 0;
}

@font-face {
  font-family: 'Krona One';
  src: url('../Assets/Fonts/KronaOne-Regular.ttf') format('truetype');
}

@font-face {
  font-family: 'La Belle Aurore';
  src: url('../Assets/Fonts/LaBelleAurore-Regular.ttf') format('truetype');
}

body {
  font-family: fantasy;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  color: white;
  position: relative;
  background: linear-gradient(to bottom, #131e2c, #131e2c);
  min-height: 100vh;
  z-index: -2;
}

/* Loading Screen */
#loading-screen {
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at 30% 70%, rgba(21, 80, 148, 0.9) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(59, 87, 114, 0.9)0%, transparent 40%);
    backdrop-filter: blur(40px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    animation: fadeIn 0.8s forwards;
}

#loading-screen.fade-out {
  animation: coolFadeOut 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.loader {
    position: relative;
    width: fit-content;
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
}

.progress-ring-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    z-index: 3;
}

.progress-ring {
    width: 100%;
    height: 100%;
    border: 10px solid rgba(255, 255, 255, 0.452);
    border-top-color: #3785ce;
    border-top-style: groove;
    border-radius: 50%;
    animation: spin 1.2s linear infinite;
}

.loading-logo img {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    z-index: 2;
    position: relative;
}

.fade-out .loader {
  animation: loaderDissolve 1.2s ease-out forwards;
}

.fade-out .progress-ring {
  animation: spin 1.2s linear infinite, ringCollapse 1.2s ease-out forwards;
}

.fade-out .loading-logo img {
  animation: logoShrink 1.2s ease-out forwards;
}

/* Vignette Overlay Image */
.Vignette_Image {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999;
  pointer-events: none;
}

.Vignette_Image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}

/* Navbar settings */
.Navbar-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 10vh;
  min-height: 60px;
  z-index: 1099;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 20px;
  box-sizing: border-box;
}

.Navbar {
  position: relative;
  top: 0;
  right: 0;
  z-index: 1100;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  overscroll-behavior: contain;
  pointer-events: all;
}

/* Search Box */
.search-box {
  position: absolute;
  top: -10px;
  right: 95px;
  width: calc(100vw - 105px - 10px);
  height: 70px;
  display: flex;
  align-items: center;
  background: linear-gradient(
    to bottom,
    rgba(43, 56, 82, 0.9),
    rgba(23, 32, 56, 0.9)
  );
  border-radius: 500px;
  border: 2px solid rgb(255, 255, 255);
  padding: 6px 12px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateX(120px) scale(0.1);
  transition: all 0.2s ease;
  transform-origin: center right;
  z-index: 1101;
}

.search-box.show {
  opacity: 1;
  visibility: visible;
  transform: translateX(0px) scale(0.8);
}

.search-box input {
  border: none;
  outline: none;
  background: transparent;
  color: white;
  font-family: sans-serif;
  font-size: 1.3rem;
  padding: 8px 10px;
  flex: 1;
  width: 100%;
}

.search-box input::placeholder {
  color: rgba(255,255,255,0.6);
}

.search-box .search-btn {
  border: none;
  background: none;
  color: white;
  font-size: 1.1rem;
  cursor: pointer;
  padding: 10px;
  scale: 1.5;
}

/* Hamburger Button */
.hamburger-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid rgb(255, 255, 255);
  background: linear-gradient(to bottom, rgba(43, 56, 82, 0.8), rgba(23, 32, 56, 0.8));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  color: white;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
  position: relative;
  z-index: 1102;
}

.hamburger-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.5);
}

.hamburger-btn.active {
  position: relative;
  border: none;
  transform: scale(1.3);
  background: linear-gradient(to bottom, rgba(60, 70, 100, 0.9), rgba(30, 40, 70, 0.9));
}

.hamburger-btn.active::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: 50%;
  padding: 2px;
  background: linear-gradient(90deg, rgb(0, 110, 255) 0%, rgb(0, 110, 255) 25%, rgb(238, 255, 0) 50%, rgb(0, 110, 255) 75%, rgb(0, 110, 255) 100%);
  background-size: 400% 100%;
  animation: movingBorder 3s linear infinite;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
}

.hamburger-btn:focus {
  outline: none;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.5);
}

.menu-item {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  border: 2px solid rgb(255, 255, 255);
  background: linear-gradient(
    to bottom,
    rgba(43, 56, 82, 0.8),
    rgba(23, 32, 56, 0.8)
  );
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  color: white;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: absolute;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.menu-item:hover {
  transform: scale(1.1);
  box-shadow: 0 0 12px rgba(0,0,0,0.5);
}

.cart-btn {
  top: 0;
  right: 55px;
  transform: translateY(-10px) translateX(115px);
  scale: 0;
  z-index: 1101;
}

.cart-btn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(60px);
  scale: 1;
  transition-duration: 0.3s;
}

/* Home Button */
.home-btn {
  top: 0;
  left: 5px;
  transform: translateY(-10px) translateX(-15px);
  scale: 0;
  z-index: 1101;
}

.home-btn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(90px);
  scale: 1;
  transition-duration: 0.4s;
}

/* Hero Section */
.hero-section {
  height: 100vh;
  position: relative;
  overflow: hidden;
  z-index: 0;
  background: #211f3f;
}

.hero-bg-image {
  position: absolute;
  top: -35%;
  left: 0;
  width: 100%;
  height: 90vh;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
  display: block;
  transform-origin: center;
  opacity: 0;
  transition: opacity 2s ease-in-out;
}

.hero-bg-image.active {
  opacity: 0.7;
}

/* Wave Section Container */
.wave-container {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  z-index: 3;
  pointer-events: none;
}

.wave {
  width: 100%;
  height: clamp(200px, 30vh, 400px);
  background: url('../Assets/Group 1.webp');
  background-size: 1000px 101%;
  background-repeat: repeat-x;
  animation: drift 30s linear infinite;
  z-index: 2;
}

.blue-overlay {
  position: relative;
  width: 100%;
  height: clamp(200px, 30vh, 400px);
  background: rgb(83, 129, 255);
  z-index: 1;
}

.flowing-images {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.flowing-box {
  position: absolute;
  width: clamp(120px, 20vw, 300px);
  height: clamp(120px, 20vw, 300px);
  border-radius: 20px;
  overflow: hidden;
  filter: drop-shadow(0px 10px 25px rgba(0, 0, 0, 0.8));
  animation-fill-mode: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  z-index: 0;
  top: 42%;
  transform: translateY(-50%);
}

.flowing-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 15px;
}

.flowing-box-1 {
  left: -50vw;
  animation: 
    flowRight 20s linear infinite,
    gentleFloat1 4s ease-in-out infinite,
    oceanTilt1 6s ease-in-out infinite;
  animation-delay: 0s;
}

.flowing-box-2 {
  left: -50vw;
  animation: 
    flowRight 20s linear infinite,
    gentleFloat2 3.5s ease-in-out infinite,
    oceanTilt2 5.5s ease-in-out infinite;
  animation-delay: 6.66s;
}

.flowing-box-3 {
  left: -50vw;
  animation: 
    flowRight 20s linear infinite,
    gentleFloat3 4.5s ease-in-out infinite,
    oceanTilt3 6.5s ease-in-out infinite;
  animation-delay: 13.33s;
}

/* Content Container */
.content {
  position: relative;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  padding: 0 20px;
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1.5s ease-out forwards;
}

/* Logo */
.logo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.logo img {
  width: clamp(140px, 35vw, 240px);
  filter: drop-shadow(0px 0px 10px rgba(11, 61, 109, 0.438));
  animation: floatLogo 3s ease-in-out infinite;
}

.HeaderText-1 {
  font-family: 'Krona One';
  font-size: clamp(2.2rem, 8vw, 5rem);
  animation: gradientMove 2s linear infinite;
  transform: translateZ(0);
  filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.521));
  margin: 0;
  text-align: center;
  width: 100%;
  cursor: default;
}

.HeaderText-1 span {
  display: inline-block;
  transition: transform 0.3s ease;
}

.HeaderText-1 span:hover {
  transform: scale(1.4);
  text-shadow: white 0 0 15px;
}

.HeaderText-2 {
  font-family: 'La Belle Aurore';
  padding-top: 25px;
  font-size: clamp(1.5rem, 5vw, 2.2rem);
  animation: gradientMove 2s linear infinite;
  transform: translateZ(0);
  backface-visibility: hidden;
  filter: drop-shadow(0px 0px 10px rgb(0, 0, 0, 0.521));
  margin: 0;
  text-align: center;
  width: 100%;
  cursor: default;
}

/* Sections */
.section {
  min-height: 100vh;
  background: #12112000;
  color: white;
  position: relative;
  z-index: 2;
}

/* Infromation Section */
#Information .Information-background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 20%;
  background: linear-gradient(to bottom, rgb(83, 129, 255), rgba(255, 255, 255, 0));
  z-index: 1;
}

#Information {
  position: relative;
}

#Information .container {
  position: relative;
  z-index: 3;
}

.Information-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: drop-shadow(-2px 27px 7px rgba(0, 0, 0, 0.541));
}

#Information .wave-container {
  z-index: 4;
}

.scroll-indicator {
  font-size: 2.5rem;
  color: white;
  text-align: center;
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
  z-index: 10;
  filter: drop-shadow(0px 0px 10px rgb(0, 0, 0, 0.521));
  cursor: pointer;
}

.Main-Title {
  position: relative;
  max-width: 1400px;
  margin: 120px auto 30px auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  padding: 0px;
}

.Main-Title-Image {
  position: relative;
  flex: 1 1 350px;
  min-width: 280px;
  max-width: 1000px;
  height: auto;
  object-fit: fill;
  filter:
    drop-shadow(1.5px 0 0 rgb(255, 255, 255))
    drop-shadow(-1.5px 0 0 rgb(0, 0, 0))
    drop-shadow(0 1.5px 0 rgb(0, 0, 0))
    drop-shadow(0px 20px 10px rgba(0, 0, 0, 0.671));
  z-index: 2;
  pointer-events: none;
}

/* Information/Vocational Market Board Container */
.Information-Board,
.AdditionalInformation_Board,
.VocationalMarket-Board {
  position: relative;
  width: 100vw;
  margin-left: -50vw;
  left: 50%;
  overflow: hidden;
  margin-top: 80px;
  margin-bottom: 70px;
  padding: 25px 15px;
  backdrop-filter: blur(7px);
}

.Information-Board::before,
.AdditionalInformation_Board::before,
.VocationalMarket-Board::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgb(10, 25, 51);
  opacity: 0.8;
  z-index: 0;
  pointer-events: none;
}

.Information-Board::after,
.AdditionalInformation_Board::after,
.VocationalMarket-Board::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgb(10, 25, 51);
  opacity: 0;
  z-index: 1;
  pointer-events: none;

  -webkit-mask-image: radial-gradient(
    circle var(--r, 50px) at var(--mx, 50%) var(--my, 50%),
    transparent 0%,
    black 100%
  );
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: cover;

  mask-image: radial-gradient(
    circle var(--r, 50px) at var(--mx, 50%) var(--my, 50%),
    transparent 0%,
    black 100%
  );
  mask-repeat: no-repeat;
  mask-size: cover;

  transition:
    opacity 0.4s ease,
    --r 0.4s ease;
}

.Information-Board.spotlight-active::after,
.AdditionalInformation_Board.spotlight-active::after,
.VocationalMarket-Board.spotlight-active::after {
  opacity: 1;
  --r: 250px;
}

.Information-Board.spotlight-active::before, 
.AdditionalInformation_Board.spotlight-active::before,
.VocationalMarket-Board.spotlight-active::before {
  transition: opacity 1s ease;
  opacity: 0;
}

.Information-Board,
.AdditionalInformation_Board,
.VocationalMarket-Board {
  position: relative;
  z-index: 0;
}

.Information-Board::before,
.AdditionalInformation_Board::before,
.VocationalMarket-Board::before,
.Information-Board::after,
.AdditionalInformation_Board::after,
.VocationalMarket-Board::after {
  z-index: -1;
}

.VocationalMarket-Board {
  margin-bottom: 150px;
}

.Information-Title {
  position: relative;
  z-index: 2;
  margin: 0 0 16px 0;
  text-align: center;
  font-size: clamp(24px, 3.2vw, 36px);
  font-family: 'Krona One';
  line-height: 1.2;
  filter: drop-shadow(0px 5px 3px rgb(0, 0, 0));
  pointer-events: none;
}

.InformationIcon {
  display: block;
  margin: 12px auto 16px auto;
  width: 122px;
  height: auto;
  filter: drop-shadow(0px 0px 30px rgba(42, 56, 114, 0.829));
  z-index: 2;
  pointer-events: none;
}

.Information-Text {
  position: relative;
  z-index: 2;
  text-align: center;
  font-size: clamp(20px, 1.6vw, 20px);
  font-family: sans-serif;
  line-height: 1.6;
  margin: 0 auto 20px auto;
  max-width: 1000px;
  padding: 0 16px;
  box-sizing: border-box;
  word-wrap: break-word;
  overflow-wrap: break-word;
  filter: drop-shadow(0px 5px 3px rgb(0, 0, 0));
  pointer-events: none;
}

.VocationsIcon {
  display: block;
  width: 302px;
  max-width: 100%;
  height: auto;
  margin: 5px auto 0px auto;
  z-index: 2;
  pointer-events: none;
  filter: drop-shadow(0px 10px 10px rgb(0, 0, 0));
}

.AdditionalInformation_Board {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.Additional-Title {
  position: relative;
  z-index: 2;
  margin: 20px 0 16px 0;
  text-align: center;
  font-size: clamp(25px, 3vw, 30px);
  font-family: 'Krona One';
  line-height: 1.2;
  filter: drop-shadow(0px 5px 3px rgb(0, 0, 0));
  pointer-events: none;
}

.Additional-Text {
  position: relative;
  z-index: 2;
  text-align: center;
  font-size: clamp(20px, 1.6vw, 20px);
  font-family: sans-serif;
  line-height: 1.6;
  margin: 0 auto 20px auto;
  max-width: 1000px;
  padding: 0 16px;
  box-sizing: border-box;
  word-wrap: break-word;
  overflow-wrap: break-word;
  pointer-events: none;
  filter: drop-shadow(0px 5px 3px rgb(0, 0, 0));
}

.VocationalMarket-Title {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 0 0 16px 0;
  text-align: center;
  font-size: clamp(24px, 3.2vw, 36px);
  font-family: 'Krona One';
  line-height: 1.2;
  filter: drop-shadow(0px 5px 3px rgb(0, 0, 0));
  pointer-events: none;
}

.ShoppingCartIcon {
  display: block;
  margin: 12px auto 16px auto;
  width: 132px;
  height: auto;
  filter: drop-shadow(0px 0px 30px rgba(42, 56, 114, 0.829));
  z-index: 2;
  pointer-events: none;
}

.Information-Text2 {
  position: relative;
  z-index: 2;
  text-align: center;
  font-size: clamp(20px, 1.6vw, 20px);
  line-height: 1.6;
  margin: 0 auto 25px auto;
  max-width: 1000px;
  padding: 0 16px;
  box-sizing: border-box;
  filter: drop-shadow(0px 5px 3px rgb(0, 0, 0));
  pointer-events: none;
}

.VocationalMarket-Board a.btn {
  position: relative;
  z-index: 2;
  margin: 10px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 60px;
  padding: 10px 18px;
  border-radius: 200px;
  border: none;
  background: linear-gradient(to bottom, #6c8fe9, #132a68);
  font-size: 14px;
  font-weight: bold;
  color: white;
  text-decoration: none;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.2s;
}

.VocationalMarket-Board .btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    90deg,
    rgb(0, 110, 255) 0%,
    rgb(0, 110, 255) 25%,
    rgb(238, 255, 0) 50%,
    rgb(0, 110, 255) 75%,
    rgb(0, 110, 255) 100%
  );
  background-size: 400% 100%;
  animation: movingBorder 3s linear infinite;
  z-index: -1;
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  padding: 3px;
  box-sizing: border-box;
}

.VocationalMarket-Board .btn:hover {
  transform: scale(1.05);
  text-decoration: underline;
}

/* Product Recommendations Section */
.Recomendations-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
  opacity: 0.3;
  filter: drop-shadow(0px 25px 7px rgb(0, 0, 0));
}

#ProductRecommendations {
  position: relative;
}

#ProductRecommendations .container {
  position: relative;
  max-width: 1800px;
  margin: 0 auto;
  z-index: 3;
  margin-bottom: 100px;
}

.RecommendationsIcon {
  display: block;
  margin: 60px auto 0px auto;
  width: 142px;
  height: auto;
  filter: drop-shadow(0px 0px 30px rgba(53, 113, 202, 0.555));
  z-index: 2;
  pointer-events: none;
}

.Recommendations-Title {
  position: relative;
  z-index: 2;
  margin: 15px 0 16px 0;
  text-align: center;
  font-size: clamp(24px, 3.2vw, 36px);
  font-family: 'Krona One';
  line-height: 1.2;
  filter: drop-shadow(0px 5px 3px rgb(0, 0, 0));
}

.marquee-banner {
  width: 100%;
  height: fit-content;
  overflow: hidden;
  background-color: #ffffff00;
  padding: 15px 0;
  border-bottom: 2px dashed rgba(255, 255, 255, 0.5);
  position: relative;
  margin-top: 50px;
  margin-bottom: 50px;
}

.detection-zone {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100%;
  background: transparent;
  pointer-events: none;
}

.marquee-text {
  display: inline-block;
  animation: scroll-left 20s linear infinite;
  color: #ffffff;
  font-size: 18px;
  font-weight: bold;
  font-family: 'Krona One', sans-serif;
  padding-left: 100%;
  white-space: nowrap;
  transform-origin: left center;
  pointer-events: none;
}

.marquee-text span {
  display: inline-block;
  margin-right: 30px;
  transition: transform 0.05s ease-in-out, color 0.05s ease-in-out, opacity 0.05s ease-in-out;
  transform-origin: center center;
  opacity: 0.7;
}

.marquee-text span.at-center {
  transform: scale(1.1) !important;
  color: #69aaff;
  text-shadow: #69aaff 0 0 10px;
  z-index: 1;
  opacity: 1 !important;
}

/* Card container */
.Recommendations-Cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 100px 40px;
  padding: 20px 0;
}

.Recommendations-Card {
  position: relative;
  flex: 1 1 380px;
  min-width: 300px;
  max-width: 450px;
  aspect-ratio: unset;
  height: 280px;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0px 10px 7px rgba(0, 0, 0, 0.466);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}

.Recommendations-Card:hover {
  box-shadow: 0px 0px 20px rgb(255, 255, 255);
}

.Recommendations-Card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: transform 0.4s ease;
}

.Recommendations-Card:hover img {
  transform: scale(1.05);
}

.Recommendations-Card .View-Button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  padding: 10px 28px;
  font-size: 14px;
  font-weight: bold;
  color: white;
  border: 2px solid white;
  border-radius: 40px;
  background: rgba(0, 0, 0, 0.37);
  backdrop-filter: blur(7px);
  text-transform: uppercase;
  transition: background 0.3s ease, transform 0.2s ease;
}

.Recommendations-Card .View-Button:hover {
  background: rgba(87, 163, 255, 0.404);
  transform: translate(-50%, -50%) scale(1.05);
  text-decoration: underline;
}

.Recommendations-Card .Product-Title {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 90%;
  text-align: center;
  font-size: 1.25rem;
  font-family: 'Krona One';
  color: white;
  text-shadow: 0px 3px 8px rgba(0, 0, 0, 0.8);
  opacity: 90%;
}

/* Location + Statistics Section */
.Location-Statistics {
  position: relative;
  padding: 80px 0;
  background: linear-gradient(135deg, #0a1933 0%, #1a2b4a 50%, #2c4269 100%);
  color: white;
  overflow: hidden;
  z-index: -1;
}

.Location-Statistics::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.1;
  z-index: 0;
}

.Location-StatOverlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 70%, rgba(53, 113, 202, 0.2) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(173, 216, 255, 0.15) 0%, transparent 40%);
  z-index: 0;
}

.Location-Statistics .glass-box {
  background: linear-gradient(to bottom, #2232476b, #15243b79);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 40px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  padding: 30px 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  position: relative;
  z-index: 1;
  transform: scaleX(0);
  transform-origin: center center;
  transition: transform 1.5s cubic-bezier(0.22, 1, 0.36, 1) 0.25s;
  overflow: hidden;
}

.Location-Statistics .glass-box.reveal {
  transform: scaleX(1);
}

.LocationIcon {
  display: block;
  margin: 0px auto 0px auto;
  width: 142px;
  height: auto;
  filter: drop-shadow(0px 0px 30px rgba(53, 113, 202, 0.555));
  z-index: 2;
  pointer-events: none;
}

.location-header {
  text-align: center;
  margin-bottom: 40px;
}

.location-title {
  font-size: clamp(28px, 4vw, 42px);
  font-family: 'Krona One', sans-serif;
  margin: 20px 0 15px 0;
  background: linear-gradient(45deg, #ffffff, #add8ff, #3571ca);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0px 5px 10px rgba(0, 0, 0, 0.5));
}

.location-subtitle {
position: relative;
  z-index: 2;
  text-align: center;
  font-size: clamp(20px, 1.6vw, 20px);
  font-family: sans-serif;
  line-height: 1.6;
  margin: 0 auto 20px auto;
  max-width: 1000px;
  padding: 0 16px;
  box-sizing: border-box;
  word-wrap: break-word;
  overflow-wrap: break-word;
  filter: drop-shadow(0px 5px 3px rgb(0, 0, 0));
  pointer-events: none;
}

.map-wrapper {
  margin-top: 20px;
  align-items: stretch;
}

.map-container {
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
  margin: 10px 10px 10px 10px;
}

.map-container iframe {
  height: 100%;
  width: 100%;
  border: none;
  display: block;
}

/* Social Media Buttons */
.social-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 20px;
  height: 100%;
  padding: 10px 10px 10px 10px;
}

.social-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  color: white;
  font-size: 3rem;
  padding: 20px;
  text-decoration: none;
  transition: all 0.3s ease;
  text-align: center;
}

.social-btn span {
  font-size: 0.9rem;
  margin-top: 8px;
}

.social-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.social-btn.tt:hover { 
  background: linear-gradient(45deg, rgb(99, 9, 79), #000000, rgb(0, 0, 0), #000000, #000000, #0d5d6b);
}
.social-btn.yt:hover { 
  background: #ff3a3a; 
}
.social-btn.wa:hover { 
  background: #25d366; 
}
.social-btn.ig:hover { 
  background: linear-gradient(45deg, #f09433, #dc2743, #cc2366, #c623cc, #5718bc); 
}

/* Fish animation */
.fish-layer {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 0;
  overflow: hidden;
}

.fish, .big-fish {
  position: absolute;
  white-space: pre;
  font-family: monospace;
  font-weight: bold;
  line-height: 1.2;
  pointer-events: none;
}

.fish {
  font-size: 20px;
  animation: swim linear forwards;
}

.fish.flip {
  transform: scaleX(-1);
  animation: swim-reverse linear forwards;
}

.big-fish {
  font-size: 22px;
  animation: swim linear forwards;
}

.big-fish.flip {
  animation: swim-reverse linear forwards;
}

.cursor-bubble {
  position: absolute;
  background: radial-gradient(circle, rgba(116, 188, 255, 0.315) 0%, rgba(53, 99, 141, 0.493) 40%, rgba(30, 65, 117, 0.4) 100%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  animation: bubbleFloat linear forwards;
  border: 1px solid rgba(135, 191, 255, 0.3);
  box-shadow: 
    0 0 10px rgba(55, 90, 155, 0.5),
    inset 0 0 5px rgba(125, 170, 255, 0.3);
}

.Website-Statistics .container {
  position: relative;
  z-index: 2;
}

.statistics-header {
  text-align: center;
  margin-bottom: 60px;
}

.StatisticsIcon {
  display: block;
  margin: 60px auto 0px auto;
  width: 142px;
  height: auto;
  filter: drop-shadow(0px 0px 30px rgba(53, 113, 202, 0.555));
  z-index: 2;
  pointer-events: none;
}

.statistics-title {
  font-size: clamp(28px, 4vw, 42px);
  font-family: 'Krona One', sans-serif;
  margin: 20px 0 15px 0;
  background: linear-gradient(45deg, #ffffff, #add8ff, #3571ca);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0px 5px 10px rgba(0, 0, 0, 0.5));
}

.statistics-subtitle {
 position: relative;
  z-index: 2;
  text-align: center;
  font-size: clamp(20px, 1.6vw, 20px);
  font-family: sans-serif;
  line-height: 1.6;
  margin: 0 auto 20px auto;
  max-width: 1000px;
  padding: 0 16px;
  box-sizing: border-box;
  word-wrap: break-word;
  overflow-wrap: break-word;
  filter: drop-shadow(0px 5px 3px rgb(0, 0, 0));
  pointer-events: none;
}

.statistics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.stat-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.stat-card:hover::before {
  transform: translateX(100%);
}

.stat-card:hover {
  box-shadow: 0 0px 40px rgba(98, 161, 255, 0.13);
  border-color: rgba(173, 216, 255, 0.4);
}

.stat-icon {
  font-size: 2.5rem;
  color: #add8ff;
  margin-bottom: 15px;
  filter: drop-shadow(0 0 10px rgba(173, 216, 255, 0.5));
}

.stat-number {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: bold;
  margin: 15px 0 10px 0;
  background: linear-gradient(45deg, #ffffff, #add8ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.stat-label {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.stat-sublabel {
  font-size: 0.9rem;
  opacity: 0.7;
  font-style: italic;
}

.background-bubble {
  position: absolute;
  bottom: -120px;
  background: radial-gradient(circle, rgba(116, 188, 255, 0.315) 0%, rgba(53, 99, 141, 0.493) 40%, rgba(30, 65, 117, 0.4) 100%);
  border-radius: 50%;
  pointer-events: none;
  border: 1px solid rgba(135, 191, 255, 0.3);
  box-shadow: 
    0 0 10px rgba(55, 90, 155, 0.5),
    inset 0 0 5px rgba(125, 170, 255, 0.3);
  opacity: 0.5;
  animation: backgroundBubble linear forwards;
}

/* Footer */
.footer {
  background: linear-gradient(to bottom, #5F73A4, #1C3372);
  color: #fff;
  padding: 5px 0;
  text-align: center;
}

.footer .footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  max-width: 900px;
  margin: 0 auto;
}

.footer-left,
.footer-right {
  flex: 1 1 300px;
}

.footer-Header {
  display: grid;
  grid-auto-flow: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.footer-logo {
  width: clamp(40px, 5vw, 50px);
  height: auto;
}

.footer-title {
  font-size: clamp(1.25rem, 1.6vw, 2rem);
  font-family: 'Krona One', sans-serif;
  font-weight: bold;
  letter-spacing: 2px;
  text-decoration: underline;
  line-height: 1;
}

.contact-btn {
  margin: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to bottom, #7DA2FF, #2548A6);
  color: white;
  border: 2px solid white;
  border-radius: 25px;
  padding: 9px 61px;
  font-size: 15px;
  font-family: 'Krona One';
  font-weight: bold;
  text-align: left;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  gap: 8px;
}

.contact-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.02);
  color: #ffffff;
  text-decoration: underline;
}

.footer .social-btns .bi {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to bottom, #7DA2FF, #2548A6);
  border: 2px solid white;
  border-radius: 25px;
  padding: 14px 25px;
  font-size: 21px;
  font-weight: bold;
  text-align: center;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  height: fit-content;
  width: fit-content;
  transition: all 0.1s;
}

.footer .social-btns a.YouTube:hover .bi {
  background: linear-gradient(45deg, #ff3a3a, #cc0000);
  transform: scale(1.05);
  text-decoration: underline;
}

.footer .social-btns a.TikTok:hover .bi {
  background: linear-gradient(45deg, #40f9ff, #000000, #c71585);
  transform: scale(1.05);
  text-decoration: underline;
}

.footer .social-btns a.Instagram:hover .bi {
  background: linear-gradient(45deg, #f09433, #dc2743, #cc2366, #c623cc, #5718bc);
  transform: scale(1.05);
  text-decoration: underline;
}

.footer .social-btns a.WhatsApp:hover .bi {
  background: linear-gradient(45deg, #25d366, #1ca851, #1a7e42, #18683f, #0e532b);
  transform: scale(1.05);
  text-decoration: underline;
}

.footer .copyright {
  font-size: 0.8rem;
  margin-top: 20px;
  font-family: 'Krona One';
  opacity: 0.7;
}

.footer-tagline {
  margin: 7px;
  font-size: clamp(1.1rem, 1.2vw, 1.5rem);
  font-family: 'La Belle Aurore', cursive;
  opacity: 0.85;
}

.footer-nav-box {
  display: inline-block;
}

.footer-nav-text {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
  font-size: 1.1rem;
  font-family: 'Krona One', sans-serif;
  text-align: center;
  border: 2px solid white;
  border-radius: 25px;
  padding: 7px 15px;
  margin: 13px;
  background: linear-gradient(to bottom, #7DA2FF, #2548A6);
  font-weight: bold;
  margin-bottom: 12px;
  color: white;
}

.footer-nav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-nav a {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
  font-size: 12px;
  font-family: 'Krona One', sans-serif;
  text-align: center;
  border: 2px solid white;
  border-radius: 25px;
  padding: 15px 15px;
  margin: 1px;
  background: linear-gradient(to bottom, #7DA2FF, #2548A6);
  font-weight: bold;
  margin-bottom: 10px;
  color: white;
}

.footer-nav a:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.05) rotate(-2deg);
  color: #ffffff;
  text-decoration: underline;
}

/* Animations */
@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes coolFadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}

 @keyframes loaderDissolve {
  0% { transform: scale(1); opacity: 1; }
  40% { transform: scale(1.1); opacity: 0.7; }
  100% { transform: scale(0.4); opacity: 0; }
}

@keyframes ringCollapse {
  0% { 
    transform: rotate(0deg) scale(1); 
    border-width: 10px;
    opacity: 1;
  }
  40% { 
    transform: rotate(144deg) scale(1.2); 
    border-width: 15px;
    opacity: 0.8;
  }
  100% { 
    transform: rotate(360deg) scale(0.2); 
    border-width: 2px;
    opacity: 0;
  }
}

@keyframes logoShrink {
  0% { 
    transform: scale(1) rotate(0deg); 
    opacity: 1;
    filter: brightness(1);
  }
  30% { 
    transform: scale(1.15) rotate(45deg); 
    opacity: 0.9;
    filter: brightness(1.3);
  }
  70% { 
    transform: scale(0.7) rotate(180deg); 
    opacity: 0.3;
    filter: brightness(0.7);
  }
  100% { 
    transform: scale(0.1) rotate(270deg); 
    opacity: 0;
    filter: brightness(0.3);
  }
}

@keyframes backgroundBubble {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0.7;
  }
  70% {
    opacity: 0.5;
    transform: translateY(-70vh) scale(1.1);
  }
  100% {
    transform: translateY(-100vh) scale(1.3);
    opacity: 0;
  }
}

@keyframes bubbleFloat {
  0% {
    transform: translateY(0) translateX(0) scale(0);
    opacity: 0;
  }
  10% {
    transform: translateY(-10px) translateX(calc(var(--drift) * 0.1)) scale(1);
    opacity: 0.3;
  }
  50% {
    transform: translateY(-50px) translateX(calc(var(--drift) * 0.5)) scale(1.1);
    opacity: 0.5;
  }
  100% {
    transform: translateY(-120px) translateX(var(--drift)) scale(0.8);
    opacity: 0;
  }
}

@keyframes swim {
  0% {
    transform: translateX(-200%);
  }
  100% {
    transform: translateX(calc(100vw + 200%));
  }
}

@keyframes swim-reverse {
  0% {
    transform: translateX(calc(100vw + 200%)) scaleX(-1);
  }
  100% {
    transform: translateX(-200%) scaleX(-1);
  }
}

@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

@media (prefers-reduced-motion: no-preference) {
  .marquee-text span {
    transition: transform 0.5s ease, color 0.5s ease, text-shadow 0.5s ease;
  }
}

@keyframes flowRight {
  0% { left: -50vw; }
  100% { left: 150vw; }
}

@keyframes gentleFloat1 {
  0%, 100% { transform: translateY(-50%) translateZ(0); }
  50% { transform: translateY(-60px) translateZ(0); }
}
@keyframes gentleFloat2 {
  0%, 100% { transform: translateY(-50%) translateZ(0); }
  50% { transform: translateY(-62px) translateZ(0); }
}

@keyframes gentleFloat3 {
  0%, 100% { transform: translateY(-50%) translateZ(0); }
  50% { transform: translateY(-58px) translateZ(0); }
}

@keyframes oceanTilt1 {
  0% { transform: translateY(-50%) rotate(0deg); }
  25% { transform: translateY(-50%) rotate(-3deg); }
  50% { transform: translateY(-50%) rotate(0deg); }
  75% { transform: translateY(-50%) rotate(3deg); }
  100% { transform: translateY(-50%) rotate(0deg); }
}

@keyframes oceanTilt2 {
  0% { transform: translateY(-50%) rotate(0deg); }
  25% { transform: translateY(-50%) rotate(4deg); }
  50% { transform: translateY(-50%) rotate(0deg); }
  75% { transform: translateY(-50%) rotate(-4deg); }
  100% { transform: translateY(-50%) rotate(0deg); }
}

@keyframes oceanTilt3 {
  0% { transform: translateY(-50%) rotate(0deg); }
  25% { transform: translateY(-50%) rotate(-2deg); }
  50% { transform: translateY(-50%) rotate(0deg); }
  75% { transform: translateY(-50%) rotate(2deg); }
  100% { transform: translateY(-50%) rotate(0deg); }
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatLogo {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-25px); }
}

@keyframes gradientMove {
  0% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes drift {
  0% {
    background-position-x: 0;
  }
  100% {
    background-position-x: 1000px;
  }
}

@keyframes movingBorder {
  0% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

@media screen and (min-width: 1025px) {
  .flowing-box {
    top: 38%;
  }

  .search-box {
    width: 725px;
  }
}

@media screen and (orientation: landscape) and (max-height: 500px) {
  .hero-bg-image {
    top: -25%;
    width: 100%;
    height: 80vh;
  }
  
  .flowing-box {
    width: clamp(100px, 15vh, 200px);
    height: clamp(100px, 15vh, 200px);
  }
  
  .logo img {
    width: clamp(80px, 20vh, 150px);
  }
  
  .HeaderText-1 {
    font-size: clamp(1.5rem, 12vh, 3rem);
  }

  .blue-overlay {
    transform: translateY(20%);
  }
}

@media screen and (max-width: 1200px) {
  .flowing-box {
    width: clamp(150px, 18vw, 220px);
    height: clamp(150px, 18vw, 220px);
  }
}

@media screen and (max-width: 768px) {
  .content { 
    padding: 0 15px; 
  }
  
  .logo img { 
    width: clamp(100px, 35vw, 150px);
  }
  
  .HeaderText-1 { 
    font-size: clamp(1.8rem, 8vw, 3.2rem); 
  }
  
  .flowing-box {
    width: clamp(120px, 25vw, 180px);
    height: clamp(120px, 25vw, 180px);
  }
}

@media screen and (max-width: 480px) {
  .content { 
    padding: 0 10px; 
  }
  
  .logo img { 
    width: clamp(80px, 40vw, 130px);
  }
  
  .HeaderText-1 { 
    font-size: clamp(1.5rem, 9vw, 2.8rem); 
  }
  
  .flowing-box {
    width: clamp(100px, 30vw, 140px);
    height: clamp(100px, 30vw, 140px);
  }
  
  .hero-bg-image {
    top: -15%;
    height: 70vh;
  }
}

@media screen and (max-width: 360px) {
  .flowing-box {
    width: clamp(80px, 35vw, 120px);
    height: clamp(80px, 35vw, 120px);
  }
  
  .HeaderText-1 { 
    font-size: clamp(1.2rem, 10vw, 2.5rem); 
  }
}

@media screen and (-webkit-min-device-pixel-ratio: 2), 
       screen and (min-resolution: 192dpi) {
  .hero-bg-image {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
}

@media screen and (min-width: 1920px) {
  .flowing-box {
    width: clamp(200px, 15vw, 350px);
    height: clamp(200px, 15vw, 350px);
  }
}