body {
  font-family: "Outfit", sans-serif;
  background: linear-gradient(180deg, #ffffff 0%, #f3e8ff 100%);
  overflow-x: hidden;
  background: url("../img/body-bg2.webp") repeat top center;
  background-size: 100%;
  background-attachment: fixed;
}

.font-heading {
  font-family: "Baloo 2", cursive;
}

.font-h3 {
    font-size: 2rem;
}

.font-h2 {
    font-size: 3.5rem;
}

/* 🔥 Sticky Navbar */
.navbar {
  transition: all 0.3s ease;
}
.navbar-brand img {
  width: 240px;
}
.navbar.scrolled {
  background: #2e003f !important;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

/* Hero */
.hero {
  padding: 8rem 0 4rem;
  position: relative;
   /* background: url("../img/banner-bg.png") repeat bottom center;
  background-size: 100%; */
}
.hero::before {
    content: "";
    position: absolute;
    background: url("../img/cloud2.webp") no-repeat bottom right;
    z-index: -1;
    height: 40%;
    width: 62%;
    right: -7rem;
    bottom: -5rem;
    opacity: 0.4;
    /* transform: scale(1.5); */
    background-size: 100%;
}
.hero-content {
  /* max-width: 500px; */
  width: 100%;
}
.hero .font-h1 {
    font-size: 4.5rem;
    color: #fff;
    line-height: 1;
}

.gradient-text {
  background: linear-gradient(90deg, #7b2ff7, #f107a3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.btn-gradient {
  background: linear-gradient(90deg, #7b2ff7, #f107a3);
  border: none;
  color: #fff;
  padding: 12px 25px;
  border-radius: 30px;
  transition: 0.3s;
}
.btn-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(123, 47, 247, 0.3);
}

.card-custom {
  border-radius: 20px;
  border: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}
.card-custom:hover {
  transform: translateY(-8px);
}

.section {
  padding: 100px 0;
}

/* 📱 App Image */
.hero-img {
  max-width: 350px;
}

/* ✨ Reveal Animation */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Footer */
/* .footer {
  background: linear-gradient(90deg, #7b2ff7, #f107a3);
  color: #fff;
  padding: 40px 0;
} */



@keyframes glowMove {
  0% {
    background-position: 0%;
  }
  100% {
    background-position: 200%;
  }
}

.db-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 14px 30px;
  border-radius: 50px;

  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.3px;

  color: #ffffff;
  border: none;
  cursor: pointer;

  /* 🔥 EXACT gradient (blue → pink like your app) */
  background: linear-gradient(90deg, #3da9fc 0%, #7b2ff7 45%, #ff4fd8 100%);

  position: relative;
  z-index: 1;

  transition: all 0.3s ease;
}

/* ✨ OUTER NEON GLOW */
.db-btn::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 50px;

  background: linear-gradient(90deg, #3da9fc, #7b2ff7, #ff4fd8);

  filter: blur(10px);
  opacity: 0.85;

  z-index: -2;
  animation: glowMove 4s linear infinite;
  background-size: 200% 200%;
}

/* 🌟 INNER GLASS SHINE */
.db-btn::after {
  content: "";
  position: absolute;
  inset: 1.5px;
  border-radius: 50px;

  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.25),
    rgba(255, 255, 255, 0.05) 40%,
    rgba(0, 0, 0, 0.15)
  );

  z-index: -1;
}

/* 🚀 HOVER (like your UI subtle lift) */
.db-btn:hover {
  transform: translateY(-2px);
  box-shadow:
    0 8px 25px rgba(255, 79, 216, 0.35),
    0 0 20px rgba(123, 47, 247, 0.4);
}

/* 👇 ACTIVE PRESS */
.db-btn:active {
  transform: scale(0.98);
}

/* 🎯 ICON STYLE */
.db-icon {
  font-size: 16px;
  display: flex;
  align-items: center;
}

.glass-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 16px 32px;
  border-radius: 50px;

  font-size: 18px;
  font-weight: 600;
  color: #ffffff;

  cursor: pointer;
  border: none;

  /* 🧊 Glass effect */
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  z-index: 1;
  overflow: hidden;

  transition: all 0.3s ease;
}

/* 🔥 NEON BORDER */
.glass-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50px;
  padding: 1.5px; /* border thickness */

  background: linear-gradient(90deg, #3da9fc, #7b2ff7, #ff4fd8);

  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;

  z-index: -1;
}
@keyframes glowMove {
  0% { background-position: 0% }
  100% { background-position: 200% }
}
/* ✨ OUTER GLOW */
.glass-btn::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50px;

  background: linear-gradient(90deg, #3da9fc, #7b2ff7, #ff4fd8);

  filter: blur(14px);
  opacity: 0.7;

  z-index: -2;
   background-size: 200% 200%;
  animation: glowMove 4s linear infinite;
}

/* 🌟 INNER LIGHT REFLECTION */
.glass-btn span {
  position: relative;
  z-index: 2;
}

/* 🚀 HOVER EFFECT */
.glass-btn:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.12);
}

/* 👇 CLICK EFFECT */
.glass-btn:active {
  transform: scale(0.97);
}

/* 🎯 ICON */
.glass-btn .icon {
  font-size: 16px;
}

.main-nav .navbar-nav .nav-item a {
  color: #fff;
}


.glass-btn.semi-bg::after{
  opacity: 0.1;
}

.banner-img-wrapper {
    display: grid;
    grid-template-columns: 2fr 1.2fr;
    align-items: flex-end;
}
.banner-img-wrapper .girl{
  margin-left: -30px;
}
.ani-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(127,42,194,0.7);
    color: #fff;
    padding: 6px 20px;
    border-radius: 100px;
    margin-bottom: 15px;
    font-size: 14px;
    backdrop-filter: blur(2px);
}

.card-custom1 {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    text-align: left;
    gap: 22px;
    background: transparent;
    box-shadow: none;
    border: none;
    position: relative;
    min-height: 100%;
}

.card-custom1:before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    top: 0;
    bottom: 0;
    right: 0;
    left: 38px;
    /* background: linear-gradient(90deg, #3da9fc, #7b2ff7, #ff4fd8); */
    /* -webkit-mask: linear-gradient(#000 0 0) content-box,
      linear-gradient(#000 0 0); */
    /* -webkit-mask-composite: xor; */
    /* mask-composite: exclude; */
    z-index: -1;
    border: 2px solid #bf2575;
}

.card-custom1 .feature-icon {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1a0129;
    border-radius: 100%;
}

.card-custom1 .card-content {
    padding-block: 15px;
    color: #fff;
}

.card-custom2 {
    text-align: left;
    gap: 22px;
    background: transparent;
    box-shadow: none;
    border: none;
    position: relative;
    min-height: 100%;
}


.feature-section {
  padding: 80px 0;
}

/* LEFT IMAGE PANEL */
.story-visual {
  background: radial-gradient(circle at center, #1a0033, #060010);
  border-radius: 25px;
  padding: 20px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 0, 255, 0.2);
}

.story-visual img {
  max-width: 100%;
  border-radius: 20px;
}

/* RIGHT FEATURES */
.feature-box {
  background: rgba(255,255,255,0.03);
  border-radius: 18px;
  padding: 20px;
  margin-bottom: 20px;
  display: flex;
  gap: 15px;
  align-items: flex-start;
  border: 1px solid rgba(255,255,255,0.08);
  transition: 0.3s;
}

.feature-box:hover {
  transform: translateX(6px);
  box-shadow: 0 0 20px rgba(255, 0, 255, 0.2);
}

/* ICON */
.icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.icon-purple {
  background: radial-gradient(circle, #a855f7, #6b21a8);
  box-shadow: 0 0 15px #a855f7;
}

.icon-pink {
  background: radial-gradient(circle, #ff2da0, #a0005a);
  box-shadow: 0 0 15px #ff2da0;
}

.icon-blue {
  background: radial-gradient(circle, #00c6ff, #0044ff);
  box-shadow: 0 0 15px #00c6ff;
}

/* HEX STYLE CARD */
.hex-card {
  padding: 30px 25px;
  text-align: center;
  border-radius: 30px;
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(10px);
  position: relative;
  border: 1px solid transparent;
  transition: 0.3s;
}

.hex-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 30px rgba(255, 0, 255, 0.3);
}

/* Glow borders */
.card-purple {
  border-color: rgba(168, 85, 247, 0.5);
}

.card-pink {
  border-color: rgba(255, 0, 150, 0.5);
}

.card-blue {
  border-color: rgba(0, 170, 255, 0.5);
}

/* ICON */
.icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 15px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

.icon-purple {
  background: radial-gradient(circle, #a855f7, #6b21a8);
  box-shadow: 0 0 20px #a855f7;
}

.icon-pink {
  background: radial-gradient(circle, #ff2da0, #a0005a);
  box-shadow: 0 0 20px #ff2da0;
}

.icon-blue {
  background: radial-gradient(circle, #00c6ff, #0044ff);
  box-shadow: 0 0 20px #00c6ff;
}

/* TEXT */
.hex-card h4 {
  font-weight: 600;
  margin-top: 10px;
}

.hex-card p {
  font-size: 14px;
  color: #b8a9c9;
  margin-top: 10px;
}

/* UNDERLINE */
.line {
  width: 40px;
  height: 3px;
  margin: 15px auto 0;
  border-radius: 10px;
}

.line-purple {
  background: #a855f7;
}

.line-pink {
  background: #ff2da0;
}

.line-blue {
  background: #00c6ff;
}

/* STATS BAR */
.stats-bar {
  margin-top: 60px;
  padding: 25px;
  border-radius: 20px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,0,255,0.2);
  backdrop-filter: blur(10px);
}

/* STAT ITEM */
.stat {
  text-align: center;
}

.stat h2 {
  font-size: 30px;
  font-weight: 700;
}

.stat p {
  font-size: 12px;
  color: #a08ab7;
}

/* GRADIENT TEXT */
.grad-pink {
  background: linear-gradient(45deg, #ff4ecd, #ff7a18);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.grad-purple {
  background: linear-gradient(45deg, #a855f7, #6366f1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.grad-blue {
  background: linear-gradient(45deg, #00c6ff, #0072ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.grad-green {
  background: linear-gradient(45deg, #22c55e, #4ade80);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* DIVIDER */
.divider {
  border-left: 1px solid rgba(255,255,255,0.1);
}
.swiper-container {
    width: 100%;
    height: 100%;
}
.explore-slider .swiper-slide img {
    border: 2px solid #fc59b0;
    border-radius: 22px;
}

.swiper-button-next, .swiper-button-prev {
    height: 36px;
    width: 36px;
    background: #fc59b0;
    color: #fff;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    margin-top: -18px;
}
.slider-wrapper{
  position: relative;
}
.swiper-button-prev{
    left: -50px;
}
.swiper-button-next{
    right: -50px;
}

.gift-wrapper {
    display: grid;
    grid-template-columns: 200px 1fr 400px;
    gap: 20px;
    color: #fff;
    align-items: center;
    border: 2px solid #fc59b0;
    border-radius: 22px;
    padding: 0 35px;
}

.gift-wrapper .boy-img {
    margin-top: -100px;
    align-self: end;
}
.gift-wrapper .gift-img{
  margin-block: 30px;
}


/* CARD */
.test-card{
  width:100;
  margin:50px auto;
  padding:20px;
  border-radius:16px;
  background:linear-gradient(135deg,#2a0a5e,#0a0330);
  position:relative;
  color:#fff;
  border:1px solid rgba(255,255,255,0.15);
}

/* glow border */
.test-card::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:16px;
  padding:1px;
  background:linear-gradient(90deg,#ff00cc,#6a5cff);
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite:xor;
  mask-composite:exclude;
}

/* HEADER */
.test-card .header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:10px;
}

.test-card .user{
  display:flex;
  align-items:center;
  gap:12px;
}

.test-card .avatar{
  width:50px;
  height:50px;
  border-radius:50%;
  overflow:hidden;
  border:2px solid #fff;
}

.test-card .avatar img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.test-card .name{
  font-weight:bold;
  font-size:18px;
}

.test-card .sub{
  font-size:13px;
  color:#cfcfe6;
  text-align: left;
}

/* STARS */
.test-card .stars{
  color:#ffd700;
  font-size:16px;
}

/* TEXT */
.test-card .text{
  font-size:16px;
  line-height:1.6;
  color:#dcdcf5;
  margin-top:10px;
  max-width:420px;
  text-align: left;
}

/* QUOTE */
.test-card .quote{
  position:absolute;
  right:20px;
  bottom:10px;
  font-size:60px;
  color:rgba(255,255,255,0.15);
}

.journey {
    display: grid;
    grid-template-columns: 10rem 1fr auto;
    align-items: center;
    text-align: left;
    gap: 1rem;
    color: #fff;
    background: rgb(203 24 205 / 70%);
    padding: 1.5rem;
    border-radius: 21px;
    backdrop-filter: blur(4px);
}

/* FOOTER */
.footer{
  background:linear-gradient(90deg,#05001a,#0a0330);
  padding:50px 80px;
}

.footer .container{
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:40px;
}

/* LEFT LOGO */
.footer-brand{
  max-width:250px;
}

.footer-brand img{
  width:160px;
  margin-bottom:10px;
}

.footer-brand p{
  font-size:14px;
  color:#cfcfe6;
  line-height:1.6;
}

/* COLUMN */
.footer-col h4{
  margin-bottom:15px;
  font-size:16px;
  color: #f858ad;
}

.footer-col ul{
  list-style:none;
  padding:0;
  margin:0;
}

.footer-col li{
  margin-bottom:8px;
}

.footer-col a{
  color:#cfcfe6;
  text-decoration:none;
  font-size:14px;
}

.footer-col a:hover{
  color:#fff;
}

/* SOCIAL */
.social{
  display:flex;
  gap:10px;
  margin-bottom:10px;
}

.social a{
  width:35px;
  height:35px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(255,255,255,0.1);
  font-size:14px;
  text-decoration:none;
  color:#fff;
}

.email{
  font-size:13px;
  color:#cfcfe6;
}

/* NEWSLETTER */
.newsletter{
  max-width:250px;
}

.newsletter h4{
  color: #f858ad;
}

.newsletter p{
  font-size:14px;
  color:#cfcfe6;
  margin-bottom:10px;
}

.input-box{
  display:flex;
  align-items:center;
  background:#0a0330;
  border-radius:25px;
  padding:5px;
  border:1px solid rgba(255,255,255,0.2);
}

.input-box input{
  flex:1;
  border:none;
  outline:none;
  background:transparent;
  color:#fff;
  padding:10px;
  font-size:14px;
}

.input-box button{
  width:35px;
  height:35px;
  border:none;
  border-radius:50%;
  background:linear-gradient(90deg,#ff00cc,#6a5cff);
  color:#fff;
  cursor:pointer;
}

/* BOTTOM */
.footer-bottom{
  text-align:center;
  margin-top:40px;
  font-size:12px;
  color:#aaa;
}

/* RESPONSIVE */
@media(max-width:768px){
  .footer-container{
    flex-direction:column;
  }
}

@media(max-width:485px){
  .me-3 {
    margin-bottom:10px;
  }
}

@media (min-width: 992px) {
  .main-nav .navbar-nav {
    gap: 1.5rem;
  }
  .navbar-expand-lg .navbar-collapse {
    max-width: max-content;
  }
}
