/* File: styles/main.css */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background-color: #000000f5; /* dark base */
  position: relative;
}
body::before,
body::after {
  content: "";
  position: absolute; /* was fixed */
  width: 600px;
  height: 600px;
  border-radius: 50%;
  z-index: -1;
  pointer-events: none;
  animation: pulseBlob 10s ease-in-out infinite;
}

body::before {
  background: radial-gradient(circle, rgba(250, 204, 21, 0.2), transparent 60%);
  top: 1200px;   /* choose where to start glowing */
  left: 10%;
}

body::after {
  background: radial-gradient(circle, rgba(96, 165, 250, 0.2), transparent 60%);
  top: 2400px;   /* choose where the second glow appears */
  right: 10%;
}


@keyframes pulseBlob {
  0%, 100% { transform: scale(1); opacity: 0.15; }
  50% { transform: scale(1.05); opacity: 0.2; }
}




/* Navbar */
.navbar {
      font-family: 'Rajdhani', sans-serif;
  background: #000000d7;
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: #facc15;
}

.cta {
        font-family: 'Rajdhani', sans-serif;
  background: linear-gradient(135deg, #facc15, #d97706);
  color: #000;
  font-weight: bold;
  padding: 0.7rem 1.4rem;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.3s ease;
    text-decoration: none !important;
      display: none;
}

.cta:hover {
  filter: brightness(1.2);
  transform: scale(1.05);
}

/* Hero Section */
.hero {
  padding: 5rem 2rem;
  text-align: center;
    background: transparent;
      position: relative;
  z-index: 1;
}

/* Background yellow glow blob */
.hero::before {
  content: "";
  position: absolute;
  top: -80px;
  left: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(250, 204, 21, 0.205), transparent 70%);
  z-index: 0;
  pointer-events: none;
}

/* Blue blob - top right */
.hero::after {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.192), transparent 70%);
  z-index: 0;
  pointer-events: none;
}

/* Faint dot grid - top left overlay */
.hero .hero-grid-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 260px;
  height: 260px;
  background-image: radial-gradient(rgba(255, 255, 255, 0.781) 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.25;
  z-index: 1;
  pointer-events: none;
}
.hero-content {
  max-width: 1000px;
  margin: 0 auto;
}

.hero h1 {
    font-family: 'Rajdhani', sans-serif;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 300;
  color: #e07a04; /* grey */
}

.hero h2 {
  font-family: 'Rajdhani', sans-serif;
    font-size: 2.5rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
  color: #fff; /* restores visible white */
}

.highlight {
  color: #facc15; /* yellow highlight */
}

.highlight-gradient {
  background: linear-gradient(to right, #facc15, #d97706);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  
}

.hero p {
  font-size: 1.125rem;
  max-width: 700px;
  margin: 0 auto 3rem auto;
  color: #aaa;
  font-family: 'Rajdhani', sans-serif;
}

/* Glass UI Card */
.glass-container {
  padding: 1rem;
  backdrop-filter: blur(20px);
  background: transparent;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 40px 8px rgba(255, 210, 0, 0.3);
  max-width: 960px;
  width: 100%;
  margin: 0 auto;
}

.glass-container img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
}

/* Features Section */
.features-overlay {
  font-family: 'Rajdhani', sans-serif;
    position: relative;

  padding: 6rem 2rem 8rem;
  height: 720px;
  overflow: hidden;
  background: transparent;


  background-size: cover;
  background-repeat: no-repeat;
}

.features-overlay::before {
  content: "";
  position: absolute;
  top: 40%;
  left: 60%;
  width: 600px;
  height: 600px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(96, 165, 250, 0.12), transparent 70%);
  z-index: 0;
}


.feature-bg-image {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 800px;
  height: 800px;
  transform: translate(-50%, -50%);
  background: url('../assets/bg-backtest-faded.png') no-repeat center center;
  background-size: contain;
  z-index: 0;

  -webkit-mask-image: radial-gradient(circle, rgba(0, 0, 0, 1) 25%, rgba(0, 0, 0, 0) 45%);
  mask-image: radial-gradient(circle, rgba(0, 0, 0, 1) 25%, rgba(0, 0, 0, 0) 45%);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  filter: brightness(1.2) contrast(1.2);
}

.features-grid-overlay {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
}
/* Feature Cards */
.feature-card {
  position: absolute;
  width: 260px;
  padding: 1.5rem;
  background: #1e1e2f;
  border-radius: 12px;
  box-shadow: 0 0 18px rgba(255, 210, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(255, 210, 0, 0.6);
}

.feature-card h3 {
  margin-top: 0.5rem;
  color: #facc15;
}

.feature-card p {
  color: #ccc;
  font-size: 0.95rem;
}

.feature-card .icon {
  width: 40px;
  height: 40px;
  margin-bottom: 0.5rem;
}

.feature-card .icon svg {
  width: 100%;
  height: 100%;
}

@media (max-width: 768px) {
  .features-overlay {
    height: auto;
    padding: 4rem 1.5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .feature-bg-image {
    position: static;
    width: 100%;
    max-width: 400px;
    height: 300px;
    margin-bottom: 2rem;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .features-grid-overlay {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
    max-width: 400px;
  }

  .feature-card {
    position: static;
    width: 100%;
    margin: 0 auto;
  }
.info-quadrant-section {
  flex-direction: column;
  padding: 3rem 1rem;
  gap: 2rem;
  height: auto;
  align-items: center;
  display: flex;
  flex-wrap: nowrap;
  position: relative;
}

.info-quadrant-section .quadrant {
  position: static;
  max-width: 100%;
  width: 100%;
  text-align: center;
}

.info-quadrant-section .quadrant-line {
  display: none !important; /* Hide axis lines on mobile */
}

.yellow-ring {
  margin-top: 1.5rem;
}

}


/* Grid Positions */
.card-top-left     { top: 5%;  left: 5%; }
.card-top-right    { top: 5%;  right: 5%; }
.card-bottom-left  { bottom: 5%;  left: 5%; }
.card-bottom-right { bottom: 5%;  right: 5%; }

/* Section Title */
.section-intro {
  position: relative;
  z-index: 2;
  margin: 0 auto 4rem;
  margin-top: -2rem;
  text-align: center;
  max-width: 800px;
}

.section-intro h2 {
  font-size: 2.5rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.5rem;
}

.section-intro .underline {
  width: 50%;
  max-width: 240px;
  height: 3px;
  background: linear-gradient(to right, #facc15, #d97706);
  margin: 0 auto;
  border-radius: 4px;
}
/* Builder Section Layout */
.builder-diagram {
  width: 100%;
  background: transparent;
  position: relative;
  overflow: hidden;
}

.strategy-scroll {
  position: relative;
  background: transparent;
  padding: 6rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 700px;
}

.diagram-container {
  position: relative;
  width: 100%;
  max-width: 1100px;
  height: 750px;
  margin: 0 auto;
}


/* Builder Highlight */
.builder-highlight {
  padding: 6rem 2rem;
  background: transparent;
  display: flex;
  justify-content: center;
}

.glass-card {
  position: relative;
  max-width: 1000px;
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  backdrop-filter: blur(20px);
  box-shadow: 0 0 40px rgba(255, 210, 0, 0.15);
  padding: 1rem;
}

.builder-image {
  width: 100%;
  border-radius: 12px;
  display: block;
}
.connection-lines path.flow-path {
  stroke-dasharray: 500;
  stroke-dashoffset: 500;
  animation: dash 2.5s ease-out forwards;
  filter: drop-shadow(0 0 4px rgba(255, 230, 0, 0.4));
}

@keyframes dash {
  to {
    stroke-dashoffset: 0;
  }
}.video-annotation-wrapper {
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
  padding: 2rem;
}

.video-wrapper {
  flex: 1;
  max-width: 60%;
  position: relative;
  border-radius: 12px;
    height: 100%;
  overflow: hidden;
}



.video-wrapper::before {
  left: 0;
  background: linear-gradient(to right, #0c0c0f 0%, transparent 100%);
}

.video-wrapper::after {
  right: 0;
  background: linear-gradient(to left, #0c0c0f 0%, transparent 100%);
}


.video-fade {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  mask-image: radial-gradient(circle, rgba(0, 0, 0, 1) 70%, rgba(0, 0, 0, 0) 100%);
  -webkit-mask-image: radial-gradient(circle, rgba(0, 0, 0, 1) 70%, rgba(0, 0, 0, 0) 100%);
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
}

.annotation-area {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
}

.scroll-annotation {
  background: rgba(255, 210, 0, 0.08);
  color: #fff;
  padding: 1rem 1.25rem;
  border-left: 4px solid #facc15;
  backdrop-filter: blur(10px);
  border-radius: 8px;
  font-weight: 500;
  max-width: 300px;
  font-size: 1rem;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.6s ease-out;
}

.scroll-annotation.visible {
  opacity: 1;
  transform: translateY(0);
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 60px;       /* Adjust size as needed */
  width: auto;
  object-fit: contain;
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.nav-center {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin: 0 auto;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #facc15;
}
.how-it-works-layout {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  padding: 5rem 2rem;
  gap: 3rem;
  min-height: 600px;
  position: relative;
  overflow: hidden;
}

.how-content {
  flex: 1.3; /* Increase from 1 to 1.3 */
  display: flex;
  flex-direction: column;
  justify-content: center;
}


.how-heading {
  font-family: 'Rajdhani';
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 0.5rem;
}

.how-tab-content {
    font-family: 'Rajdhani', sans-serif;
  position: relative;
   width: 100%;
  max-width: 100%;
}

.how-tab {
  display: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.how-tab.active {
  display: flex;
  flex-direction: column;
  opacity: 1;
}

.how-tab img {
  width: 100%;
  max-width: 480px;
  height: 320px; /* Fixed height */
  object-fit: cover; /* Ensures center-cropping */
  object-position: top; /* Crop from bottom */
  border-radius: 12px;
  margin-bottom: 1rem;
}

.how-tab p {
  font-size: 1.125rem;
  color: #ccc;
  max-width: 100%;
}

.how-tabs-nav {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.how-tabs-nav .tab-button {
  background: #333;
  color: #facc15;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.how-tabs-nav .tab-button.active,
.how-tabs-nav .tab-button:hover {
  background: linear-gradient(to right, #facc15, #d97706);
  color: #000;
}


.how-video-container {
  flex: 0.7;
  position: relative;
  overflow: hidden;
  min-height: 100%;
}

.video-mask {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.markets-fade {
  width: 120%;
  height: 120%;
  object-fit: cover;
  transform: scale(1.2); /* ensures no white box */
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}


.video-mask::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  background:
    linear-gradient(to bottom,
      rgba(0, 0, 0, 0.85) 0%,
      rgba(0, 0, 0, 0) 25%,
      rgba(0, 0, 0, 0) 75%,
      rgba(0, 0, 0, 0.85) 100%),
    linear-gradient(to right,
      rgba(0, 0, 0, 0.85) 0%,
      rgba(0, 0, 0, 0) 15%);
}

.hero-glide {
  opacity: 0;
  transform: translateY(-60px);
  transition: all 1s ease-out;
}

.hero-glide.visible {
  opacity: 1;
  transform: translateY(0);
}

.side-video-container {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 45vw;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.side-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mask-image: linear-gradient(to left, rgba(0, 0, 0, 1) 80%, transparent);
  -webkit-mask-image: linear-gradient(to left, rgba(0, 0, 0, 1) 80%, transparent);
}
.how-video-mask {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.how-video-mask::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
  background: linear-gradient(to bottom,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0) 10%,
    rgba(0, 0, 0, 0) 90%,
    rgba(0, 0, 0, 1) 100%);
  mask-image: linear-gradient(to bottom,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0) 10%,
    rgba(0, 0, 0, 0) 90%,
    rgba(0, 0, 0, 1) 100%);
  -webkit-mask-image: linear-gradient(to bottom,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0) 10%,
    rgba(0, 0, 0, 0) 90%,
    rgba(0, 0, 0, 1) 100%);
}
.typewrite {
  font-family: 'Rajdhani', sans-serif;
  white-space: pre-wrap;
  overflow-wrap: break-word;
  position: relative;
}

.typewrite::after {
  content: '|';
  position: absolute;
  right: -8px;
  animation: blink 1s step-end infinite;
}

@keyframes blink {
  50% { opacity: 0; }
}

.ai-chat-section {
  padding: 6rem 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
}

.glass-chat-box {
  max-width: 800px;
  margin: 2rem auto;
  backdrop-filter: blur(20px);
  background: rgba(30, 19, 58, 0.459);
    border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 2rem;
 box-shadow: 0 0 40px rgba(253, 228, 0, 0.2);
  display: flex;
  flex-direction: column;
  gap: 2rem;
    transform: translateX(-40px);
}

.chat-sim {
  max-width: 800px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.user-message {
  margin-bottom: 1.5rem;
  color: #facc15;
  font-weight: 600;
}

.chat-bubble {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.ai-reply {
  color: #90cdf4;
  font-style: italic;
}
.user-bubble .chat-avatar {
  background: #facc15;
}

.ai-bubble .chat-avatar {
  background: #60a5fa;
}

.chat-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}


.ai-heading {
  font-family: 'Rajdhani', sans-serif;
  font-size: 2.5rem;
  color: #fff;
  text-align: center;
  margin-bottom: 0.5rem; /* reduced from default */
}

.ai-heading .highlight-gradient {
  background: linear-gradient(to right, #facc15, #d97706);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
 
}
.ai-underline {
  width: 50%;
  max-width: 240px;
  height: 3px;
  margin: 1rem auto 2rem;
  border-radius: 4px;
  background: linear-gradient(to right, #facc15, #d97706);
  box-shadow: 0 0 12px rgba(250, 204, 21, 0.4);
}

.ai-strategy-section {
  margin-top: 6rem; /* or adjust as needed */
}
.glass-video-box {
  max-width: 960px;
  width: 100%;
  margin: 0 auto;
  padding: 1rem;
  backdrop-filter: blur(20px);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  box-shadow: 0 0 40px 8px rgba(255, 210, 0, 0.25);
}



.ai-strategy-section {
  position: relative;
  background: radial-gradient(circle at 30% 30%, rgba(250, 204, 21, 0.12), transparent 70%),
              radial-gradient(circle at 70% 70%, rgba(96, 165, 250, 0.12), transparent 70%),
              rgba(0, 0, 0, 0.7); 
  padding: 6rem 2rem;
  z-index: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  box-shadow: 0 0 80px rgba(250, 204, 21, 0.1), 0 0 60px rgba(96, 165, 250, 0.1);
}

.glass-chat-box::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 1.5rem;
  right: 1.5rem;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-50%);
  z-index: 1;
}
.how-underline {
  width: 20%;
  max-width: 240px;
  height: 3px;
  margin-top: 0.2rem;
  margin-left: 0;
  margin-bottom: 2rem;
  border-radius: 4px;
  background: linear-gradient(to right, #facc15, #d97706);
  box-shadow: 0 0 12px rgba(250, 204, 21, 0.4);
}


.info-quadrant-section {
  position: relative;
  height: 700px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2rem;
  font-family: 'Rajdhani', sans-serif;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;  
  z-index: 1;
  overflow: hidden;
}

/* ⬤ Background Blobs */
.info-quadrant-section::before,
.info-quadrant-section::after {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}

.info-quadrant-section::before {
  top: 100px;
  left: 20px;
  background: radial-gradient(circle, rgba(250, 204, 21, 0.12), transparent 70%);
}

.info-quadrant-section::after {
  bottom: 50px;
  right: 20px;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.12), transparent 70%);
}

/* ⬛ Grid Lines */
.quadrant-line {
  position: absolute;
  background: linear-gradient(to right, #facc15, #d97706);
  opacity: 0.4;
  z-index: 1;
  box-shadow: 0 0 10px rgba(250, 204, 21, 0.2);
  border-radius: 2px;
}

.quadrant-line.vertical {
  width: 2px;
  height: 75%;
  top: 12.5%;
  left: 50%;
  transform: translateX(-50%);
}

.quadrant-line.horizontal {
  height: 2px;
  width: 75%;
  left: 12.5%;
  top: 50%;
  transform: translateY(-50%);
}

/* ⬜ Quadrants */
@media (max-width: 768px) {
  /* Fix quadrant layout */
  .top-left,
  .top-right,
  .bottom-left,
  .bottom-right {
    position: static;
    transform: none;
  }

  .info-quadrant-section {
    margin-bottom: 3rem;
  }

  .video-annotation-wrapper {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }

  .video-wrapper,
  .annotation-area {
    width: 100%;
    max-width: 100%;
  }
}



.quadrant {
  position: absolute;
  width: 45%;
  max-width: 300px;
  text-align: center;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.top-left {
  top: 10%;
  left: 14%;
  transform: translateX(10%);
}

.top-right {
  top: 10%;
  right: 14%;
  transform: translateX(-10%);
}

.bottom-left {
  bottom: 16%;
  left: 14%;
  transform: translateX(10%);
}

.bottom-right {
  bottom: 16%;
  right: 14%;
  transform: translateX(-10%);
}

.quadrant h4 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #facc15;
}

.quadrant p {
  font-size: 1rem;
  color: #ccc;
}

/* ⭕ Yellow Ring */
.yellow-ring {
  width: 130px;
  height: 130px;
  margin: 1rem auto 0;
  border: 3px solid #facc15;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 0 12px rgba(250, 204, 21, 0.3);
  animation: fadePulse 4s ease-in-out infinite;
}

.yellow-ring img {
  width: 90px;
  height: 90px;
  object-fit: contain;
}
.pricing-section {
  padding: 2rem 2rem; /* ↓ from 4rem */
  background: radial-gradient(circle at 30% 30%, rgba(250, 204, 21, 0.04), transparent),
              radial-gradient(circle at 70% 70%, rgba(96, 165, 250, 0.04), transparent),
              rgba(0, 0, 0, 0.9);
  text-align: center;
}

.top-right .yellow-ring {
  margin-top: 2rem; /* adjust this value as needed */
}

.section-heading {
  font-family: 'Rajdhani', sans-serif;
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 2rem;
}

.toggle-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.tab-btn {
  padding: 0.6rem 1.5rem;
  font-family: 'Rajdhani';
  font-size: 1.1rem;
  background: transparent;
  border: 2px solid #facc15;
  color: #facc15;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tab-btn.active {
  background: #facc15;
  color: #000;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  justify-content: center;
}

.pricing-card {
  font-family: 'Rajdhani';
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2rem;
  color: #fff;
  backdrop-filter: blur(20px);
  box-shadow: 0 0 24px rgba(250, 204, 21, 0.39), 0 0 8px rgba(250, 204, 21, 0.15);
  transform: scale(1);
  transition: all 0.4s ease;
}

.pricing-card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 36px rgba(250, 204, 21, 0.5), 0 0 16px rgba(250, 204, 21, 0.3);
}
.pricing-card h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: #facc15;
}

.pricing-card .price {
  font-size: 2rem;
  margin-bottom: 1.2rem;
  color: #fff;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  font-size: 1rem;
  color: #ccc;
  text-align: left; /* Align left */
}

.pricing-card ul li {
  margin: 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.pricing-card li .icon {
  font-weight: bold;
  font-size: 1rem;
}

.pricing-card li.included .icon {
  color: #22c55e; /* Tailwind green-500 */
}

.pricing-card li.excluded {
  color: #777;
  text-decoration: line-through;
}

.pricing-card li.excluded .icon {
  color: #f87171; /* Tailwind red-400 */
}

@keyframes fadePulse {
  0%, 100% {
    opacity: 0.9;
    transform: scale(1);
    box-shadow: 0 0 6px rgba(250, 204, 21, 0.3);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
    box-shadow: 0 0 12px rgba(250, 204, 21, 0.5);
  }
}

.faq-section {
  position: relative;
  z-index: 1;
}

.faq-section::before,
.faq-section::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}

.faq-section::before {
  top: 100px;
  left: -100px;
  background: radial-gradient(circle, rgba(250, 204, 21, 0.226), transparent 70%);
}

.faq-section::after {
  bottom: -100px;
  right: -100px;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.315), transparent 70%);
}
.faq-heading {
  font-family: 'Rajdhani', sans-serif;
  font-size: 2.5rem;
  color: #fff;
  margin-top: 4rem;      /* push it lower from above */
  margin-bottom: 2rem;   /* spacing below */
  text-align: center;
}

.faq-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 4rem 2rem;
}


.faq-item {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 4px solid #facc15;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  padding: 1.25rem 1.25rem 1rem;
  box-shadow: 0 0 30px rgba(250, 204, 21, 0.05);
  transition: all 0.3s ease;
  position: relative;
}
.faq-question {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #facc15;
  background: none;
  border: none;
  cursor: pointer;
  width: 100%;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
      font-family: 'Rajdhani', sans-serif;
  display: none;
  margin-top: 1rem;
  font-size: 1rem;
  color: #ccc;
  line-height: 1.6;
  border-top: 1px solid rgba(250, 204, 21, 0.2);
  padding-top: 1rem;
}

.faq-item.active .chevron {
  transform: rotate(180deg);
}



.faq-item:hover {
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 40px rgba(250, 204, 21, 0.15);
}



.faq-item.active .faq-answer {
  display: block;
}

.b2b-white-label-section {
  padding: 6rem 2rem;
  background: radial-gradient(circle at 50% 20%, rgba(30, 58, 138, 0.25), transparent 70%),
              linear-gradient(to bottom right, #0a0f1c, #0c101a);
  color: #fff;
  font-family: 'Rajdhani', sans-serif;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 80px rgba(59, 130, 246, 0.05);
}
.b2b-heading {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.b2b-subtext {
  font-size: 1.125rem;
  color: #ccc;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.b2b-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.b2b-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 0 24px rgba(250, 204, 21, 0.1);
}

.b2b-card h3 {
  color: #facc15;
  margin-bottom: 0.75rem;
}

.b2b-card p {
  color: #ccc;
  font-size: 0.95rem;
}

.b2b-cta {
  padding: 0.8rem 2rem;
  font-size: 1.1rem;
  background: linear-gradient(to right, #facc15, #d97706);
  color: #000;
  border: none;
  border-radius: 999px;
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.b2b-cta:hover {
  transform: scale(1.05);
}

.b2b-eyebrow {
  all: unset; /* full reset */
  display: inline-block;
  color: #fff;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-top: 1rem;
  margin-bottom: 0.75rem;
  opacity: 0.85;
  background: none !important;
}

.b2b-underline {
  width: 180px;
  height: 3px;
  background: linear-gradient(to right, #facc15, #d97706);
  margin: 0.5rem auto 2rem;
  border-radius: 4px;
  box-shadow: 0 0 12px rgba(250, 204, 21, 0.4);
}


.b2b-benefit-highlights {
  margin-top: 2rem;
  margin-bottom: 3rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 2rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 0 24px rgba(250, 204, 21, 0.05);
}

.benefit-point {
  display: flex;
  align-items: flex-start;        /* ✅ not center, avoids icon/text misalignment */
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 500;
  color: #eee;
  line-height: 1.4;
  flex-wrap: wrap;                /* ✅ allows wrapping of long lines */
}

.benefit-point::before {
  content: "✔";
  color: #facc15;
  font-weight: bold;
  font-size: 1.1rem;
  flex-shrink: 0;
}


.b2b-card,
.b2b-benefit-highlights {
  box-shadow: 0 0 20px rgba(250, 235, 96, 0.26), 0 0 40px rgba(96, 165, 250, 0.05);
  transition: box-shadow 0.3s ease;
}

.b2b-card:hover,
.b2b-benefit-highlights:hover {
  box-shadow: 0 0 32px rgba(247, 250, 96, 0.438), 0 0 60px rgba(96, 165, 250, 0.1);
}

.benefit-box {
  background: #0d0d0d;
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 0 24px rgba(96, 165, 250, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.05);
  max-width: 720px;
  width: 100%;                    /* ✅ makes box full-width but constrained */
  margin: 2rem auto;
  display: block;                 /* ✅ change from flex */
}

.contact-section {
  padding: 6rem 2rem;
  position: relative;
  background: radial-gradient(circle at 50% 20%, rgba(30, 58, 138, 0.25), transparent 70%),
              linear-gradient(to bottom right, #0a0f1c, #0c101a);
  font-family: 'Rajdhani', sans-serif;
  color: #fff;
  z-index: 1;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 80px rgba(59, 130, 246, 0.05);
}

.contact-content {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  z-index: 2;
  text-align: center;
   font-family: 'Rajdhani', sans-serif;
}

.contact-heading {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.contact-underline {
  width: 180px;
  height: 3px;
  background: linear-gradient(to right, #facc15, #d97706);
  margin: 0 auto 1.5rem;
  border-radius: 4px;
  box-shadow: 0 0 12px rgba(250, 204, 21, 0.4);
}

.contact-subtext {
  color: #ccc;
  font-size: 1.125rem;
  margin-bottom: 3rem;
   font-family: 'Rajdhani', sans-serif;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr; /* Equal-width columns */
  gap: 3rem; /* Space between text and form */
  align-items: start;
  margin-top: 2rem;
}

.contact-info {
  background: rgba(255, 255, 255, 0.02);
  padding: 2rem;
  border-radius: 1rem;
  font-size: 0.95rem;
  line-height: 1.6;
  border: 1px solid rgba(255, 255, 255, 0.06);
}


.contact-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  width: 100%;
  max-width: 500px;
   font-family: 'Rajdhani', sans-serif;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  backdrop-filter: blur(4px);
}


.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #aaa;
}

.contact-form button.cta {
  align-self: flex-start;
}

.toast {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #facc15;
  color: #000;
  padding: 1rem 1.5rem;
  border-radius: 6px;
  font-weight: bold;
  box-shadow: 0 0 20px rgba(250, 204, 21, 0.4);
  z-index: 9999;
  animation: fadeInOut 4s ease;
}
@keyframes fadeInOut {
  0% { opacity: 0; transform: translateY(20px); }
  10% { opacity: 1; transform: translateY(0); }
  90% { opacity: 1; }
  100% { opacity: 0; transform: translateY(20px); }
}

/* Footer: styles/main.css */
.modern-footer {
  background: radial-gradient(circle at 30% 30%, rgba(30,58,138,0.25), transparent 70%),
              linear-gradient(to bottom right, #0a0f1c, #0c101a);
  padding: 4rem 2rem;
  color: #ccc;
  font-family: 'Rajdhani', sans-serif;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.footer-brand img {
  height: 50px;
  margin-bottom: 1rem;
}

.footer-disclaimer {
  font-size: 0.85rem;
  color: #999;
  line-height: 1.5;
}

.footer-nav h4,
.footer-contact h4 {
  color: #facc15;
  margin-bottom: 0.8rem;
  font-weight: 600;
}

.footer-nav ul,
.footer-contact ul {
  list-style: none;
  padding: 0;
  font-size: 1rem;
}

.footer-nav li,
.footer-contact li {
  margin-bottom: 0.5rem;
}

.footer-nav a,
.footer-contact a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-nav a:hover,
.footer-contact a:hover {
  color: #facc15;
}
.footer-social {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  justify-content: flex-end; /* moved to right */
}

.footer-social img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  display: block;
}

.footer-social img:hover {
  filter: brightness(1.2);
}

.footer-legal {
  margin-top: 3rem;
  text-align: center;
  font-size: 0.875rem;
  color: #888;
}

.footer-legal ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.2rem;
  padding: 0;
  margin-bottom: 0.5rem;
}

.footer-legal a {
  color: #aaa;
  text-decoration: none;
}

.footer-legal a:hover {
  color: #facc15;
}
.footer-socials {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.footer-icon-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.05);
  width: 42px;
  height: 42px;
  border-radius: 8px;
  padding: 4px;
  transition: transform 0.3s ease;
}

.footer-icon-wrapper:hover {
  filter: brightness(1.2) drop-shadow(0 0 6px rgba(250, 204, 21, 0.4));
}

.footer-icon {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}


.popup-container {
  position: fixed;
  inset: 0;
  background: rgba(15, 15, 15, 0.63); /* ← was 0.95, now softer */
  backdrop-filter: blur(2px);         /* ← was 4px, now more subtle */
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  overflow-y: auto;
  padding: 4rem 1rem 2rem;
  scroll-behavior: smooth;
}

.popup-inner {
  max-width: 750px;
  width: 100%;
  background: #1b1b1b; /* Dark gray instead of pure black */
  padding: 2rem;
  border-radius: 1.25rem;
  position: relative;
    color: #ffffff;
  font-family: 'Rajdhani', sans-serif;

  /* Glow and visual enhancements */
  box-shadow: 0 0 30px rgba(250, 204, 21, 0.2),
              0 0 60px rgba(250, 204, 21, 0.05),
              0 0 20px rgba(217, 119, 6, 0.15);
  border: 1px solid rgba(250, 204, 21, 0.1);

  /* Subtle inner glow using inset border */
  outline: 1px solid rgba(255, 255, 255, 0.05);
  outline-offset: -6px;
}
/* Close button */
.close-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.5rem;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
}

/* Typography spacing */
.popup-inner h1,
.popup-inner h2 {
  margin-top: 2rem;
  margin-bottom: 0.8rem;
  color: #facc15;
}

.popup-inner p {
  margin-bottom: 1.2rem;
}

.popup-inner ul {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

/* Smooth scrollbar (optional) */
.popup-container::-webkit-scrollbar {
  width: 8px;
}
.popup-container::-webkit-scrollbar-thumb {
  background-color: #444;
  border-radius: 4px;
}
.popup-container::-webkit-scrollbar-track {
  background: transparent;
}


.footer-icon {
  width: 42px;
  height: 42px;
  padding: 4px;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.05); /* optional background glow */
  object-fit: cover;
  display: inline-block;
  transition: transform 0.3s ease;
}

.footer-icon:hover {
  filter: brightness(1.2) drop-shadow(0 0 6px rgba(250, 204, 21, 0.4));
}

.footer-legal {
  text-align: center;
  padding: 2rem 1rem;
  font-family: 'Rajdhani', sans-serif;
  background: transparent;
  color: #aaa;
  font-size: 0.95rem;
}

.footer-legal ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-legal li a {
  color: #facc15;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-legal li a:hover {
  color: #fff;
}

html {
  scroll-behavior: smooth;
}
.popup-content {
  font-family: 'Rajdhani', sans-serif;
  padding: 1rem;
  line-height: 1.75;
  font-size: 1rem;
  color: #333;
}

.popup-inner h1 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.blog-section {
  padding: 4rem 2rem;
  background: #0a0a0a00;
  color: white;
  font-family: 'Rajdhani', sans-serif;
}

.blog-underline {
  width: 200px;
  height: 3px;
  background: linear-gradient(to right, #facc15, #d97706);
  margin: 1rem 0 3rem 0;
  border-radius: 6px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.blog-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.2s ease;
  cursor: pointer;
}

.blog-blobs::before,
.blog-blobs::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  z-index: 0;
  filter: blur(100px);
  pointer-events: none;
  opacity: 0.25;
}

.blog-blobs::before {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(250, 204, 21, 0.486), transparent 60%);
  top: -80px;
  left: -100px;
}

.blog-blobs::after {
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.25), transparent 60%);
  bottom: -60px;
  right: -100px;
}

.blog-card:hover {
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-4px);
}

.blog-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
  font-weight: 600;
    color: white;
}

.blog-card p {
  font-size: 0.95rem;
  color: #ccc;
  margin-bottom: 1rem;
}

.cta.small {
  padding: 0.4rem 1.2rem;
  font-size: 0.9rem;
  border-radius: 20px;
}


.form-input,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  backdrop-filter: blur(4px);
  margin-bottom: 1rem;
}

/* =================== */
/* GLOBAL RESPONSIVE RULES */
/* =================== */
@media (max-width: 768px) {
  body {
    font-size: 16px;
  }

  h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.2rem;
  }

  .section-heading {
    font-size: 1.6rem;
    text-align: center;
  }

  .nav-container {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .nav-links {
    flex-direction: column;
    gap: 0.75rem;
      display: none;
  }

  .hero-content {
    padding: 1.5rem;
    text-align: center;
  }

  .hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  cursor: pointer;
  margin-left: auto;
}

.hamburger span {
  height: 3px;
  background: #facc15;
  border-radius: 3px;
  transition: 0.3s ease;
}

.nav-container.nav-open .nav-links,
.nav-container.nav-open .cta {
  display: flex;
  flex-direction: column;
  background: rgba(0, 0, 0, 0.95);
  position: absolute;
  top: 70px;
  right: 2rem;
  padding: 1rem 2rem;
  border-radius: 12px;
  z-index: 1001;
  gap: 1rem;
}


    .glass-container {
    width: 94%;
    padding: 0.5rem; /* slightly more */
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    box-shadow: 0 0 24px rgba(255, 210, 0, 0.25);
    background: transparent;
    backdrop-filter: blur(12px);
  }

  .glass-container img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
    object-fit: contain;
  }

  .blog-grid,
  .features-grid-overlay,
  .pricing-grid,
  .how-tabs-nav {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .feature-card,
  .pricing-card,
  .blog-card {
    padding: 1rem;
  }

  .cta {
    width: 100%;
    text-align: center;
  }

  .contact-grid {
    flex-direction: column;
    gap: 1.5rem;
  }

  .contact-form input,
  .contact-form textarea {
    width: 100%;
  }

  .footer-grid {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-socials {
    justify-content: center;
    gap: 1rem;
  }

  .footer-socials img {
    width: 32px;
    height: 32px;
  }

  .popup-inner {
    max-width: 95%;
    padding: 1rem;
    margin: 2rem auto;
    font-size: 16px;
  }
}


@media (max-width: 768px) {
  .features-overlay {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 1rem;
    position: relative;
    overflow: visible;
  }

  .features-grid-overlay {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 100%;
    max-width: 420px;
    z-index: 2;
  }

  .feature-card {
    position: static;
    width: 100%;
    margin: 0 auto;
  }

  .feature-bg-image {
    display: block;
    width: 100%;
    max-width: 480px;
    min-height: 300px;
    margin-top: 4rem;       /* ⬅️ Increase this to push it down */
    margin-bottom: 2rem;  
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    -webkit-mask-image: none !important;
    mask-image: none !important;
    z-index: 1;
        transform: translateX(2%)
  }
}

@media (max-width: 768px) {
  .feature-bg-image {
    order: 2;
  }
  .section-intro {
    order: 0;
  }
  .features-grid-overlay {
    order: 1;
  }
  .features-overlay {
    display: flex;
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .glass-chat-box {
    transform: none !important;
    margin-left: 6%; /* or translateX(6%) */
  }
}

@media (max-width: 768px) {
  .how-tabs-nav {
    display: flex;
    flex-direction: row;      /* ✅ horizontal layout */
    justify-content: center;  /* ✅ center the buttons */
    gap: 1rem;
    flex-wrap: nowrap;
  }

  .tab-button {
    flex: 1 1 auto;
    width: auto;
    min-width: 40px;
    max-width: 60px;
  }
}
@media (max-width: 768px) {
  .info-quadrant-section {
    margin-top: 4rem; /* ⬅ Pushes it away from the section above */
    padding-top: 3rem; /* optional: adds internal breathing room */
  }
}
@media (max-width: 768px) {
  .info-quadrant-section {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 1.5rem;
    gap: 3rem;
    height: auto;
  }

  .info-quadrant-section .quadrant {
    position: static;
    max-width: 100%;
    width: 100%;
    text-align: center;
    margin: 0 auto;
  }

  .yellow-ring {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
}
@media (max-width: 768px) {
  .info-quadrant-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
    padding-top: 4rem;
    padding-bottom: 4rem;
    height: auto !important;
  }

  .quadrant {
    position: static !important;
    transform: none !important;
    width: 100%;
    max-width: 320px;
    text-align: center;
  }

  .quadrant-line {
    display: none !important;
  }
}


@media (max-width: 768px) {
  .benefit-point {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 0.5rem;
    text-align: left;
  }

  .benefit-point::before {
    content: "✔";
    display: inline-block;
    flex-shrink: 0;
    margin-top: 0.25rem;
    font-size: 1.1rem;
    color: #facc15;
  }
}
@media (max-width: 768px) {
 .nav-container {
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.nav-links {
  display: none;
  flex-direction: row;
  gap: 1.5rem;
  padding: 0;
  margin: 0;
  justify-content: center;
}

.nav-links li {
  list-style: none;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
}
}

#blog,
#waitlist-form,
#b2b {
  scroll-margin-top: 120px; /* adjust based on your sticky navbar height */
}

html {
  scroll-behavior: smooth;
}

