/* ===================================== */
/* Global Styling */
/* ===================================== */
html, body {
  font-size: 16px;
  background-color: #000;
  font-family: 'Josefin Sans', sans-serif;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  overflow-y: scroll;
  box-sizing: border-box; 
}


*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ===================================== */
/* Menu and Navigation */
/* ===================================== */
.burger-btn {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 1001;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.burger-btn .bar {
  width: 25px;
  height: 3px;
  background-color: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Animate into X */
.burger-btn.active .bar1 {
  transform: rotate(45deg) translate(5px, 5px);
}

.burger-btn.active .bar2 {
  opacity: 0;
}

.burger-btn.active .bar3 {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Menu wrapper */
.menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(-100%);
  transition: transform 0.4s ease;
  z-index: 1000;
}

/* Show menu when active */
.menu.active {
  transform: translateX(0);
}

/* Menu links */
.menu-links {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}

.menu-links li {
  margin: 1.5rem 0;
}

.menu-links a {
  font-size: 1.5rem;
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.menu-links a:hover {
  color: #fbbc05;
}

/* -------- Desktop sidebar (1024px+) -------- */
@media (min-width: 1024px) {
  .menu {
    width: 300px;
    height: 100vh;
    align-items: flex-start;
    padding-top: 4rem;
    justify-content: flex-start;
    background: rgba(0, 0, 0, 0.92);
  }

  .menu-links {
    padding-left: 2rem;
    text-align: left;
  }

  .burger-btn {
    top: 1.5rem;
    left: 1.5rem;
    right: auto;
  }
}

/* ===================================== */
/* ===================================== */


/* ===================================== */
/* Header Page */
/* ===================================== */

.header {
  opacity: 0;
  transition: opacity 1s ease-out, transform 1s ease-out;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0;
  gap: 0;
  background-color: #000;
  position: relative;
  z-index: 1001 !important;
}

header.loaded {
  opacity: 1;
  transform: translateY(0);
}

.hero {
  z-index: 0;
}

.mesh-background {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background-color: #000;
  background-image:
    radial-gradient(circle at 20% 40%, #fbbc05 0%, transparent 40%),
    radial-gradient(circle at 80% 30%, #33ccff 0%, transparent 35%),
    radial-gradient(circle at 50% 80%, #ff2e9a 0%, transparent 35%),
    radial-gradient(circle at 60% 20%, #ffffff1a 0%, transparent 50%);
  background-repeat: no-repeat;
  background-size: 200% 200%;
  animation: meshMove 6s ease-in-out infinite;
  box-shadow: inset 0 -150px 100px -50px #000;
  overflow: hidden;
  z-index: 0;
  transform: translateZ(0);
  will-change: background-position;
  display: flex;
  flex-direction: column;
  justify-content:center;
  align-items: center;
  padding-top: 2vh;
}

.logo-group {
  position: relative;
  z-index: 10;
  text-align: center;
}

.logo {
  justify-items: center;
  z-index: 100;
}

.logo img {
    width: clamp(250px, 50vw, 600px);
    height: auto;  /* maintain aspect ratio */
    display: block;
}

.pulse {
  animation: fadeInUp 1.6s ease forwards, heartbeat 1.6s ease-in-out infinite;
  display: inline-block;
  transform-origin: center;
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.2));
  opacity: 0;
  transform: scale(0.8);
}


.hero-heading {
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 800;
  color: #fff;
  font-size: clamp(2rem, 10vw, 7rem);
  margin: 0; /* remove default margin so it aligns neatly */
  margin-top: 2vh;
  text-align: center;
}

.hero-heading-light {
  font-weight: 300;
}

/* CTA Cards */
.cta-card.wide {
  width: auto;
  max-width: 90vw;
  min-height: auto;
  background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.01));
  padding: 0rem;
  aspect-ratio: 0;
  margin-top: 1vh;
  margin-bottom: 1vh;
  border-radius: 0.5rem;
}

@media (min-height: 700px) {
  .cta-card.wide {
    margin: 2vh auto;
    padding: 0rem;

  }
}

/* ===========================
   3. Animate cta-card.wide
=========================== */
.cta-card.wide {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.cta-card.wide.active {
  animation: fadeInUp 0.8s ease forwards;
}

.cta-card-group {
  display: flex;
  flex-wrap: wrap; /* makes cards wrap on smaller screens */
  gap: 1.5rem;
  justify-content: center;
  margin: 1rem 0; /* spacing above/below the group */
  padding: 0vh 1rem; /* a bit of side padding for mobile */
}

.cta-card {
  background: rgba(255, 255, 255, 0.06); 
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem; /* square corners */
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  width: clamp(220px, 30vw, 300px);
  aspect-ratio: 1 / 1; 
  padding: 0.1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.cta-icon {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: #ffffff;
  text-shadow: 0 0 10px #000000a6;
  display: inline-flex;
  margin-top: 1rem;
  align-items: center;
  justify-content: center;
}

.cta-content {
  display: flex;
  flex-direction: column;
  justify-content: center; /* Center the description and button */
  align-items: center;
  flex-grow: 1; /* Allow the content to grow and fill the bottom space */
  gap: 1rem; /* Add spacing between the description and button */
}

/* Subtle hover for depth */
.cta-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.cta-desc {
  font-family: 'Josefin Sans', sans-serif;
  font-size: clamp(1.2rem, 2.5vw, 2rem);
  color: #ffffff;
  width: 100%;
  margin: 0;
  line-height: 1.2;
  margin-bottom: 1rem;
}

/* CTA buttons: reuse or define a new style */
.cta-btn {
  font-family: 'Josefin Sans', sans-serif;
  font-size: clamp(1.1rem, 4vw, 2.5rem);
  border: none;
  border-radius: 4px;
  padding: 0.6rem 1.2rem;
  margin-bottom: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  outline: none;
}

@media (max-width: 600px) {
  .cta-btn {
    margin: 0.5rem;;
  }
}

.cta-btn.browse {
  background: #fbbc05;
  color: #000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.cta-btn.browse:hover {
  background: #ffd94d;
}

.cta-btn.secondary {
  background: #33ccff;
  color: #000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.cta-btn.secondary:hover {
  background: #6ee4ff;
}

.cta-btn.ghost {
  background: rgba(255, 255, 255, 0.4);
  color: #000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.cta-btn.ghost:hover {
  background: rgba(255, 255, 255, 0.15);
}

@media (max-width: 600px) {
  .cta-card-group {
    flex-direction: row;
    align-items: center;
    gap: 1rem
  }
}

@media (max-width: 600px) {
  .cta-card {
    width: clamp(150px, 20vw, 220px);
    aspect-ratio: 0;
    padding: 0.5rem 0rem;
    min-height: 135px;
  }

  .cta-icon {
    display: none !important;
  }

  .cta-title {
    display: none;
  }
  .cta-desc {
    font-size: clamp(1.1rem, 4vw, 2.5rem);
    margin-bottom: 0.25rem;
    margin-top: 0.5rem;
  }
  .cta-btn {
    font-size: clamp(1.1rem, 4vw, 2.5rem);
    padding: 0.4rem 1rem;
  }
}

/* Default: visible text/icons */
.cta-card .cta-icon,
.cta-card .cta-title,
.cta-card .cta-desc {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

/* On hover, shift them up a bit or add a subtle highlight */
.cta-card:hover .cta-icon,
.cta-card:hover .cta-title,
.cta-card:hover .cta-desc {
  transform: translateY(-3px);
}

/* ===================================== */
.tagline {
  font-family: 'Josefin Sans', sans-serif;
  font-size: clamp(1.2rem, 5vw, 2.5rem);
  font-weight: 400;
  color: #ffffff;
  text-align: center;
  line-height: 1.4;
  margin: 1rem 0.5rem;
  padding: 0 0.1rem;
  position: relative;
}

@media (max-width: 600px) {
  .tagline {
    font-size: clamp(1.2rem, 2vw, 3.5rem);
    margin: 0.2rem 0rem;
    padding: 0 0.1rem;
  }
}


/* Highlighted words */
.tagline .highlight {
  font-weight: 700;
  color: #fbbc05; /* Accent color */
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3); /* Subtle shadow for depth */
  position: relative;
}

/* Optional: Add a subtle underline animation */
.tagline .highlight::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #fbbc05, #ffd94d);
  opacity: 0.8;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease-in-out;
}

.tagline .highlight:hover::after {
  transform: scaleX(1);
}

/* Optional: Add a fade-in animation */
.tagline {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease-out forwards;
}


.double-text-container {
  position: relative;
  display: block;
  margin: 0.5rem auto;
  width: 100%;
  text-align: center;
}

@media (min-height: 700px) {
.double-text-container {
  margin: 2vh 0.5vh 0.5vh, 0.5vh;
}
}

/* keep .head-sub-text consistent */
.head-sub-text {
  display: block;
  font-style: italic;
  font-size: clamp(1rem, 5vw, 3.5rem);
  line-height: 1.5;
  text-align: center;
}

/* Initial state for spans */
.double-text-container .head-sub-text span {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;

  /* Add blurred white background */
  background: rgba(255, 255, 255, 0.2); /* Semi-transparent white */
  backdrop-filter: blur(10px); /* Apply blur effect */
  -webkit-backdrop-filter: blur(10px); /* For Safari */
  padding: 0.5rem 1rem; /* Add padding for spacing */
  border-radius: 8px; /* Rounded corners */
  margin: 0.5rem 0; /* Add spacing between lines */
  text-align: center; /* Center-align the text */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Animate spans in staggered order */
.double-text-container.active .head-sub-text:nth-child(1) span {
  animation: fadeInUp 0.8s ease forwards; /* Slightly longer duration */
}

.double-text-container.active .head-sub-text:nth-child(2) span {
  animation: fadeInUp 0.8s ease 0.4s forwards; /* Delayed by 0.4s */
}

.double-text-container.active .head-sub-text:nth-child(3) span {
  animation: fadeInUp 0.8s ease 0.8s forwards; /* Delayed by 0.8s */
}

.double-text-container h2 {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.double-text-container.active h2:nth-child(1) {
  animation: fadeInUp 0.6s ease forwards;
}

.double-text-container.active h2:nth-child(2) {
  animation: fadeInUp 0.6s ease 0.3s forwards; /* Delayed by 0.3s */
}

.double-text-container.active h2:nth-child(3) {
  animation: fadeInUp 0.6s ease 0.6s forwards; /* Delayed by 0.6s */
}

.cta-card-group .cta-card {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.cta-card-group.active .cta-card:nth-child(1) {
  animation: fadeInUp 0.6s ease forwards;
}

.cta-card-group.active .cta-card:nth-child(2) {
  animation: fadeInUp 0.6s ease 0.2s forwards; /* Delayed by 0.2s */
}

.cta-card-group.active .cta-card:nth-child(3) {
  animation: fadeInUp 0.6s ease 0.4s forwards; /* Delayed by 0.4s */
}

.cta-card-group.active .cta-card:nth-child(4) {
  animation: fadeInUp 0.6s ease 0.6s forwards; /* Delayed by 0.6s */
}

/* ====================================== */
/* ===================================== */

/* ===================================== 
        THREE BLOB SECTION
===================================== */


/* Heading-text section */
.heading-text {
  position: relative;
  background-color: #000; /* Main black background */
  overflow: hidden; /* Ensure blobs don't overflow the container */
  padding: 2rem 1rem;
  display: flex;
  flex-direction: column; /* Stack cards vertically */
  gap: 2rem; /* Add spacing between cards */
  align-items: center; /* Center the cards horizontally */
}

/* Add floating blobs */
.heading-text::before,
.heading-text::after {
  content: '';
  position: absolute;
  width: 250px; /* Reduce size for better alignment */
  height: 250px;
  opacity: 0.15; /* Subtle effect */
  border-radius: 50%;
  animation: floatBlob 5s ease-in-out infinite;
  z-index: 0; /* Ensure blobs are behind the content */
}

/* Ensure blobs are behind everything */
.heading-text::before,
.heading-text::after {
  z-index: 0;
}

/* Gradient wrapper (cards) */
.heading-text .gradient-wrapper {
  max-width: 1200px;
  background: transparent; /* Keep the background transparent */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.frosted-content {
  /* margin: 1rem; */
  padding: 2rem;
  /* max-width: 800px; */
  background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.01));
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 2px solid rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
  box-shadow: 0 0 40px rgba(255, 204, 0, 0.05); /* soft yellow */
  padding: 2rem;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  text-align: center;
}

.frosted-content.contact {
  max-width: 1200px;
  margin: auto;
  padding: 1rem;
}


/* Frosted content inside cards */
.heading-text .frosted-content {
  position: relative; /* Ensure content is above the blobs */
  padding: 1.5rem;
  border-radius: 1rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px); /* Safari support */
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  z-index: 1; /* Ensure content is above the blobs */
  overflow: hidden; /* Clip any overflowing content, including blobs */
  opacity: 0;
  transform: translateY(40px); /* Start further down */
  transition: opacity 1s ease, transform 1s ease; /* Smooth transition */
}

.heading-text .frosted-content.active {
  opacity: 1;
  transform: translateY(0); /* Slide into place */
}

/* Frosted Box 1 */
.heading-text .frosted-content.box-1::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 30%, #fbbc05 0%, transparent 60%),
              radial-gradient(circle at 70% 70%, #33ccff 0%, transparent 60%);
  opacity: 0.3; /* Increased opacity for better visibility */
  z-index: -1; /* Place the blobs behind the frosted content */
  animation: blobMove1 4.2s ease-in-out infinite; /* Unique animation for Box 1 */
}

/* Frosted Box 2 */
.heading-text .frosted-content.box-2::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, #ff2e9a 0%, transparent 60%),
              radial-gradient(circle at 20% 80%, #33ccff 0%, transparent 60%);
  opacity: 0.3; /* Increased opacity for better visibility */
  z-index: -1; /* Place the blobs behind the frosted content */
  animation: blobMove2 4.8s ease-in-out infinite; /* Unique animation for Box 2 */
}

/* Frosted Box 3 */
.heading-text .frosted-content.box-3::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 120%;
  height: 120%;
  background: radial-gradient(circle at 40% 40%, #33ccff 0%, transparent 60%),
              radial-gradient(circle at 80% 20%, #fbbc05 0%, transparent 60%);
  opacity: 0.3; /* Increased opacity for better visibility */
  z-index: -1; /* Place the blobs behind the frosted content */
  animation: blobMove3 5.2s ease-in-out infinite; /* Unique animation for Box 3 */
}

/* Add mesh gradient blobs behind each frosted-content */
.heading-text .frosted-content::before {
  content: '';
  position: absolute;
  top: 0; /* Align with the top of the container */
  left: 0; /* Align with the left of the container */
  width: 100%; /* Match the size of the container */
  height: 100%;
  background: radial-gradient(circle at 50% 50%, #ff2e9a 0%, transparent 60%);
  opacity: 0.2; /* Subtle effect */
  z-index: -1; /* Place the blobs behind the frosted content */
  transform: scale(1); /* Remove unnecessary scaling */
  animation: blobMove 8s ease-in-out infinite; /* Optional: Add subtle movement */
}

@media (max-width: 768px) {
  .heading-text {
    flex-direction: column; /* Stack cards vertically */
    gap: 1.5rem; /* Reduce spacing between cards */
  }

  .heading-text .gradient-wrapper {
    flex: 1 1 100%; /* Full width for all cards */
    width: 95%;
    max-width: 100%;
  }
}

/* Ensure the highlighted-heading divs stack vertically */
.highlighted-heading {
  display: flex;
  flex-direction: column; /* Stack content vertically */
  align-items: center; /* Center-align the text */
  text-align: center; /* Center-align the text */
  z-index: 2;
}

/* Ensure the first heading is above the second */
.highlighted-heading:first-child {
  order: -1; /* Explicitly set the order to ensure it's always first */
}


.main-heading {
  font-size: clamp(1.5rem, 7vw, 8rem);
  font-family: 'Anton', sans-serif;
  /* word-spacing: 0.3vw; */
  letter-spacing: 0.1vw;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  width: 100%;
  text-align: center;
}

.main-heading.yellow span {
  position: relative;
  display: inline-block;
  background: linear-gradient(to bottom, transparent 70%, #fbbc05 70%);
  background-size: 100% 100%;
  background-position: 0 100%;
  transition: background-position 0.3s ease;
  color: #fff;
  padding: 0 0.2em;
  z-index: 1;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.8); /* Add shadow for depth */
}

.main-heading.blue span {
  position: relative;
  display: inline-block;
  background: linear-gradient(to bottom, transparent 70%, #33ccff 70%);
  background-size: 100% 100%;
  background-position: 0 100%;
  transition: background-position 0.3s ease;
  color: #fff;
  padding: 0 0.2em;
  z-index: 1;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.8); /* Add shadow for depth */
}

.main-heading.magenta span {
  position: relative;
  display: inline-block;
  background: linear-gradient(to bottom, transparent 70%, #ff2e9a 70%);
  background-size: 100% 100%;
  background-position: 0 100%;
  transition: background-position 0.3s ease;
  color: #fff;
  padding: 0 0.2em;
  z-index: 1;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.8); /* Add shadow for depth */
}
@media (max-width: 600px) {
  .main-heading.yellow span,
  .main-heading.blue span,
  .main-heading.magenta span {
    font-size: clamp(2rem, 8vw, 12rem) !important;
  }
}

.highlighted-text {
  /* font-style: italic; */
  padding: 0 0.2em;
  margin-top: -10px;
  line-height: 1;
  display: inline;
  text-align: center;
  color: #fff;
  z-index: 1; /* Ensure it is above the underline */
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.7); /* Optional: add a subtle shadow for depth */
  font-style: italic;
  font-size: clamp(1.2rem, 5vw, 4rem); /* Responsive font size */
}

@media (max-width: 600px) {
  .highlighted-text {
    margin-top: -5px;
  }
}

.subtext {
  font-family: 'Josefin Sans', sans-serif;
  display: inline-block;
  /* font-style: italic; */
  font-weight: 400;
  font-size: clamp(1rem, 1.7vw, 6rem);
  text-align: justify;
  line-height: 1.3;
  color: #ccc;
  display: block;
  margin: 1rem 0rem 0rem 0rem;
  max-width: 1100px;
}


.subtext a {
  color: #c0b192;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.3s;
}

.subtext a:hover {
  color: #a66a00;
}

.subtext-wrapper {
  display: flex; /* Enable Flexbox */
  justify-content: center; /* Center horizontally */
  align-items: center; /* Center vertically */
  text-align: center; /* Ensure text is centered */
  width: 100%; /* Ensure it spans the full width */
  height: 100%; /* Optional: Set height if needed */
  padding: 1rem; /* Add some padding for spacing */
  box-sizing: border-box; /* Ensure padding is included in the dimensions */
}

@media (max-width: 600px) {
  .subtext-wrapper {
    padding: 0;
  }
}




/* ===================================== 
        TRUSTED BY SECTION
===================================== */

.trusted-by {
  text-align: center;
  padding-left: auto;
  padding-right: auto;
  background-color: transparent;
  padding: 2rem 1rem;
}

.trusted-by h2 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.centre-heading {
  font-family: 'Anton', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 200;
  color: #ffffffcc;
  border-bottom: #fbbc05 2px solid;
  margin-bottom: 0.2em;
  opacity: 0;
}

.animate-section .centre-heading {
  opacity: 0;
  transition: opacity 1s ease-out;
}

.animate-section.active .centre-heading {
  opacity: 1;
}

.logo-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

.logo-row .trust-logo {
  height: 50px;
  width: auto;
  filter: grayscale(100%);
  opacity: 0;
  /* animation: rippleIn 0.6s ease forwards; Apply the rippleIn animation */
  transform: translateY(20px); /* Start slightly below */
}

@media (max-width: 600px) {
  .logo-row .trust-logo {
    height: 25px;
  }
}
.logo-row.animate-in .trust-logo:nth-child(1) {
  animation-delay: 0.2s;
}

.logo-row.animate-in .trust-logo:nth-child(2) {
  animation-delay: 0.4s;
}

.logo-row.animate-in .trust-logo:nth-child(3) {
  animation-delay: 0.6s;
}

.logo-row.animate-in .trust-logo:nth-child(4) {
  animation-delay: 0.8s;
}



  /* Footer, etc. */
  .footer {
    text-align: center;
    color: #fff;
    background-color: #000;
    padding-top: 2rem;
    padding-bottom: 1rem;
  }




/* ============================
    CONTACT US SECTION
============================ */
.contact-us {
  background-color: #000; /* Black background for consistency */
  color: #fff; /* White text */
  padding: 1rem 1rem; /* Add spacing */
  text-align: center;
}

.contact-us.min-margin {
  margin: 0;
  padding: 0;
}

.contact-container {
  max-width: 1000px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.contact-container.visible {
  opacity: 1;
  transform: translateY(0);
}

.frosted-content.dark {
  background: rgba(0, 0, 0, 0.8); /* Darker background for contrast */
}

.default-heading {
  margin-bottom: 1.5em;
  padding: 0em 0.5em;
}

.default-heading span {
  font-family: 'Anton', sans-serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 200;
  color: #ffffff;
  /* border-bottom: #fbbc05 2px solid; */
  background: linear-gradient(to bottom, transparent 70%, #fbbc05 70%);
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
}

.contact-description {
  padding-bottom: 1em;
  font-size: clamp(1rem, 2vw, 2rem);
}

.contact-description a {
  color: #fbbc05;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.3s;
}
.contact-description a:hover {
  color: #e0a904;
} 

.required-asterisk {
  color: red;
  font-weight: bold;
}

.form-group {
  display: flex;
  flex-direction: column;
  text-align: left;
  margin-bottom: 1rem;
}

.form-group label {
  font-size: clamp(1rem, 2vw, 1.75rem);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  font-size: clamp(0.8rem, 1.9vw, 1.6rem);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #fbbc05; /* Highlight border on focus */
}

.cta-btn.primary {
  background-color: #fbbc05;
  color: #000;
  padding: 1rem 1rem;
  font-size: clamp(1rem, 4vw, 2.5rem);
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-bottom: 1em;
}

.cta-btn.primary:hover {
  background-color: #e0a904;
}

.error-message {
  color: #fbbc05;
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

.success-message {
  color: #33ccff;
  font-size: 1rem;
  margin-top: 1rem;
}

.form-note {
  font-style: italic;
  font-size: clamp(1rem, 1.6vw, 2rem);
  margin-bottom: 0.5rem;
}

.form-note.small {
  font-size: clamp(0.8rem, 1.2vw, 1.5rem);
  margin-top: 0.5rem;
}

/* ============================
    ANIMATIONS
============================ */


@keyframes heartbeat {
  0% {
    transform: scale(1);
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.2));
  }
  14% {
    transform: scale(1.05);
    filter: drop-shadow(0 0 14px rgba(0, 0, 0, 0.3));
  }
  28% {
    transform: scale(1);
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.2));
  }
  42% {
    transform: scale(1.05);
    filter: drop-shadow(0 0 14px rgba(0, 0, 0, 0.3));
  }
  70% {
    transform: scale(1);
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.2));
  }
  100% {
    transform: scale(1);
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.2));
  }
}

@keyframes floatBlob {
  0% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-20px) scale(1.1);
  }
  100% {
    transform: translateY(0) scale(1);
  }
}

@keyframes blobMove1 {
  0% {
    transform: scale(1.2) translate(0, 0);
  }
  25% {
    transform: scale(1.5) translate(-30px, 20px);
  }
  50% {
    transform: scale(1.8) translate(-50px, 50px);
  }
  75% {
    transform: scale(1.4) translate(20px, -30px);
  }
  100% {
    transform: scale(1.2) translate(0, 0);
  }
}

@keyframes blobMove2 {
  0% {
    transform: scale(1.1) translate(0, 0);
  }
  25% {
    transform: scale(1.3) translate(20px, -20px);
  }
  50% {
    transform: scale(1.6) translate(-40px, 30px);
  }
  75% {
    transform: scale(1.2) translate(30px, -10px);
  }
  100% {
    transform: scale(1.1) translate(0, 0);
  }
}

@keyframes blobMove3 {
  0% {
    transform: scale(1.3) translate(0, 0);
  }
  25% {
    transform: scale(1.5) translate(-20px, 40px);
  }
  50% {
    transform: scale(1.7) translate(30px, -30px);
  }
  75% {
    transform: scale(1.4) translate(-10px, 20px);
  }
  100% {
    transform: scale(1.3) translate(0, 0);
  }
}

@keyframes blobMove {
  0% {
    transform: scale(1.2) translate(0, 0);
  }
  50% {
    transform: scale(1.5) translate(-30px, 30px);
  }
  100% {
    transform: scale(1.2) translate(0, 0);
  }
}

@keyframes meshMove {
  0% {
    background-position: 20% 40%, 80% 30%, 50% 80%, 60% 20%;
  }
  25% {
    background-position: 30% 45%, 70% 35%, 40% 85%, 65% 30%;
  }
  50% {
    background-position: 25% 50%, 85% 25%, 60% 75%, 55% 35%;
  }
  75% {
    background-position: 35% 35%, 65% 40%, 50% 90%, 70% 25%;
  }
  100% {
    background-position: 20% 40%, 80% 30%, 50% 80%, 60% 20%;
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px); /* Increased translation */
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes staggerFadeIn {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.2));
  }
  50% {
    transform: scale(1.05);
    filter: drop-shadow(0 0 14px rgba(0, 0, 0, 0.3));
  }
}

@keyframes rippleIn {
  0% {
    opacity: 0;
    transform: translateY(20px); /* Start slightly below */
  }
  100% {
    opacity: 1;
    transform: translateY(0); /* End in place */
  }
}


.stay-tuned-container {
  background-color: #000;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.stay-tuned-heading {
  font-family: 'Anton', sans-serif;
  font-size: clamp(2rem, 10vw, 7rem);
  text-shadow: 0 0 20px rgba(255, 188, 5, 0.4), 0 0 40px rgba(255, 188, 5, 0.25);
  animation: heartbeat 1.5s infinite; /* Heartbeat animation */
  color: #fff;
  margin: 0; /* remove default margin so it aligns neatly */
  text-align: center;
  letter-spacing: 1vw;
}

.stay-tuned-text {
  font-family: 'Josefin Sans', sans-serif;
  font-size: clamp(1rem, 5vw, 3rem);
  color: #fff;
  text-align: center;
  margin-bottom: 2rem;
  margin-top: 10vh;
  padding: 0 1rem; /* Add some padding for better readability */
}







/* FAQs Section */
.mesh-background-faqs {
  position: relative;
  z-index: 0; /* Ensure it stays below the burger button */
  width: 100%;
  min-height: 100vh;
  background-color: #000;
  background-image:
    radial-gradient(circle at 20% 40%, #fbbc05 0%, transparent 40%),
    radial-gradient(circle at 80% 30%, #33ccff 0%, transparent 35%),
    radial-gradient(circle at 50% 80%, #ff2e9a 0%, transparent 35%),
    radial-gradient(circle at 60% 20%, #ffffff1a 0%, transparent 50%);
  background-repeat: no-repeat;
  background-size: 200% 200%;
  animation: meshMove 6s ease-in-out infinite;
  box-shadow: inset 0 -150px 100px -50px #000;
  overflow: hidden;
  transform: translateZ(0);
  will-change: background-position;
}

.faqs-section {
  max-width: 70%; /* Adjust width as needed */
  margin: 2rem auto 5rem auto; /* Center the section and add spacing */
  padding: 2rem 1rem; /* Add padding for spacing */
  background: rgba(255, 255, 255, 0.1); /*Semi-transparent white*/
  backdrop-filter: blur(10px); /* Apply blur effect */
  -webkit-backdrop-filter: blur(10px); /* Safari support */
  border: 1px solid rgba(255, 255, 255, 0.2); /* Subtle border */
  border-radius: 1rem; /* Rounded corners */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Optional shadow */
  color: #000; /* Black text */
  font-family: 'Josefin Sans', sans-serif;
  box-sizing: border-box; /* Include padding in width calculations */
  text-align: left; /* Align text to the left */

}

@media (max-width: 768px) {
  .faqs-section {
    max-width: 90%; /* Adjust width for smaller screens */
    padding: 1rem; /* Reduce padding */
  }
}

.faq {
  padding: 1rem 1rem; /* Add horizontal padding */
  border-top: 1px solid rgba(255, 255, 255, 0.2); /* Subtle border */
}

.faq:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2); /* Add border to the last item */
}

.faqs-heading {
  text-align: center;
  font-size: clamp(2rem, 5vw, 6rem);
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-family: 'Anton', sans-serif;
  color: #fff; /* White text for contrast */
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5); /* Subtle shadow for depth */
}

.faqs-subheading {
  font-size: clamp(1.2rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
  margin-top: 1.5rem;
  font-family: 'Anton', sans-serif;
  color: #333; /* Accent color */
  text-transform: uppercase;
  font-weight: bold;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: clamp(1rem, 2vw, 2rem);
  font-weight: bold;
  transition: color 0.3s ease; /* Keep this for hover effects */
}

.faq-question:hover {
  color: inherit; /* Ensure the text color doesn't change on hover */
}

.faq-toggle {
  font-size: 1.5rem;
  color: #fff; /* Default toggle icon color */
  transition: transform 0.5s ease, color 0.3s ease;
}

.faq.active .faq-toggle {
  transform: rotate(315deg); /* Rotate "+" to "x" */
  color: #fbbc05; /* Change toggle color when active */
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.6s ease, opacity 0.6s ease;
  font-size: clamp(1.2rem, 2vw, 2.3rem);
  color: #292929; /* Subtle gray for answers */
  margin-top: 0.5rem;
  overflow-y: scroll;
  text-align: justify;
}

.faq.active .faq-answer {
  max-height: 200px; /* Adjust based on content */
  opacity: 1;
}

/* Consent Banner */
.consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  color: #fff;
  padding: 1rem;
  text-align: center;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.consent-banner p {
  margin: 0;
  flex: 1;
  text-align: left;
}

.consent-btn {
  background-color: #fbbc05;
  color: #000;
  border: none;
  padding: 0.5rem 1rem;
  margin-left: 1rem;
  cursor: pointer;
  border-radius: 4px;
  font-size: 1rem;
}

.consent-btn:hover {
  background-color: #e0a800;
}