:root {
  --deep-bg: #210c4a;
  --neon-pink: #c2185b;
  --bright-pink: #ff2d75;
}


body {
  /* background: radial-gradient(circle at center, #c2185b 0%, #210c4a 100%); */
  @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700;900&display=swap');
  /* dating app style font family */
  font-family: 'Bodoni Moda', serif;
  margin: 0;
  overflow-x: hidden;
  background-color: rgb(255, 255, 241) !important;

  /* Scroll lock ke waqt layout shift rokne ke liye */
  padding-right: var(--bs-scrollbar-width, 0px);
  transition: overflow 0.3s ease;
}

.fancy {
  font-size: 3rem;
  font-weight: 700;
  color: #f50057;
  text-shadow: 0px 4px 15px rgba(0, 0, 0, 0.4);
  /* fancy font tilted */
  font-family: 'Brush Script MT', cursive;
}

.colorful {
  color: #f50057;
}

.simple-text {
  font-family: 'Racing Sans One', sans-serif !important;
}

.half-spacer-line {
  width: 10%;
  height: 2px;
  background: linear-gradient(90deg, #fff700, #00ff3c, #9d00ff, #00ffbf, #ff00a2);
  background-size: 200% 100%;
  animation: gradientFlow 3s linear infinite;
}

@keyframes gradientFlow {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 100% 50%;
  }
}

.min-half-vh {
  max-height: 900px;
  min-height: 900px;
}

.background_hero {
  /* background-image: url(./love.png);
  background-position: 100% 100%;
  background-repeat: no-repeat;
  background-size: 100%; */
background: linear-gradient(135deg, #210c4a, #c2185b);
 
}


.container-black {
  max-width: 1800px;
  margin: auto;
  /* background:black; */
  width: 100%;
}


/* section 1 */

.hero-text {
  color: white;
  font-weight: 800;
  text-shadow: 0px 4px 15px rgba(0, 0, 0, 0.4);
}

.htext {
  justify-content: space-around;
  margin-top: 50px;
}

/* Responsive font size for .hero-text */
.hero-text {
  font-size: 2rem;
}

.outline-txt {
  color: orange;
  -webkit-text-stroke: 1px transparent;
}

/* Continuous right-to-left text animation */
.text-scroll-right {
  display: inline-block;
  white-space: nowrap;
  animation: scrollRight 10s linear infinite;
}

@keyframes scrollRight {
  0% {
    transform: translateX(100%);
  }

  100% {
    transform: translateX(-100%);
  }
}

/* Button Styling */
.btn-love {
  background-color: #f50057 !important;
  color: white !important;
  padding: 12px 36px;
  border-radius: 8px;
  font-weight: bold;
  border: none;
  font-size: 0.9rem;
}


.btn-love:hover {
  background-color: #000000 !important;
  cursor: pointer;
  transition: background-color 0.3s ease;
  color: white;
}

/* Carousel Section */

.carousel-wrapper {
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: -4%;
}

/* EDGE BLUR */
.edge {
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 10;
  pointer-events: none;
}

.edge.left {
  left: 0;
  /* background: linear-gradient(to right, #2b004d, transparent); */
}

.edge.right {
  right: 0;
  /* background: linear-gradient(to left, #2b004d, transparent); */
}

/* iPHONE */
.iphone-fixed {
  position: absolute;
  left: 43%;
  bottom: 2%;
  transform: translateY(120%) scale(1);
  /* 👉 start from right */
  opacity: 0;
  display: block;
  width: 250px;
  height: 420px;
  border-radius: 40px;
  /* background: black; */
  /* box-shadow:
    0 0 0 6px #000,
    0 0 0 10px #222,
    0 0 60px rgba(255,0,128,0.5),
    0 40px 100px rgba(0,0,0,0.9); */
  opacity: 0;
  transition: 0.1s ease;
  z-index: 5;
}

/* NOTCH */
.notch {
  width: 120px;
  height: 25px;
  /* background: #111; */
  border-radius: 20px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
}

/* SHOW */
.iphone-fixed.show {
  transform: translateY(-50%) scale(1);
  opacity: 1;
}

/* TRACK */
.carousel-track {
  display: flex;
  gap: 30px;
  will-change: transform;
}

/* REEL CARD */
.card.reel {
  width: 230px;
  height: 350px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}

/* IMAGE */
.card.reel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* DARK GRADIENT */
.card.reel::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 60%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
}

/* TEXT */
.overlay {
  position: absolute;
  bottom: 20px;
  left: 15px;
  color: white;
  z-index: 2;
}

.overlay h5 {
  margin: 0;
  font-size: 16px;
}

.overlay p {
  font-size: 13px;
  opacity: 0.9;
}

/* ACTION ICONS */
.actions {
  position: absolute;
  right: 10px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 20px;
  z-index: 2;
}

.actions span {
  cursor: pointer;
}


/* section 3 */



.user-app-section {
  padding: 0px 0px 80px 0px;
  /* box-shadow: 1px 1px 4px rgba(45, 45, 45, 0.352); */
  background-color: #f1f8ff;
}

.feature-btn {
  display: block;
  padding: 14px;
  border-radius: 8px;
  border: 1px solid #e5e5e5;
  background: #fff;
  text-align: center;
  font-weight: 500;
  margin-bottom: 15px;
  transition: 0.3s;
  text-decoration: none;
  color: #333;
}

.feature-btn.active {
  background: #000000;
  color: #fff;
}

.feature-btn:hover {
  /* call btn_love style */
  background-color: #f50057 !important;
  color: white !important;

}

.slider-wrapper {
  position: relative;
  max-width: 500px;
  margin: auto;
}

.app-slider img {
  width: 250px;
  border-radius: 25px;
  /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2); */
}

.owl-nav button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff !important;
  width: 40px;
  height: 40px;
  border-radius: 50% !important;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.owl-prev {
  left: -50px;
}

.owl-next {
  right: -50px;
}

.owl-nav span {
  font-size: 22px;
}



/*card animation */

/* CARD STYLE */
.feature-card {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: all .4s ease;
  position: relative;
  overflow: hidden;
}

/* Hover lift animation */
.feature-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}


/* Gradient hover border */
.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  padding: 2px;
  background: linear-gradient(45deg, #ff2a6d, #ff6a00);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: .4s;
}

.feature-card:hover::before {
  opacity: 1;
}


/* ICON CIRCLE */
.icon-circle {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: #fde7ee;
  color: #e83e6f;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  transition: .4s;
}


/* Icon pulse animation */
.feature-card:hover .icon-circle {
  background: #e83e6f;
  color: #fff;
  animation: pulseIcon 1s infinite;
}


/* Pulse animation */
@keyframes pulseIcon {
  0% {
    box-shadow: 0 0 0 0 rgba(232, 62, 111, 0.4);
  }

  70% {
    box-shadow: 0 0 0 12px rgba(232, 62, 111, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(232, 62, 111, 0);
  }
}

/* about us */

.about-img-wrapper {
  position: relative;
  display: inline-block;
}

/* Background circle */
.circle-bg {
  position: absolute;
  width: 350px;
  height: 350px;
  background: linear-gradient(135deg, #ff4d79, #ffc0cb);
  border-radius: 50%;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
  opacity: .3;
}

/* Hearts */
.heart {
  position: absolute;
  color: #ff4d79;
  font-size: 28px;
  animation: floatHeart 4s infinite ease-in-out;
}

.heart1 {
  top: 40%;
  right: 10%;
}

.heart2 {
  top: 55%;
  right: 5%;
  animation-delay: 1s;
}

.heart3 {
  top: 70%;
  right: 15%;
  animation-delay: 2s;
}

@keyframes floatHeart {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }

  100% {
    transform: translateY(0);
  }
}



/* footer */


.dating-footer {
  background: #111;
  color: #ccc;
}

.footer-tagline {
  max-width: 500px;
  margin: auto;
  font-size: 15px;
  color: #aaa;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin: 0 6px;
  background: #222;
  color: #fff;
  border-radius: 50%;
  font-size: 18px;
  transition: .3s;
}

.social-icons a:hover {
  background: #ff2a6d;
  transform: translateY(-3px);
}

.copyright {
  font-size: 14px;
  color: #888;
}

.dev-credit {
  font-size: 14px;
}

.dev-credit a {
  color: #ff2a6d;
  text-decoration: none;
  font-weight: 600;
}



/* ================= FIXED HERO RESPONSIVE ================= */

/* 1200px */
@media (max-width: 1200px) {
  .hero-text {
    font-size: 28px;
  }

  .Hero_section_image {
    max-width: 100%;
    text-align: center;
    height: 50vh;
  }

  .Hero_section_image img {
    max-width: 80%;
  }
}
/* 1200px */
@media (max-width: 1550px) {
  .hero-text {
    font-size: 20px;
  }
   .Hero_section_image {
    max-width: 100%;
   /* align-items: start !important; */
    height: 50vh;
  }
  .dd{
     /* align-items: start !important; */

  }
  .row-text{
  
    margin-top: -80px;
  }


  .Hero_section_image img {
    max-width: 70%;
  }
}

/* 992px */
@media (max-width: 992px) {
  .hero-text {
    font-size: 20px;
    
  }
   .row-text{
  
    margin-top: -80px;
  }
  .Hero_section_image {
    max-width: 100%;
   /* align-items: start !important; */
    height: 50vh;
  }
  .dd{
     /* align-items: start !important; */

  }


  .Hero_section_image img {
    max-width: 70%;
  }
}

/* 768px */
@media (max-width: 768px) {
  .hero-text {
    font-size: 20px;
  }
 .row-text{
  
    margin-top: -10px;
  }
  .Hero_section_image {
    margin-top: 20px;
  }

  .Hero_section_image img {
    max-width: 75%;
  }
}
   
/* 🔥 576px (NEW – MOBILE FINAL) */
@media (max-width: 576px) {
  .hero-text {
    font-size: 18px;
    text-align: center;
    margin-top: 80px;
  }
   .row-text{
  
    margin-top: -80px;
  }

  .Hero_section_image {
    margin-top: 20px;
    text-align: center;
  }

  .Hero_section_image img {
    max-width: 85%;
  }
}

@media (max-width: 480px) {

  .background_hero {
    /* background: unset !important; */
    background-position: 100% 100%;
  }

  .hero-text,
  .hero-desc {
    /* color: #000 !important; */
  }

}






/* ================= FINAL MOBILE FIX ================= */
@media (max-width: 768px) {

  /* GLOBAL */
  body {
    overflow-x: hidden !important;
  }

  .container,
  .container-black {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  section {
    padding: 50px 15px !important;
  }

  img {
    max-width: 100%;
    height: auto;
  }

  /* HERO */

  
  .htext {
    margin-top: 20px !important;
    text-align: center;
  }

  .hero_main_div {
    margin-left: 0 !important;
    padding: 10px;
    text-align: center;
  }

  .hero-text {
    font-size: 22px !important;
    line-height: 1.3;
  }

  .hero-desc {
    font-size: 14px;
  }

  .background_hero {
    background-size: cover !important;
   background-position: bottom center !important;
   
  }

  .Hero_section_image {
    max-width: 100% !important;
    margin-top: 20px;
  }

  .Hero_section_image img {
    max-width: 80%;
  }

  .logo {
    max-width: 90px !important;
  }

  /* 🔥 CAROUSEL FIX (NO CUT + SMOOTH SCROLL) */
  
  /* IMPORTANT: container padding remove (yeh hi main cut ka reason hai) */
  .carousel-wrapper.container {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .carousel-wrapper {
    overflow: hidden !important;
    padding-top: 30px !important;
    padding-bottom: 40px !important;
  }

  /* TRACK FIX */
  .carousel-track {
    display: flex;
    gap: 9px;
    /* overflow-x: auto; */
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;

    /* IMPORTANT */
    padding-left: 20px;
    padding-right: 20px;
  }

  /* SCROLLBAR HIDE */
  .carousel-track::-webkit-scrollbar {
    display: none;
  }

  /* CARD FIX (MAIN ISSUE SOLVER) */
  .card.reel {
    flex: 0 0 auto;
    width: 85%;              /* 👈 75 se badhaya (cut avoid) */
    max-width: 260px;
    height: 300px;
    scroll-snap-align: center;
  }

  /* REMOVE BLOCKERS */
  .edge,
  .iphone-fixed {
    display: none !important;
  }

}

  /* ABOUT */
  .circle-bg {
    width: 200px;
    height: 200px;
  }

  .about-img-wrapper img {
    max-width: 75% !important;
  }

  .heart {
    font-size: 18px;
  }

  /* USER APP */
  .user-app-section {
    padding: 40px 15px !important;
  }

  .feature-btn {
    font-size: 12px;
    padding: 10px;
  }

  /* SLIDER */
  .slider-wrapper {
    margin-top: 30px;
    max-width: 100%;
  }

  .app-slider img {
    /* width: 180px !important; */
  }
.app-slider .item {
  display: flex;
  justify-content: center;
  align-items: center;
}
  .owl-prev {
    left: -10px !important;
  }

  .owl-next {
    right: -10px !important;
  }

  .owl-nav button {
    width: 30px;
    height: 30px;
  }

  /* CARDS */
  .feature-card {
    padding: 15px;
  }

  /* TEXT */
  .fancy {
    font-size: 28px !important;
  }

  h2 {
    font-size: 22px;
  }

  h3 {
    font-size: 18px;
  }

  h4 {
    font-size: 16px;
  }

  p {
    font-size: 14px;
  }


