/* RESET */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  }

body {
font-family: 'Poppins', sans-serif;
background: #0a0a0a;
color: #fff;
}

.container {
width: 90%;
margin: auto;
}

/* HEADER */
.header {
background: #000;
padding: 15px 0;
border-bottom: 1px solid rgba(255,255,255,0.08);
position: sticky;
top: 0;
z-index: 999;
}

.header-flex {
display: flex;
justify-content: space-between;
align-items: center;
}

/* LOGO */
.logo-main {
font-size: 26px;
font-weight: 700;
background: linear-gradient(45deg,#ff2e7a,#ff9a00);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}

.logo-main span {
color: #fff;
-webkit-text-fill-color: #fff;
}

/* MENU */
.menu {
display: flex;
gap: 20px;
}

.menu a {
color: #ddd;
text-decoration: none;
font-size: 14px;
transition: 0.3s;
}

.menu a:hover {
color: #ff2e7a;
}
/*mobileMenu*/
/* HAMBURGER */
.menu-toggle {
  display: none;
  font-size: 26px;
  cursor: pointer;
}

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

  .menu-toggle {
    display: block;
    color: #fff;
  }

  .menu {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: #000;

    display: flex;
    flex-direction: column;
    text-align: center;

    max-height: 0;
    overflow: hidden;

    transition: 0.3s ease;
  }

  .menu a {
    padding: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  /* ACTIVE MENU */
  .menu.active {
    max-height: 400px;
  }

  /* hide desktop buttons */
  .actions {
    display: none;
  }

}
/*mobile menu end*/
/* BUTTONS */
.actions a {
margin-left: 10px;
padding: 10px 16px;
border-radius: 25px;
text-decoration: none;
font-size: 13px;
}

.call-btn {
background: linear-gradient(45deg,#ff2e7a,#ff0066);
color: #fff;
}

.wa-btn {
background: linear-gradient(45deg,#25D366,#128C7E);
color: #fff;
}

.luxury-banner {
  padding: 80px 0;
  background: radial-gradient(circle at right, #2a0015, #000);
}
.banner-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
}

.banner-visual {
  position: relative;
  max-width: 500px;

  transform: translateX(-170px); /* 🔥 ye use karo */
}


/* LEFT TEXT */
.banner-title {
  font-size: 60px;
}

.banner-title span {
  color: #ff2e7a;
}

.banner-desc {
  color: #bbb;
  max-width: 400px;
  margin: 20px 0;
}

/* IMAGE */
.banner-visual img {
  width: 420px;
  display: block;
}

/* FLOAT CARDS BASE */
.float-card {
  position: absolute;
  padding: 12px 16px;
  border-radius: 14px;
  font-size: 13px;

  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.15);

  box-shadow: 0 0 25px rgba(255,0,80,0.25);

  animation: floatY 4s ease-in-out infinite;
}

/* EXACT POSITIONS (like screenshot) */

/* LEFT SIDE */
.card1 {
  top: 40%;
  left: 50%;
}

.card2 {
  bottom: 15%;
  left: 48%;
}

/* RIGHT SIDE */
.card3 {
  top: 35%;
  right: 15%;
}

.card4 {
  bottom: 15%;
  right: 10%;
}

/* FLOAT ANIMATION */
@keyframes floatY {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
  100% { transform: translateY(0px); }
}

/* DELAY (premium feel) */
.card1 { animation-delay: 0s; }
.card2 { animation-delay: 0.5s; }
.card3 { animation-delay: 1s; }
.card4 { animation-delay: 1.5s; }

/*mobile*/
@media(max-width:768px){

  .banner-wrap {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .banner-visual {
    margin-left: 0;   /* reset */
    max-width: 280px;
  }

  .banner-title {
    font-size: 34px;
  }

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

  .banner-actions {
    display: flex;
    justify-content: center;
    gap: 10px;
  }

  /* FLOAT CARDS MOBILE */
  .float-card {
    font-size: 10px;
    padding: 8px;
  }

  .card1 { top: 0; left: 10%; }
  .card2 { bottom: 0; left: 10%; }
  .card3 { top: 0; right: 10%; }
  .card4 { bottom: 0; right: 10%; }

}