*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:Arial, sans-serif;
}

body{
  background:#0b0018;
  color:white;
  overflow-x:hidden;
}

/* HERO */
.hero{
  height:100vh;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 7%;
  position:relative;

  background:
  radial-gradient(circle at 70% 30%, rgba(255,0,150,.6), transparent 40%),
  radial-gradient(circle at 30% 80%, rgba(255,0,120,.4), transparent 40%),
  linear-gradient(135deg,#0b0018,#2a004a,#ff2a8a);
}

/* LOGO */
.logo-box{
  position:absolute;
  top:30px;
  left:7%;
}

.logo-box img{
  width:100px;
}

/* HERO TEXT */
.hero-content{
  width:50%;
  padding-left:7%;
  z-index:2;
}
.hero-content h1{
  font-size:80px;
  line-height:1.05;
  font-weight:900;
}

.hero-content span{
  color:#ff4f8f;
}

.hero-content p{
  margin:25px 0;
  font-size:18px;
  color:#f1d6ef;
}

/* BUTTONS */

.btn{
  padding:14px 26px;
  border-radius:10px;
  text-decoration:none;
  font-weight:600;
}
.download-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;

  padding: 16px 34px;
  border-radius: 60px;

  background: linear-gradient(135deg, #b721ff, #ff4d8d);
  
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;

  box-shadow:
    0 10px 25px rgba(183, 33, 255, 0.35),
    0 4px 10px rgba(255, 77, 141, 0.25);

  transition: all 0.35s ease;
}

.download-btn img {
  width: 22px;
  height: 22px;
}

.download-btn:hover {
  transform: translateY(-3px) scale(1.03);

  box-shadow:
    0 16px 35px rgba(183, 33, 255, 0.45),
    0 8px 18px rgba(255, 77, 141, 0.35);
}
.primary{
  background:linear-gradient(90deg,#ff4f8f,#ff2a8a);
  color:white;
}

.outline{
  border:1px solid white;
  color:white;
}
.download-btn,
.download-btn span {
  color: #fff !important;
}

/* HERO IMAGE */
.hero-image{
  position:absolute;
  right:0;
  top:0;
  width:70%;
  height:100%;

  background:url("images/phone.svg") center/cover no-repeat;
}

/* VALUE SECTION */
.value-section{
  min-height:70vh;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:80px 10%;

  background:
  radial-gradient(circle at center, rgba(255,0,150,.2), transparent 60%),
  linear-gradient(180deg,#0b0018,#1a0033);
}

.value-section h2{
  font-size:60px;
  font-weight:800;
  line-height:1.2;
}

.value-section p{
  margin-top:20px;
  font-size:18px;
  color:#d8c7dc;
  max-width:600px;
}

/* VISUAL SECTION */
.video-call-section{
  display:flex;
  align-items:center;
  min-height:100vh;
  width:100%;
  background:#0b0018;
}

/* LEFT SIDE */
.video-left{
  width:50%;
  padding:100px 7%;
}


.video-left h1{
  font-size:80px;
  line-height:1.05;
  font-weight:800;
  color:#ffe600; /* yellow like Dostt */
}

.video-left p{
  margin-top:30px;
  font-size:20px;
  color:#e6d9f2;
  max-width:500px;
  line-height:1.7;
}

/* RIGHT SIDE */
.video-right{
  width:50%;
  display:flex;
  justify-content:center;
  align-items:center;
  padding:40px;
}


.video-right img{
  width:100%;
  max-width:650px;

  height:auto;

  border-radius:30px;

  object-fit:contain;

  box-shadow:
    0 20px 60px rgba(0,0,0,0.45);

  display:block;
}


/* TALK SECTION (UPDATE) */
.talk-section{
  width:100%;
  padding:100px 8%;
  text-align:center;

  background:
  radial-gradient(circle at 70% 30%, rgba(255,0,150,.6), transparent 40%),
  radial-gradient(circle at 30% 80%, rgba(255,0,120,.4), transparent 40%),
  linear-gradient(135deg,#0b0018,#2a004a,#ff2a8a);
}

/* TEXT */
.talk-content h1{
  font-size:60px;
  color:white;
  margin-bottom:20px;
}

.talk-content p{
  color:#f1d6ef;
  font-size:20px;
  margin-bottom:60px;
}

/* CARD */
.testimonial-card{
  width:280px;   /* controls visible cards */
  height:380px;
  border-radius:20px;
  overflow:hidden;
  position:relative;
  flex-shrink:0;
}

/* IMAGE */
.testimonial-card img{
  width:100%;
  height:100%;
  object-fit:cover;
}
/* OVERLAY */
.overlay{
  position:absolute;
  bottom:0;
  left:0;
  width:100%;
  height:100%;

  display:flex;
  flex-direction:column;
  justify-content:flex-end;

  padding:25px;

  background:linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0.2), transparent);
}

/* TEXT */
.quote{
  color:white;
  font-size:22px;
  font-weight:600;
  margin-bottom:10px;
}

.username{
  color:#ccc;
  font-size:13px;
}
.testimonial-slider{
  width:100%;
  overflow:hidden;
  margin-top:40px;
}

/* TRACK (scrolling) */
.testimonial-track{
  display:flex;
  gap:25px;
  width:max-content;

  animation:scrollCards 25s linear infinite;
}
@keyframes scrollCards{
  0%{ transform:translateX(0); }
  100%{ transform:translateX(-50%); }
}

/* CTA SECTION */
.cta-section{
  padding:100px 7%;
  background:#0b0018;
}

/* WRAPPER */
.cta-wrapper{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:50px;
}

/* LEFT */
.cta-content{
  width:50%;
}

.cta-content h2{
  font-size:64px;
  line-height:1.1;
  margin-bottom:20px;
}

.cta-content p{
  font-size:18px;
  color:#f1d6ef;
  margin-bottom:30px;
}

/* RIGHT IMAGE */
.cta-image{
  width:50%;
  display:flex;
  justify-content:center;
}

.cta-image img{
  width:90%;
  border-radius:20px;
}

.footer{
  background:#1a0033;
  color:#fff;
  padding:80px 8% 40px;
  position:relative;
  overflow:hidden;
}


/* layout */
.footer-container{
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:40px;
}

/* LEFT */
.footer-logo{
  width:220px;
}

.tagline{
  margin-top:10px;
  color:#cfc3da;
}

/* LINKS */
.footer-links{
  display:flex;
  gap:80px;
}

.footer-col{
  display:flex;
  flex-direction:column;
  gap:12px;
}

.footer-col h4{
  margin-bottom:10px;
  font-size:18px;
}

.footer-col a{
  color:#d5c6e0;
  text-decoration:none;
  font-size:15px;
}

.footer-col a:hover{
  color:#fff;
}

/* ADDRESS */
.footer-address{
  margin-top:50px;
}

.footer-address h3{
  font-size:20px;
  margin-bottom:10px;
}

.footer-address p{
  color:#cfc3da;
}
.playstore-btn {
  display: inline-block;
  margin-top: 20px;
}

.playstore-btn img {
  width: 170px;
  height: auto;
  transition: 0.3s;
}

.playstore-btn img:hover {
  transform: scale(1.05);
}

/* APP BUTTONS */

.footer-apps img{
  height:55px;
  cursor:pointer;
}

/* BOTTOM */
.footer-bottom{
  margin-top:40px;
  text-align:center;
  color:#cfc3da;
  font-size:14px;
}


/* ================= MOBILE RESPONSIVE ================= */

@media (max-width: 1024px){

  /* HERO */
  .hero{
    flex-direction:column;
    text-align:center;
    padding:120px 20px 60px;
  }

  .hero-content{
    width:100%;
    padding:0;
  }

  .hero-content h1{
    font-size:50px;
  }

  .hero-image{
    position:relative;
    width:100%;
    height:400px;
    margin-top:30px;
  }

  /* VIDEO SECTION */
  .video-call-section{
    flex-direction:column;
    height:auto;
  }

  .video-left,
  .video-right{
    width:100%;
  }

  .video-left{
    padding:60px 20px;
    text-align:center;
  }

  .video-left h1{
    font-size:50px;
  }

  .video-right{
    height:300px;
  }

  /* TALK SECTION */
  .talk-content h1{
    font-size:40px;
  }

  .talk-content p{
    font-size:16px;
  }

  /* TESTIMONIAL CARDS */
  .testimonial-card{
    width:220px;
    height:320px;
  }

  /* CTA SECTION */
  .cta-section{
    padding:80px 20px;
    text-align:center;
  }

  .cta-content{
    max-width:100%;
  }

  .cta-content h2{
    font-size:40px;
  }

  .cta-content p{
    font-size:16px;
  }

}


/* ================= SMALL MOBILE ================= */

@media (max-width: 600px){

  .hero-content h1{
    font-size:36px;
  }

  .video-left h1{
    font-size:36px;
  }

  .talk-content h1{
    font-size:30px;
  }

  .cta-content h2{
    font-size:28px;
  }

  /* buttons full width */
  .btn{
    display:inline-block;
    width:100%;
    text-align:center;
  }

  /* reduce padding */
  section{
    padding-left:20px !important;
    padding-right:20px !important;
  }

}