@import url('https://fonts.googleapis.com/css2?family=Zen+Dots&family=Poppins:wght@400;600&display=swap');
:root {
    --primary: #7f0dad;
    --dark: #1b1b1f;
   
    --light: #F8F9FA;
}

*{
  box-sizing: border-box;
}
/* Disable Safari auto phone styling */

a[href^="tel"]{
  color:inherit;
  text-decoration:none;
}

html{
  -webkit-text-size-adjust:100%;
}

/* Prevent automatic detection styling */
body{
  -webkit-tap-highlight-color:transparent;
}

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    
   background: radial-gradient(circle, rgba(240, 240, 240, 0.678) 10%, white 11%);
background-size: 1em 1em;


    color: var(--dark);
    overflow-x: hidden !important;
}


.navbar {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1200px;
  background:var(--primary);
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);
  
  border-radius: 20px;
  padding: 1px 1.5rem;
  z-index: 1000;
  
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 45px;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgb(255, 255, 255);
  font-weight: 500;
  font-size: 1.1rem;

  img{
    background-color: white;
     width: 20px;
  height: 20px;
  
  border-radius: 8px;
  }
}



/* Tabs and Animations */
.nav-tabs {
  display: flex;
  list-style: none;
  gap: 30px;
}
.tab-item a {
  text-decoration: none;
  color: #ffffff;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 5px 16px;
  font-size: 12px;
  position: relative;
  display: inline-flex; /* Use flex to keep spans aligned */
  perspective: 1000px; /* Essential for 3D flip depth */
}

/* Individual Letter Styling */
.tab-item a span {
  display: inline-block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
  backface-visibility: hidden;
}

/* The Sequential Flip Logic */
.tab-item a:hover span {
  transform: rotateX(360deg); /* Flip on X axis (vertical flip) */
}

/* Staggering the animation for each letter */
.tab-item a span:nth-child(1) { transition-delay: 0.0s; }
.tab-item a span:nth-child(2) { transition-delay: 0.05s; }
.tab-item a span:nth-child(3) { transition-delay: 0.1s; }
.tab-item a span:nth-child(4) { transition-delay: 0.15s; }
.tab-item a span:nth-child(5) { transition-delay: 0.2s; }
.tab-item a span:nth-child(6) { transition-delay: 0.25s; }

/* Keep your existing bracket logic */
.tab-item a::before, .tab-item a::after {
  content: '';
  position: absolute;
  width: 5px;
  height: 5px;
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.tab-item a::before {
  top: 0; left: 0;
  transform: translate(-10px, -10px);
}

.tab-item a::after {
  bottom: 0; right: 0;
  
  transform: translate(10px, 10px);
}

.tab-item a:hover::before, .tab-item a:hover::after {
  opacity: 1;
  width: 100%;
  height: 100%;
  transform: translate(0, 0);
}

/* Login Button */
.login-btn {
  background: white;
  color: black;
  border: none;
  font-size: 12px;
  padding: 8px 24px;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.login-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}
.side-panel .tab-item a {
    color: var(--dark); /* Use your dark variable instead of white */
}

/* Fix the Sci-Fi brackets for the side panel so they are visible */
.side-panel .tab-item a::before,
.side-panel .tab-item a::after {
    border-color: var(--primary); /* Change brackets to purple so they pop */
}

/* Hover state for side panel links */
.side-panel .tab-item a:hover {
    color: var(--primary);
    text-shadow: 2px 0px 0px rgba(127, 13, 173, 0.1); /* Subtle purple glow */
}
/* Hamburger Icon */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  width: 25px;
  height: 2px;
  background: white;
  border-radius: 2px;
}

/* Side Panel */
.side-panel {
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100%;
  background: rgba(237, 237, 237, 0.699);
  color: black;
  backdrop-filter: blur(10px);
  z-index: 2000;
  transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
  padding: 2rem;
  box-sizing: border-box;
}

.tab-item i{
  margin-right: 15px;
}
.side-panel.active {
  right: 0;
}

.side-tabs {
  
  list-style: none;
  padding: 0;
  margin-top: 50px;
}

.side-tabs .tab-item {
  display: flex;
  align-content: center;
  align-items: center;
 margin-bottom: 25px;
  
  
  color: black;

  a{
    align-items: center;
    font-size: 20px;
  }
}

.close-btn {
  background: none;
  border: none;
  color: orangered;
  font-size: 3rem;
  cursor: pointer;
  float: right;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  
  display: none;
  z-index: 1500;
}

.overlay.active {
  display: block;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .navbar{
    margin-left: 10px;
    margin-right: 10px;
    margin-top: 10px;
    position: sticky;
  top: 0px;
  left: 0%;
  transform: translateX(0%);
  width: 95%;
  max-width: 1200px;
  }
  .nav-tabs {
    display: none;
  }
  .login-btn{
    display: none;
  }
  
  .menu-toggle {
    display: flex;
    margin-left: 15px;
  }
}

.collab-section {
 
  padding: 100px 20px;
  text-align: center;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.main-title {
  font-family: 'Zen Dots', cursive;
  font-size: clamp(1.4rem, 3vw, 4rem); /* Responsive big text */
  line-height: 1.1;
  color: rgb(255, 0, 144);
  font-weight: 900;
  margin-bottom: 10px;
  text-align: center;
}

.hig{
  color: var(--primary);
}

.primary-text {
  color: var(--primary-color);
  
}

.meta-partner {width: 200px;
  margin: 0 auto;
  padding: 5px;
  border-radius: 15px;
  background-color: #0081f92b;
  
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-family: 'Poppins', sans-serif;
  
  font-weight: 600;
  color: #0080F9;
  margin-bottom: 60px;

  img{
    height: 20px;
    margin-right: 10px;
  }
}

/* Visual Container */
.visual-container {
  
  position: relative;
  width: 100%;
  max-width: 250px; /* Adjust based on 9:16 ratio */
  margin: 0 auto;
}

.main-image-wrapper {

  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.1);
}

.main-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Floating Reviews */
/* Floating Reviews */
.review-card {
  position: absolute;
  width: 240px;
  z-index: 10;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.3));
  
  /* Allow smooth movement */
  transition: transform 0.1s ease-out; 
  pointer-events: none; /* Mouse can "pass through" them */
  will-change: transform;
}

/* Base positions - Ensure these don't use 'transform' */
.review-card:nth-child(2) { top: 10%; left: -100%; }
.review-card:nth-child(3) { top: 40%; right: -100%; } /* Pushed right a bit more */
.review-card:nth-child(4) { bottom: 10%; left: -60%; }

.review-card img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.logo-ribbon {
  width: 100%;
  background: black; /* Dark, subtle ribbon */
 
  padding: 20px 0;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  /* Mask effect for smooth edge fading */
  border: none;
 
}

.marquee-content {
  border: none;
  display: flex;
  gap: 80px; /* Space between logos */
  flex-shrink: 0;
  animation: scroll 30s linear infinite;
}

.logo-item {
  display: flex;
  align-items: center;
  gap: 15px;
  
  transition: opacity 0.3s ease;
  filter: grayscale(1); /* Optional: Makes them look more uniform */
}

.logo-item:hover {
  opacity: 1;
  filter: grayscale(0);
}

.logo-item img {
  border-radius: 50px;
  height: 30px; /* Adjust based on your logo sizes */
  width: auto;
}

.logo-item span {
  font-family: cursive;
  font-weight: 200;
  font-size: 1rem;
  color: #ffffff;
  
  white-space: nowrap;
}

/* The Animation */
@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 40px)); /* Move by half the width of the container */
  }
}

/* Pause on hover so users can read */
.logo-ribbon:hover .marquee-content {
  animation-play-state: paused;
}

.navbar {
  position: fixed;
 
  transition: transform 0.4s ease-in-out;
  
  
  will-change: transform;
}

/* Fix: Only affect the Y axis */
.nav-hidden {
  /* Using a fixed pixel value or 100% is safer than 510% */
  transform: translate3d(-50%, -210%, 0) !important;
}




.site-footer {
  background-color: #222;
  color: #eee;
  padding: 40px 20px 20px;
  font-family: 'Noto Sans', sans-serif;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  border-bottom: 1px solid #444;
  padding-bottom: 30px;
}

.footer-col {
  flex: 1 1 200px;
  text-align: left;
  
}

.footer-col h3,
.footer-col h4 {
  color: #fff;
  margin-bottom: 10px;
}

.footer-col p,
.footer-col ul li,
.footer-contact p {
  font-size: 0.95rem;
  color: #ccc;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  color: #ccc;
  text-decoration: none;
}

.footer-col ul li a:hover {
  text-decoration: underline;
}

.social-icons a img {
  background-color: white;
  width: 24px;
  margin-right: 10px;
  filter: brightness(0.8);
}
.company p{
  text-align: left;
  line-height: 1.1;
}
.app{
  display: flex;
  flex-direction: column;
  
  align-items: center;
}
.qr-code {
  width: 100px;
  margin-bottom: 10px;
}

.download-buttons {
  margin-top: 10px;
}

.download-btn {
  display: inline-block;
  background: #7f0dad;
  color: #fff;
  padding: 8px 16px;
  text-decoration: none;
  border-radius: 5px;
  font-size: 0.9rem;
  transition: background 0.3s;
}

.download-btn:hover {
  background: #a31a23;
}

.footer-bottom {
 
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 1200px;
  margin: 20px auto 0;
  text-align: center;
  font-size: 0.9rem;
  color: #aaa;
}

.footer-contact p {
  text-align: center !important;
  line-height: 1.5;
  align-self: center;
  margin: 0px 0;
}

.footer-credit p {
  margin-top: 15px;
  text-align: center;
  font-size: 0.85rem;
  color: #666;
}

@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    align-items: center;
  }
  .footer-col {
    text-align: center;
  }
  .social-icons {
    justify-content: center;
  }
}


.features{
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

 .physics-bg{
      position:absolute;
      inset:0;
      z-index:-1;
      overflow:hidden;
      background:
      black;
      min-height: 100vh;
    }

    canvas{
      width:100%;
      height:100%;
      display:block;
    }

    /* Optional glossy overlay */
    .gloss{
      position:absolute;
      inset:0;
      pointer-events:none;

      background:
        radial-gradient(
          circle at 30% 20%,
          rgba(0, 0, 0,),
          transparent 25%
        );
        

      mix-blend-mode:screen;
    }

    /* DEMO CONTENT */
    .content{
      position:relative;
      display: flex;
      flex-direction: column;
      align-items: center;
      z-index:2;
      color:white;
      padding:120px 10vw;
    }

    h1{
      text-align: center;
      font-family: 'Bebas Neue', sans-serif;
      font-size:8vw;
      margin-bottom:20px;
      line-height: 1;
    }

    p{

      align-self: center;
      max-width:500px;
      text-align: center;
      line-height:1.8;
      opacity:0.8;
      font-size:16px;
    }


@media (max-width: 768px) {
  .features{
  border: none;
  justify-content: start;
  align-items: start;
  
}
 .content{
      position:relative;
      display: flex;
      flex-direction: column;
      align-items: left;
      z-index:2;
      color:white;
      padding:120px 10vw;
    }

    h1{
      width: 100%;
      
      text-align: left;
      font-family: 'Bebas Neue', sans-serif;
      font-size:5em;
      margin-bottom:20px;
      line-height: 1;
    }

    p{

      align-self: center;
      max-width:500px;
      text-align: left;
      line-height:1.8;
      opacity:0.8;
      font-size:16px;
    }
}


.features-section{
  width:100%;
  padding:120px 20px;
  background: repeating-linear-gradient(90deg, #FFF7F7 0, #FFF7F7 5%, transparent 0, transparent 50%), repeating-linear-gradient(180deg, #FFF7F7 0, #FFF7F7 5%, transparent 0, transparent 50%);
background-size: 2em 2em;
background-color: #ffffff;
opacity: 1;
  overflow: hidden !important;
 
}

/* DESKTOP WRAP */
.features-wrap{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:28px;
}

/* CARD */
.feature-card{
  width:320px;
  min-height:280px;

  padding:34px;

  border-radius:34px;

  background: rgb(255, 45, 30);



  position:relative;

  transition:0.5s ease-in-out;

  

  cursor:pointer;
}
.feature-card:nth-child(6){
 

  background: rgb(17, 221, 51);



  
}

/* HOVER */
.feature-card:hover{
  transform:translateY(-5px);

 

  box-shadow:
    0 0 50px rgba(255,0,0,0.18);
}

/* NUMBER */
.feature-number{
  display:block;

  font-size:50px;
  letter-spacing:2px;

  color:#ffffff;
line-height: 1;
  margin-bottom:22px;

  opacity:0.8;
}

/* TITLE */
.feature-card h3{
  color:white;

  font-size:34px;

  line-height:1;

  margin-bottom:18px;

  font-family:'Bebas Neue', sans-serif;

  letter-spacing:1px;
}

/* TEXT */
.feature-card p{
  color:rgba(255, 255, 255, 0.889);

  font-size:15px;
text-align: left;
  line-height:1.1;

  font-family:sans-serif;
}

/* MOBILE HORIZONTAL SCROLL */
@media (max-width:768px){

  .features-section{
    padding:120px 10px;
  }

  .features-wrap{
    flex-wrap:nowrap;

    overflow-x:auto;

    justify-content:flex-start;

    padding-right:20px;

    gap:18px;

    scroll-snap-type:x mandatory;

    -ms-overflow-style:none;
    scrollbar-width:none;
  }

  .features-wrap::-webkit-scrollbar{
    display:none;
  }

  .feature-card{
    min-width:290px;
    width:290px;

    scroll-snap-align:start;

    border-radius:28px;
  }

  .feature-card h3{
    font-size:30px;
  }
}

.faq-section{
  width:100%;
  padding:120px 6vw;
  
}

.faq-header{
  text-align:center;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width:800px;
  margin:0 auto 70px;
}

.faq-mini{
  display:inline-block;

  color:#000000;

  letter-spacing:4px;

  font-size:12px;

  margin-bottom:18px;
}

.faq-header h2{


  font-size:72px;

  line-height:1;

  margin-bottom:24px;

  font-family:'Bebas Neue', sans-serif;

  letter-spacing:2px;
}

.faq-header p{

  color:rgba(0, 0, 0, 0.65);
text-align: center;
  font-size:18px;

  line-height:1.2;
}

/* FAQ LIST */
.faq-container{
  max-width:1000px;
  margin:auto;

  display:flex;
  flex-direction:column;
  gap:18px;
}

/* ITEM */
.faq-item{
  border-radius:28px;

  overflow:hidden;

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.1),
      rgba(178, 178, 178, 0.22)
    );

  border:1px solid rgba(0, 0, 0, 0.14);

  transition:0.35s ease;
}

/* ACTIVE */
.faq-item.active{
  border-color:rgba(0, 0, 0, 0.45);

  box-shadow:
    0 0 40px rgba(134, 134, 134, 0.08);
}

/* QUESTION */
.faq-question{
  width:100%;

  background:none;
  border:none;

  color:#000000;

  padding:28px 34px;

  display:flex;
  align-items:center;
  justify-content:space-between;

  cursor:pointer;

  text-align:left;
}

.faq-question span{
  font-size:24px;

  line-height:1.4;
font-weight: 500;
  font-family:'Poppins', sans-serif;

  
}

/* PLUS ICON */
.faq-icon{
  min-width:18px;
  min-height:18px;

  position:relative;
}

.faq-icon::before,
.faq-icon::after{
  content:"";

  position:absolute;

  background:#000000;

  border-radius:10px;

  transition:0.3s ease;
}

.faq-icon::before{
  width:18px;
  height:2px;

  top:8px;
  left:0;
}

.faq-icon::after{
  width:2px;
  height:18px;

  top:0;
  left:8px;
}

.faq-item.active .faq-icon::after{
  transform:scaleY(0);
}

/* ANSWER */
.faq-answer{
  max-height:0;

  overflow:hidden;

  transition:0.4s ease;
}

.faq-answer p{
  padding:0 34px 30px;
text-align: left;
  color:rgba(0, 0, 0, 0.68);

  font-size:16px;

  line-height:1.9;
}

/* ACTIVE ANSWER */
.faq-item.active .faq-answer{
  max-height:240px;
}

/* MOBILE */
@media(max-width:768px){

  .faq-section{
    padding:90px 20px;
  }

  .faq-header h2{
    font-size:52px;
  }

  .faq-header p{
    font-size:15px;
  }

  .faq-question{
    padding:24px;
  }

  .faq-question span{
    font-size:20px;
    padding-right:20px;
  }

  .faq-answer p{
    padding:0 24px 24px;
    font-size:14px;
  }
}

.pricing-section{
  width:100%;
  padding:120px 6vw;

  background:#fff;

  overflow:hidden;
}

/* HEADER */
.pricing-header{
  text-align:center;

  max-width:760px;

  margin:0 auto 80px;
}

.pricing-mini{
  display:inline-block;

  margin-bottom:18px;

  color:#ff3d3d;

  letter-spacing:4px;

  font-size:12px;
}

.pricing-header h2{
  font-size:76px;

  line-height:1;

  margin-bottom:24px;

  color:#111;

  font-family:'Bebas Neue', sans-serif;

  letter-spacing:2px;
}

.pricing-header p{
  color:#555;

  font-size:18px;

  line-height:1.8;
}

/* WRAP */
.pricing-wrap{
  display:flex;

  justify-content:center;

  align-items:stretch;

  gap:30px;

  flex-wrap:wrap;
}

/* CARD */
.pricing-card{
  position:relative;

  width:340px;

  padding:38px;

  border-radius:36px;

  overflow:hidden;

  transition:0.4s ease;
}

.pricing-card:hover{
  transform:translateY(-10px);
}

/* DIFFERENT COLORS */
.free-plan{
  background:
    linear-gradient(
      145deg,
      #f4f4f4,
      #e7e7e7
    );

  border:1px solid #ddd;
}

.creator-plan{
  background:
    linear-gradient(
      145deg,
      #ff3131,
      #c40000
    );

  color:white;

  transform:scale(1.04);

  box-shadow:
    0 20px 60px rgba(255,0,0,0.22);
}

.brand-plan{
  background:
    linear-gradient(
      145deg,
      #111,
      #222
    );

  color:white;
}

/* BADGE */
.plan-badge{
  position:absolute;

  top:20px;
  right:20px;

  background:#fff;

  color:#ff3131;

  padding:8px 14px;

  border-radius:100px;

  font-size:11px;

  font-weight:700;

  letter-spacing:1px;
}

/* TAG */
.plan-tag{
  display:inline-block;

  margin-bottom:18px;

  letter-spacing:3px;

  font-size:12px;

  opacity:0.8;
}

/* TITLE */
.plan-top h3{
  font-size:52px;

  line-height:1;

  margin-bottom:18px;

  font-family:'Bebas Neue', sans-serif;

  letter-spacing:2px;
}

/* PRICE */
.price{
  font-size:54px;

  font-weight:700;

  margin-bottom:30px;
}

.price span{
  font-size:16px;

  opacity:0.7;
}

/* FEATURES */
.plan-features{
  list-style:none;

  display:flex;

  flex-direction:column;

  gap:16px;

  margin-bottom:40px;
}

.plan-features li{
  font-size:15px;

  line-height:1.6;
}

/* BUTTON */
.plan-btn{
  width:100%;

  height:58px;

  border-radius:18px;

  display:flex;

  align-items:center;
  justify-content:center;

  text-decoration:none;

  font-weight:600;

  transition:0.3s ease;
}

/* BUTTON COLORS */
.free-plan .plan-btn{
  background:#111;

  color:#fff;
}

.creator-plan .plan-btn{
  background:#fff;

  color:#ff3131;
}

.brand-plan .plan-btn{
  background:#ff3131;

  color:#fff;
}

.plan-btn:hover{
  transform:translateY(-3px) scale(1.02);
}

/* MOBILE */
@media(max-width:768px){

  .pricing-section{
    padding:90px 20px;
  }

  .pricing-header h2{
    font-size:54px;
  }

  .pricing-header p{
    font-size:15px;
  }

  .pricing-wrap{
    flex-direction:column;

    align-items:center;
  }

  .pricing-card{
    width:100%;

    max-width:420px;

    border-radius:30px;
  }

  .creator-plan{
    transform:none;
  }

  .plan-top h3{
    font-size:44px;
  }

  .price{
    font-size:48px;
  }
}