:root {
  --primary: #8b5cf6;
  --primary-dark: #5b21b6;
  --accent: #fbbf24;
  --bg: #f8fafc;
  --text: #1e293b;
  --text-light: #64748b;
  --white: #ffffff;
  --font: "Outfit", sans-serif;
  --brush-purp: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 30c0-5 10-15 25-15s30 5 50 5c25 0 45-10 65-10s35 5 40 20c5 20-5 30-25 30s-35-5-60-5c-20 0-40 10-60 10s-30-5-35-20z' fill='%238b5cf6'/%3E%3C/svg%3E");
  --brush-yellow: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 30c0-5 10-15 25-15s30 5 50 5c25 0 45-10 65-10s35 5 40 20c5 20-5 30-25 30s-35-5-60-5c-20 0-40 10-60 10s-30-5-35-20z' fill='%23fbbf24'/%3E%3C/svg%3E");
  --brush-stroke: url("data:image/svg+xml,%3Csvg viewBox='0 0 300 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 20c10-10 40-15 80-10s80 10 120 5c30-5 60-10 90 0c-10 5-40 15-80 15s-80-5-120-5c-40 0-70 10-90 0z' fill='%23fbbf24' opacity='0.6'/%3E%3C/svg%3E");
  --brush-bg: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M50 200c-20-80 30-150 100-170s150 30 180 100c20 80-30 150-100 170s-150-30-180-100z' fill='%23ede9fe' opacity='0.5'/%3E%3C/svg%3E");
  --scr-swirl: url("data:image/svg+xml,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 50 C 20 20 40 20 50 50 S 80 80 90 50' stroke='%238b5cf6' fill='none' stroke-width='3' opacity='0.3'/%3E%3C/svg%3E");
  --scr-zigzag: url("data:image/svg+xml,%3Csvg viewBox='0 0 100 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 15 L 10 5 L 20 25 L 30 5 L 40 25 L 50 15' stroke='%23fbbf24' fill='none' stroke-width='3' opacity='0.4'/%3E%3C/svg%3E");
  --scr-circle: url("data:image/svg+xml,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='50' cy='50' r='40' stroke='%238b5cf6' fill='none' stroke-width='2' opacity='0.2' stroke-dasharray='10,5'/%3E%3C/svg%3E");
}

/* 1. Global Reset Fix */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* 2. Scroll Fix (Sabse Important) */
html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden; /* Ye line right side ka scroll rokti hai */
  margin: 0;
  padding: 0;
  position: relative;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font);
}

/* 3. Blob Fix (Taaki mobile screen se bahar na nikle) */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  z-index: -1;
  opacity: 0.4;
  max-width: 100vw; /* Screen se bada nahi hoga */
}

/* Baaki code same rehne de (.blob-1, .blob-2 etc.) */
.blob-1 {
  top: -10%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: #ddd6fe;
}
.blob-2 {
  top: 40%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: #fef3c7;
}

/* Navbar aur Logo wala code tera sahi hai, usme change mat karna */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 5%;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 100;
  width: 100%; /* Ye add kar dena safe side ke liye */
}
/* Logo Container ko align karne ke liye */
.logo {
  display: flex;
  align-items: center;
  gap: 12px; /* Image aur Text ke beech ka gap */
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-color); /* Ya white color agar theme dark hai */
  cursor: pointer;
  text-decoration: none;
}

/* Image ki size control karne ke liye */
.logo-img {
  height: 40px; /* Navbar ke hisab se height set kar */
  width: auto; /* Width apne aap adjust hogi */
  object-fit: contain;
  border-radius: 5px; /* Agar thoda round karna ho to */
}

/* Agar text ka style alag chahiye */
.logo-text {
  font-family: "Outfit", sans-serif;
  /* Agar image ke sath text nahi chahiye to 'display: none;' kar de */
}

/* Mobile ke liye thoda chhota size */
@media (max-width: 768px) {
  .logo-img {
    height: 32px;
  }
  .logo {
    font-size: 1.2rem;
  }
}
.icon-box {
  background: var(--accent);
  width: 36px;
  height: 36px;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(251, 191, 36, 0.3);
}
.nav-links {
  display: flex;
  align-items: center;
}
.nav-links a {
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  margin-left: 25px;
  font-size: 15px;
  transition: 0.3s;
}
.nav-links a:hover {
  color: var(--primary);
}
.cta-small {
  background-image: var(--brush-purp);
  background-size: 100% 100%;
  color: white !important;
  padding: 12px 25px;
  border-radius: 0;
  transition: 0.3s;
  filter: drop-shadow(0 4px 6px rgba(91, 33, 182, 0.3));
  text-align: center;
}
.cta-small:hover {
  transform: translateY(-2px);
  filter: drop-shadow(0 8px 12px rgba(91, 33, 182, 0.4));
}
.hamburger {
  display: none;
  font-size: 32px;
  color: var(--text);
  cursor: pointer;
}
.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 5% 100px;
  max-width: 1200px;
  margin: 0 auto;
  gap: 50px;
  min-height: 85vh;
  position: relative;
}
.hero-text {
  flex: 1;
  max-width: 550px;
  z-index: 2;
  opacity: 0;
}
.animate-entry {
  animation: fadeInUp 1s ease-out forwards;
}
.tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #ffc400;
  padding: 8px 16px;
  border-radius: 30px;
  font-weight: 700;
  color: var(--primary-dark);
  font-size: 13px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 25px;
  border: 2px dashed #ede9fe;
}
.glow-pill {
  animation: glow 3s infinite alternate;
}
h1 {
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.1;
  font-weight: 900;
  margin-bottom: 20px;
  letter-spacing: -1px;
}
.glow-text {
  text-shadow: 0 0 40px rgba(139, 92, 246, 0.2);
}
.highlight {
  color: var(--primary);
  position: relative;
  z-index: 1;
  display: inline-block;
}
.highlight::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 20px;
  background-image: var(--brush-stroke);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  z-index: -1;
}
.sub-text {
  font-size: 19px;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 40px;
}
.waitlist-form-container {
  background: rgba(255, 255, 255, 1);
  border: 1px solid rgba(0, 0, 0, 0.178);
  padding: 35px;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  box-shadow: 0 20px 40px rgba(139, 92, 246, 0.1);
  background-image: var(--brush-bg);
  background-size: cover;
  background-position: center;
  position: relative;
}
.form-label {
  font-weight: 700;
  margin-bottom: 15px;
  display: block;
  color: var(--primary-dark);
}
.email-signup {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}
.email-signup input {
  flex: 1;
  padding: 16px;
  border-radius: 14px;
  border: 2px dashed #e2e8f0;
  outline: none;
  transition: 0.3s;
  font-size: 15px;
  background: #f8fafc;
}
.email-signup input:focus {
  border-color: var(--primary);
  background: #fff;
}
.email-signup button {
  padding: 16px 30px;
  background-image: var(--brush-purp);
  background-size: 120% 130%;
  color: white;
  border: none;
  border-radius: 0;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  filter: drop-shadow(0 4px 6px rgba(91, 33, 182, 0.3));
}
.email-signup button:hover {
  transform: translateY(-3px);
  filter: drop-shadow(0 8px 12px rgba(91, 33, 182, 0.4));
}
.waiting-count {
  display: flex;
  align-items: center;
  gap: 15px;
}
.avatars img {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 3px solid var(--white);
  margin-left: -12px;
}
.waiting-count span {
  font-size: 14px;
  color: var(--text-light);
  font-weight: 500;
}
.phone-wrapper {
  position: relative;
  flex: 1;
  display: flex;
  justify-content: right;
  perspective: 1000px;
}
.phone-frame {
  width: 300px;
  height: 600px;
  background: #000;
  border-radius: 48px;
  border: 12px solid #1f2937;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.25);
  transform: rotatez(-5deg);
  z-index: 10;
}
.notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 130px;
  height: 28px;
  background: #1f2937;
  border-bottom-left-radius: 18px;
  border-bottom-right-radius: 18px;
  z-index: 20;
}
.screen {
  width: 100%;
  height: 100%;
  background: #000;
  position: relative;
  overflow: hidden;
}
.video-container {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.app-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.app-header-overlay {
  position: absolute;
  top: 40px;
  left: 0;
  width: 100%;
  text-align: center;
  color: white;
  font-weight: 800;
  z-index: 5;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}
.match-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(5px);
  padding: 10px 14px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  width: 160px;
  opacity: 0;
  top: 20%;
  right: -20px;
  animation: popup 5s infinite;
  z-index: 6;
  border: 2px dashed #e2e8f0;
}
.match-card img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}
.m-info span {
  display: block;
  font-size: 13px;
  font-weight: 800;
  color: #000;
}
.m-info small {
  font-size: 11px;
  color: var(--primary);
  font-weight: 700;
}
.feature-showcase-section {
  padding: 50px 5%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
.section-header {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
}
.section-header h2 {
  font-size: 42px;
  font-weight: 900;
  margin-bottom: 10px;
  color: var(--text);
  display: inline-block;
  position: relative;
}
.section-header h2::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 15px;
  background-image: var(--brush-stroke);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  z-index: -1;
}
.feature-block {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 120px;
  padding: 40px;
  background-image: var(--brush-bg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
}
.reverse-layout {
  flex-direction: row-reverse;
}
.feature-text {
  flex: 1;
}
.f-icon {
  width: 60px;
  height: 60px;
  background: #ede9fe;
  color: var(--primary);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 25px;
  box-shadow: 0 4px 10px rgba(139, 92, 246, 0.2);
}
.f-icon.yellow {
  background: #fef3c7;
  color: #d97706;
  box-shadow: 0 4px 10px rgba(251, 191, 36, 0.2);
}
.f-icon.dark {
  background: #e2e8f0;
  color: #1e293b;
}
.feature-text h3 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}
.feature-text h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 10px;
  background-image: var(--brush-stroke);
  background-size: 100% 100%;
  z-index: -1;
  opacity: 0.4;
}
.feature-text p {
  font-size: 17px;
  color: var(--text-light);
  margin-bottom: 30px;
}
.f-list {
  list-style: none;
}
.f-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  margin-bottom: 12px;
}
.feature-image-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.slider-wrapper {
  width: 100%;
  max-width: 400px;
  height: 500px;
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  border-radius: 30px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  border: 8px solid #fff;
  background: white;
  scrollbar-width: none;
}
.slider-wrapper::-webkit-scrollbar {
  display: none;
}
.slide {
  min-width: 100%;
  height: 100%;
  scroll-snap-align: center;
}
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.dots-container {
  display: flex;
  gap: 8px;
  margin-top: 20px;
}
.dot {
  width: 10px;
  height: 10px;
  background: #cbd5e1;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
}
.dot.active {
  background: var(--primary);
  transform: scale(1.3);
}
.scribble {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  background-repeat: no-repeat;
  background-size: contain;
}
.scr-top-left {
  top: 50px;
  left: 2%;
  width: 100px;
  height: 100px;
  background-image: var(--scr-swirl);
  transform: rotate(-15deg);
}
.scr-top-right {
  top: 150px;
  right: 5%;
  width: 120px;
  height: 120px;
  background-image: var(--scr-circle);
}
.scr-form {
  top: -20px;
  right: -20px;
  width: 60px;
  height: 60px;
  background-image: var(--scr-zigzag);
}
.scr-header {
  top: -30px;
  right: -20px;
  width: 80px;
  height: 80px;
  background-image: var(--scr-circle);
  opacity: 0.4;
}
.scr-img-1 {
  bottom: -30px;
  left: -40px;
  width: 100px;
  height: 100px;
  background-image: var(--scr-swirl);
  z-index: 1;
}
.scr-img-2 {
  top: -30px;
  right: -40px;
  width: 100px;
  height: 40px;
  background-image: var(--scr-zigzag);
  z-index: 1;
}
.scr-cta {
  top: -40px;
  left: 20px;
  width: 100px;
  height: 100px;
  background-image: var(--scr-swirl);
  opacity: 0.5;
}
.scr-footer {
  bottom: 10px;
  right: 10px;
  width: 80px;
  height: 80px;
  background-image: var(--scr-circle);
  opacity: 0.2;
}
.final-cta {
  text-align: center;
  padding: 80px 5%;
  background-image: var(--brush-bg),
    linear-gradient(135deg, var(--primary-dark), var(--primary));
  background-size: cover;
  color: white;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  margin: 0 5% 100px;
  position: relative;
}
.final-cta h2 {
  font-size: 36px;
  font-weight: 900;
  margin-bottom: 15px;
}
.final-cta button {
  padding: 18px 40px;
  background-image: var(--brush-yellow);
  background-size: 100% 100%;
  color: var(--primary-dark);
  border: none;
  border-radius: 0;
  font-weight: 800;
  font-size: 18px;
  cursor: pointer;
  transition: 0.3s;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.2));
}
.final-cta button:hover {
  transform: translateY(-3px);
  filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.3));
}
.detailed-footer {
  background: #fff;
  padding: 80px 5% 30px;
  border-top: 2px dashed #f1f5f9;
  position: relative;
}
.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 60px;
}
.social-links {
  display: flex;
  gap: 15px;
  margin-top: 25px;
  font-size: 24px;
}
.footer-col h4 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 25px;
  color: var(--primary-dark);
  position: relative;
  display: inline-block;
}
.footer-col h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 8px;
  background-image: var(--brush-stroke);
  background-size: 100% 100%;
  z-index: -1;
  opacity: 0.3;
}
.footer-col a {
  display: block;
  text-decoration: none;
  color: var(--text-light);
  margin-bottom: 15px;
  transition: 0.3s;
}
.mini-form {
  margin-top: 15px;
  display: flex;
  background: #f1f5f9;
  border-radius: 12px;
  padding: 5px;
  border: 2px dashed #e2e8f0;
}
.mini-form input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 12px;
  outline: none;
}
.mini-form button {
  background-image: var(--brush-purp);
  background-size: 100% 100%;
  color: white;
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  filter: drop-shadow(0 2px 4px rgba(91, 33, 182, 0.2));
}
.footer-bottom {
  text-align: center;
  border-top: 2px dashed #f1f5f9;
  padding-top: 30px;
  color: var(--text-light);
  font-size: 14px;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
}
@keyframes popup {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  20% {
    opacity: 1;
    transform: scale(1);
  }
  80% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(0.8);
  }
}
@keyframes glow {
  from {
    box-shadow: 0 0 5px rgba(139, 92, 246, 0.1);
    border-color: #ede9fe;
  }
  to {
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
    border-color: var(--primary);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 1024px) {
  h1 {
    font-size: 50px;
  }
  .phone-frame {
    width: 280px;
    height: 560px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }
  .nav-links {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: white;
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    display: none;
    align-items: center;
    z-index: 99;
  }
  .nav-links.active {
    display: flex;
    animation: fadeInUp 0.3s ease;
  }
  .nav-links a {
    margin: 15px 0;
    margin-left: 0;
  }
  .hero-container {
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
    padding: 40px 5%;
    gap: 30px;
  }
  .hero-text {
    max-width: 100%;
  }
  .phone-frame {
    width: 250px;
    height: 480px;
    /* margin-bottom: 20px; */
    border-width: 8px;
    margin-top: 20px;
  }
  h1 {
    font-size: 38px;
  }
  .sub-text {
    font-size: 16px;
  }
  .email-signup {
    flex-direction: column;
  }
  .waiting-count {
    justify-content: center;
    margin-bottom: 20px;
  }
  .feature-block {
    flex-direction: column;
    gap: 0px;
    margin-bottom: 120px;
    text-align: center;
    padding: 10px;
    background-size: cover;
  }
  .reverse-layout {
    flex-direction: column;
  }
  .feature-block .feature-image-container {
    order: -1;
  }
  .slider-wrapper {
    transform: none !important;
    max-width: 90%;
    height: 450px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .brand-col p,
  .social-links {
    margin: 20px auto;
  }
  .logo {
    justify-content: center;
  }
}
