@import url("https://fonts.googleapis.com/css2?family=Cal+Sans&amp;family=Inter+Tight:ital,wght@0,100..900;1,100..900&amp;family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&amp;display=swap");

:root {
  --canva-purple: #8b3dff;
  --canva-pink: #ff3e98;
  --canva-blue: #00c4cc;
  --dark: #0f0f0f;
  --darker: #070707;
  --gradient-primary: linear-gradient(135deg, #8b3dff 0%, #ff3e98 100%);
  --gradient-secondary: linear-gradient(135deg, #00c4cc 0%, #8b3dff 100%);
  --gradient-gold: linear-gradient(to top, #f2c238 2.09%, #a27a3d 86.55%);
  --button-glow: 0 4px 50px 0 rgba(139, 61, 255, 0.4);
  --button-glow-hover: 0 6px 20px 0 rgba(139, 61, 255, 0.6);
  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.7);
  --text-muted: rgba(255, 255, 255, 0.5);
  --border-light: rgba(255, 255, 255, 0.1);
  --bg-card: rgba(255, 255, 255, 0.03);
  --bg-card-hover: rgba(255, 255, 255, 0.05);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter";
}

.cal-sans-regular {
  font-family: "Cal Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.inter-regular {
  font-family: "Inter";
  font-weight: 400;
  font-style: normal;
}

body {
  background: var(--dark);
  color: white;
  min-height: 100vh;
  position: relative;
}

.content {
  position: relative;
  z-index: 5;
  padding: 0rem 6%;
  margin: 0 auto;
  width: 100%;
  opacity: 1;
}

.section-heading {
  font-size: 3rem;
  text-align: center;
}

.highlight {
  background: var(--gradient-secondary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  background-size: 200% auto;
}

.btn {
  position: relative;
  z-index: 1;
  background: var(--gradient-primary);
  color: var(--text-primary);
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  padding: 14px 24px;
  border: none;
  outline: none;
  cursor: pointer;
  border-radius: 12px;
  max-width: 100%;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn:hover {
  transform: translateY(-3px);
  filter: brightness(1.1);
}

.btn:active {
  transform: translateY(-1px);
  filter: brightness(0.95);
}

.section-divider {
  width: 80%;
  max-width: 400px;
  height: 3px;
  background: linear-gradient(
    to right,
    transparent,
    var(--canva-purple),
    transparent
  );
  margin-top: 13rem;
  opacity: 0.6;
}

.cal-sans {
  font-family: "Cal Sans", sans-serif;
}

.inter {
  font-family: "Inter", sans-serif;
}

.fade-in {
  opacity: 1;
  transform: translateY(0);
}

.button-container,
.btn,
.feature-card,
.module-card,
.testimonial-card,
.coach-card,
.faq-item,
.nav-scrolled,
footer a,
.prev-btn,
.next-btn {
  transition: all 0.3s ease;
}

.button-container:hover {
  transform: scale(1.03);
}

.button-container:active {
  transform: scale(0.95);
}

.feature-card {
  border-color: rgba(201, 166, 78, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  border-color: rgba(201, 166, 78, 0.4);
}

footer a {
  transition: color 0.3s ease-out;
}

footer a:hover {
  color: var(--canva-pink);
}

.btn {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-shine {
  position: relative;
  overflow: hidden;
}

.bg-effects {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      circle at 10% 10%,
      rgba(139, 61, 255, 0.15) 0%,
      transparent 30%
    ),
    radial-gradient(
      circle at 85% 60%,
      rgba(0, 196, 204, 0.18) 0%,
      transparent 28%
    ),
    radial-gradient(circle at 50% 50%, var(--dark) 0%, var(--darker) 60%);
  opacity: 1;
  transition: opacity 1s ease;
}

.noise-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.035;
}

@keyframes shine {
  0% {
    left: -100%;
  }
  20% {
    left: 100%;
  }
  100% {
    left: 100%;
  }
}

/* Highlight word animation */
.highlight {
  animation: highlight-pulse 3s infinite alternate;
}

@keyframes highlight-pulse {
  0% {
    color: #dabc6a;
  }
  50% {
    color: #f2c238;
  }
  100% {
    color: #dabc6a;
  }
}

/* Fade-in animations */
.fade-in {
  opacity: 1;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Go-to-top button */
#go-top {
  opacity: 1;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

#go-top.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Navigation scroll effect */
nav {
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

nav.nav-scrolled {
  background-color: rgba(18, 18, 26, 0.95);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Module card animations */
.module-card {
  opacity: 1;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease, scale 0.3s ease,
    box-shadow 0.3s ease;
}

.module-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.module-card:hover {
  transform: scale(1.02);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* Testimonial card animations */
.testimonial-card {
  opacity: 1;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.3s ease;
}

.testimonial-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

a {
  text-decoration: none;
  color: white;
}
.footer{
  padding-bottom: 0px !important;
}

@media (max-width: 768px) {
  .hamburger-navbar {
    margin-top: 20px !important;
  }
}
@media (max-width: 480px) {
  .hamburger-navbar {
    margin-top: 0px !important;
  }
}
@media (min-width: 1400px) {
  .form-wrapper{
    max-width: 600px !important;
  }
}

 @media (min-width: 480px) and (max-width: 576px) {
    .hamburger-navbar{
        margin-top: -10px !important;
    }
  }